@charset "utf-8";

/* ========================================
track record
===========================================*/
.section--trackRecord {
    margin-top: 58px;
}

.flyer {
    display: none;
}

.slick-track {
    /* max-width: 500px !important; */
    margin: 0 auto;
}

/* スライダー全体の幅を固定 */
.slider--flyer {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* 各スライド(.slider__item--flyer)の画像を2×2で並べる */
.slider__item--flyer {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 横2つ */
    grid-template-rows: repeat(2, 1fr); /* 縦2つ */
    gap: 5px; 
    justify-content: center;
    align-items: center;
    width: 100%; /* 幅を統一 */
    max-width: 500px;
    margin: 48px auto 0;
}

/* 画像サイズの調整 */
.slider__item--flyer img {
    width: 100%;
    max-width: 242px;
    height: auto;
    aspect-ratio: 1 / 1; /* 正方形を維持 */
    object-fit: cover;
    /* margin: 1% 0 0 1%; */
}

/* slick slider pagenationカスタマイズ */
.slick-dots li button{
    font-size:initial;
    color:initial;
    background:initial;
}
.slick-dots li button:before{
    content:none;
}

.slick-dots li{
    width:22px;
    height:22px;
}
.slick-dots li button{
    width:100%;
    height:100%;
    font-size: 14px;
    font-weight: 500;
    font-family:"IBM Plex Sans" ;
    background:rgba(90, 51, 3, 0.15);
    border-radius:12%;
    border: 1px solid rgba(90, 51, 3, 0.8);
    color:var(--primaryWhite);
}
.slick-dots li.slick-active button{
    background:#5A3303;
}

/* カスタムナビゲーションのコンテナ */
.slick-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    width: 100%;
    margin-top: 10px;
    position: relative;
}

/* dots（ドットナビゲーション） */
.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    position: absolute;
    top: 0;
    height: 38px;
    /* transform: translateX(-50%); */
}

/* カスタム矢印ボタン */
.slick-prev-custom,
.slick-next-custom {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #5A3303;
    padding: 5px 10px;
    z-index: 10;
}

/* 矢印のホバー時の効果 */
.slick-prev-custom:hover,
.slick-next-custom:hover {
    color: rgba(90, 51, 3, 0.15);
}


/* .slider--flyer {
    margin: 48px auto 0;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.slider__item--flyer {
    margin: 0 auto;
}

.slider__item--flyer img {
    width: 48%;
    max-width: 242px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 1% 0 0 1%;
} */

.example {
    margin: 88px auto 0;
}

.area,
.media {
    margin: 48px auto 0;
}

.example {
    width: 100%;
    max-width:518px ;
    height: 360px;
    background-image: url(../images/example_blob_1.png), url(../images/example_blob_2.png), url(../images/example_blob_3.png);
    background-size: 118px, 280px, 132px;
    /* background-position: right 225px top 286px, center top 117px, right 0 bottom 10px; */
    background-position: right 201px top 0, right 60px bottom, right 0 top 92px;
    background-repeat: no-repeat, no-repeat, no-repeat;
    
}

.media {
    width: 100%;
    max-width: 518px;
    height: 380px;
}

.media img {
    max-width: 343px;
    margin-top: 12px;
}

.mediaImg:hover {
    opacity: 0.5;
}

.mediaTxt:hover {
    /* background-color: rgba(90, 51, 3, 0.2); */
    color: rgba(90, 51, 3, 0.4);
}



.area {
    width: 100%;
    max-width: 518px;
    height: 360px;
    background-image: url(../images/map_okinawa.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}

.example h5,
.media h5,
.area h5 {
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
}

.area h5 {
    padding-top: 80px;
}

.example h4,
.media h4,
.area h4 {
    font-family: "IBM Plex Sans JP";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 8px;
}

.example p,
.area p {
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 24px auto 0;
    width: 100%;
}

.media p {
    font-family: "IBM Plex Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 12px auto 0;
    width: 100%;
}

.area p span {
    color: #B23303;
    font-size: 2.2rem;
    font-weight: 600;
}

/* track record pc */
@media screen and (min-width: 769px) {
    .section--trackRecord {
        margin-top: 82px;
    }

    .slider--flyer {
        display: none;
    }
    
    .flyer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        margin: 64px auto 0;
        max-width: 1280px;
        gap: 16px;
    }
    
    .flyer__item img {
        width: 242px;
        height: 242px;
    }

    .flexBoxPc {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 64px;
        margin: 64px auto 0;
    }
    
    .example,
    .media,
    .area {
        margin-top: 0;
    }
    
    .example {
        padding: 32px 16px 0 16px;
        text-align: left;
        max-width: 608px;
        height: 412px;
        background-image: url(../images/example_blob_1.png), url(../images/example_blob_2.png), url(../images/example_blob_3.png);
        background-size: 177px, 373px, 232px;
        background-position: left 62px top 0, left 0 bottom, right 0 top 120px;
        background-repeat: no-repeat, no-repeat, no-repeat;
    }
    
    .area,
    .media {
        max-width: 608px;
        height: 412px;
        text-align: left;
        padding: 32px 16px 0 16px;
    }
    
    .example h5,
    .media h5,
    .area h5 {
        font-size: 2rem;
    }
    
    .area h5,
    .media h5 {
        padding-top: 0;
    }
    
    .example h4,
    .media h4,
    .area h4 {
        font-size: 3.2rem;
    }
    
    .example p,
    .area p {
        font-size: 1.8rem;
        margin: 24px 0 0 0;
        width: 600px;
    }

    .media p {
        font-size: 1.4rem;
        margin: 12px 0 0 0;
        width: 600px;
    }
    
    .area p span {
        font-size: 2.6rem;
    }    
}
/* pc 769px */

/* ========================================
where we've been
===========================================*/
.section--where {
    background: linear-gradient(0deg, rgba(250, 250, 242, 0.70) 0%, rgba(250, 250, 242, 0.70) 100%), #F2E5D5;
}

.map,
.schedule {
    margin: 48px auto 0;
}

.map img,
.schedule img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

.map p,
.schedule p {
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    margin: 24px auto 0;
    width: 100%;
}

.map p {
    max-width: 448px;
}

.schedule p {
    max-width: 542px;
}

.googleMyMap iframe {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 24px auto 0;
    display: block;
    border-radius: 12px;
}


.section__btn--where {
    margin-top: 32px;
}

/* where we've been pc */
@media screen and (min-width: 769px) {
    .map,
    .schedule {
        margin: 64px auto 0;
    }

    .map p,
    .schedule p {
        font-size: 1.8rem;
        max-width: 100%;
        text-align: center;
    }

    .section__btn--where {
        margin-top: 48px;
    }

    .googleMyMap iframe {
        margin: 32px auto 0;
    }
}
/* pc 769px */

/* ========================================
sample request
===========================================*/
.sampleRequestTxt {
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    margin: 24px auto 0;
}

.sampleRequest__icon {
    margin: 48px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.sampleRequest__iconList {
    width: 166px;
    height: 166px;
    border-radius: 50px;
    border: 1px solid #282E24;
    background: rgba(90, 51, 3, 0.08);
}

.sampleRequest__iconList img {
    width: 64px;
    height: 64px;
    margin: 30px auto 0;
}

.sampleRequest__iconList p {
    text-align: center;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 24px;
}

/* sample request pc */
@media screen and (min-width: 769px) {
    .sampleRequestTxt {
        font-size: 1.8rem;
        margin: 48px auto 0;
        text-align: center;
    }
    
    .sampleRequest__icon {
        margin: 64px auto 0;
        gap: 16px;
    }
    
    .sampleRequest__iconList {
        width: 200px;
        height: 200px;
    }
    
    .sampleRequest__iconList img {
        width: 82px;
        height: 82px;
        margin: 35px auto 0;
    }
    
    .sampleRequest__iconList p {
        text-align: center;
        font-family: "IBM Plex Sans JP";
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.1;
        margin-top: 30px;
    }
}
/* pc 769px */

/* ========================================
contact
===========================================*/
.section--contact {
    position: relative;
}

.topic--contact {
    color: #B23303;
    text-align: center;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4; 

    display: block;
    padding: 10px 0;
    margin: 0 auto;
    width: 300px;
    background: linear-gradient(90deg, rgba(250, 250, 242, 0.90) 1.67%, #F2E5D5 51.5%, rgba(250, 250, 242, 0.90) 100%);

    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    z-index: 50;
}

.contentBox {
    width: 100%;
    height: 662px;
    margin-top: 32px;
    padding: 90px 0px 0px 0px;
    border-radius: 12px;
    border: 2px solid rgba(90, 51, 3, 0.70);

    position: relative;
}

.contactTxt {
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    padding: 0 3.5%;
}

.nav__btn--contactSection {
    display: block;
    margin: 20px auto 0;
}

.trackRecordTxt {
    display: block;
    font-family: "IBM Plex Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 0 3.5%;

    margin-top: 64px;
}

.trackRecordLink {
    display: inline;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    border-bottom: 1.5px solid rgba(178, 51, 3, 0.50);
}

.trackRecordTxt a {
    position: relative;
    z-index: 1;
}

.contactBox__img0 {
    display: block;
    width: 85%;
    max-width: 450px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.contactBox__img1 {
    display: block;
    width: 17%;
    position: absolute;
    right: 2%;
    top: 380px;
}

.contactBox__img2 {
    display: block;
    width: 17%;
    position: absolute;
    right: 62%;
    bottom: -20px;
}

.contactBox__img3 {
    display: block;
    width: 26%;
    position: absolute;
    left: 2%;
    bottom: 0;
}

/* contact pc */
@media screen and (min-width: 769px) {
    .section--contact {
        padding: 80px 5.5%;
    }
    .topic--contact {
        font-size: 2rem;
        width: 519px;
    }

    .contentBox {
        height: 435px;
        max-width: 1280px;
        margin: 20px auto 0;
        padding: 120px 0px 0px 0px;
    }
    
    .contactTxt {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .nav__btn--contactSection {
        margin: 28px auto 0;
    }
    
    .trackRecordTxt {
        font-size: 1.6rem;
        margin-top: 72px;
        text-align: center;
    }
    
    .trackRecordLink {
        font-size: 1.8rem;
    }

    .contactBox__img0 {
        display: block;
        width: 60%;
        max-width: 350px;
        z-index: -1;
    }

    .contactBox__img1 {
        display: block;
        width: 8.2%;
        position: absolute;
        right: 3%;
        top: 25px;
    }
    
    .contactBox__img2 {
        display: block;
        width: 9.8%;
        position: absolute;
        right: 75%;
        bottom: -25px;
    }
    
    .contactBox__img3 {
        display: block;
        width: 17%;
        position: absolute;
        left: 1.2%;
    }
}
/* pc 769px */