
html,
body,
div,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
strong,
sub,
sup,
i,
small,
address,
time,
fieldset,
form,
label,
legend,
hr,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
footer,
nav,
section,
article,
aside,
figure,
figcaption,
canvas,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: normal;
    font-weight: normal;
    vertical-align: baseline;
    }

article,
aside,
figure,
figcaption,
footer,
header,
nav,
section {
    display: block;
}

a{
    text-decoration: none;
}

*,
*::before,
*::after {
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style: none;
    }

input,
textarea,
button {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

input[type="submit"],
input[type="button"],
button {
    cursor: pointer;
}

button{
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body{
    font-family: "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue","Arial", "Noto Sans JP","Meiryo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1rem;
    color: #333;
}

main{
    width: 100%;
    overflow: hidden;
}

.u-inline_block{
    display: inline-block;
}

.u-pc_block{
    display: block;
}
@media (max-width: 820px) {
    .u-pc_block{
        display: none;
    }
}
.u-sp_block{
    display: none;
}
@media (max-width: 820px) {
    .u-sp_block{
        display: block;
    }
}

.u-color__red{
    color:#FD5030;
}


/* layout */

.l-container{
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

@media screen and (min-width: 1920px) {
    .l-section{
        padding: 120px 0;
    }
}
.l-section{
    padding: 6.77vw 0;
}
@media screen and (max-width: 768px) {
    .l-section{
        padding: 70px 0;
    }
}

/* common */
.c-title{
    text-align: center;
    font-size: 40px;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.2rem;
}
.c-subtitle{
    color: #EFEFEF;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(#ff6c59 0%, #d60050 100%);
    font-size: 20px;
    color: white;
    padding: 3px 20px;
    border-radius: 50vh;
    width: 150px;
    margin-bottom: 20px;
}
.c-subtitle.--orange{
    color: #FD9930;
    opacity: 0.3;
}

@media screen and (max-width: 820px) {
    .c-title{
        text-align: center;
        font-size: 28px;
    }
    .c-subtitle{
        font-size: 14px;
    }
}

.c-title__wrap{
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 70px;
}

@media screen and (max-width: 820px) {
    .c-title__wrap{
        margin-bottom: 50px;
    }
}
/* ボタンを光らせるアニメーション */
@-webkit-keyframes shiny-btn1 {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 1;
	}

	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

.l-head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
}

.p-head__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
}
.p-head a{
    width: 360px;
    color: #000;
}

.p-head a img {
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease, filter 0.2s ease;
    width: 100%;
}
.p-head a:hover img {
    transform: translateY(3px);
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
}

.p-head .p-head__logo{
    width: 220px;
}
.p-head__nav{
    position: relative;
    right: -60px;
}
.p-head__nav-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.p-head__nav-list li{
    color: #000;
}
@media screen and (max-width: 1500px) {
    .p-head__inner{
        width: 96%;
    }
}
@media screen and (max-width: 1400px) {
    .p-head .p-head__logo{
        width: 14vw;
    }
    .p-head a{
        width: 22vw;
    }

    .p-head__nav{
        position: relative;
        right: -30px;
    }

}

@media screen and (max-width: 820px) {
    .p-head__nav-list{
        display: none;
    }
    .p-head .p-head__logo{
        width: 115px;
    }
    .p-head a{
        width: 174px;
    }
    
    .p-head__inner{
        padding: 10px 0;
    }
}

/* fv */
@media screen and (min-width: 1920px) {
    .p-fv__text h2{
        font-size: 60px;
    }
    .p-fv__copy1{
        margin-top: 40px;
    }
    .p-fv{
        padding: 130px 0 150px;
    }
    .p-fv__copy1 .--fukidashi{
        font-size: 26px;
    }
}

.p-fv{
    background-image: url(../images/fv_bg.webp);
    background-size: cover;
    padding: 7.24vw 0 7.81vw;
    margin-top: 100px;
}

.p-fv__inner{
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-fv__text{
    text-align: left;
}

@media screen and (max-width: 1200px) {
    .p-fv{
        margin-top: 50px;
    }
    .p-fv__inner{
        flex-direction: column;
    }
    .p-fv__text{
        order: 1;
        width: 100%;
    }
}

.p-fv__text h2{
    font-size: 3.13vw;
    font-weight: 700;
    color: #333;
}
@media screen and (max-width: 1200px) {
    .p-fv__text h2{
        font-size: 8vw;
    }
}
@media screen and (max-width: 450px) {
    .p-fv{
        background-image: url(../images/fv_bg_sp.webp);
    }
    .p-fv__text h2{
        text-align: center;
        font-size: 34px;
        margin-top: 10px;
    }
}
.p-fv__copy1{
    display: flex;
    margin-top: 2.08vw;
}

.p-fv__copy1 .--fukidashi{
    display: flex;
    font-size: 1.35vw;
    color: #fff;
    width: 103px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/fv_fukidashi.png);
    background-size: contain;
    background-position: center;
    padding-right: 5px;
    background-repeat: no-repeat;
    margin-right: 15px;
    margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
    .p-fv__copy1 .--fukidashi{
        font-size: 4.87vw;
        width: 21.87vw;
        height: auto;
        background-position: 58%;
    }
}
@media screen and (max-width: 450px) {
    .p-fv__copy1{
        display: flex;
        align-items: center;
    }
    .p-fv__copy1 .--fukidashi{
        font-size: 22px;
        width: 82px;
        height: 75px;
        margin-right: 5px;
        margin-bottom: 0px;
    }
}

@media screen and (min-width: 1400px) {
    .p-fv__copy1 .--main{
        font-size: 26px;
    }
    .p-fv__copy1 .--main b{
        font-size: 56px;
    }
    .p-fv__copy1 .--main span{
        font-size: 40px;
    }
}

.p-fv__copy1 .--main{
    font-size: 1.35vw;
    color: #000;
    font-weight: 600;
    margin-top: 20px;
}
.p-fv__copy1 .--main b{
    font-size: 2.92vw;
    color: #D60050;
    font-family: "Roboto", sans-serif;
}
.p-fv__copy1 .--main span{
    font-size: 2.08vw;
    font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1200px) {
    .p-fv__copy1 .--main{
        font-size: 5.33vw;
    }
    .p-fv__copy1 .--main b{
        font-size: 9.33vw;
    }
    .p-fv__copy1 .--main span{
        font-size: 6.93vw;
    }
}

@media screen and (max-width: 450px) {
    .p-fv__copy1 .--main{
        font-size: 20px;
    }
    .p-fv__copy1 .--main b{
        font-size: 35px;
    }
    .p-fv__copy1 .--main span{
        font-size: 26px;
    }
}


@media screen and (min-width: 1400px) {
    .p-fv_copy2__box{
        padding: 0 60px;
    }
    .p-fv_copy2__box p{
        font-size: 24px;
    }
    .p-fv_copy2__box b{
        font-size: 70px;
    }
    .p-fv_copy2__box .--num b{
        font-size: 75px;
    }
    .p-fv_copy2__box{
        padding: 0 60px;
    }
}

.p-fv__copy2{
    display: flex;
    justify-content: space-between;
    /* gap: 10px; */
}
.p-fv_copy2__box{
    padding: 0 3.13vw;
    position: relative;
    text-align: center;
}
.p-fv_copy2__box::before{
    content: "";
    background-image: url(../images/fv_kakko.png);
    display: block;
    width: 26px;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
}
.p-fv_copy2__box::after{
    content: "";
    background-image: url(../images/fv_kakko.png);
    display: block;
    width: 26px;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(180deg);
}
.p-fv_copy2__box p{
    text-align: center;
    font-size: 1.25vw;
    font-weight: 700;
}
.p-fv_copy2__box b{
    font-size: 3.65vw;
    color: #D60050;
    font-family: "Roboto", sans-serif;
}
.p-fv_copy2__box .--num b{
    text-align: center;
    font-size: 3.91vw;
}
.p-fv_copy2__box .--num span{
    font-size: 40px;
    color: #000;
}
@media screen and (max-width: 1200px) {
    .p-fv_copy2__box p{
        font-size: 4vw;
    }
    .p-fv_copy2__box b{
        font-size: 12vw;
    }
    .p-fv_copy2__box .--num b{
        font-size: 12vw;
    }
    .p-fv__copy2{
        margin-top: 8vw;
    }
}

@media screen and (max-width: 450px) {
    .p-fv__copy2{
        margin-top: 20px;
    }
    .p-fv_copy2__box{
        width: 49%;
        padding: 0 2vw;
    }
    .p-fv_copy2__box p{
        font-size: 18px;
        letter-spacing: 0;
    }
    .p-fv_copy2__box b{
        font-size: 48px;
        margin-left: 2px;
    }
    .p-fv_copy2__box .--num b{
        font-size: 50px;
        letter-spacing: 0;
    }
    .p-fv_copy2__box .--num span{
        font-size: 26px;
    }
    .p-fv_copy2__box{
        padding: 15px 6px;
    }
    .p-fv_copy2__box::before{
        width: 15px;
        background-image: url(../images/fv_kakko_sp.png);
    }
    .p-fv_copy2__box::after{
        width: 15px;
        background-image: url(../images/fv_kakko_sp.png);
    }
    
}

.p-fv__inner img{
    max-width: 724px;
    width: 50%;
}

.p-merit__content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .p-merit__content{
        flex-direction: column;
    }

.p-fv__inner img{
    width: 80%;
}
}
@media screen and (min-width: 1400px) {
    .p-merit{
        padding: 120px;
    }
}
.p-merit{
    background-color: #F7F7F7;
}
.p-merit__box{
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    width: 32%;
    position: relative;
}
@media screen and (max-width: 768px) {
    .p-merit__box{
        width: 100%;
        padding: 20px;
        padding-bottom: 60px;
        margin-bottom: 30px;
    }
}
.p-merit__box h3{
    font-size: 24px;
    color: #D60050;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}
.p-merit__box p{
    min-height: 120px;
}

.p-merit__box__num{
    font-size: 145px;
    background: linear-gradient(#ff6c59 0%, #d60050 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    opacity: 0.1;
    font-style: italic;
    position: absolute;
    right: 5px;
    bottom: 5px;
    line-height: 0.9em;
}
@media screen and (min-width: 768px) {

}
.p-reason{
    background-image: url(../images/reason_bg.png);
    background-size: cover;
}

@media screen and (max-width: 820px) {
    .p-reason{
        background-image: url(../images/reason_bg_sp.webp);
    }
}
.p-reason__list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
    .p-reason__list{
        flex-direction: column;
    }
}
.p-reason__list img{
    width: 48%;
}
.p-reason__list__text{
    width: 48%;
}

.p-reason__list__num{
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(#ff6c59 0%, #d60050 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    letter-spacing: 0;
}
.p-reason__list__num::before{
    content: "";
    width: 47px;
    height: 2px;
    border-radius: 50vh;
    background: linear-gradient(#ff6c59 0%, #d60050 100%);
    display: inline-block;
    margin-right: 14px;
}
.p-reason__list h3{
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 40px;
    letter-spacing: 0.2rem;
}
.p-reason__list p{
    font-size: 16px;
    line-height: 2rem;
    letter-spacing: 0;
}

@media screen and (max-width: 768px) {
    .p-reason__list img{
        width: 100%;
        order: 1;
    }
    .p-reason__list__text{
        width: 100%;
        order: 2;
        margin-top: 20px;
    }
    .p-reason__list h3{
        font-size: 24px;
        margin-bottom: 30px;
        letter-spacing: 0.1rem;
    }
    .p-reason__list__num{
        font-size: 18px;
        letter-spacing: 0;
    }
    .p-reason__list__num::before{
        content: "";
        width: 41px;
    }
    .p-reason__list p{
        letter-spacing: 0;
    }
}

.p-reason_price{
    margin-top: 120px;
}
.p-reason_price .c-title{
    font-size: 40px;
    margin-bottom: 40px;
    color: #D60050;
}
@media screen and (max-width: 768px) {
    .p-reason_price{
        margin-top: 70px;
    }
    .p-reason_price .c-title{
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    overflow: hidden;
}

.row {
    display: flex;
    width: 100%;
}

.cell {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .cell {
    font-size: 20px;
    font-weight: 500;
    background-color: #F2F2F2;
}

.cell.head {
    font-size: 24px;
    background: linear-gradient(to right, #ff6c59 0%, #d60050 100%);
    color: white;
    letter-spacing: 0;
    font-weight: 600;
    min-width: 220px;
}

.cell small {
    font-size: 0.7em;
}

@media screen and (max-width: 768px) {
    .table {
        display: flex;
        border: 0.75px solid #e6e6e6;
        border-radius: 10px;
        flex-wrap: nowrap;
        flex-direction: inherit;
    }
    
    .row {
        display: flex;
        width: 50%;
        flex-direction: column;
    }

    .cell {
        flex: 1;
        padding: 10px;
        text-align: center;
        min-height: 64px;
        font-size: 24px;
        border: 0.75px solid #e6e6e6;
    }
    .row .header .cell{
        font-size: 20px;
    }
    
    .cell.head {
        min-width: auto;
        font-size: 18px;
        min-height: 50px;
    }
    
    .header {
        font-weight: bold;
        background-color: #f8f8f8;
    }
}



.p-cta{
    background: linear-gradient(to right, #00d68833 0%, #00bad633 100%);
    padding: 50px 0;
}

.p-cta a{
    width: 1000px;
    margin: 0 auto;
    display: block;
}
.p-cta a img {
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease, filter 0.2s ease;
    width: 100%;
}
.p-cta a:hover img {
    transform: translateY(3px);
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 768px) {
    .p-cta{
        padding: 30px 0;
    }
.p-cta a{
    width: 335px;
    margin: 0 auto;
    display: block;
}
}

.p-voice__box{
    background-color: #F7F7F7;
    padding: 0 20px 38px;
    border-radius: 10px;
    width: 32%;
}
.p-voice__head {
    display: flex;
    align-items: center;
}
.p-voice__head h3{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
}
.p-voice__head img{
    width: 110px;
    margin-right: 10px;
    margin-top: -20px;
    margin-left: -5px;
    margin-bottom: 10px;
    
}
.p-voice__box{
    width: 32%;
    filter: drop-shadow(5px 5px 7px rgba(0, 0, 0, 0.1));
}
.p-voice__box p {
    line-height: 2rem;
}
.p-voice__box p span{
    color: #D60050;
    font-weight: 600;
    
}
.p-voice__content{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 820px) {
    .p-voice .l-container{
        width: 100%;
    }
    .p-voice__content{
        align-items: center;
    }
    .p-voice__box{
        margin: 0 10px;
        min-height: 310px;
        margin-top: 20px;
    }
    .p-voice__head h3{
        font-size: 16px;
    }
    .p-voice__head img{
        width: 89px;
        
    }

    .slide-arrow{
        width: 24px;
        height: 45px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        z-index: 2;
    }
    .prev-arrow{
        left: 1%;
    }
    .next-arrow{
        right:  1%;
    }
    .slick-track{
        display: flex;
    }
    .slick-list{
        padding-bottom: 20px !important;
    }
    .slick-dots li button:before{
        font-size: 12px;
        color: #E5E5E5;
        opacity: 1;
    }
    .slick-dots li button:before{
        font-size: 12px;
        color: #E5E5E5;
        opacity: 1;
    }
    .slick-dots li.slick-active button:before{
        background: linear-gradient(to right, #ff6c59 0%, #d60050 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.p-flow{
    background: linear-gradient(to right, #ff6c59 0%, #d60050 100%);
}
.p-flow .c-title{
    color: white;
}
.p-flow .c-subtitle{
    background: #F7F7F7;
}
.p-flow .c-subtitle b{
    background: #F7F7F7;
    background: linear-gradient(to right,#ff6c59 0%, #d60050 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.p-flow__list{
    position: relative;
}
.p-flow__list__num{
    font-size: 80px;
    font-weight: 600;
    color: white;
    opacity: 0.2;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 600;
}
.p-flow__list__text h3{
    color: #fff;
    font-size: 20px;
    position: absolute;
    letter-spacing: 0.1rem;
    width: 100%;
    text-align: center;
    font-weight: 600;
}
.p-flow__list__text{
    display: flex;
    align-items: center;
    position: relative;
}
.p-flow__list__img{
    position: relative;
}
.p-flow__list__img::after{
    content: "";
    width: 50%;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    right: -50%;
    z-index: 0;
}
.p-flow__content{
    display: flex;
    justify-content: space-between;

}

@media screen and (max-width: 820px) {
    .p-flow__list__text{
        margin-top: -5px;
    }
    .p-flow__list__num{
        line-height: 1;
    }
    .p-flow__content{
        flex-direction: column;
        max-width: 335px;
        margin: 0 auto;
    }
    .p-flow__list{
        width: 40%;
        margin-top: -28%;
        
    }
    .p-flow__list:first-of-type{
        margin-top: 0;
    }
    .p-flow__list:nth-last-of-type(2n){
        margin-left: auto;
        margin-right: 0;
    }
    .p-flow__list__img::after{
        transform: rotate(30deg);
        top: 100%;
        right: -66%;
        width: 100%;
    }
    .p-flow__list:nth-last-of-type(2n) .p-flow__list__img::after{
        left: -86%;
        transform: rotate(-30deg);
    }
    
    
}

.p-faq{
    background-color: #F7F7F7;
}

.p-faq__list{
    margin-bottom: 30px;
}

.p-faq__list .--question{
    background: linear-gradient(to right, #ff6c59 0%, #d60050 100%);
    color: #fff;
    padding:30px 50px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.p-faq__list .--answer{
    background-color: #fff;
    padding:30px 50px;
    border-radius: 0px 0px 10px 10px;
    font-size: 16px;
    display: flex;
    align-items: center;   
}

.p-faq__list span{
    font-size: 30px;
    font-weight: 600;
    margin-right: 10px;
    font-family: "Roboto", sans-serif;
}

.p-faq__list .--answer span{
    color: #D60050;
}
@media screen and (max-width: 768px) {
    .p-faq__list{
        margin-bottom: 20px;
    }
    .p-faq__list .--question{
        font-size: 18px;
        padding: 20px 10px 20px 20px;
        align-items: flex-start;
    }
    .p-faq__list .--answer{
        font-size: 16px;
        padding: 20px 10px 20px 20px;
        align-items: flex-start;
    }

    .p-faq__list span{
        font-size: 20px;
        margin-top: 2px;
    }
}
.p-faq__cta{
    margin-top: 50px;
}

.p-faq__cta p{
    font-size: 24px;
    font-weight: 600;
}
.p-faq__cta {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.p-faq__cta img{
    width: 552px;
}

.p-faq__cta a img {
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.p-faq__cta a:hover img {
    transform: translateY(3px);
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 768px) {
    .p-faq__cta{
        flex-direction: column;
    }
    .p-faq__cta img{
        width: 100%;
    }
    .p-faq__cta p{
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.p-company{
    background-image: url(../images/company_bg.png);
    background-size: cover;
}
.p-company .l-container{
    max-width: 1000px;
    margin: 0 auto;
}
.p-company h2{
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
}

.p-company__item{
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 16px;
}
.p-company__item strong{
    width: 142px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-right: 50px;
}
.p-company__item{
    border-bottom: solid 1px #ccc;
}

@media screen and (max-width: 768px) {
    .p-company h2{
        font-size: 20px;
        margin-bottom: 30px;
    }
    .p-company__item{
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }
    .p-company__item strong{
        margin-bottom: 10px;
        margin-right: 0;
        font-size: 16px;
        width: auto;
    }
}

.p-form{
    background-color: #F7F7F7;
   
}

.p-form .l-container{
    max-width: 1000px;
    margin: 0 auto;
}

.p-form .c-title__wrap{
    margin-bottom: 50px;
}

.p-form p{
    text-align: center;
    margin-bottom: 50px;
}

.p-form p b{
    color: #D60050;
    font-size: 24px;
    margin-bottom: 30px;
    display: block;
}
@media screen and (max-width: 768px) {
    .p-form p{
        text-align: left;
        margin-bottom: 50px;
    }
    .p-form p b{
        font-size: 20px;
        text-align: center;
    }
}

.p-form_main{

}

.p-form input{
    width: 100%;
    padding:19px 14px;
    border-radius: 9px;
    border: none;
    margin-top: 10px;
}
.p-form input[type="radio"],.p-form input[type="checkbox"]  {
    width: auto;
    padding: 0;
    margin-right: 10px; /* ラベルとの間隔を調整 */
    border: none; /* 枠線を削除 */

}

.p-form input[type="radio"], .p-form input[type="checkbox"]{
    width: 20px;
    height: 20px;
    margin-top: 0px;
}
.p-form input[type="checkbox"]{
    /* appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; */
    background-color: transparent;
    background-color: white;
    border-radius: 1px;
}
.c-form_item_input.--radio{
    margin: 20px 0 30px;
    display: flex;
    flex-wrap: wrap;
}

.c-form_item_input.--address{
    margin-bottom: 5px;
}
.c-form_item_input.--address input{
    width: 50%;
    max-width: 245px;
}

.c-form_item_input.--radio label{
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 820px) {
    .p-form input{
        margin-top: 5px;
    }
    .c-form_item_input.--radio{
        display: flex;
        flex-direction: column;
        margin: 10px 0 20px;
        align-items: flex-start;
    }
    .c-form_item_input.--radio label{
        margin-bottom: 8px;
        margin-right: 0px;
    }
}

.p-form textarea{
    width: 100%;
    padding:19px 14px;
    border-radius: 9px;
    border: none;
    font-size: 18px;
}
.c-form_item_label label{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.c-form_item_label .c-req{
    background-color: #D60050;
    color: #fff;
    font-size: 16px;
    padding: 1px 8px;
    font-weight: 500;
    margin-left: 10px;
}
@media screen and (max-width: 820px) {
    .c-form_item_label label{
        font-size: 18px;
    }
    .c-form_item_label .c-req{
        font-size: 14px;
    }
}

.c-form_item_input{
    margin-top: 5px;
    margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
    .c-form_item_input{
        margin-bottom: 14px;
    }
}
.p-form_item_privacy{
    overflow: scroll;
    height: 287px;
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
}

.p-form_item_privacy p{
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    text-align: left;
}
@media screen and (max-width: 820px) {
    .p-form_item_privacy p{
        width: 100%;
    }
}
.p-form__privacy {
    margin-top: 50px;
}

.p-form__privacy .c-form_item_label{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.c-form__accept{
    background-color: #D60050;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 820px) {
    .c-form__accept{
        padding: 20px 10px;
    }
}
.c-form__button{
    text-align: center;
    width: 680px;
    margin: 0 auto;
    display: block;
    margin-top: 70px;

}
.c-form__button img{
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease, filter 0.2s ease;
}
.c-form__button:hover img {
    transform: translateY(3px);
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
}

@media screen and (max-width: 820px) {
    .c-form__button{
        width: 100%;
    }
}

input::placeholder,
textarea::placeholder {
    color: #ccc; /* 好きな色に変更 */
}

.--agree{
    text-align: center;

}

.l-footer{
    text-align: center;
    background-color: #D60050;
    font-size: 14px;
    padding: 40px 0;
}
.l-footer a{
    margin: 20px;
    color: #fff;
    text-decoration: underline;
}
.l-footer p{
    margin: 20px;
    color: #fff;
}

@media screen and (max-width: 820px) {
    .l-footer a{
        font-size: 11px;
        letter-spacing: 0;
        margin: 10px;
        padding: 10px 0;
    }
    .l-footer p{
        margin: 13px;
    }
}

.p-confirm p{
    text-align: left;
    font-size: 18px;
}

.p-confirm .c-form__item{
    border-bottom: solid 1px #ccc;
    margin-bottom: 30px;

}

@media screen and (max-width: 820px) {
    .p-confirm .c-form_group_input_text {
        margin-bottom: 20px;
    }
}

.c-returnLink{
    font-size: 18px;
    color: #000;
    text-align: center;
    margin-top: 30px;
    display: block;
    text-decoration: underline;
}

.p-thanks{
    text-align: center;
    padding: 150px 0;
    height: 94vh;
    
}

.p-thanks p{
    line-height: 2.2rem;
    margin-bottom: 90px;
}
.p-thanks .c-subtitle{
    width: 170px
}
@media screen and (max-width: 820px) {
    .p-thanks {
        padding: 100px 0;
        height: auto;
    }
    .p-thanks p{
        text-align: left;
        line-height: 2rem;
        margin-bottom: 40px;
    }

}
