@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;700&display=swap');

/* ============================================
   CSS変数定義
============================================ */
:root {
    --content-color-base: #2C2A29;
    --content-color-red: #CC0404;
    --content-color-red-2: #B00707;
    --content-color-yellow: #fcc85b;
    --content-color-beige: #f6f1eb;
    --content-color-cream: #fffcf7;
    --content-color-lightgray: #E9ECF2;
    --content-color-gray: #D9D9D9;
    --bg-img-setting: no-repeat center center / contain;
    --bg-cover-setting: no-repeat center top / cover;
    --bg-width-pc: max(100%, 1920px);
    --font-size-pc: 14px;
    --font-size-sp: 14px;
    --font-base: "Zen Old Mincho", serif;
    --font-sans: "Noto Sans JP", sans-serif;
    --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
    --content-hover-speed: 0.3s;
}

/* ============================================
   表示切り替え
============================================ */
.pc-only {
    display: block !important;
}

.tb-only {
    display: none !important;
}

.sp-only {
    display: none !important;
}

@media (max-width: 840px) {
    .tb-only {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }
}

/* ============================================
   基本設定
============================================ */
body {
    overflow-x: hidden;
}

.main {
    font-family: var(--font-sans);
    font-size: var(--content-font-size);
    font-weight: 400;
    color: var(--content-color-base);
    position: relative;
    background: url(../images/bg_main.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main * {
    box-sizing: border-box;
}

.webp .main {
    background-image: url(../images/bg_main.webp);
}



a {
    transition: var(--content-hover-speed);
    color: var(--content-color-base);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .main {
        background: url(../images/bg_main_sp.png);
        background-size: cover;
        background-position: bottom right;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }


    .webp .main {
        background-image: url(../images/bg_main_sp.webp);
    }
}

/* *****
 inner
 - 幅 */
.section>.inner {
    max-width: calc(1104px + 40px);
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {}



/* *****
 title
 - タイトル・見出し */
.sec__header {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.sec__header::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #163BBF 0%, #163BBF 50%, #C0C5CC 50%, #C0C5CC 100%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.sec__title-image-wrapper {
    display: inline-block;
    margin-bottom: 8px;
}

.sec__title-image {
    max-height: 40px;
}

.sec__airline-name {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.sec__title {
    display: block;
    color: #2C2A29;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
}

@media (max-width: 768px) {
    .sec__title {
        font-size: 28px;
    }
}

/* *****
 btn
 - ボタン */
.link_btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5em;
    border: 1px solid #939DAD;
    background: transparent;
    color: #2C2A29;
    text-decoration: none;

}

.link_btn:hover {
    border: 1px solid #140D77;
    background: #140D77;
    color: #fff;
}


.link_btn-bg {
    display: inline-block;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5em;
    border: 1px solid #163BBF;
    background: #163BBF;
    color: #FFF;
    text-decoration: none;

}

.link_btn-bg:hover {
    border: 1px solid #140D77;
    background: #140D77;
    color: #fff;

}

/* =============================
　 コンテンツ
============================= */


/* *****
 mv
 - メインビジュアル */
.mv {
    position: relative;
    /* padding: 96px 0 40px 0; */
    padding-bottom: 40px;
    background: rgba(51, 196, 254, 1);
    background-image: url(../images/mv.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.webp .mv {
    background-image: url(../images/mv.webp);
}

/* .mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
} */

/* .mv__bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 26, 229, 0.72) 14.46%, rgba(0, 190, 255, 0.72) 100%);
    position: absolute;
    top: 0;
    left: 0;
} */
/* .mv__bg-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
} */

.mv__header {
    padding-top: 96px;
    padding-bottom: 64px;
    position: relative;
    z-index: 1;
}

.mv__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.mv__title-image-wrapper {
    display: inline-block;
    max-width: 50%;
    line-height: 1;
}

.mv__title-image {
    max-height: 40px;
}

.mv__title-text {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    max-width: 50%;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 23, 255, 0.7);

    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    word-break: break-all;
}

.mv__copy {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 2px #0017FF;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.mv__text {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 180%;
    text-align: left;
    text-shadow: 0 0 2px rgba(0, 23, 255, 1);
}

.mv__text p+p {
    margin-top: 1em;
}

.mv__link-wrapper {
    text-align: right;
    margin-top: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;

    max-width: calc(1104px + 40px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.mv__link {
    display: inline-block;
    color: #2C2A29;
    position: relative;
    text-decoration: none;
    background: url(../images/icon_arrow.svg) no-repeat right center;
    padding-right: 20px;
}

.mv__link:hover {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .mv {
        padding: 0 0 0 0;
        background-image: none;
    }

    .mv__header {
        background-image: url(../images/mv_sp.png);
        background-size: cover;
        padding-top: 64px;
    }

    .webp .mv__header {
        background-image: url(../images/mv_sp.webp);
    }

    .mv__heading {
        flex-wrap: wrap;
    }

    .mv__title-image {
        max-height: 30px;
    }

    .mv__title-text {
        font-size: 32px;
    }

    .mv__title-image-wrapper,
    .mv__title-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .mv_search {
        padding-bottom: 16px;
        background-image: url(../images/mv_sp-2.png);
        background-size: cover;
    }

    .webp .mv_search {
        background-image: url(../images/mv_sp-2.webp);
    }
}

/* *****
 search
 - 検索 */
.searchModSectionWrapper {
    min-height: 16px;
}

.tabMenuBlock {
    display: none;
}

#searchModSection {
    max-width: calc(1104px + 40px);
    width: 100%;
}

.main .rn-searchMod__formSection {
    max-width: 100%;
    width: 100%;
}

/* *****
 local-nav
 - ナビゲーション */
.local-nav {
    padding: 16px 0;
    background: #2C2A29;
}

.local-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.local-nav__item {
    position: relative;
}

.local-nav__item::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #C0C5CC;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.local-nav__item:last-child:after {
    display: none;
}

.local-nav__link {
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    padding: 0 16px;
}

.local-nav__link:hover {
    /* color: #939DAD; */
    font-weight: 700;
}

.airline-list-accordion-wrapper.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease-out;
    z-index: 999;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* カレント（現在地）のカラー */
.local-nav__link.is-current {
    color: #939DAD;
    font-weight: 700;
}


@media screen and (min-width: 769px) {

    .accordion-trigger-sp {
        display: none;
    }

    .accordion-content-sp {
        display: block !important;
        opacity: 1 !important;
        height: auto !important;
        visibility: visible !important;
    }
}

@media screen and (max-width: 768px) {

    .accordion-trigger-sp {
        display: block;
        width: 100%;
        background: #2C2A29;
        color: #fff;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
        padding: 16px 48px 16px 20px;
        border: none;
        text-align: left;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        position: relative;
    }

    .accordion-trigger-sp::after {
        content: "";
        display: block;
        background: url(../images/icon_nav_arrow.svg);
        width: 16px;
        height: 16px;
        position: absolute;
        right: 16px;
        top: 0;
        bottom: 0;
        margin: auto;
        transition: transform 0.3s;
    }

    .accordion-trigger-sp[aria-expanded="true"]::after {
        content: "";
        rotate: calc(180deg);

    }

    .accordion-content-sp {
        display: none;
        overflow: hidden;
    }

    .accordion-content-sp.is-active {
        display: block;
        padding: 0;
    }

    .local-nav__list.inner {
        display: block;
        background: #F5F7FA;
        padding: 0;
    }

    .local-nav__item {
        border-bottom: 1px solid #C0C5CC;
    }

    .local-nav__item::after {
        display: none;
    }

    .local-nav__link {
        display: block;
        padding: 16px 20px;
        color: #2C2A29;
        font-weight: bold;
        font-size: 16px;
    }

}



/* *****
 air-ticket
 - 人気の航空券 */
.air-ticket {
    padding-top: 96px;
    padding-bottom: 96px;
}

.air-ticket__list {
    display: -ms-grid;
    display: grid;
    gap: 16px;
}

._4-column {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

._3-column {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

._2-column {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.air-ticket__item {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
}

.air-ticket__link {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
}

.air-ticket__link:hover {
    background: #140D77;
    color: #fff;
}

#colorbox {
    position: absolute;
    max-width: 90vw;
    max-height: 90vh;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto;
}

#cboxWrapper {
    max-width: 100%;
}

#cboxContent,
#cboxLoadedContent {
    max-width: 100%;
    max-height: 100%;

}

#cboxClose {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .air-ticket {
        padding-top: 64px;
    }

    .air-ticket__list {
        gap: 8px;
    }

    ._4-column {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    ._3-column {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    ._2-column {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    ._1-column {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .air-ticket__link {
        font-size: 16px;
    }

    #colorbox {
        height: 100% !important;
    }

    #cboxWrapper {
        height: 100% !important;
    }

    #cboxContent,
    #cboxLoadedContent {
        height: 90vh !important;
    }
}

/* *****
 basic-info
 - 基本情報 */

.basic-info {
    padding-bottom: 96px;
}


.basic-info__detail {
    margin-bottom: 64px;
}

.basic-info__table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 40px;
    text-align: left;
}

.basic-info__table-row {
    border-bottom: 1px solid #697180;
}

.basic-info__table-row:last-child {
    border-bottom: none;
}

.basic-info__table-header {
    font-size: 16px;
    border: none;
    padding: 16px 0;
    width: 12em;
}

.basic-info__table-data {
    border: none;
    padding: 16px 0 16px 16px;
    font-size: 16px;
}

.basic-info__city-link:hover {
    color: #140D77;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .basic-info__table-header {
        display: block;
        width: 100%;
        padding: 16px 0 8px;
    }

    .basic-info__table-data {
        display: block;
        width: 100%;
        padding: 0 0 16px;
    }
}

.basic-info__image-gallery {
    margin-bottom: 64px;
}

.basic-info__image-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.basic-info__image-item {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
}

.basic-info__image-wrapper {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    margin-bottom: 8px;
}

.basic-info__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.basic-info__image-caption {
    font-size: 12px;
}

@media (max-width: 768px) {
    .basic-info__image-list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 8px;
    }

    .basic-info__image-gallery {
        margin-bottom: 40px;
    }

}

.basic-info__point {
    margin-bottom: 64px;
}

.basic-info__point-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 24px;
    background-color: #fff;
}

.basic-info__point-title-figure{
    display: inline-block;
    width: 327px;
    margin: 0;
}
.basic-info__point-title-image-wrapper {
    display: inline-block;
    width: 327px;
    max-height: 245px;
    aspect-ratio: 4/3;
}

.basic-info__point-title-image-wrapper {
    margin-bottom: 8px;
}

.basic-info__point-title-figcaption {
    font-size: 12px;
}

.basic-info__point-title-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.basic-info__point-main-content {
    width: calc(100% - 327px - 24px);
}

.basic-info__point-main-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.basic-info__point-main-heading._icon-cheack {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
}

.basic-info__point-main-heading._icon-cheack::after {
    content: "";
    display: inline-block;
    width: 41px;
    height: 32px;
    background: url(../images/icon_check.svg) no-repeat;
    background-size: cover;
}

.basic-info__point-main-title {
    display: inline-block;
    color: #163BBF;
}

.basic-info__point-main-text {
    font-size: 14px;
    line-height: 150%;
}

.basic-info__point-main-text p+p {
    margin-top: 1em;
}

@media (max-width: 768px) {
    .basic-info__point {
        margin-bottom: 40px;
    }

    .basic-info__point-title-figure {
        width: 100%;
        margin-bottom: 16px;
    }

    .basic-info__point-title-image-wrapper {
        width: 100%;
        margin-bottom: 8px;
    }

    .basic-info__point-main {
        padding: 16px;
        margin-bottom: 16px;
    }

    .basic-info__point-main-content {
        width: 100%;
    }

    .basic-info__point-main-heading {
        font-size: 20px;
        margin-bottom: 8px;
        gap: 8px;
    }

    .basic-info__point-main-heading::before {
        width: 38px;
        height: 30px;
    }
}

.basic-info__point-sub-link-wrapper {
    text-align: center;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .basic-info__point-sub-link-wrapper {
        margin-top: 24px;
    }
}

/* 

.basic-info__point-sub-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.basic-info__point-sub-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
    padding: 24px;
    background-color: #fff;
}

.basic-info__point-sub-image-wrapper {
    display: inline-block;
    width: 164px;
    aspect-ratio: 4/3;
}

.basic-info__point-sub-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.basic-info__point-sub-content {
    width: calc(100% - 164px - 24px);
}

.basic-info__point-sub-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.basic-info__point-sub-text {
    line-height: 150%;
}

.basic-info__point-sub-text p+p {
    margin-top: 1em;
}


@media (max-width: 768px) {
    .basic-info__point-sub-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }

    .basic-info__point-sub-item {
        gap: 0;
    }

    .basic-info__point-sub-image-wrapper {
        width: 100%;
        margin-bottom: 16px;
    }

    .basic-info__point-sub-content {
        width: 100%;
    }

} */
.basic-info__attention-text {
    padding-left: 1.2em;
    position: relative;
}

.basic-info__attention-text::before {
    content: "※";
    position: absolute;
    left: 0;
}

.basic-info__attention-text_right {
    margin-top: 16px;
    text-align: right;
}

.basic-info__attention-text_link {
    display: inline-block;
    color: #2C2A29;
    position: relative;
    text-decoration: none;
    background: url(../images/icon_arrow.svg) no-repeat right center;
    padding-right: 20px;
}

/* *****
 reviews
 - 評判・口コミ */

.reviews {
    padding-top: 64px;
    padding-bottom: 96px;
    background-image: url(../images/bg_reviews.png);
    background-size: contain;
    background-repeat: repeat;
}

.webp .reviews {
    background-image: url(../images/bg_reviews.webp);
}

.reviews__total {
    margin-bottom: 40px;
}

.reviews__list {
    margin-bottom: 40px;
}

.reviews__item {
    background: #FFF;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.reviews__item:not(:last-child) {
    margin-bottom: 24px;
}

.reviews__item-meta-data {
    width: 132px;
    text-align: center;
}

.reviews__item-meta-icon {
    display: block;
    margin-bottom: 8px;
    text-align: center;
}

.reviews__item-meta {
    font-weight: 400;
    font-size: 14px;
}

.reviews__item-rating {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.star-rating .star-rating-star {
    font-size: 21px;
}

.reviews__item-rating-label {
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    background: #E9ECF2;
    padding: 4px 8px;
    line-height: 1;
    display: inline-block;
}

.reviews__item-comment {
    width: calc(100% - 132px - 40px);
    font-size: 14px;
    line-height: 180%;
}

.reviews__item-comment-text {
    margin-bottom: 16px;
}

.reviews__item-situation {
    color: #939DAD;
    line-height: 150%;
}

.reviews__more-link-wrapper {
    text-align: center;
}

@media (max-width: 768px) {
    .reviews {
        padding: 64px 0 96px 0;
    }

    .reviews__list {
        margin-bottom: 24px;
    }

    .reviews__item {
        display: block;
        padding: 16px;
        margin-bottom: 16px;
    }

    .reviews__item-meta-data {
        width: 100%;
        margin-bottom: 24px;
    }

    .reviews__item-meta-icon {
        width: 55px;
        margin: auto;
    }

    .reviews__item-comment {
        width: 100%;
    }

    .reviews__item-rating {
        justify-content: center;
        margin-bottom: 16px;
    }
}


/* *****
 article
 - おすすめ記事 */

.article {
    padding-top: 96px;
    padding-bottom: 96px;

}

.article__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.article__item {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
}

.article__item-link {
    display: block;
    text-decoration: none;
    transition: all 0.8s ease;
}

.article__image-wrapper {
    width: 100%;
    display: block;
    aspect-ratio: 258/172;
    margin-bottom: 16px;
    overflow: hidden;
}

.article__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s ease;
}

.article__item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
    transition: all 0.5s ease;
}

.article__item-text {
    font-size: 14px;
    line-height: 150%;
    transition: all 0.5s ease;
}

.article__item-link:hover .article__image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.article__item-link:hover .article__item-title,
.article__item-link:hover .article__item-text {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .article {
        padding-top: 64px;
    }

    .article__list {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 16px;
    }

    .article__image-wrapper {
        aspect-ratio: 159.50/106.48;
    }

    .article__item-title {
        font-size: 16px;
    }

}

/* *****
 qa
 - よくある質問 */

.qa {
    padding-bottom: 96px;
}

.ui-static-faq-answer {
    background: #fff;
}

/* *****
 others
 - アジアのその他の人気航空会社 */
.others {
    padding-bottom: 96px;
}

.others__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.others__item {
    -ms-grid-row-span: 1;
    grid-row: span 1/span 1;
}

.others__link {
    display: block;
    width: 100%;
}

.others__image-wrapper {
    display: block;
    width: 100%;
}

.others__image {
    width: 100%;
}

.others__more {
    text-align: center;
}


@media (max-width: 860px) {
    .others__list {
        -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .others__list {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 24px;
    }
}

/* *****
 mordal
 - モーダル */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 99999;

    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    width: min(90%, 900px);
    max-height: 90vh;
    height: 520px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 32px 32px 24px 32px;
    box-sizing: border-box;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-close::after {
    content: url(../images/icon_close.svg);
}

#modalIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.modal-content,
iframe {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar,
iframe::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 768px) {

    .modal-content {
        padding: 32px 16px 24px;
        height: 90vh;
    }

    .modal-close {
        top: 4px;
        right: 4px;
    }

}