@charset "UTF-8";

/*title
-----------------------------------------------------*/

/* CTA */
.cta-text {
    text-align: left;
    flex: 1;
    margin: 0 auto;
}

.cta-text__h2 {
    display: inline-flex;
    align-items: flex-start;
    font-size: 3.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    gap: 0.7rem;
}

.dot {
    display: inline-block;
    width: 0.35em;
    height: 0.35em;
    background-color: #C42021;
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(2rem);
}

.cta-text__description {
    font-weight: 700;
}

@media (max-width: 1199px) {
    .cta-text__h2 {
        font-size: 3.2rem;
        margin-bottom: 1rem;
    }

    .dot {
        transform: translateY(2.5rem);
    }
}

@media (max-width: 1023px) {
    .cta-text__h2 {
        font-size: 2.6rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .cta-text__description {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .cta-text__h2 {
        font-size: 2.2rem;
    }

    .dot {
        transform: translateY(1.5rem);
    }
}

/* cta br */
.cta_br_lg {
    display: none;
}

@media (max-width: 1199px) {
    .cta_br_lg {
        display: block;
    }
}

@media (max-width: 767px) {
    .cta_br_lg {
        display: none;
    }
}


/* profile */
.profile-title__box {
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
}

@media (max-width: 1023px) {
    .profile-title__box {
        margin-bottom: 4rem;
    }
}

@media (max-width: 767px) {

    .profile-title__h2 {
        font-size: 2.6rem;
        line-height: 1.3;
    }

    .profile-title__sub {
        font-size: 1.6rem;
    }
}

.profile-title__h2 {
    font-size: 4rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    padding-bottom: 2rem;
}

.profile-title__sub {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1023px) {
    .profile-title__h2 {
        font-size: 3.4rem;
        line-height: 1.3;
        padding-bottom: 1.5rem;
    }

    .profile-title__sub {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .profile-title__h2 {
        font-size: 2.6rem;
        line-height: 1.3;
    }

    .profile-title__sub {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .profile-title__h2 {
        font-size: 2.4rem;
    }
}

.profile-title__sub span {
    margin-left: -0.8rem;
    margin-right: 0.3rem;
}

/*header
-----------------------------------------------------*/
#header {
    position: relative;
    z-index: 2;
}

.header-box {
    justify-content: space-between;
    padding: 0 1.5rem;
}

.header-logo {
    padding-top: 1.5rem;
}

.header-logo img {
    width: 100px;
}

.header-logo a:hover {
    opacity: 0.8;
}

@media (max-width: 1023px) {
    .header-box {
        padding: 0 0.5rem;
    }

    .header-logo {
        padding-top: 0.5rem;
    }

    .header-logo img {
        width: 85px;
    }
}

@media (max-width: 767px) {
    .header-logo img {
        width: 70px;
    }
}

@media (max-width: 575px) {
    .header-box {
        padding: 0 0.5rem;
    }

}

.header-pc__box {
    height: 70px;
    align-items: center;
}

.header-pc__nav li {
    padding-right: 1.5rem;
}

.header-pc__nav a {
    font-size: 1.6rem;
    font-weight: 700;
}

@media (max-width: 1023px) {
    .header-cta__box {
        display: none;
    }

    .header-pc__nav {
        display: none;
    }
}

/* header btn */
.header-cta-btn {
    display: inline-block;
    align-items: center;
    color: #FFF;
    font-size: 1.6rem;
    background-color: #C42021;
    font-weight: 700;
    padding: 1.1rem 3.5rem;
    border-radius: 40px;
    border: 2px solid transparent;
}

.header-cta-btn:hover {
    color: #C42021;
    background-color: #fff;
    border: 2px solid #C42021;
}

.header-cta__box__sm {
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    text-align: center;
}

.header-cta-btn-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #FFF;
    background-color: #C42021;
    font-weight: 700;
    height: 55px;
    box-sizing: border-box;
    border-radius: 40px;
    width: 100%;
}

@media (max-width: 1023px) {
    .header-cta-btn {
        display: none;
    }
}

/*hamburger
-----------------------------------------------------*/
.sm-nav {
    margin: 0;
    transition: all 0.6s;
    overflow-y: auto;
    width: 255px;
    height: 100vh;
    z-index: 200;
    top: 0;
    left: -320px;
    position: fixed;
    display: block;
}

.nav_btn {
    width: 50px;
    height: 50px;
    z-index: 300000;
    top: 0.7rem;
    right: 0.7rem;
    margin: auto;
    cursor: pointer;
    position: absolute;
    background: #A52929;
    display: none;
    border-radius: 15%;
}

@media (max-width: 1023px) {
    .nav_btn {
        display: block;
    }
}

.hamburger_line {
    transition: all 0.6s;
    width: 20px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    left: 16px;
    border-radius: 5px;
}

.hamburger_line1 {
    top: 17.5px;
}

.hamburger_line2 {
    top: 24.6px;
}

.hamburger_line3 {
    top: 32px;
}

.hamburger.active span:nth-child(1) {
    top: 24px;
    background: #FFF;
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
    top: 24px;
    background: #FFF;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    display: none;
}

.globalMenu {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 4rem 2rem;
}

.header-logo__sp img {
    width: 70px;
    height: auto;
}

@media (max-width: 767px) {
    .header-logo__sp {
        margin-bottom: 1rem;
    }
}

.nav__gnav {
    margin: 0 auto 2rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.nav__gnav li {
    padding: 0 1rem;
    list-style-type: none;
    width: 100%;
    transition: 0.4s all;
    font-size: 1.5rem;
    font-weight: bold;
    box-sizing: border-box;
}

.nav__gnav li:last-child {
    padding-bottom: 0;
}

.nav__gnav li a {
    display: block;
    color: #000;
    font-size: 1.6rem;
    padding: 2rem 0;
    text-decoration: none;
    display: inline-block;
}

.globalMenu.active {
    opacity: 1;
    visibility: visible;
}

/*main-v
-----------------------------------------------------*/
.main-v {
    margin-top: -5rem;
    padding: 0 2rem;
}

@media (max-width: 1023px) {
    .main-v {
        margin-top: -6rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 575px) {
    .main-v {
        margin-top: -5.5rem;
        padding: 0 1rem;
    }
}

.main-v__container {
    background: url(../images/mainV_img.png) no-repeat center/cover;
    border-radius: 260px;
    padding: 14rem 5rem;
    position: relative;
}

@media (max-width: 1023px) {

    .main-v__container {
        border-radius: 220px;
        padding: 13rem 7em 8rem;
    }
}

@media (max-width: 767px) {
    .main-v__container {
        border-radius: 180px;
        padding: 13rem 8em 8rem;
    }
}

@media (max-width: 575px) {
    .main-v__container {
        border-radius: 100px;
        padding: 12rem 3rem 9rem;
    }
}

.main-v__itemBox {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.main-v__item {
    position: absolute;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.main-v__item01 {
    bottom: 0;
    right: -3rem;
    width: 303px;
    height: 198px;
    background: url(../images/mv_img01.png) no-repeat center/contain;
}

@media (max-width: 1023px) {
    .main-v__item01 {
        right: -2rem;
        width: 240px;
        height: 156px;
    }
}

@media (max-width: 767px) {
    .main-v__item01 {
        right: -2rem;
        width: 180px;
        height: 117px;
    }
}

@media (max-width: 575px) {
    .main-v__item01 {
        bottom: -3rem;
        width: 150px;
        height: 87px;
    }
}

.main-v__item02 {
    bottom: -5rem;
    left: -5rem;
    width: 262px;
    height: 303px;
    background: url(../images/mv_img02.png) no-repeat center/contain;
}

@media (max-width: 1023px) {
    .main-v__item02 {
        left: -3rem;
        bottom: -3rem;
        width: 210px;
        height: 240px;
    }
}

@media (max-width: 767px) {

    .main-v__item02 {
        left: -2rem;
        bottom: -2rem;
        width: 160px;
        height: 190px;
    }
}

@media (max-width: 575px) {

    .main-v__item02 {
        left: -2rem;
        bottom: -5rem;
        width: 110px;
        height: 140px;
    }
}

.main-v__item03 {
    top: 10em;
    right: -3rem;
    width: 183px;
    height: 230px;
    background: url(../images/mv_img03.png) no-repeat center/contain;
    transform: translateY(-50%);
}

@media (max-width: 1023px) {
    .main-v__item03 {
        right: -2rem;
        width: 150px;
        height: 190px;
    }
}

@media (max-width: 767px) {
    .main-v__item03 {
        top: 8em;
        right: -2rem;
        width: 110px;
        height: 140px;
    }
}

@media (max-width: 575px) {
    .main-v__item03 {
        top: 4em;
        width: 75px;
        height: 105px;
    }
}

.main-v__content {
    text-align: center;
    max-width: 675px;
    margin: 0 auto;
}

.main-v__content img {
    max-width: 100%;
    height: auto;
}

.main-v__content__img {
    display: block;
    max-width: 675px;
    margin: 0 auto 2rem;
}

.main-v__content__img__sp {
    display: none;
}

.main-v__content p {
    color: #fff;
    margin-bottom: 6rem;
    line-height: 1.6;
}

@media (max-width: 1023px) {
    .main-v__content p {
        font-size: 1.6rem;
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 767px) {
    .main-v__content h2 {
        margin-bottom: 3rem;
    }

    .main-v__content p {
        margin-bottom: 5rem;
    }

    .main-v__content__img {
        display: none;
    }

    .main-v__content__img__sp {
        display: block;
        width: 100%;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 575px) {
    .main-v__content p {
        font-size: 1.6rem;
    }
}

/*check
-----------------------------------------------------*/

.check-list {
    position: relative;
    margin: 5rem 0 3rem;
    border-radius: 9999px;
    background-color: #fff;
    border: 8px solid #F2E5D8;
}

@media (max-width: 767px) {
    .check-list {
        border: 5px solid #F2E5D8;
    }
}

@media (max-width: 575px) {
    .check-list {
        border-radius: 90px;
        margin: 3.5rem 0 1.5rem;
    }
}

.check-list__container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 6rem 3rem;
    text-align: left;
    border-radius: 9999px;
    background-image: url(../images/check_bg.png);
    background-repeat: repeat;
}

@media (max-width: 1023px) {
    .check-list__container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 4rem 13rem;
    }
}

@media (max-width: 767px) {
    .check-list__container {
        gap: 2rem;
        padding: 5rem 8rem;
    }
}

@media (max-width: 575px) {
    .check-list__container {
        border-radius: 90px;
        padding: 4rem;
    }
}

.check-list::after {
    content: "check!";
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 700;
    color: #C42021;
}

@media (max-width: 1023px) {
    .check-list::after {
        font-size: 3.4rem;
    }
}

.check-list li {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (max-width: 767px) {
    .check-list li {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .check-list li {
        font-size: 1.6rem;
    }
}

.check-list li::before {
    content: "";
    flex-shrink: 0;
    background: url("../images/check_icon.svg") no-repeat center/contain;
    width: 24px;
    height: 24px;
    transform: translateY(0.3rem);
}

@media (max-width: 1023px) {
    .check-list li::before {
        width: 22px;
        height: 22px;
        transform: translateY(0.5rem);
    }
}

@media (max-width: 575px) {
    .check-list li::before {
        width: 18px;
        height: 18px;
        transform: translateY(0.3rem);
    }
}

.check-list li:first-child {
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    .check-list li:first-child {
        margin-bottom: 2rem;
    }
}

.check-list li span {
    display: block;
}

.check-text__box img {
    max-width: 8px;
    width: 100%;
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    .check-text__box img {
        max-width: 5px;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
}

@media (max-width: 1023px) {
    .check-list__container ul {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .check-text__box p {
        font-size: 1.6rem;
        line-height: 1.6;
        text-align: left;
    }
}

/*profile
-----------------------------------------------------*/

.profile {
    padding: 7rem 6rem 10rem;
    border-radius: 6rem;
    background-color: #fff;
    border: 8px solid #F2E5D8;
}

@media (max-width: 1023px) {
    .profile {
        padding: 6rem 2rem 6rem;
    }
}

@media (max-width: 575px) {
    .profile {
        border-radius: 4rem;
        border: 5px solid #F2E5D8;
    }
}

.profile-Box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 7rem;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .profile-Box {
        gap: 4rem;
    }
}

@media (max-width: 767px) {
    .profile-Box {
        flex-direction: column;
        gap: 3rem;
    }
}

/* left */
.profile-left {
    flex: 1 1 30%;
}

@media (max-width: 767px) {
    .profile-left {
        display: flex;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .profile-left {
        flex-direction: column;
        margin: 0 auto;
        max-width: 100%;
    }
}


.profile-left__img {
    width: 100%;
    margin-bottom: 2rem;
}

.profile-left img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .profile-left__img {
        flex: 0 0 30%;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .profile-left__img {
        width: 60%;
    }
}

.profile-left__name__post {
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 575px) {

    .profile-left__name__post {
        line-height: 1.6;
    }
}

@media (max-width: 767px) {

    .profile-left__nameBox {
        text-align: left;
    }
}

/* right */
.profile-right {
    flex: 1 1 50%;
}

@media (max-width: 767px) {
    .profile-right {
        width: 100%;
    }
}

.profile-text__Message {
    font-size: 1.6rem;
    font-weight: 700;
    border: 1px solid;
    width: 85px;
    border-radius: 30px;
    text-align: center;
    padding: 0.2rem 0 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {

    .profile-text__Message {
        font-size: 1.4rem;
        width: 70px;
    }
}

.profile-text__Box {
    text-align: left;
}

.profile-text__description {
    margin-top: 1rem;
    font-weight: 500;
}

/*CTA
-----------------------------------------------------*/

.cta {
    background-color: #F2E4D6;
    border-radius: 60px;
    padding: 8rem 10rem;
    margin: 10rem auto 0;
}

@media (max-width: 1199px) {
    .cta {
        padding: 8rem 5rem;
    }
}

@media (max-width: 767px) {
    .cta {
        padding: 6rem 3rem;
    }
}

@media (max-width: 575px) {
    .cta {
        margin: 8rem auto 0;
    }
}

.cta-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

@media (max-width: 1199px) {
    .cta-container {
        gap: 4rem;
    }
}

@media (max-width: 767px) {
    .cta-container {
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        justify-items: center;
    }
}

.cta-container::before {
    content: "";
    position: absolute;
    top: -13rem;
    left: 0;
    width: 219px;
    height: 114px;
    display: block;
    background: url(../images/mockup_img.png) no-repeat left top / contain;
}

@media (max-width: 767px) {
    .cta-container::before {
        top: -11rem;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        background: url(../images/mockup_img.png) no-repeat center top / contain;
    }
}

@media (max-width: 575px) {
    .cta-container::before {
        top: -9rem;
        width: 160px;
    }
}

/* btn */
.cta__btn {
    flex-shrink: 0;
}

/*process
-----------------------------------------------------*/

.process {
    padding-bottom: 0;
}

.process-Box {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    padding: 0 10rem;
}

@media (max-width: 1199px) {
    .process-Box {
        padding: 0;
    }
}

@media (max-width: 1023px) {
    .process-Box {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .process-Box {
        flex-direction: column;
        gap: rem;
        padding: 0 2rem;
    }
}

.process-Box__item {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    box-sizing: border-box;

}

@media (max-width: 1023px) {
    .process-Box__item {
        flex: 1 1 calc((100% - 3rem) / 2);
        max-width: calc((100% - 3rem) / 2);
        min-width: auto;
    }

    .process-Box__item:nth-child(3) {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .process-Box__item {
        width: 320px;
        max-width: 100%;
        margin: 0 auto;
    }
}

.process-Box__item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1023px) {
    .process-Box__item img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

.process__title {
    display: flex;
    letter-spacing: 0.08em;
    line-height: 1.4;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

@media (max-width: 1023px) {
    .process__title {
        height: auto;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .process__title {
        font-size: 2rem;
        letter-spacing: 0.03em;
    }
}

.process-Box__item__text {
    margin-top: 3rem;
}

@media (max-width: 1023px) {
    .process-Box__item__text {
        margin-top: 1.5rem;
    }
}

.process__description {
    text-align: left;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process__description01 {
    margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
    .process__description01 {
        margin-bottom: 2rem;
    }
}

/* btn */
.process-btn::after {
    font-size: 0.4rem;
}

/*form
-----------------------------------------------------*/

.form {
    max-width: 100%;
    box-sizing: border-box;
    background-color: #EEE6DE;
    padding-top: 0;
    background: #EEE6DE url(../images/form_bgImage.png) no-repeat right 0 bottom -10rem / cover;
    background-size: 600px auto;
}

@media (max-width: 575px) {
    .form {
        background-size: 500px auto;
    }
}

.form-title__text {
    letter-spacing: 0.2rem;
    line-height: 1.2;
}

.form-title__text::before {
    transform: rotate(-35deg);
}

.form-title__text::after {
    transform: rotate(35deg);
}

@media (max-width: 1023px) {
    .form-title__text {
        font-size: 2.6rem;
    }
}

@media (max-width: 767px) {
    .form-title__text {
        font-size: 2.2rem;
    }
}

.form-tilte-sub__text {
    position: relative;
}

.form-tilte-sub__text::before,
.form-tilte-sub__text::after {
    position: relative;
    display: inline-block;
    content: "";
    background: #C42021;
    width: 2px;
    height: 1.2em;
    margin: -0.3em 0.7em 0;
    vertical-align: middle;
}

.form-tilte-sub__text::before {
    transform: rotate(-30deg);
}

.form-tilte-sub__text::after {
    transform: rotate(30deg);
}

@media (max-width: 1023px) {
    .form-tilte-sub__text {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .form-tilte-sub__text {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575px) {

    .form-tilte-sub__text::before,
    .form-tilte-sub__text::after {
        display: none;
    }
}

.curved {
    position: relative;
    background: #F8F0E8;
    height: 20vh;
    border-bottom-left-radius: 100% 200%;
    border-bottom-right-radius: 100% 200%;
    margin-bottom: 8rem;
}

@media (max-width: 767px) {
    .curved {
        margin-bottom: 5rem;
    }
}

@media (max-width: 767px) {
    .curved {
        height: 12vh;
        border-bottom-left-radius: 100% 150%;
        border-bottom-right-radius: 100% 150%;
    }
}

/* form-Box */
.form-box {
    max-width: 690px;
    margin: 0 auto;
}

.form-itemBox {
    margin-bottom: 2.5rem;
}

.form-label {
    font-size: 1.4rem;
    text-align: left;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 2rem 0 2rem 2rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background-color: #fff;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    border: 1px solid transparent;
    background-color: #fff;
    box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #a3a3a3;
    background-color: #f5f5f5;
}

.form-name__Box {
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 1rem;
}

@media (max-width: 575px) {
    .form-name__Box {
        flex-direction: column;
    }
}

.form-fields__name input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.form-noteText {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    margin-top: 0.5rem;
}


/* error */
/* .error-message {
    font-weight: 700;
    text-align: left;
    color: #e53935;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

input.is-error {
    border-color: #e53935;
    background-color: #ffebee;
} */