@charset "UTF-8";


/* contact.html */
/*-------------------------------------------*/
section { text-align: center; }
section:not(.contact-main) {
    padding: 5em 0;
}

.contact-section-title {
    color: #333;
    font-size: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-lead {
    color: #333;
    font-size: 20px;
    line-height: 1.8em;
    margin-bottom: 20px;
}
.contact-text {
    color: #333;
    font-size: 16px;
    line-height: 1.8em;
}
@media screen and (max-width: 767px) {
    section:not(.contact-main) {
        padding: 2.0em 0;
    }
    
    .contact-section-title {
        font-size: clamp(22px, 3.75vw, 26px);
        margin-bottom: 20px;
    }
    .contact-lead {
        font-size: clamp(14px, 3.25vw, 16px);
        text-align: left;
    }
    .contact-text {
        font-size: clamp(13px, 3.0vw, 14px);
        text-align: left;
    }
    
}


/* contact-main */
/*-------------------------------------------*/
.contact-main {
    padding: 7.5em 0;
    background: url(../images/contact-main-back.png) no-repeat;
    background-position: center top;
    background-size: cover;
}
.contact-main__content {
    text-align: left;
    width: fit-content;
    margin: 0 0 20px;
}

.contact-main__catch {
    font-size: 36px;
    line-height: 1.5em;
    margin: 0 0 30px;
}
.contact-main__lead {
    font-size: 18px;
    line-height: 2em;
}
.contact-main__strength {
    margin-top: 30px;
}
.contact-main__strength li {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-main__strength li + li {
    margin-top: 10px;
}
.contact-main__strength li::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url("../images/i_check.png") no-repeat;
    background-size: contain;
    margin-right: 10px;
}
@media screen and (max-width: 767px) {
    .contact-main {
        margin-top: 68px;
        padding: 0 0;
        background-position: center right 40%;
        background-size: cover;
    }
    .contact-main .mywidth {
        padding: 2.0em 2.5vw;
        background: rgba(255, 255, 255, 0.5);
    }
    .contact-main__content {
        margin: 0 0 0;
    }

    .contact-main__catch {
        font-size: clamp(24px, 7.5vw, 28px);
        margin: 0 0 10px;
    }
    .contact-main__lead {
        font-size: clamp(14px, 3.25vw, 16px);
        line-height: 1.8em;
    }
    
    .contact-main__strength {
        margin: 20px auto;
        flex-direction: column;
        gap: 10px;
    }
    .contact-main__strength li {
        width: 100%;
        font-size: clamp(13px,3.0vw,14px);
    }
    .contact-main__strength li::before {
        width: 16px;
        height: 16px;
    }
    
}


/* .contact-reason */
/*-------------------------------------------*/
.contact-reason__content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3.5em;
}
.contact-reason__todo,
.contact-reason__result {
    text-align: left;
    width: calc((100% - 3.5em) / 2);
    padding: 0 0;
    background: #fff;
    box-shadow: 0 3px 13px #ddd;
    border-radius: 8px;
}
.contact-reason__title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 20px;
    color: #fff;
    background: #333;
    border-radius: 8px 8px 0 0;
}
/* contact-reason__todo */
.contact-reason__todo ul {
    padding: 0 1.5em 1.5em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.contact-reason__todo ul li {
    max-width: 180px;
}
.contact-reason__todo li figure {
    width: 100px;
    margin: auto;
}
.contact-reason__todo li p {
    color: #333;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}
/* contact-reason__result */
.contact-reason__result dl {
    padding: 0 1.5em 1em;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.contact-reason__result dl dt {
    text-align: center;
    line-height: 1.8em;
    width: 5em;
    border: 1px solid #333;
    margin-bottom: 15px;
}
.contact-reason__result dl dd {
    line-height: 1.8em;
    width: calc(100% - 6em);
    padding-left: 20px;
    margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
    
    /* contact-reason__todo */
    .contact-reason__todo li p {
        font-size: 1.75vw;
    }
}
@media screen and (max-width: 767px) {
    .contact-reason__content {
        flex-direction: column;
        gap: 20px;
    }
    .contact-reason__todo,
    .contact-reason__result {
        width: 100%;
    }
    .contact-reason__title {
        font-size: clamp(16px, 3.75vw, 18px);
    }
    /* contact-reason__todo */
    .contact-reason__todo ul {
        padding: 0 1em 1em;
        gap: 15px;
    }
    .contact-reason__todo li figure {
        width: 100%;
        height: auto;
    }
    .contact-reason__todo li p {
        font-size: clamp(12px, 3vw, 14px);
    }
    /* contact-reason__result */
    .contact-reason__result dl {
        padding: 0 1em 1em;
    }
    .contact-reason__result dl dt {
        font-size: clamp(13px, 3.0vw, 14px);
        margin-bottom: 10px;
    }
    .contact-reason__result dl dd {
        font-size: clamp(13px, 3.0vw, 14px);
        padding-left: 15px;
        margin-bottom: 10px;
    }
    
}


/*  */
/*-------------------------------------------*/
.contact-check__list {
    width: fit-content;
    max-width: 35em;
    margin: 30px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-check__list > li {
    width: calc((100% - 20px) / 2);
    text-align: left;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.contact-check__list > li::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../images/i_check.png") no-repeat;
    background-size: contain;
    margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
    .contact-check__list {
        width: 100%;
        margin: 20px auto;
        flex-direction: column;
        gap: 10px;
    }
    .contact-check__list > li {
        width: 100%;
        font-size: clamp(13px,3.0vw,14px);
    }
    .contact-check__list > li::before {
        width: 16px;
        height: 16px;
    }
}



/* .contact-flow */
/*-------------------------------------------*/
.contact-flow__list {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
}
.contact-flow__card {
    width: 220px;
    position: relative;
}
.contact-flow__card::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #00afcc;
    position: absolute;
    top: 40%;
    right: -36px;
}
.contact-flow__card:last-of-type::after { content: none; }
.contact-flow__card figure {
    margin-bottom: 15px;
}
.contact-flow__card p {
    font-size: 16px;
    line-height: 1.6em;
}
@media screen and (max-width: 767px) {
    .contact-flow__list {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .contact-flow__card {
        width: 77%;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .contact-flow__card figure {
        width: 90px;
        margin-bottom: 0;
    }
    .contact-flow__card p {
        font-size: clamp(14px, 3.25vw, 16px);
        text-align: left;
    }
    .contact-flow__card::after {
        border-top: 10px solid #00afcc;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        top: inherit;
        bottom: -27px;
        left: 50%;
    }
    
    .contact-flow .contact-text { text-align: center; }
}



/* contact-cost */
/*-------------------------------------------*/
.cost-box {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background: #f4fdff;
  border: 2px solid #00afcc;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.cost-label {
  font-size: 18px;
  font-weight: bold;
  color: #00afcc;
  margin-bottom: 20px;
}
.cost-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cost-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px dashed #ddd;
}
.cost-list li:last-child { border-bottom: none; }
.cost-list span { color: #333; }

/* 0円 */
.cost-list strong {
  color: #ff8a00;
  font-size: 20px;
}
/* 費用発生 */
.cost-list .black {
    color: #333;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .cost-box {
        padding: 1em 1em;
    }
    .cost-list li {
        font-size: clamp(14px, 3.25vw, 16px);
    }
}




/* #contact_form  */
/*-------------------------------------------*/
#contact_form {
    padding-top: 60px;
}
#contact_form .section_wrap {
    padding: 60px 80px;
    text-align: left;
}
@media screen and (max-width: 767px) {
    #contact_form {
        padding-top: 2.5em;
    }
    #contact_form .section_wrap {
        padding: 20px 15px 20px;
        margin: 5px 5px 40px 5px;
    }
    
}


