@charset "UTF-8";


:root {
    --color-primary: #3B20A2;
    --color-secondry: #4652A1;
    --color-red: #EB322D;
    --color-yellow: #FFDA1B;
    --bg-light-blue:#F1F4FD;
}

html {
    font-size: 62.5%;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased !important;
}
body{
    color: #1a1a1a;
    font-family: "Outfit","Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.tx-red{
    color:var(--color-red);
}
.bg-blue{
    background-color: #EFF2FF;
}


a {
    color: #004ea2;
    text-decoration: underline;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
a:focus,
a:active,
a:hover {
    color: #004ea2;
    text-decoration: none;
}


.section-heading{
    margin-bottom:3.2rem;
    text-align: center;
}
.section-heading .sub-ttl {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
}
.section-heading .sub-ttl span{
    background: linear-gradient(var(--color-primary), var(--color-primary)) 0 100% / 100% 1px no-repeat;
}
.section-heading .main-ttl{
    font-size:4.8rem;
    font-weight: 900;
    line-height:1.3;
    padding-top:.8rem;
}
.lead-copy{
    text-align: center;
}
@media screen and ( max-width:768px) {
    .section-heading{
        margin-bottom:2rem;
    }
    .section-heading .sub-ttl {
        font-size: 1.5rem;
    }
    .section-heading .main-ttl{
        font-size:2.8rem;
        padding-top:.8rem;
    }
}




body{
    width: 100%;
    font-size: 1.6rem;
    font-feature-settings: 'palt';
    letter-spacing:.02em;
    line-height: 1.8;
}
@media only screen and ( max-width:960px) {
    body{
        font-size: 1.5rem;
    }
}

/* Frame Format
---------------------------------*/
#wrapper {
    width: 100%;
    position: relative;
    padding-top:8rem;
}
.inner {
    max-width: 112rem;
    margin: 0 auto;
    padding: 0 2rem;
}
.inner-w {
    max-width: 112rem;
    margin: 0 auto;
    padding: 0 2rem;
}
@media screen and ( max-width:768px) {
    #wrapper {
        padding-top: 0;
    }
}



.link-btn{
    background-image: linear-gradient(#fa9c16, #f76a0c);
    border: .1rem solid #fa9c16;
    border-radius: 8rem;
    color: #fff !important;
    transition: 0.3s ease all;
    position: relative;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 10rem;
    overflow: hidden;
    text-decoration: none;
}
.link-btn .txt{
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left:3.8rem;
}
.link-btn .txt::after {
    background-image: url(../img/icon-contact.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    content: '';
    display: block;
    height: 3rem;
    left: 0;
    position: absolute;
    top: calc(50% - 1.5rem);
    width: 3rem;
}

.shine-btn::before {
    animation: 2s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
    width: 100%;
}
@keyframes shine {
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media screen and ( max-width:768px) {
    .link-btn{
        height: 8rem;
        overflow: hidden;
        text-decoration: none;
    }
    .link-btn .txt{
        font-size: 2rem;
        padding-left:2.4rem;
    }
    .link-btn .txt::after {
        height: 1.8rem;
        top: calc(50% - .9rem);
        width: 1.8rem;
    }
}
@media (hover: hover){
    .link-btn:hover{
        filter: brightness(1.2);
        transform: translateY(3px);
        box-shadow: none;
    }
}
@media (hover: none) {
    .link-btn a:active{
        transform: scale(.95);
    }
}




/* header
---------------------------------*/
#header{
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
    padding: 0 3.2rem;
    width: 100%;
    z-index: 9;
}
#header .header-left-logo{
    align-items: center;
    display: flex;
    gap: 1.6rem;
}
#header .header-left-logo .logo{
    height: auto;
    width: 26rem;
}
#header .header-left-logo .info{
    border:.1rem solid var(--color-secondry);
    border-radius: .4rem;
    color: var(--color-secondry);
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.22;
    padding: .3rem .8rem .2rem .8rem;
}

#header .header-right__contact{
    background-image: linear-gradient(#fa9c16, #f76a0c);
    border:.1rem solid #fa9c16;
    border-radius: 8rem;
    color: #fff;
    display: flex;
    padding: 1.6rem 2.4rem;
    align-items: center;
    transition: 0.4s ease all;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
#header .header-right__contact:hover{
    filter: brightness(1.2);
}
#header .header-right__contact .txt{
    position: relative;
    padding-left:2.4rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}
#header .header-right__contact .txt::after {
    background-image: url(../img/icon-contact.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    content: '';
    display: block;
    height: 1.8rem;
    left: 0;
    position: absolute;
    top: calc(50% - .9rem);
    width: 1.8rem;
}

@media screen and (min-width: 769px) {
    #header{
        position: fixed;
        top: 0px;
        left: 0px;
    }
}

@media screen and (max-width: 768px) {
  #header{
    height:6rem;
    padding: 1rem;
    justify-content: center;
  }
  #header .header-left-logo{
    gap: 1.2rem;
  }
  #header .header-left-logo .logo{
    height: auto;
    width: 20rem;
    margin: 0 auto
  }
  #header .header-left-logo .info{
    font-size:1rem;
  }
  #header .header-right{
    display: none;
  }
}


/* Mv
---------------------------------*/
#mv{
    background-image: linear-gradient(90deg, #421cd1,#3b20a2 );
    position: relative;
    padding:2.4rem 0 0 ;
}
#mv::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 291px;
    height: 247px;
    opacity: .2;
    background: url(../img/mv-l-img.webp) center / cover;
}
#mv::after{
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 384px;
    height: 224px;
     opacity: .2;
    background: url(../img/mv-r-img.webp) center / cover;
}
#mv .inner{
    display: grid;
    grid-template-columns: 1fr 44.8rem;
    gap:0 3.2rem;
    align-items: flex-end;
    z-index: 1;
    position: relative;
}
.form-block{
    background-color: #fff;
    border-radius:1.6rem 1.6rem 0 0;
    padding:1.6rem 2.4rem 2.4rem;
    position: relative;
}
.form-block .form-block-icon{
    position: absolute;
    top:-1.6rem;
    left:-1.6rem;
    width:5.6rem;
    height: auto;
}
.form-block_ttl {
    color:var(--color-primary);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom:1.6rem;
    text-align: center;
}
.form-block_ttl span{
    background: linear-gradient(var(--color-primary), var(--color-primary)) 0 100% / 100% 3px no-repeat;
}
@media screen and (max-width: 1080px) {
    #mv .inner{
        grid-template-columns: 1fr;
        gap:0;
    }
    #mv .mv-left{
        text-align: center;
    }
    #mv::before{
        width: 180px;
        height: 153px;
    }
    #mv::after{
        width: 240px;
        height: 140px;
    }
    .form-block_ttl {
        font-size: 2rem;
        margin-bottom:1.6rem;
    }
    .form-block{
        border-radius:1rem 1rem 0 0;
        padding:2.4rem 2rem;
    }
}


.form-item{
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
}
.form-item dt {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
    width: 100%;
    line-height: 1.2;
    position: relative;
    margin-bottom: .4rem;
}
.form-item dd{
    width: 100%;
}
.form-item dt.required{
    display: flex;
    align-items: center;
}
.form-item dt.required::after {
    background-color: var(--color-primary);
    border-radius: .4rem;
    content: "必須";
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    padding: .4rem .4rem .4rem;
    margin-left: 1rem;
}
form input[type="text"],
form input[type="tel"],
form input[type="url"],
form input[type="email"],
form input[type="number"],
form input[type="password"] {
    padding: .8rem 5rem .8rem 1.6rem;
    height: 4.2rem;
    font-size: 1.6rem;
    border: 1px solid #E0E0E0;
    background: #F2F2F2;
    border-radius: .4rem;
    box-shadow: none;
    max-width: 100%;
    width: 100% !important;
}
form textarea {
    padding: 1.6rem;
    font-size: 1.6rem;
    border: 1px solid #E0E0E0;
    background: #fff;
    border-radius: .4rem;
    box-shadow: none;
    max-width: 100%;
  width: 100% !important;
}
form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="url"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form input[type="password"]:focus {
    outline: none;
    background: #fff;
    border: 1px solid var(--color-primary);
}
.wpcf7-list-item {
    margin: 0 !important;
}
.select-box {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
}
.select-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 8px 40px 8px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1px solid #C8D2E0;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.select-box select:hover,
.select-box select:focus {
    outline: none;
    border-color: var(--color-primary);
}
.select-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none;
}
.contact__privacy {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 1.4rem;
    margin-top:1rem;
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]+span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  line-height: 2;
  padding-left: 2.8rem;
}
.wpcf7-acceptance label input[type=checkbox]+span:before {
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: .3rem;
}
.wpcf7-acceptance label input[type=checkbox]+span:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 10px;
  top: calc(50% - 2px);
  left: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: transform .3s;
}
.wpcf7-acceptance label input[type=checkbox]:checked+span:before {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
}
.wpcf7-acceptance label input[type=checkbox]:checked+span:after{
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1.1);
}
.contact__privacy a {
    position: relative;
    z-index: 2;
}




.form-footer {
    text-align: center;
    margin: 1.6rem auto 0;
    max-width: 20rem;
}
.form-footer .btn-submit {
    background-image: linear-gradient(#fa9c16, #f76a0c);
    border:.1rem solid #fa9c16;
    color: #fff;
    padding:.8rem 1.6rem;
    border-radius: 8rem;
    border: none;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
}
.form-footer .btn-submit:hover{
    filter: brightness(1.2);
}


/* Problem
---------------------------------*/
#problem{
    padding:6.4rem 0 9.6rem;
}
.problem-heading{
    font-size:4.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom:3.2rem;
    text-align: center;
}
.problem-heading span{
    display: block;
    font-size:3.2rem;
}
.problem-heading .tx-underline{
    color:var(--color-primary);
    background: linear-gradient(var(--color-primary), var(--color-primary)) 0 100% / 100% 5px no-repeat;
}
.problem-list.grid-col-2{
    margin-top:3.2rem;
    column-gap: 2.4rem;
    row-gap: 2.4rem;
}
.problem-list .item{
    border:.1rem solid #DDE3EC;
    border-radius: .8rem;
    display: grid;
    grid-template-columns: 9rem 1fr;
    column-gap: 1.6rem;
    padding:1.6rem;
}
.problem-list .item .ttl{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom:.8rem
}
.problem-list .item .txt{
    font-size:1.4rem;
}
@media only screen and (max-width: 768px) {
    #problem{
        padding:5rem 0 6.4rem;
    }
    .problem-list.grid-col-2{
        row-gap: 1.6rem;
        margin-top:2.4rem;
    }
    .problem-heading{
        font-size:3rem;
        margin-bottom:2.4rem;
    }
    .problem-heading .tx-underline{
        background: linear-gradient(var(--color-primary), var(--color-primary)) 0 100% / 100% 3px no-repeat;
    }
    .problem-heading span{
        font-size:1.8rem;
    }
    .problem-list .item{
        grid-template-columns: 7.2rem 1fr;
    }
    .problem-list .item .ttl{
        font-size: 1.7rem;
    }
}


/* Point
---------------------------------*/
#point{
    padding-top:8rem;
}
.point-list{
    margin-top:3.2rem;
}
.point-list .item img{
    border-radius: .8rem;
    overflow: hidden;
}
.point-list .item .ttl{
    font-size: 2rem;
    font-weight: 700;
    margin:2.4rem 0 1.6rem;
    text-align: center;
}
.point-arrow{
    max-width: 32rem;
    margin:2.4rem auto;
}
.point-summary{
    background-color: #fff;
    border-radius: .8rem;
    border:.2rem solid var(--color-primary);
    padding:2.4rem 4rem 4rem;
}
.point-summary__heading{
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    margin-bottom:1.6rem;
}
.point-summary .content_row{
    display: grid;
    grid-template-columns: 33rem 1fr;
    column-gap: 3.2rem;
}
.point-summary .pic-row img{
    border-radius: .8rem;
    overflow: hidden;;
}
.point-summary .txt-row .txt{
    line-height: 1.8;
}
.point-summary .txt-row .disc-list{
    margin-top:1.6rem;
}
@media only screen and (max-width: 768px) {
    #point{
        padding-top:4.8rem;
    }
    .point-list .item .ttl{
        margin:2rem 0 1rem;
    }
    .point-arrow{
        max-width: 20rem;
    }
    .point-summary{
        padding:2.4rem 2rem 2.4rem;
    }
    .point-summary .content_row{
        grid-template-columns: 1fr;
        row-gap: 2.4rem;
    }
    .point-summary__heading{
        font-size: 2.4rem;
        margin-bottom:1.2rem;
    }
}


/* Support
---------------------------------*/
#support{
    display: grid;
    grid-template-columns: 44% 1fr;
    column-gap: 3.2rem;
    padding:12rem 0 9.6rem;
}
#support .section-heading{
    text-align: left;
    margin-bottom:1.6rem;
}
#support .support-l .tx-caption{
    font-size: 1.2rem;
}
#support .support-list li{
    display: grid;
    grid-template-columns: 15rem 1fr;
    column-gap: 1.6rem;
}
#support .support-list li:not(:first-child) {
    margin-top: 2.4rem;
}
#support .support-list .pic-row img{
    border-radius: .4rem;
    overflow: hidden;
}
#support .support-list .txt-row .ttl{
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom:1rem;
}
@media only screen and (max-width: 768px) {
    #support{
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 3.2rem;
        padding:6.4rem 0 5.6rem;
    }
    #support .section-heading{
        text-align: center;
        margin-bottom:1.6rem;
    }
    #support .support-list li{
        grid-template-columns: 12rem 1fr;
    }
    #support .support-list .txt-row .ttl{
        font-size: 1.8rem;
        margin-bottom:1rem;
    }
}


/* Case
---------------------------------*/
#case{
    padding:8rem 0 9.6rem
}
#case .inner{
    position: relative;
}
#case .case-subcopy {
    color:var(--color-primary);
    text-align: center;
    font-weight: 900;
    line-height: 1.4;
}
.case-maincopy{
    color:var(--color-primary);
    text-align: center;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.4;
}
.case-maincopy span{
    font-size: 2.8rem;
}
.case-medal{
    position: absolute;
    top:0;
    right:-5rem;
    max-width: 21rem;
    height: auto;
}
.case-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:4rem;
    margin:2.4rem 0 4rem;
}
.case-list .item{
    width: calc((100% - 4rem) / 2);
    border: .1rem solid #DDE3EC;
    border-radius: .8rem;
    position: relative;
}
.case-list .item .heaing{
    background-color: #929198;
    padding:2.4rem 1.6rem;
    border-radius: .7rem .7rem 0 0;
    color:#fff;
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
}
.case-list .item .catch{
    color:#929198;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.5;
    padding:2.4rem 2rem 1.6rem;
    text-align: center;
}
.case-check-list{
    padding:0 2rem 2.4rem;
}
.case-check-list li{
    position:relative;
    padding-left:3rem;
}
.case-check-list li:not(:first-child) {
    margin-top: 1.6rem;
}
.case-check-list li::after {
    position: absolute;
    content: "";
    top: .2rem;
    left: 0;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/case-icon-before.svg) center / cover;
}
.case-check-list li .ttl{
    font-size: 1.8rem;
    font-weight: 700;
}
.case-check-list li .txt{
    line-height: 1.5;
}

.case-list .item.after{
    border: .1rem solid var(--color-primary);
}
.case-list .item.after .heaing{
    background-color: var(--color-primary);
}
.case-list .item.after .catch{
    color:var(--color-primary);
}
.case-list .item.after .case-check-list li::after {
    background: url(../img/case-icon-after.svg) center / cover;
}
.case-list .item.after .case-check-list li .ttl{
    color:var(--color-primary)
}

#case .case-catch{
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom:1.6rem;
    text-align: center;
}
#case .case-summary-txt{
    text-align: center;
}
#case .case-summary-txt strong{
    font-size:2rem;
    font-weight: 900;
}
#case .case-btn{
    max-width: 50rem;
    margin:2.4rem auto 0;
}

@media only screen and (min-width: 769px) {
    .case-list .item:not(:first-child)::before {
        content: "";
        position: absolute;
        display: inline-block;
        vertical-align: middle;
        left: -3rem;
        top: 50%;
        transform: translateY(-50%);
        width: 2rem;
        height: 3.8rem;
        background-image: url(../img/case-arrow_pc.webp);
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
}

@media only screen and (max-width: 768px) {
    #case{
        padding:4.8rem 0 5.6rem;
    }
    .case-maincopy{
        font-size: 2.6rem;
    }
    .case-maincopy span{
        font-size: 1.8rem;
    }
    .case-medal{
        position: static;
        max-width: 18rem;
        height: auto;
        margin:0 auto 2.4rem;
    }
    .case-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap:4rem;
        margin:2.4rem 0 4rem;
    }
    .case-list .item{
        width: 100%;
    }
    .case-list .item .heaing{
        padding:1rem 1.6rem;
        font-size: 2rem;
    }
    .case-list .item .catch{
        font-size: 2rem;
        padding:1.6rem 2rem 1rem;
    }
    .case-check-list{
        padding:0 2rem 2.4rem;
    }
    .case-check-list li{
        padding-left:2.4rem;
    }
    .case-check-list li::after {
        top: .4rem;
        width: 1.8rem;
        height: 1.8rem;
    }
    #case .case-catch{
        font-size: 2.2rem;
        margin-bottom:1.6rem;
        text-align: center;
    }
    #case .case-summary-txt strong{
        font-size:1.8rem;
    }
    .case-list .item:not(:first-child)::before {
        content: "";
        position: absolute;
        display: inline-block;
        vertical-align: middle;
        left: 50%;
        top: -3rem;
        transform: translateX(-50%);
        width: 3.8rem;
        height: 2rem;
        background-image: url(../img/case-arrow_sp.webp);
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
}


/* Flow
---------------------------------*/
#flow{
    padding:8rem 0 9.6rem;
    position: relative;
}
#flow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EFF2FF;
    z-index: -2;
}
.flow-list{
    position: relative;
}
.flow-list::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 100%;
    top: 0;
    left: 50%;
    background-image: radial-gradient(circle, #3B20A2 calc(100% / 2 - 1px), transparent calc(100% / 2));
    background-size: 100% 10px ;
    z-index: -1;
}
.flow-list .item{
    background-color: #fff;
    border-radius: .8rem;
    display: grid;
    grid-template-columns: 28% 1fr;
    gap: 4rem;
    align-items: center;
    padding:1rem;
    z-index: 1;
}
.flow-list .item:not(:first-child) {
    margin-top: 3.2rem;
}
.flow-list .pic-row img{
    border-radius: .4rem;
    overflow: hidden;
}
.flow-list .txt-row{
    padding-right:3rem;
}
.flow-list .txt-row .num{
    border: .1rem solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.22;
    padding: .3rem .8rem .1rem;
    display: inline-block;
    border-radius: 6rem;
}
.flow-list .txt-row .ttl{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin:.2rem 0 1.2rem;
}
@media only screen and (max-width: 768px) {
    #flow{
        padding:4.8rem 0 5.6rem;
    }
    .flow-list .item{
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    .flow-list .txt-row{
        padding:0 1rem 1rem;
        text-align: center;
    }
    .flow-list .txt-row .ttl{
        font-size: 2rem;
    }
    .flow-list .txt-row  .txt{
        text-align: left;
    }
}



/* Faq
---------------------------------*/
#faq{
    padding:8rem 0 9.6rem;
    position: relative;
}
.faq_contents {
  text-align: left;
  background-color: #F1F4FD;
  transition: .3s;
  padding: 1.4rem 2.4rem;
  border-radius: .8rem;
}
.faq_contents:not(:first-of-type) {
  margin-top: 2.4rem;
}
.faq-head {
  position: relative;
  cursor: pointer;
  padding:1rem 4rem 1rem 0;
}
.faq-head .ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-left: 2.8rem;
}
.faq-head .ttl:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: .2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.toggle_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color:  var(--color-primary);
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.toggle_icon:before,
.toggle_icon:after {
  display: block;
  content: '';
  background-color: #fff;
  position: absolute;
  width: 11px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle_icon:before {
  width: 2px;
  height: 11px;
}
.faq-head.selected .toggle_icon:before {
  content: normal;
}
.faq_contents dd.accordion-body {
  display: none;
  padding-bottom:1.4rem;
}
.faq-body {
  background-color: #fff;
  border-radius: .8rem;
  margin-top: .6rem;
  line-height: 1.66;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  #faq{
    padding:4rem 0 4.8rem;
  }
  .faq_contents {
    padding:.8rem 1rem;
    border-radius: 1rem;
  }
  .faq_contents:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .faq-head .ttl {
    font-size: 1.6rem;
    padding-left: 2.2rem;
  }
  .faq-head .ttl:before {
    font-size: 2rem;
    top:.2rem
  }
  .toggle_icon {
    width: 22px;
    height: 22px;
    padding: 2px;
  }
  .toggle_icon:before,
  .toggle_icon:after {
    width: 9px;
    height: 2px;
  }
  .toggle_icon:before {
    width: 2px;
    height: 9px;
  }
  .faq-body {
    border-radius: 1rem;
    padding: 1.6rem;
  }
  .faq_contents dd.accordion-body {
    display: none;
    padding-bottom:.6rem;
  }
}


/* Request
---------------------------------*/
#request{
    background-image: linear-gradient(90deg, #421cd1, #3b20a2);
    position: relative;
    padding: 6.4rem 0;
}
#request .inner {
    display: grid;
    grid-template-columns: 1fr 54rem;
    column-gap: 4.8rem;
    align-items: center;
}
#request .request-left{
    color:#fff;
    text-align: left;
}
#request .section-heading{
    color:#fff ;
    text-align: left;
}
#request .section-heading .sub-ttl {
    color: #fff;
}
#request .section-heading .sub-ttl span{
    background: linear-gradient(#fff, #fff) 0 100% / 100% 1px no-repeat;
}
#request .request-right{
    border-radius: 1.6rem;
}
#request .form-item{
    width: 100%;
    text-align: left;
    margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
    #request{
        padding: 4rem 0;
    }
    #request .inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    #request .txt{
        text-align: center;
    }
    #request .section-heading{
        text-align: center;
    }
    #request .request-right{
        padding:2.4rem 2rem;
    }
}


/* Footer
---------------------------------*/
.footer{
    margin-bottom:4rem;
}
.footer-company{
    padding:4rem 0;
}
.footer-company .heading{
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom:1.6rem;
    text-align: center;
}
.footer-company__item {
    font-size: 1.4rem;
    display: grid;
    grid-template-columns: 18rem 1fr;
}
.footer-company__item .ttl,
.footer-company__item .detail {
    padding: 1.6rem 0;
    position: relative;
    line-height: 1.6;
    border-top:.1rem solid #ddd;
}
.footer-company__item.last-list .ttl,
.footer-company__item.last-list .detail {
    border-bottom:.1rem solid #ddd;
}
.copyright {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
    .footer-company .heading{
        font-size: 1.8rem;
        margin-bottom:1.6rem;
        text-align: center;
    }
    .footer-company__item {
        grid-template-columns: 10rem 1fr;
    }
}


/* Footer Fix
---------------------------------*/
#footer-fix-cta {
    background-image: linear-gradient(90deg, #421cd1, #3b20a2);
    padding: 1.6rem 2rem 2rem;
    text-align: center;
    position: fixed;
    bottom: -30rem;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: bottom 0.5s ease-in-out;
}
#footer-fix-cta.show {
    bottom: 0;
}
#footer-fix-cta .heading{
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
}
#footer-fix-cta .link-btn{
    max-width:40rem ;
    height: 5.6rem;
    margin:1rem auto 0;
}
#footer-fix-cta .link-btn .txt{
    font-size: 2rem;
    padding-left:2.6rem;
}
#footer-fix-cta .link-btn .txt::after {
    height: 2rem;
    top: calc(50% - 1rem);
    width: 2rem;
}
@media screen and (max-width: 768px) {
    #footer-fix-cta .heading{
        font-size: 1.6rem;
    }
    #footer-fix-cta .link-btn{
        height: 5.2rem;
    }
    #footer-fix-cta .link-btn .txt{
        font-size: 1.8rem;
        padding-left:2.6rem;
    }
}

/* =========================================
   1. フォームボタン共通のベーススタイル
========================================= */
.form-footer .btn-submit,
.cont_btn__back,
.cont_btn__submit {
    width: 100% !important;
    padding: 1rem 1.6rem !important;
    font-size: 100% !important;
    font-weight: 900 !important;
    border-radius: 8rem !important;
    box-sizing: border-box !important;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    line-height: 1.4 !important;
    display: block !important;
}

/* =========================================
   2. ボタンのカラー設定
========================================= */
/* オレンジのボタン（確認画面へ進む・送信する） */
.form-footer .btn-submit,
.cont_btn__submit {
    background: linear-gradient(#fa9c16, #f76a0c) !important;
    border: 2px solid #f76a0c !important;
    color: #fff !important;
}
.form-footer .btn-submit:hover,
.cont_btn__submit:hover {
    filter: brightness(1.2);
}

/* 白抜きのボタン（入力内容を修正する） */
.cont_btn__back {
    background: #fff !important;
    color: #f76a0c !important;
    border: 2px solid #f76a0c !important;
}
.cont_btn__back:hover {
    background: #fff3e6 !important;
}

/* =========================================
   3. ボタンを囲む枠（親要素）のレイアウト
========================================= */
/* 入力画面のボタン枠 */
.form-footer {
    margin: 2rem auto 0 !important;
    max-width: 22rem !important;
    width: 100%;
}

/* 確認画面のボタン枠（PC表示：横並び） */
.confirm_btn_group {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    margin: 2rem auto 0 !important;
    max-width: 38rem !important;
    width: 100%;
}

/* 確認画面の2つのボタン（横並び時の幅・余白調整） */
.confirm_btn_group .cont_btn__back,
.confirm_btn_group .cont_btn__submit {
    flex: 1 !important;
    padding: 1rem 0 !important;
}

/* スマホ表示：確認画面のボタンを縦並びに戻す */
@media screen and (max-width: 600px) {
    .confirm_btn_group {
        flex-direction: column !important;
        max-width: 22rem !important;
    }
}

/* =========================================
   4. 確認画面：各項目のレイアウトとデザイン
========================================= */
.contact__confirm .contact__form__item {
    margin-bottom: 1.5rem;
    text-align: left;
}

/* 項目名（会社名、担当者名など） */
.contact__confirm .contact__form__item p:first-child {
    font-weight: bold;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

/* 入力されたテキスト（値） */
.contact__confirm .confirm_txt {
    background-color: #f0f4f9;
    border: 1px solid #e1e5eb;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    color: #333;
    font-size: 1.6rem;
    min-height: 1.5rem;
    margin: 0;
    word-break: break-all;
    line-height: 1.5;
}

/* =========================================
   5. 不要な要素の非表示設定（CF7リセット含む）
========================================= */
/* 「お問い合わせ内容」の項目自体と空枠を非表示 */
.contact__confirm .contact__form__item:first-child,
.contact__confirm .confirm_txt[data-name="inquiry"] {
    display: none;
}

/* CF7が自動出力する余計なスピナー・メッセージ枠の余白を除去 */
.confirm_btn_group .wpcf7-spinner {
    display: none !important;
}
.wpcf7-response-output {
    margin-bottom: 0 !important;
}

/* =========================================
   確認画面：最上部の案内テキスト
========================================= */
.confirm-lead-txt {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    text-align: center;
    margin: 0 0 1.5rem 0;
}