* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
     font-family: "Noto Serif JP", serif;
}
body {
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width:768px) {
    /* body {
        overflow: hidden;
    } */
}

/* ヘッドセクション */
.head {
    width: 100%;
    height: 13vh;
    padding-top: 5px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.46);
    
}
.head p {
    text-align: center;
    padding-top: 30px;
    font-size: 40px;
    font-weight: 600;
}
.head a {
    text-decoration: none;
    color: #333;
}


@media screen and (max-width:768px) {
    .head {
        width: 100%;
        height: 9vh;
        box-shadow: 0px 6px 24px -10px #777777;
        margin-bottom: 20px;
        /* position: sticky;
        top: 0;
        left: 0; */
        /* z-index: 10; */
    }
    .head p {
        padding-top: 20px;
        font-size: 30px;
    }
    
    
}

/* ヘッダーセクション */
header nav {
    width: 100%;
    background-color: #babfc5;
    height: 6vh;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    left: 0;
}
/* header nav:hover {
    background-color: #e2e2e2;
} */
header nav ul {
    height: 6vh;
    max-width: 1000px;
    margin:auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid; */
    
}
header nav ul li {
    list-style: none;
    height: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    /* margin: auto 0; */
    padding-top: 13px;
}
header nav ul li:hover {
    background-color: rgb(217, 221, 222);
}
header nav ul li a {
   color: #494949;
   text-decoration: none;
   /* align-items: center; */
   margin: auto 0;
}
.burger {
    position: absolute;
    top: 31px;
    right: 15px;
    cursor: pointer;
    display: none;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px;
}

@media screen and (max-width:768px) {
    #nav-area {
        position: sticky;
        top: 0;
        left: 0;
    }
    .nav-links {
        width: 90%;
        height: 100vh;
        margin-left: auto;
        display: none;
        transform: translateY(-110px);
        background-color: white;
        box-shadow: -12px 3px 26px -17px #777777;
        /* transform: translateX(100%); */
        transition: .3s;
    }
    header nav ul {
        width: 80%;
        height: 50vh;
        display: block;
        text-align: center;
        margin: 0 auto;
        padding-top: 100px;
        
        /* border: 1px solid; */
    }
    header nav ul li {
        padding-bottom: 15px;
        border-bottom: 1px solid #494949 ;
        /* border: 1px solid #494949 ; */
        height: 17%;
        width: 85%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .burger {
        display: block;
        z-index: 10;
    }
    .open .nav-links {
        display: block;
    }
    .open .line1 {
        transform: translateY(8px) rotate(-315deg);
    }
    .open .line2 {
        opacity: 0;
    }
    .open .line3 {
        transform: translateY(-8px) rotate(315deg);
    }
}

/* メインセクション */
.main {
    max-width: 1000px;
    margin: 0 auto;
    /* border: 1px solid; */
}
.main h1 {
    font-size: 65px;
    margin-bottom: 10px;
}
.main .image {
    text-align: center;
    width: 90%;
    /* border: 1px solid; */
}
.main img {
    width: 90%;
}

@media screen and (max-width:768px) {
    .main h1 {
        font-size: 30px;
        flex-wrap: wrap;
        padding: 0 10px 0 25px;
    }
}

/* whyセクション */
.section1 h2 {
    margin-top: 50px;
    text-align: center;
}
.row {
    width: 75%;
    max-width: 1000px;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
}

.row .col {
    width: 45%;
    /* border: 1px solid; */
    background-color: rgba(249, 249, 249, 0.942);
    padding: 15px;
    padding-bottom: 30px;
    border-radius: 11px;
}
.row .col img {
    width: 100%;
    border-radius: 20px;
}
.row .col h3 {
    font-size: 1rem;
    margin: 7px 3px;
}
.row .col p {
    font-size: 15px;
}
@media screen and (max-width:768px) {
    .row {
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 20px;
    }
    .row .col {
        width: 90%;
        margin: 0 auto;
    }
    .section1 h2 {
        font-size: 25px;
    }
}

/* voiceセクション */
.section2 {
    width: 80%;
    margin: 0 auto;
    
}
h2 {
    text-align: center;
    font-size: 1.7rem;
    margin: 30px;
}
.section2 .voice {
    width: 70%;
    margin: 0 auto;
    background-color: rgba(249, 249, 249, 0.942);
    padding: 10px 20px 20px;
    margin-bottom: 30px;
}
.section2 h3 {
    margin: 10px 0;
}
@media screen and (max-width:768px) {
    .section2 {
        width: 100%;
        margin: 0 auto;
    }
    .section2 .voice {
        width: 90%;
    }
}

/* teamセクション */

.section3 .row-team {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
    /* border: 1px solid; */
    box-shadow: 3px 0px 15px -5px #777777;
    padding: 5px;
    margin-bottom: 25px;
}
.section3 .col-team {
    width: 48%;
    margin: 0 auto;
    /* border: 1px solid; */
    margin: auto 0;
}


.section3 h3 {
    margin-left: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.section3 p {
    margin-left: 10px;
    line-height: 1.5;
}
.section3 img {
    width: 100%;
}

@media screen and (max-width:768px) {
    .section3 .row-team {
        flex-wrap: wrap;
        width: 80%;
    }
    .section3 .col-team {
        width: 100%;
    }
    .section3 img {
        width: 100%;
        /* padding-left: 30px; */
    }
}

/* Locationセクション */
.section7 .row-lacate {
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* border: 2px solid black; */
    /* margin-bottom: 40px; */
    /* gap: 20px; */
}
.section7 .col-locate {
    width: 80%;
    height: 100%;
    /* height: 10vh; */
    margin: 0 auto;
    /* border: 2px solid black; */
    margin-bottom: 13px;
}
.section7 .locate-header {
    width: 80%;
    border: 2px solid #d4d4d4;
    background-color: #ececec;
    padding: 7px 0;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
}
.section7 .locate-header::before {
    content: "+";
    position: absolute;
    font-size: 30px;
    top: -2px;
    left: 20px;
    color: #777777;
    transition: .3s;
}
/* .section7 .back .locate-header::before {
    transform: rotate(45deg);
} */
.section7 p {
    text-align: center;
    font-weight: bold;
}
.section7 .locate-content {
    width: 80%;
    height: 100%;
    border: 2px solid #d4d4d4;
    margin: 0 auto;
    padding: 7px;
    line-height: 1.5;
    display: none;
}
.section7 img {
    width: 100%;
}
.section7 iframe {
    margin-top: 10px;
    width: 100%;
    height: 210px;
}
.section7 .back .locate-content {
    display: block;
}
@media screen and (max-width:768px) {
    .section7 .row-lacate {
        flex-wrap: wrap;
        width: 100%;
    }
    .section7 .col-locate {
        width: 95%;
    }
}

/* Systemセクション */

.section4 .system-box {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
    
}

.section4 h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}
.section4 .system-box h3 {
    /* display: inline-block; */
    text-align: center;
    padding: 2px 7px;
    /* background-color: #777777;
    /* border: 1px solid; */
    /* color: white; */ 
    /* border-radius: 5px; */
}
.section4 .system-row {
    display: flex;
    justify-content: space-between;
}
.section4 .system-col {
    width: 32%;
    border: 1px solid;
    padding:15px 10px 20px 30px;
    margin-top: 15px;
}
.section4 .system-col h4 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}
.section4 .system-col hr {
 width: 90%;
 margin-bottom: 10px;
 margin-top: 10px ;
 color: #e3e3e3;
}
.section4 .system-col .price {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    
}
.section4 .system-col span {
    font-size: 0.9rem;
    margin-left: -2px;
}
.section4 .system-col span {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.section4 .system-col .system-text {
    line-height: 1.7;
}
.section4 .system-col .basic {
    margin-bottom: 75px;
}
@media screen and (max-width:768px) {
    .section4 .system-box {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 40px;
        
    }
    .section4 .system-row {
        flex-wrap: wrap;
        width: 100%;
    }
    .section4 .system-col {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

/* Q&Aセクション */

.section5 .accordion {
    width: 60%;
    margin: 0 auto;
    border: 1px solid #ccc;
    background: #f9f9f9;
    /* margin-bottom: 8px; */
}
.section5 .accordion-header {
    background: #e2e1e1;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: .3s;
}
.section5 .accordion-header::after {
    content: "+";
    position: absolute;
    top: 4px;
    right: 30px;
    font-size: 27px;
    transition: .3s;
}
.section5 .appear .accordion-header::after {
    transform: rotate(45deg);
    /* content: "-";
    position: absolute;
    top: 4px;
    right: 30px;
    font-size: 50px; */
}
.section5 .accordion-header p {
    font-weight: bold;
}
.section5 .accordion-content {
    padding: 20px;
    display: none;
}
.section5 .accordion-content span {
    font-weight: bold;
    margin-right: 5px;
}
/* .section5 .accordion-content{
    display: block;
}  */
.section5 .appear .accordion-content {
    display: block;
}
@media screen and (max-width:768px) {
    .section5 .accordion {
        width: 90%;
        margin: 0 auto;
    }
    .section5 .accordion-header::after {
        content: "+";
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 27px;
        transition: .3s;
    }
    .section5 .accordion-header::after {
        display: none;
    }
}



.active,
.accordion-header:hover {
    background-color: #a6a6a6 !important;
}

/* bookingセクション */

.section6 table {
width: 60%;
margin: 0 auto;
}

.section6 th {
    text-align: left;
    width: 300px;
    padding: 20px 10px;
    /* border: 1px solid white; */
    background-color: rgb(186, 186, 186);
    color: white;
    font-size: 13px;
    font-weight: 300;
}
.section6 td input {
    margin-left: 5px;
    width: 100%;
    height: 40px;
    display: inline-block;
}

.section6 textarea {
    width: 100%;
    height: 70px;
}
.section6 .check {
    width: 60%;
    margin: 0 auto;
    padding-top: 10px;
}
.section6 span {
    margin-left: 5px;
}
.section6 select {
    margin-left: 5px;
    margin-top: 5px;
}
.section6 textarea {
    padding: 10px 5px;
}
.section6 .other {
    padding: 5px;
}

.section6 button {
    width: 100%;
    /* height: 40px; */
    border-radius: 7px;
    border: none;
    background-color: #4ac420;
    color: white;
    font-size: 16px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    margin: 20px 0 25px;
    padding: 9px 18px;
}
@media screen and (max-width:768px) {
    .section6 table {
        width: 100%;
        margin: 0 auto;
        }
        table,tbody,tr,th,td{
            display: block;
        }
        .section6 th {
            margin: 0 auto;
            width: 90%;
            height: 20px;
            margin-bottom: 10px;
        }
        .section6 td {
            width: 90%;
            margin: 0 auto;
            margin-bottom: 10px;
        }
        .section6 td input {
            margin-left: 0;
            padding: 5px;
        }
        .section6 select {
            margin-left:0;
        }
        .section6 .check {
            width: 85%;
        }
}


/* フッターセクション */
footer {
    width: 100%;
    height: 10vh;
    background-color: white;
    /* box-shadow: 0px 6px 24px -10px #777777; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    margin-top: 20px;
}
footer a {
    text-decoration: none;
    color: #333;
}
footer .title a {
    font-weight: bold;
    letter-spacing: 4px;
}
.foot-nav ul {
    display: flex;
    /* gap: 10px; */
    margin-bottom: 10px;
}
.foot-nav ul li {
    list-style: none;
    padding: 2px 10px;
    border-left:  1px solid #ccc ;
}
.foot-nav ul li:last-child {
    border-right:  1px solid #ccc ;
}
.foot-nav ul li a {
    font-size: 14px;
}
.foot-info p {
    font-size: 14px;
    text-align: right;
}
@media screen and (max-width:768px) {
    footer {
        display: inline-block;
        margin-bottom: 10px;
    }
    footer .title {
        text-align: center;
        margin: 0 auto;
        margin-bottom: 7px;
    }
    .foot-nav ul li {
       align-items: center;
        margin: auto 0;
    }
    .foot-info p {
        font-size: 12px;
        text-align: center;
    }
}

/* ミッションセクション */

.mission {
    width: 90%;
    height: 120vh;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    /* border: 1px solid black; */
    padding-top: 50px;
}


.representative {
    width: 70%;
    height: 300px;
    margin: 0 auto;
    background-color: #c6ccd2cc;
    position: relative;
    /* border: 1px solid black; */
    /* margin-top: 100px !important;  */
    /* margin-top: 100px; */
}
.representative img {
    position: absolute;
    top: -67px;
    left: 250px;
}

.representative::after {
    content: "代表取締役社長　星野智希";
    position: absolute;
    bottom: 30px;
    right: 130px;
}
.mission hr {
    width: 70%;
    margin: 0 auto;
}
.mission p {
    width: 70%;
    margin: 30px auto;
    font-size: 17px;
    line-height: 2;
    /* font-weight: bold; */
}
.br-sp {
    display: none;
}
@media screen and (max-width:768px) {
    .mission {
        height: 135vh;
    }
    .representative {
        width: 80%;
        height: 100px;
        margin: 0 auto;
        background-color: #c6ccd2cc;
        position: relative;
    }
    .representative img {
        width: 40%;
        position: absolute;
        top: -25px;
        left: 10px;
    }
    .representative::before {
        content: "代表取締役社長";
        position: absolute;
        bottom: 35px;
        right: 15px;
    }
    .representative::after {
        content: "星野智希";
        position: absolute;
        bottom: 12px;
        right: 15px;
    }
    .mission h2 {
        font-size: 20px;
    }
    .br-sp {
        display: block;
    }
    .mission p {
        width: 70%;
        margin: 30px auto;
        font-size: 17px;
        line-height: 1.5;
        /* font-weight: bold; */
    }
}


/* リクルートセクション */
.rec-info {
    margin-top: 30px;
}
.recruit h2 {
    display: block;
    width: 80%;
    height: 70px;
    background-color: #e2e1e1;
    margin: auto;
    align-items: center;
    padding-top: 15px;
}
.recruit img {
    width: 75%;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
}
.recruit p {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}
.require {
    width: 70%;
    height: 55vh;
    border: 3px solid #777777;
    margin: 0 auto;
    border-radius: 5px;
}
.require h3 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}
.require table {
    border: 1px solid #d4d4d4;
    margin: 0 auto;
    width: 90%;
}

.require .tr1 {
    background-color: #fbfbfb;
    
}
.require td {
    padding: 5px;
    border-bottom: 1px solid #d4d4d4;
}
.require .td1 {
    font-weight: bold;
    width: 30%;
    border-right: 1px solid #d4d4d4;
}
@media screen and (max-width:768px) {
    .require {
        width: 90%;
        height: 73vh;
    }
    .recruit img {
        width: 90%;
    }
    .recruit p {
        padding: 0 20px;
        text-align: left;
    }
    .require .td1 {
        width: 100%;
        border-right: 1px solid #d4d4d4;
    }
}

/* トップへ戻る */
.go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
}
.go-top.active {
    opacity: 1;
    visibility: visible;
}

.go-top a {
    width: 50px;
    height: 50px;
    display: inline-block;
    /* border-radius: 10px; */
    text-align:center;
    background-color: #efeeee;
    text-align: center;
    text-decoration: none;
    /* color: black; */
    line-height: 50px;
    transform: rotate(270deg);
}

/* メディアセクション */
.media h3 {
    font-size: 25px;
}
.media h4 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.media .year {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
}
.media .month {
    margin-bottom: 40px;
}
.media-row {
    display: flex;
    
}
.media-col {
    width: 100%;
}
.media-col img {
    width: 70%;
}
.media-col .safari {
    width: 200px;
}
.media .media5 {
    width: 60%;
}
.media .media6 {
    width: 60%;
}
.media .media7 {
    width: 50%;
}
@media screen and (max-width:768px) {
    .media-col img {
        width: 90%;
    }
    .media .media5 {
        width: 90%;
    }
    .media .media6 {
        width: 90%;
    }
    .media .media7 {
        width: 90%;
    }
}

/* プライバシーセクション */
.privacy {
    width: 70%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 100px;
}
.privacy p {
   line-height: 1.8;
}
.privacy h2 {
    text-align-last: left;
    margin-left: 0;
    border-bottom: 1px solid #a0a0a0;
}
.privacy-content h3 {
    padding: 25px;
    background-color: #f5f6f7;
    margin: 57px 0 32px;
}
.privacy-content ol {
    /* border: 1px solid #000; */
    margin-left: 30px;
    margin-top: 20px;
    line-height: 1.8;
}
.privacy-content .second {
    /* border: 1px solid #000; */
    margin-left: 30px;
    margin-top: 5px;
    line-height: 1.8;
}
.privacy-content .third {
    /* border: 1px solid #000; */
    margin-left: 30px;
    margin-top: 5px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.privacy-content .six {
    margin-top: 20px;
}
.privacy-content .info {
    margin-top: 20px;
}
.privacy .fa-house {
    color: #777777;
    margin-top: 40px;
    margin-left: 20px;
    font-size: 13px;
    margin-right: 4px;
}
.privacy .home a {
    text-decoration: none;
    color: #777777;
    font-size: 13px;
}
@media screen and (max-width:768px) {
    .privacy {
        width: 80%;
    }
}
