/* ==================================================
  共通
================================================== */
html {
    scroll-behavior: smooth;
}

body {
    color: #082436;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.7;
}

.inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 30px;
}

main {
    background: #fff;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .inner {
        padding-inline: 20px;
        max-width: 390px;
        box-sizing: border-box;
    }
}

.inner--lead {
    position: relative;
}

.text-bold {
    font-weight: 700;
}

.text-marker {
    background: linear-gradient(transparent 50%, #FFEF00 50%);
}

/* スマホ */
@media screen and (max-width: 576px) {
    .no-br {
        display: none;
    }
}

/* タブレット */
.tb-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .tb-only {
        display: block;
    }
}


/* ==================================================
  ラボ共通スタイル上書き
================================================== */

.wrap {
    width: 100%;
    text-align: left;
}

/* ----------------------------------------
  セクション共通
---------------------------------------- */
.section {
    padding-block: 80px;
}

.section+.section {
    margin-top: 43px;
}

.section--bg {
    position: relative;
    background: #F2F8FE;
}

.section--bg::before,
.section--bg::after {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 43px;
    background: url(../../img/wave.png) no-repeat center / cover;
    content: "";
}

.section--bg::before {
    top: -43px;
    transform: rotate(180deg);
}

.section--bg::after {
    bottom: -43px;
}

.section--bg:last-child::after {
    display: none;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section {
        padding-block: 40px;
    }
}

.section__title {
    position: relative;
    padding-bottom: 22px;
    color: #114596;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    text-align: center;
}

.intro {
    text-align: center;
    margin-top: 20px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__title {
        font-size: 24px;
    }
}

.section__title::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 62px;
    height: 8px;
    background: url(../../img/dots.png) no-repeat center / contain;
    content: "";
}

.section__box {
    overflow: hidden;
    margin-inline: -30px;
    padding-block: 60px;
    padding-inline: 30px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__box {
        margin-inline: -20px;
        padding-block: 40px;
        padding-inline: 20px;
    }
}

.section__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 848px;
    margin: 0 auto;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__content {
        flex-direction: column;
    }
}

.section__content--reverse {
    flex-direction: row-reverse;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__content--reverse {
        flex-direction: column;
    }
}

.section__content+.section__content {
    margin-top: 60px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__content+.section__content {
        margin-top: 40px;
    }
}

.section__image {
    position: relative;
    width: 48%;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image {
        width: 100%;
    }
}

.section__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section__description {
    width: 48%;
}

.section__description .content-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.section__description .content-title span {
    color: #00b0ff;
}

.section__description table {
    margin-top: 1rem;
    padding-top: 1rem;
    position: relative;
}

.section__description table th {
    text-align: left;
    width: 30%;
}

.section__description table td {
    width: 70%;
}

.section__description table::before {
    content: '';
    width: 30px;
    height: 1px;
    background: #00b0ff;
    position: absolute;
    top: 0;
    left: 0;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__description {
        width: 100%;
        margin-top: 40px;
    }
}

.section__text+.section__text {
    margin-top: 24px;
}

/* ----------------------------------------
  プラン共通
---------------------------------------- */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* タブレット */
@media screen and (max-width: 768px) {
    .plan-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* スマホ */
@media screen and (max-width: 576px) {
    .plan-cards {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    display: flex;
    flex-direction: column;
    min-height: 217px;
    padding: 18px 18px 22px;
    border-radius: 4px;
    box-shadow: 4px 4px 20px rgb(143 143 143 / 32%);
    background-color: #fff;
}

.plan-card--coming-soon {
    position: relative;
}

.plan-card__title {
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 16px;
    text-wrap: wrap;
    line-height: 1.5;
}

.plan-card__list {
    margin-block: auto 0;
    padding-left: 0;
    list-style: none;
}

.plan-card__item {
    position: relative;
    padding-left: 28px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}

.plan-card__item::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
    content: "";
}

.plan-card__item+.plan-card__item {
    margin-top: 6px;
}

.plan-card__button {
    display: block;
    position: relative;
    width: fit-content;
    margin-top: 18px;
    margin-inline: auto;
    padding: 14px 48px 14px 30px;
    border-radius: 999px;
    background-color: #FFEF00;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

.plan-card__button:hover {
    background-color: #333;
    color: #FFEF00;
}

.plan-card__button:hover::before {
    background-image: url(https://www.tabione.com/img/topics/awajishima_activity/arrow-yellow.svg);
}

.plan-card__button::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 6px;
    height: 12px;
    background: url(https://www.tabione.com/img/topics/awajishima_activity/arrow-black.svg) no-repeat center / contain;
    content: "";
}

.coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.coming-soon__image img {
    margin: 0 auto;
}

.coming-soon__text {
    margin-top: 12px;
    color: #114596;
    font-weight: 700;
    text-align: center;
}

/* ==================================================
  メインビジュアル
================================================== */
.mv {
    position: relative;
    height: 600px;
    background: url(../../img/2601/main-visual-pc.png) no-repeat center / cover;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .mv {
        background-image: url(../../img/2601/main-visual-sp.png);
    }
}

.mv__title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -32%);
    width: 100%;
    max-width: 400px;
    color: #114596;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    text-wrap: wrap;
    line-height: 1.5;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .mv__title {
        font-size: 1.5rem;
    }
}

.mv__word1 {
    position: absolute;
    top: -77px;
    left: 50%;
    transform: translateX(-46%);
    color: #fff;
    font-size: 24px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .mv__word1 {
        top: -72px;
        /* 公開すると何故かズレるため */
        font-size: 20px;
    }
}

.mv__word1,
.mv__word2,
.mv__word3 {
    display: block;
}

.mv__word2 {
    font-size: 1rem;
}

.mv__flag {
    position: absolute;
    top: 180px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

/* スマホ */
@media screen and (max-width: 576px) {
    .mv__flag {
        top: 194px;
        width: 88px;
    }
}

.mv__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .mv__circle {
        max-width: 335px;
        aspect-ratio: 1;
        object-fit: contain;
    }
}

/* ==================================================
  導入
================================================== */
.lead__text {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .lead__text {
        text-align: left;
    }
}

.lead__text:first-of-type {
    margin-top: 60px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .lead__text:first-of-type {
        margin-top: 40px;
    }
}

.lead__text+.lead__text {
    margin-top: 24px;
}

.lead__image1,
.lead__image2,
.lead__image3 {
    position: absolute;
    z-index: 1;
}

.lead__image1 {
    top: -120px;
    right: 20px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .lead__image1 {
        width: 100px;
    }
}

.lead__image2 {
    top: 230px;
    left: 42px;
}

/* タブレット直前 */
@media screen and (max-width: 900px) {
    .lead__image2 {
        display: none;
    }
}

.lead__image3 {
    right: 30px;
    bottom: -100px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .lead__image3 {
        width: 150px;
    }
}

.lead__anchor-box {
    display: flex;
    gap: 22px;
    width: 100%;
    margin: 60px auto 0;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .lead__anchor-box {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.lead__anchor {
    position: relative;
    padding: 8px 8px 22px;
    border: 2px solid #114596;
    border-radius: 4px;
    background-color: #114596;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.lead__anchor:hover {
    background-color: #fff;
    color: #114596;
}

.lead__anchor:hover::before {
    background-image: url(https://www.tabione.com/img/topics/awajishima_activity/arrow-blue.svg);
}

.lead__anchor::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: 12px;
    height: 6px;
    background: url(https://www.tabione.com/img/topics/awajishima_activity/arrow-white.svg) no-repeat center / contain;
    content: "";
}

/* ==================================================
  SUP
================================================== */
.section__image .deco1 {
    position: absolute;
    bottom: -10%;
    left: -60px;
    width: 30%;
    min-width: 100px;
}

.section__image .isl-name {
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    position: absolute;
    top: 3%;
    left: 2%;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .deco1 {
        left: -14px;
        width: 100px;
    }
}

.section__image .deco2 {
    position: absolute;
    top: 72%;
    right: -44px;
    width: 26%;
    min-width: 90px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .deco2 {
        right: 0;
        width: 90px;
    }
}

/* ==================================================
  カヤック
================================================== */
.section__image .kayak__deco1 {
    position: absolute;
    bottom: 86%;
    left: -60px;
    width: 24%;
    min-width: 90px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .kayak__deco1 {
        left: -14px;
        width: 80px;
    }
}

.section__image .kayak__deco2 {
    position: absolute;
    top: 74%;
    right: -44px;
    width: 29%;
    min-width: 100px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .kayak__deco2 {
        right: -12px;
        width: 90px;
    }
}

/* ==================================================
  乗馬
================================================== */
.section__image .horse-riding__deco1 {
    position: absolute;
    bottom: 76%;
    left: -60px;
    width: 36%;
    min-width: 110px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .horse-riding__deco1 {
        left: -28px;
        width: 80px;
    }
}

.section__image .horse-riding__deco2 {
    position: absolute;
    bottom: 82%;
    right: -44px;
    width: 29%;
    min-width: 100px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .horse-riding__deco2 {
        right: -10px;
        width: 100px;
    }
}

/* ==================================================
  BBQ
================================================== */
.section__image .bbq__deco1 {
    position: absolute;
    bottom: 76%;
    left: -60px;
    width: 34%;
    min-width: 120px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .bbq__deco1 {
        left: -14px;
        width: 80px;
    }
}

.section__image .bbq__deco2 {
    position: absolute;
    top: 68%;
    right: -36px;
    width: 18%;
    min-width: 60px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .bbq__deco2 {
        right: -12px;
        width: 64px;
    }
}

/* ==================================================
  淡路瓦体験
================================================== */
.section__image .kawara__deco1 {
    position: absolute;
    bottom: 80%;
    left: -60px;
    width: 34%;
    min-width: 120px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .kawara__deco1 {
        left: -14px;
        width: 80px;
    }
}

.section__image .kawara__deco2 {
    position: absolute;
    top: 80%;
    right: -36px;
    width: 18%;
    min-width: 60px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .kawara__deco2 {
        right: -12px;
        width: 64px;
    }
}

/* ==================================================
  お香作り等
================================================== */
.section__image .incense__deco1 {
    position: absolute;
    bottom: 82%;
    left: -40px;
    width: 20%;
    min-width: 80px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .incense__deco1 {
        left: -14px;
        width: 80px;
    }
}

.section__image .incense__deco2 {
    position: absolute;
    top: 70%;
    right: -36px;
    width: 20%;
    min-width: 76px;
}

/* スマホ */
@media screen and (max-width: 576px) {
    .section__image .incense__deco2 {
        right: -12px;
        width: 64px;
    }
}