@charset "utf-8";


#souzoku-documents ul {
    padding-left: 0;
}


.docuBox {
    display: flex;
    /* flex-direction: column; */
    width: 100%;
    flex-wrap: wrap;
}

.docuBox ul {
    padding-left: 0;
    list-style-type: none;
}

@media screen and (min-width: 768px) {
    .docuBox {
        flex-direction: row;
        /* justify-content: space-between; */
    }

    .docuBox .inner {
        width: 49%;
    }

    .docuBox .inner:last-child {
        width: 40%;
    }

    #Page-souzoku .docuBox .inner:last-child {
        width: 25%;
    }
}

/***************************************************
faq
***************************************************/
.faq {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1em 0;
}
.faq-question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 2em;
}

.faq-question span, .faq-answer span {
    font-size: 200%;
    font-family: 'Roboto' , sans-serif;
    font-weight: bold;
}
.faq-question::after {
  content: "＋";
  position: absolute;
  right: 0;
}
.faq-question.active::after {
  content: "−";
}
.faq-answer {
  display: none;
  padding-top: 0.5em;
  color: #444;
}


.faq-answer span {
    color: #07A5B0;
}

/***************************************************
contact-bar
***************************************************/
.contact-bar {
    position: relative;
    width: 100%;
    height: 300px;
    z-index: 5;
    background: linear-gradient(90deg,#07a5b048, #0e018634);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.contact-bar img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.2;
    z-index: 4;
}

.contact-bar-Box {
    position: relative;
    z-index: 7;
    display: flex;
    flex-wrap: wrap;
}

.contact-bar-Box h3 {
    width: 100%;
    margin-bottom: 30px;
}

.contact-bar-Box .inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-bar-Box .inner a {
    display: block;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .contact-bar-Box .inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-bar-Box .inner a {
        width: 45%;
        padding: 20px 0;
    }
}



.gaiyouBox {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    flex-wrap: wrap;
}

.gaiyouBox .inner-text {
    width: calc( (100% - 50px) *0.7);
}

.gaiyouBox .inner-img {
    width: calc( (100% - 50px) *0.3);
}

@media screen and (max-width: 767.98px) {

    .gaiyouBox { 
        flex-direction: column;
    }
    .gaiyouBox .inner-text,
    .gaiyouBox .inner-img {
        width: 100%;
    }
}