@charset 'utf-8';

/* メインビジュアル */
.mv_section {
    max-width: 100%;
    height: max-content;
    padding-top: 50px;
}

.mv {
    justify-content: space-between;
}

.mv_image1 {
    width: 100%;
    margin-top: -50px;
}

.mv_image2 {
    width: 100%;
}

/* キャッチコピー */
/* h2を見えないようにする */
.sr-only {
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    white-space: nowrap !important;
    border: 0 !important;
    clip-path: inset(50%) !important;
}


/* セクションボタン */
.section_button_area {
    justify-content: center;

    margin-top: 2em;
}

.section_button {
    font-weight: bold;
    position: relative;
    align-items: center;
    justify-content: center;

    width: 230px;
    padding: 1em 0;

    transition: .5s;

    color: #fd5c06;
    border: 2px solid #fd5c06;
    border-radius: 60px;
    background-color: #fff;
}

/* ボタンの疑似要素　＞マーク */
.section_button::after {
    position: absolute;
    right: 1.5em;

    display: block;

    width: .5em;
    height: .5em;
    margin-left: .5em;

    content: '';
    transform: rotate(-45deg) translateY(-15%);

    border: 2px solid #fd5c06;
    border-top: 0;
    border-left: 0;
    transition: .5s;
}


.news.section_button {
    color: #fd5c06;
    ;
    border: 2px solid #fd5c06;
    ;
    border-radius: 60px;
    background-color: #fff;
}

.news.section_button:hover {
    background-color: #fd5c06;
    ;
    color: #fff;
}


.news.section_button::after {
    border: 2px solid #fd5c06;
    border-top: 0;
    border-left: 0;
}


.section_button:hover::after {
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
}

/* お知らせ */
.news_section {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    margin-top: 170px;
    padding: 50px 1em;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 3px 3px 25px #241a0615;
}

.news_title {
    font-size: 3.125em;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: -100px;
    margin-top: -.5em;
    text-align: center;
    color: #fd5c06;
}

.news_list {
    font-size: 1.125em;

    align-items: center;
    flex-direction: column;

    margin-top: 3.75em;

    color: #5d5d5d;
    transition: .5s;
}

.news_list dl {
    display: flex;

    max-width: 800px;
    padding: 1em 0;
    color: #5d5d5d;
    margin-inline: auto;
    transition: .5s;

}

.news_list dl a {
    display: block;

}

.news_list dl:hover {
    opacity: .5;
}


.news_list dt {
    font-weight: normal;
}

.news_list dd {
    margin-left: 5em;
}

/* camp in noseについて */
.aboutus_section {
    padding-top: 200px;
    padding-bottom: 200px;
}

.aboutus_wrap {
    width: 100%;
}

.aboutus_title {
    font-size: 3.125em;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 100px;

    color: #3fa3e5;
}

.aboutus_text {
    margin-top: 50px;
    margin-left: 20px;
    line-height: 2;
}

/* 画像部分 */
.aboutus_image_area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 150px;
}

.aboutus_image1 {
    width: 54.17%;
    border-radius: 0 50px 50px 0;
    align-self: flex-start;
}

.aboutus_image2 {
    width: 54.17%;
    align-self: flex-start;
    margin-top: -300px;
    margin-left: -100px;
    z-index: -1;
    border-radius: 50px 0 0 50px;
}

/* 楽しむ */

.enjoy_section_title {
    font-size: 3.125em;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    color: #12b72b;
}

.enjoy_section_text {
    margin-top: 50px;
}

.enjoy_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: 20px;
}

.enjoy_flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* （汎用クラス）楽しむ */
.enjoy_box {
    position: relative;
    display: flex;
    width: 500px;
    height: auto;
    min-height: 300px;
    margin: 60px 30px 0 30px;
    padding: 60px 30px;

    border-radius: 50px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);

}

/* （汎用クラス）楽しむ（背景） */
.enjoy_box::after {
    position: absolute;
    z-index: -1;
    top: -10px;

    width: 100%;
    height: 100%;
    content: '';
    transform: rotate(7deg);
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

/* テント設営の背景 */
.enjoy_box.tent::after {
    background-color: #fd5c06;
}


/* コーヒータイムの背景 */
.enjoy_box.coffee::after {
    background-color: #aad6f3;
}

/* 焚火の背景*/
.enjoy_box.takibi::after {
    background-color: #00bc2b;
}

/* 食事の背景 */
.enjoy_box.eat::after {
    background-color: #faee56;
}

.enjoy_textbox {
    padding-right: 40px;
    height: auto;
}

/* 各セクションのタイトル*/
.enjoy_title {
    font-size: 20px;
    font-weight: bold;
    margin-top: .8em;
    padding-left: 10px;

    border-left: solid #fff;
}

/* テント設営 */
.enjoy_title.tent {
    border-left: solid #fd5c06;
}

/* コーヒータイム　タイトル文字色 */
.enjoy_title.coffee {
    border-left: solid #3fa3e5;
}

/* 焚火 　タイトル文字色*/
.enjoy_title.takibi {
    border-left: solid #00bc2b;
}

/* 食事　タイトル文字色 */
.enjoy_title.eat {
    border-left: solid #faee56;
}

/* 楽しむ　説明文 */
.enjoy_text {
    margin-top: 20px;
    line-height: 2.2;
}

.enjoy_box img {
    max-width: 100%;
    aspect-ratio: 22/18;
    object-fit: cover;
}

/* キャンプ場案内マップ */
.map_section {
    margin-top: 100px;
}


.map_section_title {
    font-size: 3.125em;
    font-weight: bold;

    display: flex;
    margin-top: 200px;

    color: #fd5c06;
}

/* キャンプ場・案内マップの説明文 */
.map_text {
    margin-top: 50px;
}

/* 案内マップ　画像 */
.map_image {
    margin-top: 50px;
    padding: 25px 110px;
    border-radius: 50px;
    background-color: #fff;
}

/* 施設・サービス */
.service_section {
    justify-content: space-between;
    margin-top: 100px;
}

.service_section_title {
    font-size: 3.125em;
    font-weight: bold;
    margin-top: 200px;

    color: #3fa3e5;
}

.service_container {
    justify-content: space-between;
    margin-top: 80px;
    gap: 2%;
}

.service_box {
    width: 300px;
    border-radius: 50px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);

}

.service_title_area {
    position: relative;
}

.service_box_title {
    position: absolute;
    top: -20px;
}

.service_box_title {
    font-size: 1.825em;
    display: inline-block;
    padding: 0 5px 0 5px;
    background-color: #fff;
}

.service_image {
    width: 100%;
    border-radius: 50px 50px 0 0;
}

.service_box_text {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    height: auto;
    padding: 0 40px 0 40px;
    border-radius: 0 0 50px 50px;
    background-color: #fff;
}

.service_box_text p {
    font-weight: medium;
    line-height: 2;
    text-align: justify;
    vertical-align: middle;
}

.service_button_area {
    justify-content: center;
    margin-top: 50px;
}

.service.section_button {
    color: #3fa3e5;
    border: 2px solid #3fa3e5;
    border-radius: 60px;
    background-color: #fff;
}

.service.section_button:hover {
    background-color: #3fa3e5;
    color: #fff;
}


.service.section_button::after {
    border: 2px solid #3fa3e5;
    border-top: 0;
    border-left: 0;
}


.section_button:hover::after {
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
}

/* アクセス */
.access_section {
    position: relative;

    width: 80%;
    margin-top: 180px;

    border-radius: 50px;
    background-color: #fff;
}

/*右側へ要素を広げる（2カラム）*/
.column {
    flex: 1;

    margin-right: calc(50% - 50vw);
    margin-left: 0;
}

.access_section_title {
    font-size: 3.125em;
    font-weight: bold;

    position: absolute;
    top: -40px;

    display: flex;
    justify-content: flex-start;

    margin-left: 50px;

    color: #12b72b;
}

.access_container {
    display: flex;
    margin-top: 15px;
    padding: 50px 50px 50px 50px;
    color: #3e404b;
}

.access_map {
    display: flex;
    width: 95%;
    justify-content: center;
}

.access_contents_area {
    margin-left: 100px;
}

.access_contents_title {
    font-size: 1.25em;
    padding-bottom: 15px;
    border-bottom: 1px solid #b4afaf;
}

.access_textarea {
    line-height: 2em;

    padding: 15px 0;

    border-bottom: 1px solid #b4afaf;
}

/* -----------レスポンシブ対応----------- */


@media (max-width: 1200px) {

    /* お知らせタイトル位置を調整 */
    .news_title {
        top: -15px;
        left: 0px;
    }

    /*アクセス　マップと案内を縦並びに */
    .access_container {
        flex-direction: column;
        align-items: center;
    }

    .access_contents_area {
        margin-top: 50px;
        margin-left: 0px;
    }

    .access_map iframe {
        width: 95%;
    }
}



@media (max-width: 1000px) {

    /* 上下の余白調整 */
    .mv_section {
        max-width: 100%;
        height: max-content;
        padding-top: 20px;
    }

    /* メインビジュアル　左の写真非表示 */
    .mv_image1 {
        display: none;
    }

    .mv_image2 {
        margin-left: 20px;
    }


    /*  お知らせ */

    /* タイトル位置を調整 */
    .news_title {
        top: -15px;
        left: 0px;
    }
}

@media (max-width: 768px) {



    body {
        font-size: 14px;
    }

    /* 各セクションのタイトルの文字の大きさ */
    .aboutus_title,
    .service_section_title,
    .map_section_title,
    .access_section_title {
        font-size: 36px;
    }


    .mv_photo {
        margin-top: 20px;
    }


    /*  お知らせ */


    /* お知らせを2列に */
    .news_list dl {
        align-items: start;
        flex-direction: column;
    }

    /* 左の余白　なし */
    .news_list dd {
        margin-left: 0;
    }

    /* camp in noseについて */
    .aboutus_section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .aboutus_title {
        margin-top: 0;
    }


    .aboutus_wrap {
        flex-direction: column;
    }

    .aboutus_image_area {
        margin-top: 50px;
    }

    .aboutus_image1 {
        margin-top: 100px;
        overflow: hidden;
    }

    .aboutus_image2 {
        margin-top: 0px;
        margin-left: -60px;
        overflow: hidden;
    }

    /* 楽しむ */

    /* box縦並び 余白調整 文字を先、画像を後に */
    .enjoy_box {
        padding: 30px 30px;
        margin: 60px 15px 0 15px;
        flex-direction: column-reverse;
        justify-content: start;
    }

    .enjoy_box::after {
        right: -10px;
        top: -1px;
        transform: rotate(5deg);
    }


    .enjoy_textbox {
        padding-right: 0;
    }

    /* 説明文の行高調整 */
    .enjoy_text {
        line-height: 1.8;
    }

    /* 画像縦横比調整 */
    .enjoy_box img {
        aspect-ratio: 265/180;
    }

    /* キャンプ場・案内マップ */
    .map_section_title {
        margin-top: 0;
    }

    /* 施設・サービス */
    .service_section_title {
        margin-top: 0;
    }

    .service_container {
        flex-direction: column;
        align-items: center;
    }

    /* 2番目以降、ボックスの間隔開ける */
    .service_box+.service_box {
        margin-top: 50px;
    }

    .map_image {
        padding: 25px 2%;
    }

    /* アクセス */
    /*  コンテンツ幅調整 */
    .access_section {
        width: 95%;
    }

    .access_container {
        padding: 50px 12px 50px 12px;
    }

    .access_map,
    .access_table {
        width: 95%;
    }

    /* スマホの時　マップ高さ300pxに */
    .access_map iframe {
        height: 300px;
    }


    /* 
    .access_table {
        margin-top: 8vw;
    } */
}