@charset "UTF-8";
/* system
--------------------------- */
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap);
/* reset
--------------------------- */
/* 
 * destyle.css v1.0.14
 * https://github.com/nicolas-cusan/destyle.css 
 */
* {
    box-sizing: border-box;
}

::after,
::before {
    box-sizing: inherit;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
}

main {
    display: block;
}

address,
blockquote,
dl,
figure,
form,
iframe,
p,
pre,
table {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin: 0;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid;
    margin: 0;
    clear: both;
    color: inherit;
}

pre {
    font-family: monospace, monospace;
    font-size: inherit;
}

address {
    font-style: inherit;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    vertical-align: bottom;
}

embed,
iframe,
object {
    border: 0;
    vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    border: 0;
    background: 0 0;
    padding: 0;
    margin: 0;
    outline: 0;
    border-radius: 0;
    text-align: inherit;
}

[type=checkbox] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

[type=radio] {
    -webkit-appearance: radio;
    appearance: radio;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

    [type=button][disabled],
    [type=reset][disabled],
    [type=submit][disabled],
    button[disabled] {
        cursor: default;
    }

    [type=button]::-moz-focus-inner,
    [type=reset]::-moz-focus-inner,
    [type=submit]::-moz-focus-inner,
    button::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    [type=button]:-moz-focusring,
    [type=reset]:-moz-focusring,
    [type=submit]:-moz-focusring,
    button:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

select::-ms-expand {
    display: none;
}

option {
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
}

    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

label[for] {
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[contenteditable] {
    outline: 0;
}

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

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: 700;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

.lato {
    font-family: "Lato", sans-serif;
}

@media (max-width: 750px) {
    .pc-only {
        display: none;
    }
}

@media (min-width: 751px) {
    .sp-only {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .without-sp {
        display: none;
    }
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.noscroll {
    height: 100vh;
    overflow-y: hidden;
}

@supports (-webkit-touch-callout: none) {
    /* iPhoneの表示のみ指定を上書き */
    .noscroll {
        min-height: 100%;
        height: -webkit-fill-available;
    }
}
/* base
--------------------------- */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    color: #222;
    background-color: #F1F9F9;
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2.125;
    max-width: 100vw;
    min-width: 320px;
    width: 100%;
}

img,
video,
object {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
}

a {
    color: #40AEA9;
    text-decoration: none;
    position: relative;
}

@media (min-width: 751px) {
    a {
        transition: all 0.4s;
    }

        a img {
            transition: all 0.4s;
        }

        a:hover img {
            opacity: 0.7;
        }
}

em {
    font-style: normal;
}

/* l-header
--------------------------- */
.l-header {
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 10px;
    background-color: #fff;
    z-index: 900;
}

@media (min-width: 751px) {
    .l-header {
        padding: 4px 18px 3px 0;
    }
}

.l-header__button {
    letter-spacing: 0.1em;
    min-width: 126px;
}

@supports (-webkit-touch-callout: none) {
    /* iPhoneの表示のみ指定を上書き */
    .l-header__button.c-link__button a {
        padding: 0 1em 0.03em;
    }
}
/* l-main
--------------------------- */
.l-main {
    overflow-x: hidden;
    background-color: #fff;
    padding-top: 53px;
}

@media (min-width: 751px) {
    .l-main {
        padding-top: 60px;
    }
}

/* l-footer
--------------------------- */
.l-footer {
    overflow-x: hidden;
    padding: 22px 0 30px;
}

    .l-footer .c-logo {
        margin: 0 auto;
    }

.l-footer__copy {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-align: center;
    display: block;
    margin-top: 46px;
}

/* c-logo
--------------------------- */
.c-logo {
    max-width: 191px;
}

/* c-inner
--------------------------- */
.c-inner {
    padding-left: 23px;
    padding-right: 22px;
}

@media (min-width: 751px) {
    .c-inner {
        max-width: 1128px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* c-text
--------------------------- */
.c-text__l {
    font-weight: 400;
    text-align: justify;
}

@media (max-width: 750px) {
    .c-text__l {
        font-size: 0.9375rem;
    }
}

.c-text__m {
    font-size: 0.8125rem;
    text-align: justify;
}

@media (min-width: 751px) {
    .c-text__m {
        font-size: 0.875rem;
    }
}

.c-text__s {
    font-size: 0.75rem;
    text-align: justify;
}

.c-text__pri {
    color: #40AEA9;
}

.c-text__emp {
    color: #EB6164;
}

/* c-link
--------------------------- */
.c-link__area {
    position: relative;
}

.c-link__href {
    position: static;
    display: block;
}

    .c-link__href::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 20;
        pointer-events: auto;
        background-color: transparent;
    }

.c-link__button a {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 3em;
    padding: 0 1em 0.04em 1.2em;
    background-color: #EB6164;
    border: solid 1px #EB6164;
    border-radius: 9999px;
}

@media (min-width: 751px) {
    .c-link__button a:hover {
        color: #EB6164;
        background-color: #fff;
    }
}

.c-link__button.cv {
    font-size: 1.25rem;
    max-width: 502px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 751px) {
    .c-link__button.cv {
        font-size: 1.5625rem;
    }
}

.c-link__button.cv a {
    min-height: 3.1em;
}

@media (min-width: 751px) {
    .c-link__button.cv a {
        min-height: 3.76em;
    }
}

.c-link__button.pri a {
    background-color: #40AEA9;
    border: solid 1px #40AEA9;
}

@media (min-width: 751px) {
    .c-link__button.pri a:hover {
        color: #40AEA9;
        background-color: #fff;
    }
}

.c-link__bnr {
    position: fixed;
    right: 0;
    bottom: 10px;
    width: 172px;
    padding-top: 27px;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

@media (min-width: 751px) {
    .c-link__bnr {
        bottom: 50px;
    }
}

.c-link__bnr figure {
    position: absolute;
    top: 0;
    left: 18px;
}

    .c-link__bnr figure img {
        width: 140px;
        box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.16);
    }

.c-link__bnr a {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    height: 96px;
    padding: 63px 0 0 0.3em;
    background-color: #EB6164;
    border: solid 2px #EB6164;
    border-right: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media (min-width: 751px) {
    .c-link__bnr a:hover {
        color: #EB6164;
        background-color: #fff;
    }
}

@supports (-webkit-touch-callout: none) {
    /* iPhoneの表示のみ指定を上書き */
    .c-link__button a {
        padding: 0 1em 0.25em;
    }
}
/* c-section
--------------------------- */
@media (max-width: 750px) {
    .c-inner.c-section, .c-inner.bg-wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

.c-section {
    padding-top: 58px;
    padding-bottom: 58px;
}

@media (min-width: 751px) {
    .c-section {
        padding-top: 98px;
        padding-bottom: 100px;
    }
}

.c-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
}

@media (min-width: 751px) {
    .c-section__title {
        font-size: 1.875rem;
        line-height: 1.833;
        letter-spacing: 0.05em;
    }
}

.c-section__title.deco01 .first, .c-section__title.deco02 .first {
    position: relative;
}

    .c-section__title.deco01 .first::after, .c-section__title.deco02 .first::after {
        content: "";
        position: absolute;
        top: -16px;
        left: -26px;
        display: block;
        width: 60px;
        height: 54px;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }

@media (min-width: 751px) {
    .c-section__title.deco01 .first::after, .c-section__title.deco02 .first::after {
        top: -14px;
        left: -56px;
        width: 80px;
        height: 72px;
    }
}

.c-section__title.deco01 .first::after {
    background-image: url(img/deco01.svg);
}

.c-section__title.deco02 .first::after {
    background-image: url(img/deco02.svg);
}

.c-section__title-inner {
    position: relative;
    z-index: 5;
}

@media (min-width: 751px) {
    .c-section__title em {
        font-size: 116.7%;
        line-height: 1;
    }
}

.c-section__content {
    position: relative;
    margin-top: 30px;
}

@media (min-width: 751px) {
    .c-section__content {
        margin-top: 55px;
    }
}

.c-section__content .c-section__box {
    margin-top: 13px;
    padding: 32px 35px 36px;
}

@media (min-width: 751px) {
    .c-section__content .c-section__box {
        margin-top: 30px;
        padding: 52px 62px 60px;
        border-radius: 10px;
    }
}

.c-section__content .c-section__box:first-child {
    margin-top: 0;
}

.c-section__content .c-section__box.bg01 {
    background-color: rgba(64, 174, 169, 0.15);
}

.c-section__content .c-section__box.bg02 {
    background-color: rgba(255, 255, 255, 0.76);
}

.c-section__child-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.05em;
    position: relative;
}

@media (min-width: 751px) {
    .c-section__child-title {
        font-size: 1.5rem;
    }
}

.c-section__child-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35px;
    display: block;
    width: 11px;
    height: 100%;
    background-color: #40AEA9;
}

@media (min-width: 751px) {
    .c-section__child-title::after {
        left: -62px;
        width: 20px;
    }
}

.c-section__child-title .c-text__emp {
    text-decoration: underline;
}

.c-section .c-link__button.cv {
    margin-top: 35px;
}

@media (min-width: 751px) {
    .c-section .c-link__button.cv {
        margin-top: 60px;
    }
}

/* p-mv
--------------------------- */
.p-mv {
    position: relative;
    padding: 92vw 0 30px;
    background-image: url(img/mv-bg01_sp.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
}

@media (max-width: 750px) {
    .p-mv::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 51.83%;
        background-color: rgba(64, 174, 169, 0.16);
        z-index: 1;
    }
}

@media (min-width: 751px) {
    .p-mv {
        padding: 0;
        height: 633px;
        background-color: #EFF7F6;
        background-image: url(img/mv-bg01_pc.jpg);
        background-size: 1366px auto;
        background-position: left top;
    }
}

@media (min-width: 1366px) {
    .p-mv {
        background-position: right top;
    }
}

.p-mv__lead, .p-mv__catch p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.667;
}

@media (max-width: 750px) {
    .p-mv__lead, .p-mv__catch p {
        text-align: center;
    }
}

@media (min-width: 751px) {
    .p-mv__lead, .p-mv__catch p {
        font-size: 1.25rem;
    }
}

.p-mv__lead {
    color: #fff;
    letter-spacing: 0.05em;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70px;
    padding: 0.2em 1em;
    background-color: rgba(64, 174, 169, 0.64);
}

@media (min-width: 751px) {
    .p-mv__lead {
        min-height: 45px;
    }
}

.p-mv__inner {
    position: relative;
    padding-left: 23px;
    padding-right: 22px;
    z-index: 2;
}

@media (min-width: 751px) {
    .p-mv__inner {
        max-width: 1284px;
        height: 100%;
        margin: 0 auto;
        padding-left: 18px;
        padding-right: 18px;
    }
}

.p-mv__content {
    position: relative;
}

@media (min-width: 751px) {
    .p-mv__content {
        padding-top: 70px;
    }
}

@media (min-width: 1140px) {
    .p-mv__content {
        padding-top: 90px;
    }
}

@media (min-width: 1280px) {
    .p-mv__content {
        padding-top: 106px;
    }
}

@media (min-width: 751px) {
    .p-mv__box {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 750px) {
    .p-mv__catch {
        text-align: center;
        padding-top: 14px;
    }
}

@media (min-width: 751px) {
    .p-mv__catch p span {
        display: block !important;
    }
}

@media (min-width: 1140px) {
    .p-mv__catch p span {
        display: inline !important;
    }
}

.p-mv__catch h2 {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0.2em 0 0.85em;
}

@media (min-width: 751px) {
    .p-mv__catch h2 {
        font-size: 1.75rem;
        line-height: 1.38;
        margin: 0.5em 0 0;
    }
}

@media (min-width: 1024px) {
    .p-mv__catch h2 {
        font-size: 2.125rem;
    }
}

@media (min-width: 1140px) {
    .p-mv__catch h2 {
        font-size: 2.375rem;
    }
}

.p-mv__catch h2 .emp {
    line-height: 1.6;
    display: block;
}

@media (min-width: 751px) {
    .p-mv__catch h2 .emp {
        font-size: 102.6%;
    }
}

.p-mv__catch h2 .thin {
    font-weight: 400;
}

.p-mv__catch h2 em {
    font-size: 108%;
}

@media (min-width: 751px) {
    .p-mv__catch h2 em {
        font-size: 117.9%;
    }
}

.p-mv__img {
    margin-right: -2.67vw;
}

@media (min-width: 630px) {
    .p-mv__img {
        max-width: 584px;
        margin: 0 auto;
    }
}

@media (min-width: 751px) {
    .p-mv__img {
        position: relative;
        width: 46.796%;
        margin: 0;
        z-index: 10;
    }
}

@media (min-width: 1024px) {
    .p-mv__img {
        padding-top: 75px;
    }
}

@media (min-width: 1140px) {
    .p-mv__img {
        padding-right: 0.962%;
    }
}

@media (min-width: 1280px) {
    .p-mv__img {
        padding-top: 31px;
    }
}

@media (max-width: 750px) {
    .p-mv__list {
        margin-top: 25px;
    }
}

@media (min-width: 751px) {
    .p-mv__list {
        position: absolute;
        top: 270px;
        left: 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        z-index: 5;
    }
}

@media (min-width: 1024px) {
    .p-mv__list {
        top: 275px;
        width: 50%;
    }
}

@media (min-width: 1280px) {
    .p-mv__list {
        top: 299px;
        width: 47.116%;
    }
}

.p-mv__list li {
    font-weight: 500;
    line-height: 1.5;
    min-height: 64px;
    margin-top: 9px;
    padding: 7px 8px 8px 47px;
    background: #fff url(img/check01.svg) no-repeat 15px center;
    border-radius: 10px;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.16);
}

@media (min-width: 751px) {
    .p-mv__list li {
        width: 100%;
        max-width: 550px;
        min-height: auto;
    }

        .p-mv__list li br {
            display: none;
        }
}

@media (min-width: 1280px) {
    .p-mv__list li {
        width: 284px;
        min-height: 64px;
        margin-top: 13px;
    }

        .p-mv__list li br {
            display: block;
        }
}

@media (max-width: 750px) {
    .p-mv__list li:first-child {
        margin-top: 0;
    }
}

.p-mv .c-link__button.cv {
    margin-top: 30px;
}

@media (min-width: 751px) {
    .p-mv .c-link__button.cv {
        font-size: 1.25rem;
        position: absolute;
        left: 50%;
        bottom: 44px;
        max-width: 18em;
    }
}

@media (min-width: 1024px) {
    .p-mv .c-link__button.cv {
        transform: translate(-50%, 0);
        bottom: 35px;
    }
}

@media (min-width: 1280px) {
    .p-mv .c-link__button.cv {
        font-size: 1.5625rem;
        bottom: 44px;
        max-width: 502px;
    }
}

.p-mv__qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 750px) {
    .p-mv__qr {
        max-width: 340px;
        margin: 30px auto 0;
        padding: 13px 8px 13px 13px;
        border: solid 1px #707070;
    }
}

@media (min-width: 751px) {
    .p-mv__qr {
        position: absolute;
        left: 18px;
        bottom: 38px;
    }
}

@media (min-width: 1024px) {
    .p-mv__qr {
        bottom: 15px;
    }
}

@media (min-width: 1280px) {
    .p-mv__qr {
        bottom: 38px;
    }
}

.p-mv__qr p {
    line-height: 1.667;
    flex: 1;
    padding-left: 33px;
    background: url(img/arrow-left.svg) no-repeat 8px center;
}

.p-mv__code {
    width: 93px;
}

@media (min-width: 1024px) {
    .p-mv__code {
        width: 103px;
    }
}

/* p-nav
--------------------------- */
.p-nav {
    position: relative;
    padding-top: 22px;
}

@media (min-width: 751px) {
    .p-nav {
        padding-top: 60px;
        display: flex;
        flex-wrap: wrap;
    }
}

.p-nav li {
    margin-top: 7px;
}

    .p-nav li:first-child {
        margin-top: 0;
    }

@media (min-width: 751px) {
    .p-nav li {
        width: 31.96%;
        margin: 19px 0 0 2.06%;
    }

        .p-nav li:nth-child(2), .p-nav li:nth-child(3) {
            margin-top: 0;
        }

        .p-nav li:nth-child(3n+1) {
            margin-left: 0;
        }
}

.p-nav li a {
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    position: relative;
    display: block;
    min-height: 44px;
    padding: 8px 18px 9px;
    background-color: #fff;
    border: solid 1px #22BBAB;
    border-radius: 10px;
}

@media (min-width: 751px) {
    .p-nav li a {
        min-height: 64px;
        padding: 19px 18px 20px;
    }

        .p-nav li a:hover {
            color: #fff;
            background-color: #40AEA9;
        }

            .p-nav li a:hover::after {
                border-color: #fff;
            }
}

.p-nav li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    display: block;
    width: 9px;
    height: 9px;
    border-bottom: solid 2px #40AEA9;
    border-right: solid 2px #40AEA9;
    transform: translate(0, -75%) rotate(45deg);
    transition: all 0.4s;
}

/* p-section01
--------------------------- */
.p-section01 {
    position: relative;
    padding: 40px 0 60px;
}

@media (min-width: 751px) {
    .p-section01 {
        padding: 98px 0 100px;
    }
}

.p-section01::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 38.83%;
    background-image: url(img/sec01-bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    z-index: 1;
}

@media (min-width: 751px) {
    .p-section01::after {
        height: 400px;
    }
}

@media (min-width: 1140px) {
    .p-section01::after {
        height: 487px;
    }
}

.p-section01__wrap {
    position: relative;
    z-index: 5;
}

@media (min-width: 751px) {
    .p-section01__wrap {
        max-width: 944px;
        margin: 0 auto;
    }
}

.p-section01__intro {
    font-weight: 700;
}

@media (max-width: 750px) {
    .p-section01__intro {
        margin: 0 -4px;
    }
}

@media (min-width: 751px) {
    .p-section01__intro {
        text-align: center;
    }
}

.p-section01__intro-text {
    color: #40AEA9;
    font-size: 1.125rem;
    line-height: 1.667;
}

@media (max-width: 750px) {
    .p-section01__intro-text {
        display: table;
        min-height: 161px;
        margin: 0 auto;
        padding-left: 118px;
        background-image: url(img/sec01-img01.png);
        background-repeat: no-repeat;
        background-size: 122px auto;
    }
}

@media (min-width: 751px) {
    .p-section01__intro-text {
        font-size: 1.375rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 750px) {
    .p-section01__intro-text p {
        vertical-align: middle;
        display: table-cell;
        height: 100%;
    }
}

.p-section01__intro h3 {
    font-size: 1.5625rem;
    text-align: center;
    line-height: 1.8;
    margin-top: 0.4em;
}

@media (min-width: 751px) {
    .p-section01__intro h3 {
        font-size: 1.875rem;
        letter-spacing: 0.05em;
        line-height: 1.833;
        max-width: 840px;
        min-height: 161px;
        margin: 0.7em auto 0;
        padding: 1px 118px 0;
        background-image: url(img/sec01-img01.png);
        background-repeat: no-repeat;
        background-size: 122px auto;
    }
}

@media (max-width: 750px) {
    .p-section01__list {
        margin-top: 22px;
    }
}

.p-section01__list li {
    font-weight: 500;
    line-height: 1.875;
    margin-top: 8px;
    padding: 7px 12px 8px 50px;
    background-color: #fff;
    background-image: url(img/check02.svg);
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: 21px 14px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px 0 rgba(64, 174, 169, 0.25);
}

@media (min-width: 751px) {
    .p-section01__list li {
        font-size: 1.25rem;
        letter-spacing: 0.05em;
        padding: 7px 18px 8px 80px;
        background-size: auto;
        background-position: 33px 14px;
        border-radius: 9999px;
    }
}

.p-section01__list li:first-child {
    margin-top: 0;
}

.p-section01 h4 {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    margin-top: 39px;
    padding-top: 62px;
    background-image: url(img/arrow01.svg);
    background-repeat: no-repeat;
    background-size: 93px auto;
    background-position: center top;
}

@media (min-width: 751px) {
    .p-section01 h4 {
        font-size: 1.875rem;
        line-height: 1.833;
        letter-spacing: 0.05em;
        margin-top: 53px;
        padding-top: 82px;
        background-size: auto;
    }

        .p-section01 h4 em {
            font-size: 116.7%;
            line-height: 1;
        }
}

.p-section01__box {
    position: relative;
    margin-top: 15px;
    z-index: 5;
}

@media (min-width: 751px) {
    .p-section01__box {
        display: flex;
        justify-content: space-between;
        margin-top: 54px;
    }
}

.p-section01__blc {
    padding: 18px 5px 30px;
    background: linear-gradient(to bottom, #40AEA9, #77C1EF);
    border-radius: 10px;
}

@media (max-width: 750px) {
    .p-section01__blc {
        margin-top: 17px;
    }
}

@media (min-width: 751px) {
    .p-section01__blc {
        position: relative;
        width: 48.718%;
        padding: 18px 15px 30px;
        transition: all 0.4s;
    }

        .p-section01__blc:hover {
            z-index: 20;
            transform: scale(1.08);
        }
}

@media (min-width: 1024px) {
    .p-section01__blc {
        padding: 45px 34px 63px;
    }
}

@media (max-width: 750px) {
    .p-section01__blc:first-child {
        margin-top: 0;
    }
}

@media (max-width: 750px) {
    .p-section01__blc:first-child figure {
        padding: 0 0 0 2.134vw;
    }
}

@media (max-width: 750px) {
    .p-section01__blc dl {
        text-align: center;
    }
}

@media (min-width: 751px) {
    .p-section01__blc dl {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.p-section01__blc dl dt {
    color: #40AEA9;
    font-weight: 700;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 74px;
    height: 74px;
    border-radius: 50%;
}

@media (max-width: 750px) {
    .p-section01__blc dl dt {
        margin: 0 auto 10px;
    }
}

@media (min-width: 1140px) {
    .p-section01__blc dl dt {
        width: 102px;
        height: 102px;
    }
}

.p-section01__blc dl dt span {
    font-size: 0.625rem;
    line-height: 1;
}

@media (min-width: 1140px) {
    .p-section01__blc dl dt span {
        font-size: 0.75rem;
    }
}

.p-section01__blc dl dt em {
    font-size: 2rem;
    line-height: 1.1;
}

@media (min-width: 1140px) {
    .p-section01__blc dl dt em {
        font-size: 2.8125rem;
    }
}

.p-section01__blc dl dd {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

@media (min-width: 751px) {
    .p-section01__blc dl dd {
        line-height: 1.636;
        flex: 1;
        max-width: 15em;
        padding-left: 15px;
    }
}

@media (min-width: 1140px) {
    .p-section01__blc dl dd {
        font-size: 1.375rem;
        max-width: 100%;
        padding-left: 30px;
    }
}

.p-section01__blc dl dd a {
    color: #fff;
}

.p-section01 figure {
    max-width: 460px;
    margin: 23px auto 0;
    padding: 0 1.067vw;
}

@media (min-width: 520px) {
    .p-section01 figure {
        padding: 0 !important;
    }
}

@media (min-width: 1024px) {
    .p-section01 figure {
        margin-top: 54px;
    }
}

/* p-section02
--------------------------- */
.p-section02 .c-section__box {
    position: relative;
}

    .p-section02 .c-section__box .c-section__child-title {
        margin-bottom: 24px;
    }

@media (min-width: 751px) {
    .p-section02 .c-section__box .c-section__child-title {
        margin-bottom: 32px;
    }
}

.p-section02 .c-section__box .c-text__l {
    font-weight: 500;
}

.p-section02__frame, .p-section02__list dl, .p-section02__link-list dl {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 20px 0 rgba(64, 174, 169, 0.1);
}

.p-section02__frame {
    margin-top: 28px;
}

@media (min-width: 751px) {
    .p-section02__frame {
        margin-top: 55px;
    }
}

@media (min-width: 751px) {
    .p-section02 .box01 .p-section02__wrap {
        padding-right: 263px;
    }
}

@media (max-width: 750px) {
    .p-section02 .box01 .p-section02__frame {
        padding-bottom: 20px;
    }
}

@media (min-width: 751px) {
    .p-section02 .box01 .p-section02__frame {
        position: relative;
    }
}

.p-section02 .box01 .p-section02__frame p {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.785;
    padding: 0 16px 0 23px;
}

@media (max-width: 750px) {
    .p-section02 .box01 .p-section02__frame p {
        padding-top: 4px;
    }
}

@media (min-width: 751px) {
    .p-section02 .box01 .p-section02__frame p {
        text-align: center;
        position: absolute;
        top: 86.37%;
        right: 0;
    }
}

@media (min-width: 950px) {
    .p-section02 .box01 .p-section02__frame p {
        font-size: 1rem;
        right: 0;
        width: 65.26%;
    }
}

.p-section02__qr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 220px;
    height: 220px;
    background-color: #40AEA9;
    border-radius: 10px;
}

@media (min-width: 751px) {
    .p-section02__qr {
        position: absolute;
        top: 55px;
        right: 60px;
    }
}

@media (max-width: 750px) {
    .p-section02__qr {
        margin: 35px auto 0;
    }
}

.p-section02__qr dt {
    color: #fff;
    font-weight: 700;
    line-height: 1.667;
    text-align: center;
    font-size: 0.9375rem;
    margin-bottom: 14px;
}

.p-section02__qr dd {
    width: 118px;
}

@media (min-width: 1024px) {
    .p-section02 .box02 .p-section02__wrap {
        display: flex;
        justify-content: space-between;
        margin-top: 35px;
    }
}

@media (min-width: 1024px) {
    .p-section02 .box02 .p-section02__text {
        padding-right: 25px;
    }

    .p-section02 .box02 .p-section02__text-wrap {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        height: 100%;
    }
}

@media (min-width: 1140px) {
    .p-section02 .box02 .p-section02__text p {
        padding-right: 30px;
    }
}

.p-section02 .box02 .p-section02__text dl {
    margin-top: 35px;
}

@media (min-width: 1024px) {
    .p-section02 .box02 .p-section02__text dl {
        flex: 1;
        margin-top: 0;
    }
}

.p-section02 .box02 .p-section02__text dl dt {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media (min-width: 751px) {
    .p-section02 .box02 .p-section02__text dl dt {
        font-size: 1.25rem;
    }
}

.p-section02 .box02 .p-section02__frame {
    padding: 28px 33px 38px;
}

@media (max-width: 750px) {
    .p-section02 .box02 .p-section02__frame {
        text-align: center;
    }
}

@media (min-width: 751px) {
    .p-section02 .box02 .p-section02__frame {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 526px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .p-section02 .box02 .p-section02__frame {
        margin-top: 0;
    }
}

.p-section02 .box02 .p-section02__frame .p-section02__img {
    position: relative;
    display: inline-block;
    padding: 14px 91px 0 0;
}

@media (min-width: 751px) {
    .p-section02 .box02 .p-section02__frame .p-section02__img {
        margin-right: -70px;
    }
}

.p-section02 .box02 .p-section02__frame .p-section02__img dt {
    color: #fff;
    line-height: 1.5625;
    font-weight: 500;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    background-color: #40AEA9;
    border-radius: 50%;
}

.p-section02 .box02 .p-section02__frame .p-section02__img dd {
    max-width: 201px;
}

.p-section02 .box02 .p-section02__frame .p-section07__img dd {
    max-width: 401px;
}

.p-section02__merit {
    border-top: solid 1px #40AEA9;
}

@media (max-width: 750px) {
    .p-section02__merit {
        margin-top: 25px;
    }
}

.p-section02__merit dl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: solid 1px #40AEA9;
}

    .p-section02__merit dl dt {
        width: 57px;
        margin-right: 10px;
    }

    .p-section02__merit dl dd {
        line-height: 1.562;
        text-align: left;
        width: 11em;
    }

.p-section02 .box03 {
    position: relative;
}

@media (min-width: 1024px) {
    .p-section02 .box03 .p-section02__wrap {
        padding-right: 32%;
    }
}

.p-section02 .box03 .p-section02__wrap p {
    padding-right: 10%;
}

.p-section02 .box03 .p-section02__list {
    margin-top: 35px;
}

@media (min-width: 751px) {
    .p-section02 .box03 .p-section02__list {
        display: flex;
        justify-content: space-between;
        margin-top: 54px;
    }
}

.p-section02 .box03 .p-section02__list dl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    padding: 25px 0 26px;
}

@media (max-width: 750px) {
    .p-section02 .box03 .p-section02__list dl {
        margin-top: 10px;
    }

        .p-section02 .box03 .p-section02__list dl:first-child {
            margin-top: 15px;
        }
}

@media (min-width: 751px) {
    .p-section02 .box03 .p-section02__list dl {
        width: 31.715%;
        padding: 37px 0 38px;
    }
}

.p-section02 .box03 .p-section02__list dl dt {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 1.2em;
}

@media (min-width: 751px) {
    .p-section02 .box03 .p-section02__list dl dt {
        font-size: 1.25rem;
    }
}

.p-section02 .box03 .p-section02__img {
    max-width: 332px;
    margin: 35px auto 0;
}

@media (min-width: 1024px) {
    .p-section02 .box03 .p-section02__img {
        position: absolute;
        top: 68px;
        right: 4.5%;
        width: 34.3%;
        margin-top: 0;
    }
}

.p-section02__link-list {
    margin-top: 35px;
}

@media (min-width: 751px) {
    .p-section02__link-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 54px;
    }
}

.p-section02__link-list .c-link__area {
    text-align: center;
    max-width: 424px;
    margin: 20px auto 0;
    padding: 0 5px 50px;
}

    .p-section02__link-list .c-link__area:first-child {
        margin-top: 0;
    }

@media (min-width: 751px) {
    .p-section02__link-list .c-link__area {
        width: 48.5%;
        transition: all 0.4s;
    }

        .p-section02__link-list .c-link__area:nth-child(2) {
            margin-top: 0;
        }

        .p-section02__link-list .c-link__area:hover {
            z-index: 20;
            transform: scale(1.08);
        }
}

@media (min-width: 1024px) {
    .p-section02__link-list .c-link__area {
        width: 23.555%;
        margin-top: 0;
    }
}

.p-section02__link-list .c-link__area::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: solid 2px #40AEA9;
    border-right: solid 2px #40AEA9;
    transform: translate(-50%, 0) rotate(45deg);
}

.p-section02__link-list .c-link__area dt {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 61px;
    height: 57px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #77C1EF, #40AEA9);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

    .p-section02__link-list .c-link__area dt span {
        font-size: 0.625rem;
        line-height: 1;
        display: block;
    }

    .p-section02__link-list .c-link__area dt em {
        font-size: 1.875rem;
        line-height: 1.1;
    }

.p-section02__link-list .c-link__area dd {
    margin-top: 14px;
}

    .p-section02__link-list .c-link__area dd a {
        color: #222;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.05em;
    }

@media (min-width: 1024px) {
    .p-section02__link-list .c-link__area dd a {
        font-size: 1.25rem;
    }
}

/* p-section03
--------------------------- */
.c-section__box .p-section03__item {
    margin-top: 50px;
}

@media (min-width: 751px) {
    .c-section__box .p-section03__item {
        margin-top: 68px;
    }
}

.c-section__box .p-section03__item:first-child {
    margin-top: 0;
}

.p-section03 {
    background-image: url(img/sec03-bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.p-section03__item {
    position: relative;
}

@media (min-width: 1024px) {
    .p-section03__item:nth-child(3) h4, .p-section03__item:nth-child(5) h4 {
        padding-right: 46.49%;
    }

    .p-section03__item:nth-child(3) p, .p-section03__item:nth-child(5) p {
        padding-right: 48.55%;
    }

    .p-section03__item:nth-child(3) .p-section03__img, .p-section03__item:nth-child(5) .p-section03__img {
        position: absolute;
        right: 0;
    }

    .p-section03__item:nth-child(3) {
        padding-bottom: 120px;
    }

        .p-section03__item:nth-child(3) .p-section03__img {
            top: 45px;
        }

    .p-section03__item:nth-child(4) {
        padding-bottom: 200px;
    }

        .p-section03__item:nth-child(4) h4,
        .p-section03__item:nth-child(4) p {
            padding-left: 48.55%;
        }

        .p-section03__item:nth-child(4) .p-section03__img {
            position: absolute;
            top: -120px;
            left: 0;
        }

    .p-section03__item:nth-child(5) .p-section03__img {
        top: -35px;
    }

    .p-section03__item:nth-child(6) .p-section03__wrap {
        margin-top: 52px;
    }
}

.p-section03__item h4 {
    font-size: 6.25rem;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.16em;
    padding-bottom: 0.085em;
    border-bottom: solid 2px #40AEA9;
}

    .p-section03__item h4 .lato {
        color: rgba(64, 174, 169, 0.4);
        line-height: 1;
        width: 0.75em;
    }

@media (min-width: 751px) {
    .p-section03__item h4 .lato {
        width: 0.98em;
        padding-left: 0.05em;
    }
}

.p-section03__item h4 em {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.875;
    flex: 1;
    padding-bottom: 0.35em;
}

@media (min-width: 751px) {
    .p-section03__item h4 em {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
}

.p-section03__item .c-text__l {
    font-weight: 500;
}

.p-section03__wrap {
    margin-top: 35px;
}

@media (min-width: 751px) {
    .p-section03__wrap {
        display: flex;
        justify-content: space-between;
    }
}

.p-section03__wrap .p-section03__img {
    max-width: 465px;
}

@media (min-width: 1024px) {
    .p-section03__wrap .p-section03__img {
        margin: 0 0 0 10px;
    }
}

.p-section03__wrap .p-section03__img:first-child {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .p-section03__wrap .p-section03__img:first-child {
        margin: 0 10px 0 0;
    }
}

.p-section03__box {
    border-radius: 10px;
    box-shadow: 5px 5px 20px 0 rgba(64, 174, 169, 0.1);
    background-color: #fff;
    border: solid 5px #B1B1B1;
}

    .p-section03__box.after {
        background-color: #E0FCFA;
        border: solid 5px #40AEA9;
    }

        .p-section03__box.after h5 {
            background-color: #40AEA9;
        }

        .p-section03__box.after ul {
            color: #40AEA9;
            font-size: 1.125rem;
            font-weight: 700;
            line-height: 1.667;
        }

            .p-section03__box.after ul li {
                background: url(img/ico02.svg) no-repeat left -0.1em;
            }

@media (min-width: 751px) {
    .p-section03__box {
        width: 46.59%;
    }
}

.p-section03__box h5 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5em;
    padding-bottom: 5px;
    background-color: #B1B1B1;
}

@media (min-width: 751px) {
    .p-section03__box h5 {
        font-size: 1.375rem;
    }
}

.p-section03__box h5 em {
    font-size: 136.4%;
    transform: translate(0, -8%);
}

.p-section03__box ul {
    font-weight: 500;
    line-height: 1.875;
    padding: 16px 14px 17px 16px;
}

@media (min-width: 1024px) {
    .p-section03__box ul {
        padding: 19px 20px 26px 38px;
    }
}

.p-section03__box ul li {
    margin-top: 12px;
    padding-left: 38px;
    background: url(img/ico01.svg) no-repeat left top;
}

    .p-section03__box ul li:first-child {
        margin-top: 0;
    }

@media (min-width: 751px) {
    .p-section03__box-list {
        display: flex;
        align-items: center;
        height: 77%;
    }
}

.p-section03__arrow {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 66px;
}

@media (min-width: 751px) {
    .p-section03__arrow {
        height: auto;
        width: 0;
        padding-left: 66px;
    }
}

.p-section03__arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 66px;
    height: 100%;
    background-image: url(img/arrow01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

@media (min-width: 751px) {
    .p-section03__arrow::after {
        top: 50%;
        left: 0;
        height: 31px;
        transform: translate(0, -50%) rotate(-90deg);
        background-position: center top;
    }
}

.p-section03__img {
    max-width: 388px;
    margin: 35px auto 0;
    box-shadow: 5px 5px 20px 0 rgba(64, 174, 169, 0.16);
}

@media (min-width: 1024px) {
    .p-section03__img {
        margin-top: 0;
    }
}

/* p-section04
--------------------------- */
@media screen and (max-width: 1023px) {
    .p-section04.c-inner {
        padding-left: 0;
        padding-right: 0;
    }
}

.p-section04__note {
    font-weight: 500;
    margin-top: 20px;
}

@media (min-width: 751px) {
    .p-section04__note {
        margin-top: 30px;
    }

        .p-section04__note p {
            text-align: center;
        }
}

.p-section04 .scr-memo {
    line-height: 1;
    text-align: right;
    margin: 40px 0 15px;
    padding-right: 23px;
}

@media (min-width: 861px) {
    .p-section04 .scr-memo {
        display: none;
    }
}

.p-section04__wrap {
    position: relative;
}

@media screen and (max-width: 860px) {
    .p-section04__wrap {
        padding-left: 23px;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 861px) {
    .p-section04__wrap {
        margin-top: 54px;
    }
}

@media screen and (max-width: 1023px) {
    .p-section04__wrap .p-section04__scr {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 860px) {
    .p-section04__wrap .p-section04__scr {
        display: block;
        width: 100%;
        min-width: 823px;
        padding: 0 23px 15px 0;
    }
}

@media screen and (max-width: 1023px) {
    .p-section04__table {
        height: 500.639px;
        width: 800.436px;
    }
}

.p-section04__table-inner {
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {
    .p-section04__table-inner {
        height: 683px;
        width: 1092px;
        transform-origin: left top;
        transform: scale(0.733);
    }
}

.p-section04__item {
    line-height: 1.785;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 111px;
    border: solid 1px #fff;
}

.p-section04__box01 {
    width: 20.33%;
    padding-bottom: 2px;
}

    .p-section04__box01 .p-section04__item {
        font-weight: 700;
        letter-spacing: 0.1em;
        background-color: #E5E5E5;
    }

.p-section04__box02 {
    position: relative;
    z-index: 10;
    width: 53.75%;
    border: solid 3px #40AEA9;
}

    .p-section04__box02 .p-section04__item {
        font-size: 0.875rem;
        text-align: center;
        flex-direction: column;
        background-color: #EAFFFE;
        border-color: #86D3CF;
    }

@media (min-width: 1024px) {
    .p-section04__box02 .p-section04__item {
        font-size: 0.8125rem;
    }
}

@media (min-width: 1140px) {
    .p-section04__box02 .p-section04__item {
        font-size: 0.875rem;
    }
}

.p-section04__box02 .p-section04__item em {
    font-size: 1.8125rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3em;
}

.p-section04__title01 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 122px;
    background-color: #D0FDFB;
    border: solid 1px #86D3CF;
}

    .p-section04__title01 img {
        width: 255px;
    }

.p-section04__box03 {
    width: 25.92%;
    padding-bottom: 2px;
}

    .p-section04__box03 .p-section04__item {
        font-size: 1.625rem;
        font-weight: 500;
        background-color: #F7F7F7;
    }

.p-section04__title02 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 78px;
    background-color: #DCDFE3;
    border: solid 1px #fff;
}

/* p-section05
--------------------------- */
.p-section05 {
    background-image: url(img/sec05-bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

@media (min-width: 751px) {
    .p-section05 {
        background-position: center top;
    }
}

.p-section05 h3 {
    color: #fff;
}

.p-section05 .c-section__content {
    margin-bottom: -20px;
}

@media (min-width: 751px) {
    .p-section05 .c-section__content {
        margin-bottom: -16px;
    }
}

@media (min-width: 751px) {
    .p-section05 .c-section__content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.p-section05 .c-section__content .p-section05__item {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

@media (min-width: 751px) {
    .p-section05 .c-section__content .p-section05__item {
        margin-bottom: 16px;
    }
}

.p-section05 .c-section__content .p-section05__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50%;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}

@media (min-width: 751px) {
    .p-section05 .c-section__content .p-section05__item {
        width: 48.5%;
    }
}

@media (min-width: 1024px) {
    .p-section05 .c-section__content .p-section05__item {
        width: 32.51%;
    }
}

.p-section05__img {
    position: relative;
    z-index: 6;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .p-section05__img img {
        vertical-align: bottom;
        background-color: #F6F6F6;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

.p-section05__box {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    padding: 35px 26px 56px 28px;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

    .p-section05__box h5 {
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.857;
        width: 6.214em;
        margin-top: 22px;
        border: solid 1px #40AEA9;
    }

    .p-section05__box ul {
        margin-top: 12px;
        line-height: 1.75;
    }

        .p-section05__box ul li {
            margin-top: 0.6em;
            padding-left: 25px;
            background: url(img/check03.svg) no-repeat left 0.375em;
        }

            .p-section05__box ul li:first-child {
                margin-top: 0;
            }

.p-section05 .c-section__child-title {
    font-size: 1.125rem;
}

@media (min-width: 751px) {
    .p-section05 .c-section__child-title {
        font-size: 1.25rem;
    }
}

.p-section05 .c-section__child-title::after {
    top: 50%;
    left: -28px;
    transform: translate(0, -25%);
    width: 12px;
    height: 7px;
}

/* p-contact
--------------------------- */
@media (min-width: 751px) {
    .p-contact {
        padding-top: 100px;
    }
}

.p-contact__wrap {
    position: relative;
    padding: 40px 0 40px;
}

@media screen and (max-width: 1023px) {
    .p-contact__wrap {
        background-image: url(img/cv-bg01.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }
}

@media (min-width: 1024px) {
    .p-contact__wrap {
        padding: 182px 0 0;
    }

        .p-contact__wrap::after {
            content: "";
            position: absolute;
            top: 0;
            left: 35px;
            display: block;
            width: 752px;
            height: 441px;
            background-image: url(img/cv-bg01.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 1;
        }
}

.p-contact__box {
    position: relative;
    padding: 30px 18px 40px;
    background-color: rgba(255, 255, 255, 0.82);
    box-shadow: 5px 5px 20px 0 rgba(64, 174, 169, 0.2);
    border-radius: 10px;
    z-index: 5;
}

@media (min-width: 1024px) {
    .p-contact__box {
        max-width: 926px;
        margin: 0 0 0 auto;
        padding: 62px 30% 56px 5%;
    }
}

.p-contact__box h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.583em;
    padding: 0 8px;
}

.p-contact__box .c-text__l {
    line-height: 1.875;
    padding: 0 8px;
}

.p-contact__box .c-link__button.cv {
    max-width: 424px;
    min-height: 3.636em;
    margin: 26px auto 0;
}

@media (min-width: 1024px) {
    .p-contact__box .c-link__button.cv {
        margin: 35px 0 0 10px;
    }
}

@media (min-width: 751px) {
    .p-contact__box .c-link__button.cv a {
        font-size: 1.375rem;
    }
}

.p-contact__img {
    position: relative;
    padding-bottom: 97px;
}

@media screen and (max-width: 1023px) {
    .p-contact__img {
        max-width: 294px;
        margin: 15px auto 0;
    }
}

@media (min-width: 1024px) {
    .p-contact__img {
        position: absolute;
        top: 48px;
        right: 53px;
        width: 341px;
        margin: 0;
    }
}

.p-contact__img li {
    max-width: 247px;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.16);
}

    .p-contact__img li:first-child {
        position: relative;
        margin-left: 15.65%;
        z-index: 10;
    }

@media (min-width: 1024px) {
    .p-contact__img li:first-child {
        margin-left: 94px;
    }
}

.p-contact__img li:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-right: 15.65%;
    z-index: 1;
}

@media (min-width: 1024px) {
    .p-contact__img li:last-child {
        margin-right: 94px;
    }
}

.p-contact__form {
    padding: 35px 22px 60px 23px;
}

@media (min-width: 751px) {
    .p-contact__form {
        max-width: 710px;
        padding: 110px 0 100px;
        margin: 0 auto;
    }
}

.p-contact__form p.c-text__l {
    font-weight: 500;
    line-height: 1;
    margin: 2em 0 0.5em;
}

    .p-contact__form p.c-text__l span {
        color: #EB6164;
        font-size: 0.8125rem;
        font-weight: 700;
        vertical-align: top;
        margin-left: 0.3em;
    }

.p-contact__form ul {
    display: flex;
    justify-content: space-between;
}

    .p-contact__form ul li {
        width: 49%;
    }

.p-contact__note {
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 10px;
}

@media (min-width: 751px) {
    .p-contact__note {
        font-size: 1.125rem;
    }
}

.p-contact__req {
    color: #EB6164;
    font-size: 0.75rem;
    font-weight: 700;
}

.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact textarea {
    line-height: 1.75;
    padding: 6px 6px 7px 9px;
    background-color: #EFEFEF;
    border: solid 1px #DBDBDB;
    border-radius: 5px;
}

    .p-contact input[type=text]:focus,
    .p-contact input[type=email]:focus,
    .p-contact input[type=tel]:focus,
    .p-contact textarea:focus {
        background-color: #fff;
        border: solid 1px #40AEA9;
    }

.p-contact input[type=text],
.p-contact input[type=email],
.p-contact textarea {
    width: 100%;
}

.p-contact input[type=tel] {
    min-width: 15em;
}

.p-contact .checkbox {
    line-height: 1.4;
    vertical-align: middle;
    position: relative;
    margin-top: 2em;
    padding-left: 1.5em;
}

    .p-contact .checkbox label {
        cursor: pointer;
    }

    .p-contact .checkbox input {
        position: absolute;
        top: 0.325em;
        left: 0;
    }

.p-contact .c-link__button {
    max-width: 502px;
    margin: 3.2em auto 1em;
}

@media (min-width: 751px) {
    .p-contact .c-link__button {
        font-size: 1.5625rem;
    }
}

.p-contact .c-link__button input[type=submit] {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 3.1em;
    padding: 0 1em 0.04em 1.2em;
    background-color: #40AEA9;
    border: solid 1px #40AEA9;
    border-radius: 9999px;
    transition: all 0.4s;
}

@media (min-width: 751px) {
    .p-contact .c-link__button input[type=submit] {
        font-size: 1.5625rem;
        min-height: 3.76em;
    }

        .p-contact .c-link__button input[type=submit]:hover {
            color: #40AEA9;
            background-color: #fff;
        }
}

.p-contact .c-text__s {
    line-height: 1.75;
}

@media (min-width: 751px) {
    .p-contact .c-text__s {
        text-align: center;
    }
}

.p-contact .c-text__s a {
    font-weight: 500;
    text-decoration: underline;
}

@media (min-width: 751px) {
    .p-contact .c-text__s a:hover {
        text-decoration: none;
    }
}

.p-contact__thanks, .p-contact__error {
    padding-top: 30px;
    padding-bottom: 60px;
}

@media (min-width: 751px) {
    .p-contact__thanks, .p-contact__error {
        padding-bottom: 100px;
    }
}

.p-contact__thanks h1, .p-contact__error h1 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1em;
}

@media (min-width: 751px) {
    .p-contact__thanks h1, .p-contact__error h1 {
        font-size: 1.5625rem;
    }
}

.p-contact__thanks p, .p-contact__error p {
    text-align: center;
}

/* utility
--------------------------- */
.u-inline-block {
    display: inline-block;
}

.u-hidden {
    opacity: 0;
    visibility: hidden;
}

.u-show {
    opacity: 1;
    visibility: visible;
}
