.guidePage {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.guidePage__mv {
    height: 294px;
    background: linear-gradient(90deg, #DCEDF7 0%, #B8E2DB 100%);
    position: relative;
}
@media screen and (max-width: 819px) {
    .guidePage__mv {
        height: 194px;
    }
}

.guidePage__mv::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 86px;
    background: url(../img/corse/mv_bg.png) no-repeat center / contain;
    background-size: 100% 100%;
}
@media screen and (max-width: 819px) {
    .guidePage__mv::after {
      height: 25px;
    }
}

.guidePage__inner {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    height: inherit;
}

.gidePage__title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: bold;
    color: #21819F;
    width: 100%;
    text-align: center;
    padding-top: 90px;
    line-height: 1.1;
    letter-spacing: unset;
}
@media screen and (max-width: 819px) {
    .gidePage__title {
        padding-top: 70px;
        font-size: 28px;
    }
}

.guidePage__contents-block {
    margin-top: 40px;
}

.guidePage__number p {
    font-size: 15px;
    line-height: 1;
}

.guidePage__contents {
    margin-top: 40px;
}

.blog-cards02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
@media screen and (max-width: 1024px) {
    .blog-cards02 {
      gap: 20px;
    }
}
@media screen and (max-width: 819px) {
    .blog-cards02 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px) {
    .blog-cards02 {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.blog-card02 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease-in-out;
}

.blog-card02:hover {
    opacity: 0.7;
}

.blog-card02__img {
    aspect-ratio: 354 / 234;
    border-radius: 10px;
}

.blog-card02__img img {
    aspect-ratio: 354 / 234;
    border-radius: 10px;
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card02__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    letter-spacing: unset;
    margin-top: 0;
    margin-bottom: 0;
}

.blog-card02__category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-card02__category span {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    color: #21819F;
    background-color: #ECF7F8;
    padding: 7px 12px;
    border-radius: 9999px;
}

.blog-card02__date {
    letter-spacing: 0.02em;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    margin-top: auto;
    font-family: 'Cabin', sans-serif;
}

/* ページネーション */

.pagination {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination span.current {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #21819F;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #21819F;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a.page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #BCBCBC;
    font-size: 16px;
    font-weight: 400;
    color: #BCBCBC;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.pagination a.page-numbers:hover {
    background-color: #21819F;
    color: #fff;
    border: 1px solid #21819F;
}

.pagination a.page-numbers.next,
.pagination a.page-numbers.prev {
    border: none;
    transition: color 0.3s ease-in-out;
}

.pagination a.page-numbers.next:hover,
.pagination a.page-numbers.prev:hover {
    color: #21819F;
}

/* シングルページ */

.guidePage__single-block {
    margin-top: 60px;
}

.single-block__inner {
    max-width: 940px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.single-block__contents {
    width: 100%;
}

.single-block__title {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 50px;
    position: relative;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    font-size: 28px;
}
@media screen and (max-width: 819px) {
    .single-block__title {
        padding-left: 30px;
        font-size: 24px;
    }
}

.single-block__title::before {
    content: '';
    position: absolute;
    background: url(../img/guide/title-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 0;
}
@media screen and (max-width: 819px) {
    .single-block__title::before {
        width: 20px;
        height: 20px;
        top: 3px;
    }
}

.guidePage__blog {
    padding: 80px 0;
    background: linear-gradient(90deg, #DCEDF7 0%, #B8E2DB 100%);
    margin-top: 50px;
}
@media screen and (max-width: 819px) {
    .guidePage__blog {
        padding: 60px 0;
    }
}

.guidePage__sub-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #21819F;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
@media screen and (max-width: 819px) {
    .guidePage__sub-title  {
        font-size: 22px;
    }
}

.guidePage__contents {
    margin-top: 40px;
}

.single-block__category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.single-block__category span {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #21819F;
    background-color: #ECF7F8;
    border-radius: 9999px;
    padding: 7px 12px;
}

.single-block__date {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1;
    margin-top: 17px;
    font-family: 'Cabin', sans-serif;
    display: flex;
}

.single-block__img {
    aspect-ratio: 90 / 58;
    width: 100%;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.single-block__img img {
    aspect-ratio: 90 / 58;
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-block__content {
    margin-top: 20px;
}

.single-block__content h2 {
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    padding: 7px 0 8px 30px;
    background-color: #ECF7F8;
    border-radius: 3px;
    position: relative;
    height: inherit;
}

.single-block__content h2::before {
    content: '';
    width: 5px;
    height: 54%;
    background: #21819F;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.single-block__content h3 {
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    padding-bottom: 3px;
    border-bottom: 2px solid #21819F;
}

.single-block__content h4 {
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}

.single-block__content p {
    font-size: 16px;
    line-height: 1.875;
    color: #333;
    font-weight: 400;
    margin-top: 20px;
}

.single-block__content a {
    margin-top: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #21819F;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
}

.single-block__content a:hover {
    color: #21819F;
    opacity: 0.7;
}

.single-block__content table {
    margin-top: 60px;
    border-top: 1px solid #CCCCCC;
}

.single-block__content td:first-of-type {
    background-color: #21819F;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
}

.single-block__content td {
    text-align: center;
    background-color: #fff;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 3px;
}

.single-block__content ul {
    padding: 30px 30px 30px 40px;
    background-color: #F8FAFA;
    border: 1px solid #DBE4E6;
    margin-top: 60px;
}

.single-block__content li {
    font-size: 16px;
    line-height: 1.875;
    color: #333;
    font-weight: 400;
}

.single-block__content li::marker {
    color: #21819F;
}

.single-block__content li + .single-block__content li {
    margin-top: 9px;
}

.wp-caption {
    border: none;
    /* max-width: 430px; */
    width: 100% !important;
    /* aspect-ratio: 43 / 28; */
    padding: 0;
    text-align: left;
    margin-top: 60px;
}

.wp-caption img {
    /* aspect-ratio: 43 / 28; */
    /* max-width: 100%; */
    display: block;
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
}

.single-block__content img {
    /* aspect-ratio: 43 / 28; */
    /* max-width: 100%; */
    display: block;
    /* width: 430px; */
    height: 100%;
    object-fit: cover;
}

.wp-caption.alignleft {
    margin: 0 auto 0 0;
}

@media screen and (max-width: 819px) {
    .wp-caption.alignleft {
        margin-right: auto;
        margin-left: auto;
    }
}

.wp-caption.alignright {
    margin: 0 0 0 auto;
}
@media screen and (max-width: 819px) {
    .wp-caption.alignright {
        margin-right: auto;
        margin-left: auto;
    }
}

.wp-caption.alignnone {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 0;
}
@media screen and (max-width: 819px) {
    .wp-caption.alignnone {
        margin-top: 30px;
    }
}

.wp-caption.aligncenter {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 0;
}
@media screen and (max-width: 819px) {
    .wp-caption.aligncenter {
        margin-top: 30px;
        margin-bottom: 0;
    }
}

.wp-caption p.wp-caption-text {
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.single-block__link {
    border-top: 1px dotted #21819F;
    margin-top: 80px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.single-block__link-center {
    position: relative;
    padding-left: 24px;
}

.single-block__link-center::after {
    content: '';
    background: url(../img/guide/prev.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 18px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.single-block__link-prev a,
.single-block__link-next a,
.single-block__link-center a {
    font-size: 16px;
    font-weight: 400;
    color: #21819F;
    line-height: 1.875;
}

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