@charset "UTF-8";

/*=====================*/
/*	color
/*=====================*/
:root {
	--black: #000000;
    --text: #333333;
    --sub-text: #486284;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --primary: #2E9995;
    --secondary: #0E6878;
    --yellow: #FFE5A7;
    --blue: #D9E9F8;
    --bg: #d6ebea;
    --flow-bg: #D7EFEF;
    --voice-bg: #73C2C3;
    --faq-bg: #FFF9EA;
}

/*=====================*/
/*	common
/*=====================*/
body {
    width: 100%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/*=====================*/
/*	header
/*=====================*/
.header {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding: 16px 0;
}

/*=====================*/
/*	mv
/*=====================*/
.mv {
    overflow: hidden;
    background: var(--bg);
    padding-top: 28px;
    clip-path: ellipse(60% 100% at 50% 0%);
    height: 372px;
    position: relative;
}
.mv__title {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    color: var(--primary);
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 700;
}
.mv__image {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin-inline: auto;
}
.mv__pairman {
    position: absolute;
    z-index: 2;
    left: 90px;
    top: 44px;
    aspect-ratio: 368 / 306;
    transform-origin: center bottom;
    animation: pairmanRotate 2s linear forwards;
}
@keyframes pairmanRotate {
    0% {
        transform: rotate(-13.35deg);
    }
    10% {
        transform: rotate(-13.35deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.mv__image-doctor {
    position: relative;
}
.mv__doctor-arm {
    position: absolute;
    top: 156px;
    left: -132px;
    aspect-ratio: 186 / 290;
    z-index: 1;
    transform-origin: 80% 80%;
    animation: armMotion 2s linear forwards;
}
@keyframes armMotion {
    0% {
        transform:
            rotate(7.96deg)
            scale(1);
    }
    10% {
        transform:
            rotate(7.96deg)
            scale(1);
        animation-timing-function: ease-out;
    }
    50% {
        transform:
            rotate(-2deg)
            scale(.9);
    }
    100% {
        transform:
            rotate(-2deg)
            scale(.9);
    }
}
.mv__doctor {
    position: absolute;
    top: 44px;
    left: 10px;
    aspect-ratio: 260 / 417;
    z-index: 2;
    transform-origin: center bottom;
    animation: doctorRotate 2s linear forwards;
}
@keyframes doctorRotate {
    0% {
        transform: rotate(7.96deg);
    }
    10% {
        transform: rotate(7.96deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}
.mv__line {
    position: absolute;
    top: 136px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
}
.mv__line path {
    stroke-dasharray: 1 1;
    stroke-dashoffset: 1;
    animation: lineDraw 2s ease forwards;
}
@keyframes lineDraw {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 769px) {
    .mv {
        padding-top: 16px;
        clip-path: ellipse(80% 100% at 50% 0%);
        height: 288px;
    }
    .mv__title {
        flex-direction: column;
        align-items: center;
        font-size: 1.25rem;
    }
    .mv__title img{
        aspect-ratio: 243 / 76;
        width: 186px;
        height: auto;
    }
    .mv__image {
        max-width: 320px;
    }
    .mv__pairman {
        left: 10px;
        top: 20px;
        width: 215px;
        height: auto;
    }
    .mv__doctor-arm {
        top: 80px;
        left: -68px;
        width: 108px;
        height: auto;
    }
    .mv__doctor {
        top: 20px;
        left: 10px;
        width: 145px;
        height: auto;
    }
    .mv__line {
        top: 68px;
    }
}

/*=====================*/
/*	worries
/*=====================*/
.worries {
    background: linear-gradient(180deg, #FFF 0%, #F5F5F5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding-top: 48px;
    position: relative;
}
.worries::before{
    content: "";
    position: absolute;
    background: url("../img/worries_bg.png") repeat;
    background-position: center;
    width: 100%;
    height: 492px;
    top: 0;
    left: 0;
    z-index: 1;
}
.worries__title {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}
.sp-only {
    display: none;
}
.worries__content {
    position: relative;
    margin: 48px auto;
    z-index: 2;
}
.worries__jobopenings {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: relative;
}
.worries__lead {
    position: relative;
    margin-bottom: 4px;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 500;
}
.worries__lead::after {
    content: "";
    background: url("../img/jobcard_line.svg") no-repeat center / contain;
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 282px;
    height: 16px;
}
.worries__jobcard {
    display: block;
    margin-inline: auto;
    position: relative;
    z-index: 3;
}
.worries__jobopenings::after {
    content: "";
    background: var(--blue);
    border-radius: 264px;
    position: absolute;
    left: 50%;
    top: 55px;
    transform: translateX(-50%);
    width: 264px;
    height: 264px;
    z-index: 2;
}
.worries__doctors {
    position: absolute;
    inset: 0;
}
.worries__doctor {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.worries__doctor p {
    position: relative;
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 140%;
    text-align: center;
}
.worries__man {
    right: 312px;
    bottom: -48px;
}
.worries__man p {
    width: 200px;
    position: relative;
}
.worries__man p::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../img/worries_bubble_man.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 240 / 123;
    width: 240px;
    height: auto;
    top: -24px;
    left: -24px;
}
.worries__doctor img {
    display: block;
    margin-inline: auto;
}
.worries__woman {
    left: 332px;
    bottom: -48px;
}
.worries__woman p {
    width: 140px;
    position: relative;
}
.worries__woman p::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../img/worries_bubble_woman.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 207 / 132;
    width: 207px;
    height: auto;
    top: -30px;
    left: -40px;
}

@media (max-width: 769px) {
    .worries {
        padding-top: 32px;
        height: 571px;
    }
    .worries::before{
        height: 603px;
    }
    .worries__title {
        font-size: 1.25rem;
    }
    .sp-only {
        display: flex;
    }
    .worries__content {
        margin: 24px auto;
    }
    .worries__lead {
        font-size: 1rem;
    }
    .worries__lead::after {
        width: 194px;
    }
    .worries__jobcard {
        aspect-ratio: 240 / 234;
        width: 160px;
        height: auto;
    }
    .worries__jobopenings::after {
        border-radius: 180px;
        top: 44px;
        width: 180px;
        height: 180px;
    }
    .worries__doctor p {
        font-size: 0.875rem;
    }
    .worries__man {
        right: 116px;
        bottom: -275px;
    }
    .worries__man img {
        aspect-ratio: 123 / 180;
        width: 100px;
        height: auto;
    }
    .worries__man p {
        width: 142px;
    }
    .worries__man p::before {
        width: 172px;
        top: -20px;
        left: -20px;
    }
    .worries__woman {
        left: 140px;
        bottom: -275px;
    }
    .worries__woman img {
        aspect-ratio: 112 / 180;
        width: 91px;
        height: auto;
    }
    .worries__woman p {
        width: 99px;
    }
    .worries__woman p::before {
        width: 152px;
        top: -24px;
        left: -32px;
    }
}

/*=====================*/
/*	announce
/*=====================*/
.announce {
    background: var(--white);
}
.announce__title {
    position: relative;
    padding: 32px 0;
    background: var(--primary);
    width: 100%;
}
.announce__title h2 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}
.announce__title::after {
    content: "";
    position: absolute;
    background: url("../img/section_boundary.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 309 / 61;
    width: 309px;
    height: auto;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
}
.announce__solution {
    margin-top: 96px;
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 160%;
    text-align: center;
}
.announce__solution span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.announce__solution span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 12px;
    background: var(--yellow);
    z-index: -1;
}
.announce__content {
    position: relative;
    max-width: 960px;
    width: 100%;
    margin: 72px auto 56px;
}
.announce__hero {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto 88px;
    width: 240px;
}
.announce__hero::before {
    content: "";
    background: var(--blue);
    border-radius: 264px;
    position: absolute;
    left: 50%;
    top: -36px;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: 1;
}
.announce__jobcard {
    display: block;
    margin-inline: auto;
    position: relative;
    aspect-ratio: 240 / 234;
    z-index: 2;
}
.announce__mynavi {
    position: absolute;
    left: 128px;
    top: 80px;
    aspect-ratio: 148 / 175;
    z-index: 3;
}
.announce__pairs {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}
.announce__pairs::before,
.announce__pairs::after{
    content: "";
    position: absolute;
    background: url("../img/arrow_pc.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 127px;
    height: 222px;
    top: -220px;
}
.announce__pairs::before{
    left: 152px;
}
.announce__pairs::after{
    right: 152px;
    transform: scaleX(-1);
}
.announce__point {
    display: flex;
    justify-content: center;
    background: var(--yellow);
    border-radius: 100px;
    width: 493px;
    z-index: 2;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
}
.announce__point p {
    padding: 8px 16px;
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
}
.announce__pair {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 44px 24px 16px;
    border-radius: 16px;
    background: var(--gray);
    width: calc(50% - 12px);
}
.announce__pair > img {
    flex-shrink: 0;
}
.announce__multiplication {
    aspect-ratio: 91 / 141;
    padding-top: 40px;
}
.announce__doctor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.announce__pair .announce__doctor p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 8px 20px;
    border-radius: 40px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
    text-align: center;
}
.announce__oneday .announce__doctor p {
    width: 80px;
}
.announce__onemonth .announce__doctor p {
    width: 103px;
}
.announce__doctor p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--primary);
    transform: translateX(-50%);
}
.announce__doctor img {
    display: block;
}

@media (max-width: 960px) {
    .announce__hero {
        margin: 0 auto 112px;
    }
    .announce__pairs {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: calc(100% - 32px);
        margin: 0 auto;
    }
    .announce__pairs::before{
        content: "";
        position: absolute;
        background: url("../img/arrow_sp.svg");
        width: 29px;
        height: 65px;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
    }
    .announce__pairs::after{
        display: none;
    }
    .announce__point {
        width: 424px;
        top: 264px;
    }
    .announce__point p {
        padding: 8px 32px;
        font-size: 1.25rem;
    }
    .announce__pair {
        gap: 16px;
        background: var(--gray);
        width: 520px;
    }
    .announce__oneday {
        padding: 16px 24px 20px;
        border-radius: 8px 8px 0 0;
    }
    .announce__onemonth {
        padding: 32px 24px 16px;
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 769px) {
    .announce__title {
        padding: 20px 0;
    }
    .announce__title h2 {
        font-size: 1.125rem;
    }
    .announce__title::after {
        content: "";
        width: 240px;
        bottom: -47px;
    }
    .announce__solution {
        margin-top: 72px;
        font-size: 1.125rem;
    }
    .announce__solution span::after {
        bottom: 2px;
        height: 10px;
    }
    .announce__content {
        margin: 40px auto;
    }
    .announce__hero {
        width: 160px;
    }
    .announce__hero::before {
        border-radius: 208px;
        top: -24px;
        width: 208px;
        height: 208px;
    }
    .announce__jobcard {
        width: 160px;
        height: auto;
    }
    .announce__mynavi {
        width: 105px;
        height: auto;
        left: 100px;
        top: 50px;
    }
    .announce__point {
        width: 352px;
        top: 216px;
    }
    .announce__point p {
        font-size: 1rem;
    }
    .announce__pair {
        width: calc(100% - 48px);
        gap: 8px;
    }
    .announce__multiplication {
        width: 32px;
        height: auto;
        padding-top: 80px;
    }
    .announce__doctor {
        gap: 16px;
    }
    .announce__doctor img {
        width: 112px;
        height: 112px;
    }
    .announce__pair .announce__doctor p {
        padding: 6px 16px;
        font-size: 0.825rem;
    }
}

/*=====================*/
/*	flow
/*=====================*/
.flow {
    padding: 56px 16px 64px;
    background: var(--flow-bg);
}
.flow__title {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
}
.flow__contents {
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 720px;
    width: 100%;
}
.flow__inner {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    position: relative;
}
.flow__type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 12px 24px 8px 24px;
    border-bottom: 1px solid var(--flow-bg);
}
.flow__type h3 {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
}
.flow__type h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 40px;
    background: var(--flow-bg);
    transform: translateY(-50%);
}
.flow__content {
    padding: 24px 0 16px;
}
.flow__content p {
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
.flow__pair {
    margin: 24px 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
}
.flow__pair--type1 {
    gap: 64px;
}
.flow__pair--type2,
.flow__pair--type3 {
    gap: 80px;
}
.flow__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 24px;
}
.flow__member span {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    padding: 4px 16px;
    border-radius: 100px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    bottom: -24px;
}
.flow__member--member span {
    background: var(--yellow);
    border: 1px solid var(--white);
}
.flow__member--nonmember span {
    background: var(--white);
    border: 1px solid var(--primary);
}
.flow__arrow {
    display: block;
    margin: 0 auto;
}
.flow__entries {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.flow__entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}
.flow__label {
    display: none;
}
.flow__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: var(--primary);
    color: var(--white);
    width: 272px;
    height: 75px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .3s;
}
.flow__entry--nonmember .flow__btn {
    line-height: 130%;
}
.flow__btn:hover {
    opacity: .7;
}
.flow__btn img {
    flex-shrink: 0;
}
.flow__entry p {
    color: var(--sub-text);
    font-size: 0.75rem;
    font-weight: 400;
}
.flow__arrow--inner {
    display: flex;
    gap: 216px;
    width: 380px;
    margin: 0 auto;
}
.flow__campaign-badge {
    position: absolute;
    background: url("../img/campaign_pc.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 193px;
    height: 74px;
    top: -40px;
    left: -60px;
    z-index: 2;
}
.flow__campaign-badge p {
    padding: 12px 40px;
    color: var(--white);
    text-align: center;
    font-size: 0.875rem;
    line-height: 130%;
    position: relative;
}
.flow__subject {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/bubble.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 96px;
    height: 38px;
    top: -28px;
    left: -16px;
    z-index: 2;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}
.flow__campaign {
    background: var(--white);
    border: 2px dashed var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    max-width: 650px;
    width: calc(100% - 80px);
    padding: 24px 40px 16px 40px;
    gap: 24px;
    margin: 0 auto;
}
.flow__about-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.flow__about-title {
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}
.flow__about-title span {
    position: relative;
    z-index: 1;
}
.flow__about-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 8px;
    background: var(--yellow);
    z-index: -1;
}
.flow__about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.flow__about-content p {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
}
.flow__about-content p span{
    color: var(--primary);
}
.flow__about-attention p {
    color: var(--sub-text);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%;
}   

@media (max-width: 769px) {
    .flow {
        padding: 40px 16px;
    }
    .flow__title {
        font-size: 1.25rem;
    }
    .flow__contents {
        margin: 32px auto;
    }
    .flow__type {
        flex-direction: column;
        gap: 0;
        padding: 8px 0 0;
        border: none;
    }
    .flow__type img {
        aspect-ratio: 57 / 48;
        width: 48px;
        height: auto;
    }
    .flow__type h3 {
        padding: 32px 0 0;
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
    .flow__type h3::before {
        width: 100%;
        height: 1px;
        top: 8px;
    }
    .flow__content {
        padding: 20px 0 16px;
        display: flex;
        flex-direction: column;
    }
    .flow__content > p {
        order: 2;
    }
    .flow__content p {
        font-size: 0.75rem;
    }
    .flow__pair {
        order: 1;
        margin: 0 0 16px;
        padding: 20px 0;
        gap: 28px;
        border-bottom: 1px solid var(--flow-bg);
    }
    .flow__pair--type1,
    .flow__pair--type2,
    .flow__pair--type3 {
        gap: 8px;
    }
    .flow__arrow {
        display: none;
    }
    .flow__entries {
        order: 3;
        margin-top: 16px;
        flex-direction: column;
    }
    .flow__content .flow__explain {
        color: var(--text);
        font-size: 0.875rem;
        font-weight: 500;
    }
    .flow__entry .flow__explain {
        color: var(--text);
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 8px;
    }
    .flow__label {
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        color: var(--primary);
        font-weight: 600;
        width: 80px;
        height: 38px;
        font-size: 1rem;
    }
    .flow__label--member {
        background: url("../img/flow_label_memeber.svg");
    }
    .flow__label--nonmember {
        background: url("../img/flow_label_nonmemeber.svg");
    }
    .flow__btn {
        font-size: 1rem;
    }
    .flow__btn img {
        aspect-ratio: 24 / 24;
        width: 20px;
        height: auto;
    }
    .flow__campaign-badge {
        background-image: url("../img/campaign_sp.svg");
        width: 160px;
        height: 74px;
        top: -52px;
        left: -4px;
    }
    .flow__campaign-badge p {
        padding: 12px 14px;
    }
    .flow__subject {
        position: static;
        margin-bottom: 0;
    }
    .flow__campaign {
        flex-direction: column;
        align-items: center;
        width: calc(100% - 32px);
        padding: 24px 16px;
    }
    .pc-only {
        display: none;
    }
    .flow__about-inner {
        align-items: center;
    }
    .flow__about-title {
        margin-bottom: 8px;
    }
    .flow__about-content {
        align-items: center;
    }
    .flow__about-content p {
        font-size: 0.875rem;
    }
}

/*=====================*/
/*	voice
/*=====================*/
.voice {
    padding: 56px 0 64px;
    background: var(--voice-bg);
}
.voice__title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
}
.voice__list-container {
    max-width: 960px;
    width: calc(100% - 80px);
    margin: 40px auto 0;
    position: relative;
    padding: 0 40px;
}
.voice__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.voice__item {
    position: relative;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    width: 304px;
    max-width: 304px;
    height: auto;
}
.voice__item > img {
    display: block;
    margin: 0 auto;
    position: relative;
}
.voice__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 16px 16px 24px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 16px;
}
.voice__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.voice__header h3 {
    color: var(--secondary);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 147%;
    text-align: center;
}
.voice__label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.voice__label span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px 16px;
    border: 1px solid var(--primary);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 147%;
}
.voice__content p {
    position: relative;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0.12px;
}
.voice__content p::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 12px;
    background-image:
        repeating-linear-gradient(
            to right,
            var(--primary) 0,
            var(--primary) 6px,
            transparent 6px,
            transparent 14px
        );
}

@media (max-width: 960px) {
    .voice__list {
        list-style: none;
        overflow: hidden;
        display: block;
    }
    .voice__item {
        height: 100%;
    }
}

@media (max-width: 769px) {
    .voice {
        padding: 40px 0;
    }
    .voice__title {
        font-size: 1.25rem;
    }
    .voice__list-container {
        width: 100%;
        margin: 32px 0 0;
        padding: 0;
    }
    .voice__item > img {
        aspect-ratio: 304 / 120;
        width: 280px;
        height: auto;
    }
    .voice__header h3 {
        font-size: 1rem;
    }
    .voice__label span {
        font-size: 0.75rem;
    }
    .voice__content p {
        font-size: 0.825rem;
        letter-spacing: 0.105px;
    }
}

/*=====================*/
/*	slider
/*=====================*/
.voice .slick-track {
    display: flex;
}
.voice .slick-slide {
    height: inherit;
}
.voice .slick-slide > div {
    height: 100%;
}
.voice .slick-prev,
.voice .slick-next {
    position: absolute;
    top: 56%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary);
    z-index: 10;
    font-size: 0;
    transition: opacity .3s;
}
.voice .slick-prev::before,
.voice .slick-next::before {
    content: "";
}
.voice .slick-prev::after {
    content: "";
    position: absolute;
    background: url("../img/swiper_arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    left: 48%;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
}
.voice .slick-next::after {
    content: "";
    position: absolute;
    background: url("../img/swiper_arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    left: 54%;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%) scaleX(-1);
}
.voice .slick-prev {
    left: 8px;
}
.voice .slick-next {
    right: 8px;
}
.voice .slick-prev:hover,
.voice .slick-next:hover{
    opacity: .8;
}

@media (max-width: 960px) {
    .voice .slick-prev,
    .voice .slick-next {
        width: 48px;
        height: 48px;
    }
    .voice .slick-prev::after,
    .voice .slick-next::after {
        width: 20px;
        height: 20px;
    }
}

/*=====================*/
/*	faq
/*=====================*/
.faq {
    padding: 48px 16px 64px;
    background: var(--faq-bg);
}
.faq__title {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
}
.faq__container {
    max-width: 960px;
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq__item {
    padding: 24px 24px 16px;
    background: var(--white);
    border-radius: 16px;
}
.faq__question,
.faq__answer {
    position: relative;
    padding-left: 23px;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 500;
}
.faq__question {
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--primary);
}
.faq__question::before {
    content: "";
    position: absolute;
    background: url("../img/faq_q.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 2px;
    left: 0;
    width: 15px;
    height: 23px;
}
.faq__answer {
    margin-top: 24px;
}
.faq__answer::before {
    content: "";
    position: absolute;
    background: url("../img/faq_a.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 2px;
    left: 0;
    width: 15px;
    height: 23px;
}
.faq__answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: opacity .3s;
}
.faq__answer a:hover {
    opacity: .7;
}

@media (max-width: 769px) {
    .faq {
        padding: 40px 16px;
    }
    .faq__title {
        font-size: 1.25rem;
    }
    .faq__container {
        margin: 32px auto 0;
    }
    .faq__item {
        padding: 20px 16px 16px;
    }
    .faq__question,
    .faq__answer {
        font-size: 0.95rem;
    }
    .faq__question {
        padding-bottom: 16px;
    }
    .faq__answer {
        margin-top: 16px;
    }
}

/*=====================*/
/*	form
/*=====================*/
.form {
    position: relative;
    overflow: hidden;
    padding: 56px 48px;
    background: var(--primary);
}
.form__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.form__btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 343px;
    padding: 24px 0;
    border-radius: 100px;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .3s;
}
.form__btn::after {
    content: "";
    position: absolute;
    background: url("../img/arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    right: 22px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
}
.form__btn:hover {
    opacity: .8;
}
.form__container p {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 400;
}
.form__line {
    position: absolute;
    width: 444px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
.form__line--left {
    left: 0;
    bottom: 0;
}
.form__line--right {
    right: 0;
    top: 0;
}
.form__line path {
    stroke-dasharray: 1 1;
    stroke-dashoffset: 1;
}
.form.is-active .form__line path {
    animation: formLineDraw 3s ease forwards;
}
@keyframes formLineDraw {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 769px) {
    .form {
        padding: 56px 8px;
    }
    .form__container p {
        font-size: 0.7rem;
    }
    .form__line {
        width: 180px;
    }
}

/*=====================*/
/*	footer 引用：/special/houmon/
/*=====================*/
footer{
    background: var(--white);
}
.c-container {
    max-width: 1120px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.p-section {
    padding: 94px 0;
}
@media (max-width:767px){
    .p-section{
        padding: 40px 20px;
    }
}
.p-footer__appeal {
    padding: 60px 0 50px;
}
@media(max-width:767px){
    .p-footer__appeal{
        padding: 40px 0;
    }
}
.p-appeal__list {
    text-align: center;
}
.p-appeal__list__item {
    width: 33%;
    display: inline-block;
    vertical-align: top;
}
@media(max-width:1199px){
    .p-appeal__list__item {
        width: 50%;
        display: block;
        margin: 40px auto 0;
    }
    .p-appeal__list__item:first-child {
        margin-top: 0;
    }
}
@media(max-width:1199px) and (max-width:767px){
    .p-appeal__list__item {
        width: 100%;
    }
}
.p-appeal__list__item--img {
    float: left;
}
.p-appeal__list__item--img--job,
.p-appeal__list__item--img--privacy {
    display: inline-block;
}
@media(max-width:1199px){
    .p-appeal__list__item--img {
        width: 30%;
    }
    .p-appeal__list__item--img img {
        display: inline-block;
    }
}
.p-appeal__list__item--img p {
    color: #1eb8b1;
    font-size: 25px;
    margin-top: -16px;
}
.p-appeal__list__item--img p span {
    font-weight: 700;
    font-size: 60px;
}
@media(max-width:767px){
    .p-appeal__list__item--img--privacy{
        width: 65px;
        height: auto;
    }
    .p-appeal__list__item--img--privacy img{
        width:100%;
    }
    .p-appeal__list__item--img p{
        font-size:30px;
    }
    .p-appeal__list__item--img p span{
        font-size:71px;
    }
}
.p-appeal__list__item--description {
    width: 64%;
    float: left;
    margin-left: 20px;
}
@media(max-width:767px){
    .p-appeal__list__item--description {
        width: 60%;
        margin-left: 2%;
    }
}
.p-appeal__list__item--description h3 {
    display: block;
    line-height: 1.8;
    font-size: 14px;
    text-align: left;
    font-weight: 700;
}
.p-appeal__list__item--description p {
    line-height: 1.8;
    text-align: left;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}
@media(max-width:767px){
    .p-appeal__list__item--description h3,
    .p-appeal__list__item--description p{
        font-size:12px;
    }
}
.add__company__info {
    padding: 12px;
    margin: 12px;
    display: flex;
    justify-content: center;
}
.add__company__info dl {
    font-size: 12px;
    line-height: 180%;
    letter-spacing: .01rem;
    color: #089c95;
    width: 91%;
}
.add__company__info dl dt {
    font-weight: bold;
}
@media(min-width:767px){
    .add__company__info {
        margin: 12px 24px;
    }
    .add__company__info dl {
        width: 74%;
    }
}
@media(min-width:1199px){
    .add__company__info {
        margin: 12px auto;
        white-space: nowrap;
    }
    .add__company__info dl {
        width: 820px;
    }
    .add__company__info dl dt {
        float: left;
        clear: left;
    }
}
.add__company__link {
    width: 100%;
    padding-bottom: 12px;
    background-color: #FFF;
    text-align: center;
    border-top: solid 1px #1eb8b1;
    font-size: 12px;
}
.add__company__link a {
    margin-left: 30px;
    color: #1eb8b1;
}
.add__company__link a:first-child {
    margin-left: 0;
}
.add__company__link a:hover {
    text-decoration: underline;
}
.p-footer__copy {
    background-color: #1eb8b1;
    padding: 13px 0;
    position: relative;
}
.p-footer__copy__text {
    line-height: 1;
    font-size: 14px;
    text-align: center;
    color: #fff;
}
@media(max-width:767px){
    .p-footer__copy {
        font-size: 12px;
    }
}
.p-footer__copy__page-top {
    display: block;
    text-align: center;
    width: 50px;
    height: 35px;
    padding-top: 14px;
    border-radius: 7px 7px 0 0;
    background-color: #1eb8b1;
    position: absolute;
    bottom: 28px;
    right: 2.6666666667%;
}
.p-footer__copy__page-top img {
    width: 16px;
    height: 11px;
    vertical-align: top;
    transform: rotate(180deg);
}
.sp {
    display: none;
}
.pc {
    display: block;
}
@media(max-width:767px){
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
.u-device--sp {
    display: none !important;
}
@media(max-width:767px){
    .u-device--sp {
        display: block !important;
    }
}
.p-appeal__list__item::before,
.p-appeal__list__item::after {
    display: table;
    content: "";
}
.p-appeal__list__item::after {
    clear: both;
}