@charset "UTF=8";
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 text-decoration: none;
 font-family: "hiragino-kaku-gothic-pron", sans-serif;
}
img {
 width: 100%;
 vertical-align: middle;
}
li {
 text-align: left;
 list-style: none;
}
body {
 font-family: sans-serif;
 font-weight: 600;
 word-break: normal;
 line-height: 2;
 letter-spacing: 0.15rem;
 color: #fff;
 background-color: #000;
 font-feature-settings: "palt";
}
body.panelactive {
 overflow: hidden;
}
main {
 padding-top: 50px;
}
section {
    margin-bottom: 50px;
}

h2 {
 line-height: 1.3;
 text-align: center;
 font-size: 18px;
}
article, aside, footer, header, menu, nav, section { 
 display:block;
}
nav ul {
 list-style:none;
}
p {
    letter-spacing: 0;
    font-weight: normal;
}
a {
 margin:0;
 padding:0;
 vertical-align:baseline;
 background:transparent;
 text-decoration:none;
 color: inherit;
 cursor: pointer;
}   
table {
 border-collapse:collapse;
 border-spacing:0;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.mb1 {margin-bottom: 1em;}
.mb2 {margin-bottom: 2em;}
.mb3 {margin-bottom: 3em;}
.mb5 {margin-bottom: 5em;}

.max-1000 {
    width: 98%;
    max-width: 1000px;
    margin: 0 auto;
}
.max-800 {
    max-width: 800px;
    margin: 0 auto;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}

/* --------------------header-------------------- */
header {
    position: fixed;
    width: 100vw;
    background-color: #000;
    z-index: 9999;
}
.header_wrap {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .15em;
}


/* menu */

.menu {
    position: absolute;
    top: 50%;
    right: 25px;
    cursor: pointer;
    width: 25px;
    height: 30px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.menu span {
    display: inline-block;
    height: 1px;
    width: 100%;
    background: #fff;
    transition: all .5s;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.menu span:after {
    content: "";
    width: 0%;
    position: absolute;
    height: 100%;
    background: #c0c0c0;
    transition: 0.2s;
    left: 0;
}
.menu span:nth-of-type(1) {
    top: 10px;
}
.menu span:nth-of-type(2) {
    top: 20px;
}
.menu:hover span:after {
    width: 100%;
}
.menu:hover span:nth-of-type(2)::after {
    transition-delay: 0.1s;
}
.menu.active {
    z-index: 1010;
}
.menu.active span:nth-of-type(1) {
    top: 9px;
    right: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}
.menu.active span:nth-of-type(2) {
    top: 21px;
    right: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}

#h_nav {
    transition: .4s;
    opacity: 1;
    position: fixed;
    z-index: 500;
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 150ms ease-out;
    -o-transition: all 150ms ease-out;
    transition: all 150ms ease-out;
}
#h_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-top: 50px;
    padding-left: 2em;
}
#h_nav ul li{
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 0.3s ease, opacity 0.2s ease;
}
#h_nav li a {
 color: #fff;
 font-size: 14px;
}
#h_nav li a:hover {
    color: #c0c0c0;
}

#h_nav.panelactive {
    width: 33%;
}

#h_nav.panelactive ul li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.3s ease, opacity 0.2s ease;
}
#h_nav ul li.list-01 {
    transition-delay: 0.02s;
}
#h_nav ul li.list-02 {
    transition-delay: 0.05s;
}
#h_nav ul li.list-03 {
    transition-delay: 0.08s;
}
#h_nav ul li.list-04 {
    transition-delay: 0.12s;
}
#h_nav ul li.list-05 {
    transition-delay: 0.15s;
}
#h_nav ul li.list-06 {
    transition-delay: 0.18s;
}
#h_nav ul li.list-07 {
    transition-delay: 0.22s;
}


/* --------------------footer-------------------- */
footer {
    text-align: center;
}
.f_nav {
    background-color: #000;
    padding: 3em 1em 1.5em;
}
.f_nav ul {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}
.f_nav li {
    position: relative;
    font-size: 10px;
}
.f_nav li::after {
    background-color: #fff;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    transition: .5s all;
    width: 0;
}
.f_nav li:hover:after {
    width: 100%;
}
.f_nav li.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.f_contact {
    padding: 1em;
}
.f_contact ul {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    font-size: .75em;
}

.f_contact li img {
    height: 1.5em;
    width: auto;
}
.f_copyright {
    margin-top: 3em;
    padding-bottom: 1em;
}
.f_copyright a {
    display: block;
    font-weight: 400;
    width: fit-content;
    margin: 0 auto;
}
footer small {
    letter-spacing: 0;
    font-weight: lighter;
}


/* --------------------共通エリア-------------------- */
/* about us  */
.about-us {
    background-image: url(../img/bk_about.jpg) ;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    background-attachment: fixed;
}
.about-us_wrap {
    text-align: center;
    color: #f1f1f1;
    width: 50%;
    margin: 0 auto;
}
.about-us_wrap h2 {
    margin: 0 0 10px;
    line-height: 1.3;
    font-weight: 600;
}
.about-us_wrap a {
    display: inline-block;
    border: 1px solid #f1f1f1 !important;
    color: #f1f1f1;
    padding: .5em 2em;
    font-size: 13px;
}
.about-us_wrap a:hover {
    color: #444;
    background-color: #f1f1f1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* contact  */
.contact {
    background-image: url(../img/bk_contact.jpg) ;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    background-attachment: fixed;
}
.contact_wrap {
    text-align: center;
    color: #f1f1f1;
    width: 50%;
    margin: 0 auto;
}
.contact_wrap h2 {
    margin: 0 0 10px;
    line-height: 1.3;
    font-weight: 600;
}
.contact_wrap a {
    display: inline-block;
    border: 1px solid #f1f1f1 !important;
    color: #f1f1f1;
    padding: .5em 2em;
    font-size: 13px;
}
.contact_wrap a:hover {
    color: #444;
    background-color: #f1f1f1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}



/* --------------------HOME-------------------- */
.pg_home {
    background-color: #fff;
}
/* kv */
.pg_home .kv {
    padding-bottom: 30px;
}
.kv ul li img {
    height: calc(100vh - 50px);
    width: 100%;
    object-fit: cover;
}
.pg_home .kv .slick-next,
.pg_home .kv .slick-prev,
.slick-next:before,
.slick-prev:before {
    display: none !important;
}
.pg_home .kv ul{
    display: flex;
}
.pg_home .kv .kv_slider li {
    width: 100vw;
}
.pg_home .kv ul.slick-dots {
    width: 50px;
    right: 5vw;
}
.pg_home .kv ul.slick-dots li button:before {
    content: "";
    background-color: #000;
    border-radius: 50%;
    width: 5px;
    height: 5px;
}

/* GUIDE */
.pg_home .guide h2 {
    background-color: #000;
    padding: .5em 0;
}
.pg_home .guide ul{
    display: flex;
}
.pg_home .guide ul li {
    padding: 1em;
}
.pg_home .guide ul li img {
    max-width: 100%;
}
.prev-arrow {
    position: absolute;
    left: 4vw;
    top: 49%;
    width: 30px;
    height: 30px;
    z-index: 1;
    transform: translateY(-50%);
}
.prev-arrow::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(-135deg);
}
.next-arrow {
    position: absolute;
    right: 4vw;
    top: 49%;
    width: 30px;
    height: 30px;
    z-index: 1;
    transform: translateY(-50%);
}
.next-arrow::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}



/* --------------------ABOOUT US-------------------- */

.pg_about h1 {
    text-align: center;
    margin: 2em 0;
    font-size: 20px;
}
.pg_about section {
    margin: 100px auto;
}
.pg_about  .profile-wrap {
    position: relative;
    padding-top: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.pg_about .profile h2 {
    font-size: 24px;
    height: 40px;
    background-color: #000;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 13.5%;
}


/* profile(staff) */
.pg_about .profile__content {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;  
}
.pg_about .staff .profile__content {
    margin-bottom: 60px;
}
.pg_about .profile .profile__content figure {
    flex: 3;
}
.pg_about .staff .profile__content figure {
    flex: 3;
}
.pg_about .profile .profile__content figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.pg_about .staff .profile__content figure img {
    object-fit: cover;
    height: 100%;
}

.pg_about .profile .profile__content .profile__content_wrap {
    flex: 2;
    background-color: #fff;
}
.pg_about .profile .profile__content_box {
    color: #000;
    padding: 1.5em 3em;
}
.pg_about .staff .profile__content_box {
    padding: 1.5em 3em;
    flex: 2;
    background-color: #fff;
    color: #000;
}
.pg_about .profile .profile__content_box h3,
.pg_about .staff .profile__content_box h3 {
    text-align: center;
    text-decoration: underline #000;
    text-underline-offset: .5em;
    font-size: 16px;
}
.pg_about .profile__content_box .txt p {
    font-size: .75em;
}

/* message */
.pg_about .message {
    text-align: center;
}
.pg_about .message__content {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 3em;
    text-align: left;
}
.pg_about .message__content p {
    font-size: .75em;  
}

.pg_about .message a {
    display: inline-block;
    border: 1px solid #f1f1f1 !important;
    color: #f1f1f1;
    padding: .5em 1.2em;
    font-size: 10px;
}
.pg_about .message a:hover {
    color: #444;
    background-color: #f1f1f1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.pg_about .message a img {
    width: 1em;
    height: 1em;
}
.pg_about .contact {
    margin-bottom: 0;
}

/* --------------------guide-------------------- */
.pg_guide .surfing,
.pg_guide .golf,
.pg_guide .sightseeing {
    margin: 100px auto;
}

.pg_guide .guide_photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}
.pg_guide .guide_photo li:nth-child(odd) {
    grid-column: 1;
}
.pg_guide .guide_photo li:nth-child(even) {
    grid-column: 2;
}
.pg_guide .guide_photo li:last-child {
    grid-column: 1/3;    
}

.pg_guide .guide_txt {
    font-size: .75em;
}
.pg_guide .guide_txt p {
    padding-bottom: 60px;
    text-align: center;
}

.pg_guide .contact_box {
    text-align: center;
}
.pg_guide .contact_box a {
    display: inline-block;
    border: 1px solid #f1f1f1 !important;
    color: #f1f1f1;
    padding: 0.5em 2em;
    font-size: 13px;
}
.pg_guide .contact_box a:hover {
    color: #444;
    background-color: #f1f1f1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* --------------------Price-------------------- */
.pg_price h1 {
    text-align: center;
    margin: 2em 0;
    font-size: 20px;
}
.pg_price .surfing, 
.pg_price .golf,
.pg_price .sightseeing  {
    margin: 100px auto;
}
.pg_price .price__content {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.pg_price .price__content_box {
    width: 30%;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 2em;
    color: #000;
    font-size: .75em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pg_price .price__content_box figure {
    text-align: center;
    margin: 1em;
}
.pg_price .price__content_box img {
    max-height: 80px;
    width: auto;
}
.pg_price .price__content_box table {
    margin: 0 auto;
    font-weight: normal;
}
.pg_price .price__content_box table  td {
    padding-left: 1em;
}
.pg_price .price__content_box p {
    text-align: right;
}
.pg_price .price_txt {
    text-align: center;
    font-size: .75em;
}
.pg_price .sightseeing .price_txt {
    text-align: center;
}
.pg_price .price_txt  img {
    width: 3em;
}
.pg_price .price_gide-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .75em;
    margin: 50px auto;
}
.price_gide-link p {
    padding-bottom: 60px;
}
.pg_price .price_gide-link a {
    display: inline-block;
    border: 1px solid #f1f1f1 !important;
    color: #f1f1f1;
    padding: .5em 2em;
    font-size: 13px;
}
.pg_price .price_gide-link a:hover {
    color: #444;
    background-color: #f1f1f1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.pg_price .golf .price__content_box table {
    height: 6em;
}
.pg_price .sightseeing .price__content {
    justify-content: center;
}

/* --------------------Contact-------------------- */
.pg_contact h1 {
    text-align: center;
    margin: 2em 0;
}
.pg_contact .contact_txt {
    font-size: .75em;
    text-align: center;
}
.pg_contact .contact_txt table {
    margin: 0 auto 2em;
    text-align: left;
    font-weight: normal;
}
.pg_contact .contact_txt table th {
    position: relative;
    padding-right: 3em;
}
.pg_contact .contact_txt table th img {
    width: 1em;
}
.pg_contact .contact_txt table th::after {
    content: ":";
    padding: 0 1em;
    position: absolute;
}
.pg_contact .contact_txt .contact_txt_box p {
    line-height: 2.3;
}

/* --------------------FAQ-------------------- */
.pg_faq h1 {
    text-align: center;
    margin: 2em 0;
    font-size: 20px;
}
.pg_faq .faq_content {
    font-family: .75em;
    margin-bottom: 100px;
}
.pg_faq .faq_box {
    border: solid 1px #fff;
    padding: 1.5em;
}
.pg_faq .faq_box p {
    padding-left: 2em;
}
.pg_faq .faq_box .question {
    position: relative;
    margin-bottom: 1em;
}
.pg_faq .faq_box .question img {
    width: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* --------------------privacy-------------------- */
.pg_privacy h1 {
    text-align: center;
    margin: 2em 0;
}
.pg_privacy .contact_txt ul {
    padding-left: 2em;
}
.pg_privacy .contact_txt ul li {
    list-style-type: decimal;
    font-weight: normal;
}
.pg_privacy .contact_txt ul li ul li {
    list-style-type: disc;
}


/* -------------------------------------------- */
/* -------------------- SP -------------------- */
/* -------------------------------------------- */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    h2 {
        font-size: 18px;
    }

    /* --------------------header-------------------- */
    header p {
        font-size: 12px;
    }
    /* menu */
    .menu {
        top: 40%;
        right: 15px;
        width: 20px;
        height: 25px;
    }
    #h_nav.panelactive {
        width: 100%;
    }

    /* --------------------footer-------------------- */
    .f_nav ul {
        flex-wrap: wrap;
        gap: 8px;
    }
    .f_nav ul li {
        width: 30%;
        text-align: center;
    }
    .f_contact ul {
        justify-content: space-evenly;
    }
    .f_contact li a span {
        display: none;
    }
    .f_copyright a {
        font-size: 10px;
    }
    footer small {
        font-size: 10px;
    }

    /* --------------------共通エリア-------------------- */
    /* about us  */
    .about-us {
        background-attachment: fixed;
        height: 50vh;
    }
    .about-us_wrap a {
        font-size: 10px;
    }
    /* contact  */
    .contact  {
        background-attachment: fixed;
        height: 50vh;
    }

    .contact_wrap a {
        font-size: 10px;
    }

    /* --------------------HOME-------------------- */

    /* kv */
    .pg_home .kv ul.slick-dots {
        display: none;
    }

    /* GUIDE */
    .pg_home .guide h2 {
        font-size: 14px;
    }
    .pg_home .guide ul li {
        padding: 0;
    }

    /* --------------------ABOOUT US-------------------- */
    .pg_about .profile h2 {
        left: 50%;
        transform: translate(-50%);
    }
    /* profile(staff) */

    .pg_about .profile__content {
        flex-direction: column;
    }
    .pg_about .profile .profile__content figure {
        margin-top: 0;
    }

    /* message */
    .pg_about .message__content {
        padding: 1.5em 3em;
    }

    /* --------------------guide-------------------- */
    .pg_guide .surfing,
    .pg_guide .golf,
    .pg_guide .sightseeing {
        margin: 100px auto;
    }
    .guide_txt {
        padding: 0 1em;
    }
    .pg_guide .guide_photo {
        gap: 10px;
    }
    .pg_guide .contact_box a {
        font-size: 10px;
    }


    /* --------------------Price-------------------- */
    .pg_price .price__content {
        flex-direction: column;
        gap: 30px;
    }
    .pg_price .price__content_box {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1em;
    }
    .pg_price .price_txt {
        padding: 0 3em;
    }
    .pg_price .price_gide-link a {
        font-size: 10px;
    }

    /* --------------------Contact-------------------- */
    .pg_contact h1 {
        font-size: 20px;
    }
    .contact_txt {
        padding: 0 1em;
    }

    /* --------------------FAQ-------------------- */
    .faq_content {
        padding: 0 1em;
    } 
    .pg_faq .faq_content p.mb1 {
        font-size: 14px;
    }
    .pg_faq .faq_box {
        font-size: 12px;
    }
    .pg_faq .faq_box .question img {
        top: 8px;
        transform: none;
    }

}
