@charset "utf-8";

/* reset
----------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
main,
figure,
figcaption {
    display: block;
    margin: 0;
    padding: 0;
    font-weight: normal;
    border: 0;
    outline: 0;
    line-height: 1;
    list-style: none;
}
a,
a:hover,
a:active,
a:visited {
    margin: 0;
    outline: none;
}
img {
    vertical-align: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
::selection {
    color: #fff;
    background: #e0494d;
}

/* html
----------------------------------------------- */

html {
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-print-color-adjust: exact;
    font-size: 62.5%;
}

/* body
----------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    color: #282828;
    font-family: "Roboto", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1;
    position: relative;
}
a {
    color: #282828;
    text-decoration: underline;
}
em {
    font-style: normal;
}

/* loading
----------------------------------------------- */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}
.loading__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}
.loading__bar {
    position: absolute;
    top: 50%;
    left: 0;
    margin: -2px 0 0;
    width: 100%;
    height: 4px;
    background: #eee;
    overflow: hidden;
}
.loading__progress {
    width: 100%;
    height: 4px;
    background: #e0494d;
}

/* js */

.js-loading .loading__bar {
    width: 0;
    transition-property: width, transform;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.js-loading .loading__progress {
    width: 0;
}

.js-loading-start .loading__bar {
    width: 100%;
}
.js-loading-end .loading__bar {
    transform: translateX(100%);
}

/* button
----------------------------------------------- */

.button {
    position: relative;
    display: block;
    color: #fff;
    padding: 2.9rem 0;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #18a085 0%, #14dc96 100%);
    box-shadow: 2px 2px 4px rgba(24, 160, 133, 0.4);
}
.buttonDl {
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #e0494d 0%, #ff985b 100%);
    box-shadow: 2px 2px 4px rgba(24, 72, 160, 0.4);
}
.button--arrow:after {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    margin: -8px 0 0;
    width: 14px;
    height: 16px;
    background: url(../images/ic_arrow.svg) no-repeat;
    background-size: 14px 16px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.15));
}
.button--arrow-down:after {
    position: absolute;
    left: 50%;
    bottom: 5px;
    display: block;
    content: "";
    margin: 0 0 0 -5px;
    width: 8px;
    height: 10px;
    background: url(../images/ic_arrow.svg) no-repeat;
    background-size: 8px 10px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.15));
    transform: rotate(90deg);
}
.button--back {
    background: #646464;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* header
----------------------------------------------- */

.header__number {
    color: #e0494d;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}
.header__number__label {
    position: relative;
    display: inline-block;
    color: #fff;
    background: #e0494d;
    border-radius: 2px;
}
.header__time {
    font-weight: 700;
}

/* footer
----------------------------------------------- */

.footer__inner-white {
    background: #fff;
}
.footer__inner-gray {
    background: #535353;
}
.footer__link a {
    font-weight: 700;
}
.footer__link a[target="_blank"]:after {
    display: inline-block;
    content: "";
    margin: 0 0 0 5px;
    width: 9px;
    height: 8px;
    background: url(../images/ic_blank.svg) no-repeat;
    background-size: 9px 8px;
}
.footer__copyright {
    color: #d4d4d4;
    font-size: 1rem;
}

/* intro
----------------------------------------------- */

.intro {
    position: relative;
    overflow: hidden;
}
.intro__lead {
    color: #e0494d;
    font-weight: 700;
}
.intro__title {
    font-weight: 700;
}
.intro__deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.intro__deco span {
    display: block;
    position: absolute;
    left: 50%;
    background: #e0494d;
    border-radius: 50%;
    opacity: 0.2;
    animation-name: zoom;
    animation-duration: 10s;
    animation-timing-function: cubic-bezier(0, 0, 1, 1);
    animation-iteration-count: infinite;
}

/* slide
----------------------------------------------- */

.slide {
}
.slide:before,
.slide:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    background: linear-gradient(to right, #ff985b 0%, #e0494d 100%);
    border-radius: 50%;
}
.slide:after {
    z-index: -1;
    animation-name: fade;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0, 0, 1, 1);
    animation-iteration-count: infinite;
}
.slide__items {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.slide__items:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    background: url(../images/slide_camera@2x.png) no-repeat;
    z-index: 2;
}
.slide__item div {
    position: absolute;
}
.slide__title {
    position: relative;
    color: #fff;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}
.slide__image {
    box-shadow: 10px 10px 17px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.4s, 0.6s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.slide__message {
    opacity: 0;
    transform: scale(0.8);
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-delay: 0.9s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* main
----------------------------------------------- */

.section__title {
    font-weight: 700;
    text-align: center;
}
.section__title__label {
    display: block;
    padding: 0 0 1.3rem;
    color: #e0494d;
}
.section__title__note {
    display: block;
    padding: 0.8rem 0 0;
    font-weight: 400;
}

.contact_form {
    all: initial;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 -20%;
}
.contact_button {
    position: absolute;
    right: 0;
}

/* about
----------------------------------------------- */

.about__item {
    border: 1px solid #e9e9e9;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
}
.about__label {
    text-align: center;
}
.about__label-text {
    display: inline-block;
}
.about__company {
    font-weight: 700;
    text-align: center;
}
.about__company em {
    color: #e0494d;
}
.about__question mark {
    color: #e0494d;
    font-weight: 700;
    background: linear-gradient(transparent 75%, #fff064 75%);
}
.about__button {
    position: relative;
}

/* js-indicate */
.js-indicate-ready.about__button {
    opacity: 0;
    transform: translateY(15px);
}
.js-indicate-start.about__button {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* case
----------------------------------------------- */

/* case__header */
.case__header {
    position: relative;
    background: linear-gradient(to left, #ff985b 0%, #e0494d 100%);
}
.case__header__inner {
    position: relative;
}
.case__label {
    position: relative;
    border-radius: 50%;
    background: #fff;
}
.case__label:before,
.case__label:after {
    position: absolute;
    display: block;
    content: "";
    border-radius: 50%;
}
.case__label:before {
    background: #fff;
    opacity: 0.3;
}
.case__label:after {
    top: 0;
    left: 0;
    background: url(../images/slide_camera@2x.png) no-repeat;
}
.case__label-text {
    position: relative;
    display: block;
    text-align: right;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
}
.case__content {
    color: #fff;
}
.case__title {
    font-weight: 700;
}
.case__question {
    font-weight: 700;
}
.case__question mark {
    color: #e0494d;
    background: #fff064;
}

/* case__article */
.case__article__question {
    position: relative;
    font-weight: 700;
    text-align: center;
    background: #fff064;
    animation-name: pyon;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0, 0, 1, 1);
    animation-iteration-count: infinite;
}
.case__article__question em {
    color: #e0494d;
    line-height: 1;
}
.case__article__question:after {
    position: absolute;
    left: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #fff064 transparent transparent transparent;
}
.case__article__container {
    border: 1px solid #e9e9e9;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.case__article__catch {
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: #e0494d;
    box-sizing: border-box;
}
.case__article__title {
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #d4d4d4;
}
.case__article__image {
    position: relative;
    text-align: center;
}
.case__article__image a {
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.case__article__image:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    border: 1px solid #d4d4d4;
    box-sizing: border-box;
}
.case__article__image figcaption {
    color: #fff;
    font-weight: 700;
    background: #777;
}
.case__article__subtitle {
    font-weight: 700;
}

/* case__fotter */
.case__footer {
    box-sizing: border-box;
}
.case__catch {
    color: #e0494d;
    font-weight: 700;
    text-align: center;
    animation-name: pyon;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0, 0, 1, 1);
    animation-iteration-count: infinite;
}
.case__catch span {
    position: relative;
    display: inline-block;
}
.case__catch span:before,
.case__catch span:after {
    position: absolute;
    top: 2px;
    bottom: -2px;
    display: inline-block;
    content: "";
    width: 3px;
    background: #e0494d;
    border-radius: 3px;
}
.case__flow {
    position: relative;
    background: #e35b5f;
}
.case__step {
}
.case__step__item {
    position: relative;
    color: #e0494d;
    font-weight: 700;
    background: #fff064;
    box-sizing: border-box;
}
.case__step__item:before,
.case__step__item:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

/* js-indicate */
.js-indicate-ready .case__title,
.js-indicate-ready .case__question {
    opacity: 0;
    transform: translateX(20px);
}
.js-indicate-start .case__title,
.js-indicate-start .case__question {
    opacity: 1;
    transform: translateX(0px);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-indicate-start .case__question {
    transition-delay: 0.6s;
}
/*
.js-indicate-ready.case__article__question {
	opacity: 0;
	transform: scale(0,1) translateY(30px);
}
.js-indicate-start.case__article__question {
	opacity: 1;
	transform: scale(1,1) translateY(0px);
	transition-property: opacity, transform;
	transition-duration: 0.4s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.case__article:nth-child(2) .js-indicate-start.case__article__question {
	transition-delay: 0.3s;
}
*/
.js-indicate-ready .case__catch {
    opacity: 0;
    transform: translateY(30px);
}
.js-indicate-start .case__catch {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* message
----------------------------------------------- */

.message__inner {
    margin: auto;
    background: #fff;
}
.message__title {
    text-align: center;
}
.message__title__inner {
    display: inline-block;
    padding: 0 0.3em 0 0.4em;
    color: #e0494d;
}
.message__title__inner em {
    display: block;
    font-weight: 700;
    border-top: 2px solid #e0494d;
}

/* conversion
----------------------------------------------- */

.conversion {
    background: linear-gradient(to left, #ff985b 0%, #e0494d 100%);
}
.conversion__catch {
    color: #fff064;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}
.conversion__catch span {
    position: relative;
    display: inline-block;
}
.conversion__catch span:before,
.conversion__catch span:after {
    position: absolute;
    top: 2px;
    bottom: -2px;
    display: inline-block;
    content: "";
    width: 3px;
    background: #fff064;
    border-radius: 3px;
}
.conversion__item {
    background: #fff;
    box-sizing: border-box;
}
.conversion__item2 {
    background: #fff;
    box-sizing: border-box;
}
.conversion__item__title {
    font-weight: 700;
}
.conversion__number {
    color: #e0494d;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

/* js-indicate */
.js-indicate-ready .conversion__catch {
    opacity: 0;
    transform: translateY(30px);
}
.js-indicate-start .conversion__catch {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-delay: 0.6s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-indicate-ready .conversion__item {
    opacity: 0;
    transform: translateX(-30px);
}
.js-indicate-ready .conversion__item:nth-child(2) {
    opacity: 0;
    transform: translateX(30px);
}
.js-indicate-start .conversion__item,
.js-indicate-start .conversion__item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* price
----------------------------------------------- */

.price__title {
    position: relative;
    border-top: 2px solid #e0494d;
    border-bottom: 1px solid #d4d4d4;
}
.price__pr {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0494d;
    font-weight: 700;
    text-align: center;
    background: #fff064;
    border-radius: 50%;
}
.price__column {
    position: relative;
}

/*price__item*/
.price__item {
    background: #fff;
    border: 1px solid #d4d4d4;
    box-sizing: border-box;
}
.price__item__price {
    color: #d23c46;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-align: center;
}
.price__item__price--small {
    width: 100%;
    text-align: right;
}
.price__item__image {
    position: relative;
}
.price__item__image figcaption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}
.price__item__image img {
    width: 100%;
    height: auto;
}
.price__item__text {
    font-weight: 700;
    border-top: 1px solid #d4d4d4;
    text-align: center;
}
.price__item__note {
    font-weight: 700;
    text-align: center;
}

/* js-indicate */
.js-indicate-ready .price__pr {
    opacity: 0;
    transform: scale(0.8);
}
.js-indicate-start .price__pr {
    opacity: 1;
    transform: scale(1);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* concept
----------------------------------------------- */

.concept {
    position: relative;
    background: linear-gradient(to left, #ff985b 0%, #e0494d 100%);
}
.concept__inner {
    color: #fff;
}
.concept__title {
    font-weight: 700;
}
.concept__text {
    font-weight: 700;
}

/* js-indicate */
.js-indicate-ready.concept__title {
    opacity: 0;
    transform: translateY(15px);
}
.js-indicate-start.concept__title {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    transition-delay: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* contact
----------------------------------------------- */

.contact {
    background: #eee;
}
.contact__item {
    border-top: 1px solid #bebebe;
}
.contact__item__title {
    font-weight: 700;
}
.contact__number {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

/* form
----------------------------------------------- */

.form__table {
    width: 100%;
}
.form__th,
.form__td {
    font-size: 1.5rem;
    box-sizing: border-box;
    text-align: left;
    vertical-align: top;
}
.form__th {
    position: relative;
    font-weight: 700;
}
.form__icon {
    display: inline-block;
    color: #fff;
    text-align: center;
    background: #d23c46;
    box-sizing: border-box;
}
.form__note {
    margin: 8px 0 0;
    font-size: 1.3rem;
}
.form__input {
    font-size: 1.5rem;
    line-height: 1.5;
}
.form__input::placeholder {
    color: #939393;
    font-family: "Noto Sans JP", sans-serif;
}
.form__input:-ms-input-placeholder {
    color: #939393;
    font-family: "Noto Sans JP", sans-serif;
}
.form__input::-ms-input-placeholder {
    color: #939393;
    font-family: "Noto Sans JP", sans-serif;
}
.form__input--text,
.form__input--textarea {
    padding: 10px 12px 12px;
    width: 100%;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    transition-property: border-color, box-shadow;
    transition-duration: 0.3s;
}
.form__input--textarea {
    height: 145px;
}
.form__input:focus {
    background: #fff;
    border-color: #ff8228;
    box-shadow: 2px 2px 14px rgba(24, 160, 133, 0.4);
}
.form__button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}
.form__button .button {
    margin: auto;
    border: none;
    cursor: pointer;
}

/* error alert */
.form__error .form__input {
    background: #ffe2e2;
    border-color: #d23c46;
}
.form__alert {
    margin: 8px 0 0;
    color: #d23c46;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
}

/* pc
----------------------------------------------- */

@media print, screen and (min-width: 1000px) {
    /* br
	----------------------------------------------- */

    .spbr {
        display: none;
    }

    /* button
	----------------------------------------------- */

    .button {
        padding: 2.9rem 0;
        font-size: 2.2rem;
        border-radius: 10px;
        transition-property: opacity, transform, box-shadow;
        transition-duration: 0.6s, 0.4s, 0.8s;
        transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    .button--arrow:after {
        right: 30px;
        transition-property: transform;
        transition-duration: 0.6s, 0.4s, 0.8s;
        transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    .buttonMain {
        padding: 1.5rem 0;
    }
    .buttonContact {
        position: relative;
        display: block;
        padding: 1.5rem 6rem;
        font-size: 1.8rem;
    }
    .button--mini {
        padding: 1.5rem 0;
        font-size: 1.5rem;
    }
    /* hover */
    .button:hover {
        transform: translateY(-5px);
        box-shadow: 2px 2px 14px rgba(24, 160, 133, 0.8);
    }
    .buttonDl:hover {
        transform: translateY(-5px);
        box-shadow: 2px 2px 14px rgba(33, 24, 160, 0.8);
    }
    .button--back:hover {
        box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.8);
    }

    /* header
	----------------------------------------------- */

    .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }
    .header__inner {
        margin: auto;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        width: 1000px;
        box-sizing: border-box;
    }
    .header__number {
        font-size: 2.8rem;
    }
    .header__number__label {
        top: -6px;
        margin: 0 8px 0 0;
        padding: 2px 5px;
        font-size: 1.2rem;
    }
    .header__time {
        margin: 2px 0 0;
        text-align: right;
        font-size: 0.9rem;
    }
    .header__time em {
        font-size: 1.1rem;
    }
    .header__text,
    .header__button {
        display: none;
    }

    /* js-header--fix */
    .js-header--fix {
        position: fixed;
        background: #fff;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    }
    .js-header--fix .header__inner {
        padding: 18px 0;
        align-items: center;
    }
    .js-header--fix .header__container,
    .js-header--fix .header__contact {
        display: flex;
        align-items: center;
    }
    .js-header--fix .header__logo {
        width: 133px;
        height: auto;
    }
    .js-header--fix .header__logo img {
        width: 100%;
        height: auto;
    }
    .js-header--fix .header__text {
        display: block;
        margin: 0 0 0 20px;
        font-size: 1.2rem;
        line-height: 1.5;
    }
    .js-header--fix .header__number {
        color: #e0494d;
    }
    .js-header--fix .header__number__label {
        color: #fff;
        background: #e0494d;
    }
    .js-header--fix .header__time {
        color: #282828;
    }
    .js-header--fix .header__button {
        display: block;
        margin: 0 0 0 20px;
        width: 200px;
    }
    .js-header--fix .header__button .button {
        padding: 1.5rem 0;
        font-size: 1.8rem;
    }

    /* footer
	----------------------------------------------- */

    .footer__column {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
        padding: 40px 0;
        width: 960px;
    }
    .footer__inner-gray .footer__column {
        flex-direction: row-reverse;
        padding: 25px 0;
    }
    .footer__company {
        display: flex;
        align-items: center;
    }
    .footer__text {
        padding: 0 0 0 30px;
        font-size: 1.2rem;
        line-height: 1.75;
    }
    .footer__link {
        padding: 13px 0 13px 40px;
        border-left: 1px solid #bebebe;
    }
    .footer__link a {
        font-size: 1.3rem;
    }

    /* hover */
    .footer__link a:hover {
        text-decoration: none;
    }

    /* lower
	----------------------------------------------- */

    .lower .main {
        margin: 80px 0 0;
    }
    .lower .header {
        background: #fff;
    }
    .lower .header__number {
        color: #e0494d;
    }
    .lower .header__number__label {
        color: #fff;
        background: #e0494d;
    }
    .lower .header__time {
        color: #282828;
    }

    /* intro
	----------------------------------------------- */

    .intro__inner {
        margin: auto;
        padding: 150px 0 120px;
        width: 1000px;
    }
    .intro__content {
        margin: 0 0 0 520px;
        padding: 10px 0 0;
        width: 450px;
    }
    .intro__lead {
        font-size: 1.7rem;
        line-height: 1.46;
    }
    .intro__title {
        margin: 20px 0 0;
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.5;
    }
    .intro__title em {
        font-size: 5rem;
    }
    .intro__text {
        margin: 20px 0 0;
        font-size: 1.4rem;
        line-height: 1.93;
    }
    .intro__button {
        margin: 22px 0 0;
        width: 400px;
    }
    .intro__deco span:nth-child(1) {
        top: -30px;
        margin: 0 0 0 -720px;
        width: 180px;
        height: 180px;
    }
    .intro__deco span:nth-child(2) {
        bottom: 10px;
        margin: 0 0 0 -540px;
        width: 90px;
        height: 90px;
        animation-direction: reverse;
        animation-duration: 8s;
    }
    .intro__deco span:nth-child(3) {
        top: 60px;
        margin: 0 0 0 -100px;
        width: 60px;
        height: 60px;
        animation-direction: reverse;
        animation-duration: 8s;
    }
    .intro__deco span:nth-child(4) {
        top: 65px;
        margin: 0 0 0 480px;
        width: 90px;
        height: 90px;
    }
    .intro__deco span:nth-child(5) {
        bottom: 196px;
        margin: 0 0 0 570px;
        width: 90px;
        height: 90px;
        animation-direction: reverse;
        animation-duration: 8s;
    }

    /* hover */
    .intro__button .button--arrow:hover:after {
        transform: rotate(90deg);
    }

    /* slide
	----------------------------------------------- */

    .slide {
        position: absolute;
        top: 105px;
        left: 50%;
        margin: 0 0 0 -600px;
        width: 550px;
        height: 570px;
    }
    .slide:before {
        margin: 15px 0 0 -255px;
        width: 510px;
        height: 510px;
    }
    .slide:after {
        margin: 0 0 0 -270px;
        width: 540px;
        height: 540px;
    }
    .slide__title {
        margin: 70px 0 0;
        font-size: 1.7rem;
        line-height: 1.5;
    }
    .slide__title em {
        font-size: 2.2rem;
    }
    .slide__items:after {
        margin: 15px 0 0 -255px;
        width: 510px;
        height: 510px;
        background-size: 510px 510px;
    }
    .slide__item {
        position: absolute;
        top: 0;
        left: 0;
        width: 550px;
        height: 570px;
    }
    .slide__image {
        top: 185px;
        right: -30px;
        transform: translateX(-40px);
    }
    .slide__message {
        bottom: -10px;
        right: -40px;
        z-index: 2;
    }

    /* js-intro */
    .js-intro-ready .slide {
        opacity: 0;
        transform: translateY(20px);
    }
    .js-intro-start .slide {
        opacity: 1;
        transform: translateY(0px);
        transition-property: opacity, transform;
        transition-duration: 0.6s;
        transition-delay: 0.6s;
        transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    /* js-slide */
    .js-slide-active .slide__image {
        opacity: 1;
        transform: translateX(0px);
    }
    .js-slide-active .slide__message {
        opacity: 1;
        transform: scale(1);
    }
    .js-slide-end .slide__image {
        opacity: 0;
        transform: translateX(-40px);
    }
    .js-slide-end .slide__message {
        opacity: 0;
        transform: scale(0.8);
    }

    /* main
	----------------------------------------------- */

    .section__title {
        font-size: 3rem;
        line-height: 1.2;
    }
    .section__title__label {
        font-size: 1.6rem;
    }
    .section__title__note {
        font-size: 1.2rem;
    }
    .section__text {
        margin: 35px 0 0;
        line-height: 1.66;
        text-align: center;
    }

    /* about
	----------------------------------------------- */

    .about__inner {
        margin: auto;
        padding: 60px 0 0;
        width: 1000px;
    }
    .about__items {
        display: flex;
        justify-content: space-between;
        margin: 110px 0 0;
        padding: 0 20px;
    }
    .about__item {
        display: flex;
        flex-direction: column;
        padding: 0 0 20px;
        width: 300px;
    }
    .about__label {
        margin: -50px 0 0;
    }
    .about__company {
        margin: 15px 0 0;
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .about__company em {
        font-size: 1.5rem;
    }
    .about__question {
        margin: 30px 25px 0;
        padding: 0 0 20px;
        font-size: 1.6rem;
        line-height: 1.94;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    .about__button {
        margin: auto 20px 0;
    }
    .about__button .button {
        padding: 2.1rem 0;
        font-size: 1.8rem;
    }

    /* js-indicate */
    .about__item:nth-child(2) .js-indicate-start.about__button {
        transition-delay: 0.3s;
    }
    .about__item:nth-child(3) .js-indicate-start.about__button {
        transition-delay: 0.6s;
    }

    /* case
	----------------------------------------------- */

    .case {
        padding: 100px 0 0;
    }

    /* case__header */
    .case__header__inner {
        margin: auto;
        width: 1000px;
        display: flex;
        align-items: center;
    }
    .case__label {
        width: 200px;
        height: 200px;
    }
    .case__label:before {
        top: -10px;
        left: -10px;
        width: 220px;
        height: 220px;
    }
    .case__label:after {
        width: 200px;
        height: 200px;
        background-size: 200px 200px;
    }
    .case__label-text {
        padding: 20px 5px 0 0;
        width: 200px;
        height: 200px;
    }
    .case__content {
        padding: 44px 0 47px 50px;
    }
    .case__title {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    .case__title em {
        font-size: 3.8rem;
    }
    .case__question {
        margin: 10px 0 0;
        font-size: 1.6rem;
        line-height: 2.18;
    }
    .case__question mark {
        margin: 0 5px;
        padding: 0 10px 1px;
        vertical-align: 1px;
    }
    .case__articles {
        display: flex;
        justify-content: space-between;
        margin: 60px auto 0;
        padding: 0 20px;
        width: 1000px;
        box-sizing: border-box;
    }

    /* case__article */
    .case__article {
        width: 470px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }
    .case__article__header {
    }
    .case__article__question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90px;
        min-height: 9rem;
        font-size: 2rem;
        line-height: 1.7;
        box-sizing: border-box;
    }
    .case__article__question em {
        font-size: 2.6rem;
    }
    .case__article__question:after {
        bottom: -24px;
        margin: 0 0 0 -10px;
        border-width: 24px 10px 0 10px;
    }
    .case__article__catch {
        position: relative;
        margin: 36px auto 0;
        padding: 8px 10px;
        font-size: 1.6rem;
        line-height: 1.37;
        border-radius: 10px 10px 0 0;
        z-index: 1;
    }
    .case__article__container {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 3rem 0 25px;
        width: 100%;
        height: 100%;
        border-radius: 0 0 10px 10px;
    }
    .case__article__title {
        margin: -0.8rem 0 0;
        padding: 0 0 2.5rem;
        font-size: 2.6rem;
        line-height: 1.38;
    }
    .case__article__title--line2 {
        padding: 2rem 0 4.2rem;
    }
    .case__article__image {
        margin: 30px 28px 0;
    }
    .case__article__image figcaption {
        padding: 7px 0;
        font-size: 1.3rem;
        line-height: 1.54;
    }
    .case__article__summary {
        margin: 25px 28px 0;
    }
    .case__article__subtitle {
        font-size: 1.8rem;
        line-height: 1.66;
    }
    .case__article__text {
        margin: 9px 0 0;
        font-size: 1.4rem;
        line-height: 1.58;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    /* case__fotter */
    .case__footer {
        margin: 48px auto 0;
        padding: 0 20px;
        width: 1000px;
    }
    .case__footer__inner {
        position: relative;
    }
    .case__catch {
        font-size: 2.6rem;
        line-height: 1.3;
    }
    .case__catch span:before {
        left: -25px;
        transform: rotate(-31deg);
    }
    .case__catch span:after {
        right: -25px;
        transform: rotate(31deg);
    }
    .case__flow {
        position: relative;
        margin: 25px 0 0;
        padding: 30px;
        text-align: center;
        border-radius: 8px;
        z-index: 1;
    }
    .case__flow__inner {
        display: inline-block;
        overflow: hidden;
        border-radius: 8px;
    }
    .case__step {
        display: table;
        table-layout: fixed;
        margin: auto;
        width: 100%;
    }
    .case__step__item {
        display: table-cell;
        padding: 22px 20px 22px 0;
        width: calc(100% / 3);
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
        background-image: url(../images/case_arrow.png);
        background-repeat: no-repeat;
        background-position: right center;
    }
    .case__step__item:last-child {
        padding: 22px 0;
        background-image: none;
    }

    /* case__step-column */
    .case__step--column2 {
        width: 620px;
    }
    .case__step--column4 .case__step__item {
        padding: 12px 20px 12px 0;
        width: calc(100% / 4);
        vertical-align: middle;
    }
    .case__step--column4 .case__step__item:last-child {
        padding: 12px 0;
        background-image: none;
    }

    /* hover */
    .case__article__image a:hover {
        opacity: 0.8;
    }

    /* message
	----------------------------------------------- */

    .message {
        margin: 150px 0 0;
        padding: 70px 0;
        background: url(../images/message_bg01.png) repeat center top, url(../images/message_bg02.png) repeat center top;
        animation-name: bgroop;
        animation-duration: 70s;
        animation-timing-function: cubic-bezier(0, 0, 1, 1);
        animation-iteration-count: infinite;
    }
    .message__inner {
        padding: 60px 0 54px;
        width: 600px;
        border-radius: 10px;
    }
    .message__title__inner {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    .message__title__inner em {
        margin: 15px 0 0;
        padding: 15px 0.3em 0 0.4em;
        font-size: 3rem;
    }
    .message__summary {
        margin: 2px 65px 0;
    }
    .message__text {
        margin: 22px 0 0;
        font-size: 1.6rem;
        line-height: 1.69;
        text-align: center;
    }

    /* conversion
	----------------------------------------------- */

    .conversion__inner {
        margin: auto;
        padding: 55px 0 60px;
        width: 800px;
    }
    .conversion__catch {
        font-size: 2.6rem;
    }
    .conversion__catch span:before {
        left: -25px;
        transform: rotate(-31deg);
    }
    .conversion__catch span:after {
        right: -25px;
        transform: rotate(31deg);
    }
    .conversion__column {
        margin: 26px 0 0;
        display: flex;
        justify-content: space-between;
    }
    .conversion__column2 {
        display: flex;
        justify-content: space-between;
    }
    .conversion__item {
        padding: 30px;
        width: 390px;
        text-align: center;
        border-radius: 10px;
    }
    .conversion__item2 {
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
        width: 450px;
        text-align: center;
        border-radius: 10px;
    }
    .conversion__item__title {
        font-size: 1.8rem;
    }
    .conversion__tel {
        margin: 32px 0 0;
    }
    .conversion__number {
        font-size: 4rem;
    }
    .conversion__number__label {
        margin: 0 10px 0 0;
        font-size: 2rem;
    }
    .conversion__time {
        margin: 2px 0 0;
        font-size: 1rem;
        font-weight: 700;
    }
    .conversion__time em {
        font-size: 1.4rem;
    }
    .conversion__time__title {
        padding: 0 1em 0 0;
    }
    .conversion__button {
        margin: 20px 0 0;
    }

    /* hover */
    .conversion__button .button--arrow:hover:after {
        transform: rotate(90deg);
    }

    /* price
	----------------------------------------------- */

    .price__inner {
        margin: auto;
        padding: 100px 0 0;
        width: 900px;
    }
    .price__title {
        margin: 58px 0 0;
        padding: 20px 10px;
        font-size: 2.2rem;
    }
    .price__pr {
        right: 0;
        margin: -53px 0 0 0;
        width: 106px;
        height: 106px;
        color: #e0494d;
        font-size: 1.4rem;
        line-height: 1.28;
    }
    .price__column {
        display: flex;
        justify-content: space-between;
        margin: 30px 0 0;
    }

    /*price__item*/
    .price__item {
        padding: 0 0 19px;
        width: 290px;
    }
    .price__item__price {
        margin: 2rem 0 0;
        font-size: 1.6rem;
    }
    .price__item__price em {
        font-size: 2.8rem;
    }
    .price__item__price small {
        font-size: 1.2rem;
    }
    .price__item__price--small {
        margin: 10px auto 0;
        font-size: 1.4rem;
    }
    .price__item__price--small em {
        font-size: 2.4rem;
    }
    .price__item__price--small small {
        font-size: 1rem;
    }
    .price__item__image {
        margin: 19px auto 0;
        width: 250px;
    }
    .price__item__image figcaption {
        font-size: 2.2rem;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    .price__item__text {
        margin: 2rem 19px 0;
        padding: 2rem 0 0;
        font-size: 1.8rem;
    }
    .price__item__note {
        margin: 10px 19px 0;
        font-size: 1.4rem;
    }

    /* concept
	----------------------------------------------- */

    .concept {
        margin: 100px 0 0;
        background: linear-gradient(to left, #ff985b 0%, #e0494d 40%, #e0494d 100%);
    }
    .concept:before,
    .concept:after {
        position: absolute;
        top: 0;
        bottom: 0;
        display: block;
        content: "";
        height: 100%;
    }
    .concept:before {
        left: 0;
        width: calc(50% + 100px);
        background: url(../images/concept_image.jpg) no-repeat center center;
        background-size: cover;
    }
    .concept:after {
        left: 50%;
        margin: 0 0 0 -123px;
        width: 224px;
        height: 448px;
        background: #e0494d;
        border-radius: 448px 0 0 448px;
    }
    .concept__inner {
        position: relative;
        margin: auto;
        width: 800px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1;
    }
    .concept__title {
        width: 380px;
        font-size: 3rem;
        line-height: 2;
    }
    .concept__summary {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 380px;
        height: 448px;
        box-sizing: border-box;
    }
    .concept__text {
        margin: 21px 0 0;
        font-size: 1.6rem;
        line-height: 1.68;
    }
    .concept__text:first-child {
        margin: 0;
    }

    /* contact
	----------------------------------------------- */
    .contact__inner {
        /* margin: -80px auto 0; */
        margin: 0 auto 0;
        /* padding: 175px 0 105px; */
        padding: 100px 0 105px;
        width: 800px;
    }
    .popup_contact__inner {
        /* margin: -80px auto 0; */
        margin: 0 auto 0;
        /* padding: 175px 0 105px; */
        padding: 40px 0 105px;
        width: 1000px;
    }
    .contact__item {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 42px 0 0;
        padding: 40px 0 0;
    }
    .contact__item__title {
        padding: 0 20px 0 0;
        font-size: 1.6rem;
    }
    .contact__tel {
        padding: 0 0 0 20px;
        border-left: 1px solid #bebebe;
    }
    .contact__number {
        font-size: 4rem;
    }
    .contact__number__label {
        margin: 0 10px 0 0;
        font-size: 2rem;
    }
    .contact__time {
        margin: 2px 0 0;
        font-size: 1rem;
        font-weight: 700;
    }
    .contact__time em {
        font-size: 1.4rem;
    }
    .contact__time__title {
        padding: 0 1em 0 0;
    }

    /* form
	----------------------------------------------- */

    .form {
        margin: 40px 0 0;
    }
    .form__th,
    .form__td {
        font-size: 1.5rem;
    }
    .form__th {
        position: relative;
        padding: 30px 70px 5px 0;
        width: 230px;
    }
    .form__td {
        padding: 13px 0 13px 30px;
        width: 570px;
    }
    .form__icon {
        position: absolute;
        top: 28px;
        right: 0;
        padding: 4px 0 4px 0.3em;
        width: 60px;
        font-size: 1.2rem;
        letter-spacing: 0.3em;
    }
    .form__name {
        display: inline-block;
        padding: 0 0 0 10px;
        width: 50%;
        box-sizing: border-box;
    }
    .form__input--name {
        margin: 0 0 0 2px;
        width: 92%;
    }
    .form__buttons {
        margin: 45px 20px 0;
        text-align: center;
    }
    .form__button {
        margin: auto;
        width: 600px;
    }
    .form__button .button {
        padding: 3.2rem 0;
    }
    .form__button--mini {
        width: 400px;
    }
    .form__button--mini .button {
        padding: 2rem 0;
    }

    /* form--confirm */
    .form--confirm .form__th,
    .form--confirm .form__td {
        line-height: 1.7;
        padding: 25px 0;
        border-bottom: 1px solid #bebebe;
    }
    .form--confirm .form__buttons {
        display: flex;
        justify-content: center;
    }
    .form--confirm .form__button {
        margin: 0 10px;
        width: 300px;
    }

    /* retina
	----------------------------------------------- */

    @media only screen and (-webkit-min-device-pixel-ratio: 2) {
    }
}

/* tablet
----------------------------------------------- */

@media screen and (min-width: 641px) and (max-width: 1000px) {
}

/* mobile
----------------------------------------------- */

@media only screen and (max-width: 999px) {
    /* br
	----------------------------------------------- */

    .pcbr {
        display: none;
    }

    body {
    }
    img {
        width: 100%;
        height: auto;
    }

    /* button
	----------------------------------------------- */

    .button {
        padding: 2rem 0;
        font-size: 2rem;
        border-radius: 8px;
    }
    .button--arrow:after {
        right: 15px;
    }
    .button--mini {
        padding: 1rem 0;
        font-size: 1.5rem;
    }

    /* header
	----------------------------------------------- */

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: #fff;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    }
    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 50px;
        box-sizing: border-box;
    }
    .header__logo {
        margin: 0 15px;
        width: 100px;
    }
    .header__button {
        display: flex;
        /* float: left; */
    }
    .header__button .button {
        display: flex;
        align-items: center;
        padding: 0 15px;
        height: 50px;
        font-size: 1.4rem;
        border-radius: 0px;
        box-sizing: border-box;
    }
    .contact__button {
        padding-top: 50px;
    }
    .header__text,
    .header__tel {
        display: none;
    }

    /* footer
	----------------------------------------------- */

    .footer__column {
        margin: auto;
        padding: 30px 20px;
        max-width: 460px;
    }
    .footer__inner-gray .footer__column {
        padding: 20px 10px;
    }
    .footer__logo {
        margin: auto;
        max-width: 150px;
    }
    .footer__text {
        padding: 20px 0 0;
        font-size: 1.2rem;
        line-height: 1.75;
    }
    .footer__link {
        margin: 20px 0 0;
        text-align: center;
    }
    .footer__link a {
        font-size: 1.2rem;
        font-weight: 700;
    }
    .footer__ds {
        margin: auto;
        max-width: 120px;
    }
    .footer__copyright {
        margin: 15px 0 0;
        text-align: center;
    }

    /* lower
	----------------------------------------------- */

    .lower .main {
        margin: 50px 0 0;
    }

    /* intro
	----------------------------------------------- */

    .intro {
        border-bottom: 1px solid #bebebe;
    }
    .intro__inner {
        margin: auto;
        padding: 80px 0 40px;
        max-width: 640px;
    }
    .intro__lead {
        font-size: 1.1rem;
        line-height: 1.3;
        text-align: center;
    }
    .intro__title {
        position: relative;
        margin: 10px 0 0;
        font-size: 1.8rem;
        line-height: 1.46;
        text-align: center;
        z-index: 1;
    }
    .intro__title em {
        font-size: 2.4rem;
    }
    .intro__text {
        margin: 20px auto 0;
        padding: 0 20px;
        max-width: 460px;
        font-size: 1.4rem;
        line-height: 1.93;
    }
    .intro__button {
        margin: 15px auto 0;
        width: 90%;
        min-width: 250px;
        max-width: 460px;
    }
    .intro__button .button {
        padding: 2.4rem 0;
    }
    .intro__deco span:nth-child(1) {
        top: 10px;
        margin: 0 0 0 -200px;
        width: 94px;
        height: 94px;
    }
    .intro__deco span:nth-child(2) {
        top: 100px;
        margin: 0 0 0 120px;
        width: 56px;
        height: 56px;
        animation-direction: reverse;
        animation-duration: 8s;
    }
    .intro__deco span:nth-child(3) {
        top: 490px;
        margin: 0 0 0 -150px;
        width: 56px;
        height: 56px;
        animation-direction: reverse;
        animation-duration: 8s;
    }
    .intro__deco span:nth-child(4) {
        top: 240px;
        margin: 0 0 0 140px;
        width: 56px;
        height: 56px;
    }

    /* slide
	----------------------------------------------- */

    .slide {
        position: relative;
        margin: 10px 0 0;
        height: 380px;
    }
    .slide:before {
        margin: 10px 0 0 -180px;
        width: 360px;
        height: 360px;
    }
    .slide:after {
        margin: 0 0 0 -190px;
        width: 380px;
        height: 380px;
    }
    .slide__title {
        padding: 40px 0 0;
        font-size: 1.4rem;
        line-height: 1.5;
        text-align: center;
    }
    .slide__items {
        margin: auto;
        width: 100%;
        max-width: 375px;
        z-index: 1;
    }
    .slide__items:after {
        margin: 10px 0 0 -180px;
        width: 360px;
        height: 360px;
        background-size: 360px 360px;
    }
    .slide__items:before {
        display: block;
        content: "";
        padding: 80% 0 0;
    }
    .slide__item {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 100%;
        max-width: 375px;
    }
    .slide__image {
        top: 120px;
        right: 10px;
        width: 200px;
        transform: translateX(-20px);
    }
    .slide__message {
        bottom: 0;
        right: -5px;
        width: 150px;
        height: 150px;
        z-index: 1;
    }

    /* js-intro */
    .js-intro-ready .slide__items {
        opacity: 0;
        transform: translateY(20px);
    }
    .js-intro-start .slide__items {
        opacity: 1;
        transform: translateY(0px);
        transition-property: opacity, transform;
        transition-duration: 0.6s;
        transition-delay: 0.6s;
        transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    /* js-slide */
    .js-slide-active .slide__image {
        opacity: 1;
        transform: translateX(0px);
    }
    .js-slide-active .slide__message {
        opacity: 1;
        transform: scale(1);
    }
    .js-slide-end .slide__image {
        opacity: 0;
        transform: translateX(-20px);
    }
    .js-slide-end .slide__message {
        opacity: 0;
        transform: scale(0.8);
    }

    /* main
	----------------------------------------------- */

    .main {
        overflow: hidden;
    }
    .section__title {
        margin: 0 10px;
        font-size: 2rem;
        line-height: 1.4;
    }
    .section__title__label {
        font-size: 1.4rem;
    }
    .section__title__note {
        font-size: 1.2rem;
    }
    .section__text {
        margin: 25px 0 0;
        line-height: 1.7;
        text-align: justify;
    }

    /* about
	----------------------------------------------- */

    .about__inner {
        margin: 40px auto 0;
        padding: 0 0 10px;
        max-width: 640px;
    }
    .about__items {
        margin: 30px 0 0;
    }
    .about__item {
        margin: 6rem 20px 0;
        padding: 0 0 20px;
    }
    .about__label {
        margin: -40px 0 0;
    }
    .about__label-text {
        width: 60px;
    }
    .about__company {
        margin: 10px 0 0;
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .about__company em {
        font-size: 1.5rem;
    }
    .about__question {
        margin: 15px 20px 0;
        line-height: 1.8;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    .about__button {
        margin: 20px auto 0;
        width: 80%;
        max-width: 320px;
    }
    .about__button .button {
        padding: 2.1rem 0;
        font-size: 1.8rem;
    }

    /* case
	----------------------------------------------- */

    .case {
        margin: 60px 0 0;
    }
    .case:before {
        display: block;
        content: "";
        margin: -50px 0 0;
        padding: 50px 0 0;
    }

    /* case__header */
    .case__header__inner {
        margin: auto;
        padding: 30px 0 20px;
        max-width: 640px;
    }
    .case__label {
        position: absolute;
        top: 30px;
        left: 20px;
        width: 100px;
        height: 100px;
    }
    .case__label:before {
        top: -10px;
        left: -10px;
        width: 120px;
        height: 120px;
    }
    .case__label:after {
        width: 100px;
        height: 100px;
        background-size: 100px 100px;
    }
    .case__label-text {
        padding: 10px 0 0 0;
        width: 100px;
        height: 100px;
    }
    .case__label-text img {
        width: 60px;
    }
    .case__content {
        padding: 0 20px;
    }
    .case__title {
        display: flex;
        align-items: center;
        margin: 0 0 0 120px;
        height: 100px;
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .case__title em {
        font-size: 2.2rem;
    }
    .case__question {
        margin: 20px 0 0;
        font-size: 1.4rem;
        line-height: 1.9;
        text-align: justify;
    }
    .case__question mark {
        margin: 0 2px;
        padding: 0 4px 1px;
        vertical-align: 1px;
    }

    /* case__article */
    .case__articles {
        margin: auto;
        max-width: 640px;
    }
    .case__article {
        margin: 30px 20px 0;
    }
    .case__article__question {
        margin: 0 15px;
        padding: 8px 0;
        font-size: 1.4rem;
        line-height: 1.5;
    }
    .case__article__question em {
        font-size: 1.6rem;
    }
    .case__article__question:after {
        bottom: -16px;
        margin: 0 0 0 -8px;
        border-width: 16px 8px 0 8px;
        z-index: 1;
    }
    .case__article__catch {
        margin: 20px 0 0;
        padding: 10px;
        font-size: 1.4rem;
        line-height: 1.37;
        border-radius: 8px 8px 0 0;
    }
    .case__article__container {
        padding: 0 0 20px;
        border-radius: 0px 0px 8px 8px;
    }
    .case__article__title {
        padding: 15px 10px;
        font-size: 1.8rem;
        line-height: 1.38;
    }
    .case__article__image {
        margin: 20px 15px 0;
    }
    .case__article__image figcaption {
        padding: 5px 0;
        font-size: 1.1rem;
        line-height: 1.54;
    }
    .case__article__summary {
        margin: 20px 15px 0;
    }
    .case__article__subtitle {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    .case__article__text {
        margin: 12px 0 0;
        font-size: 1.4rem;
        line-height: 1.58;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    /* case__fotter */
    .case__footer {
        margin: 20px auto 0;
        max-width: 640px;
        padding: 0 20px;
    }
    .case__catch {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .case__catch span:before {
        left: -18px;
        transform: rotate(-15deg);
    }
    .case__catch span:after {
        right: -18px;
        transform: rotate(15deg);
    }
    .case__flow {
        margin: 20px 0 0;
        padding: 15px;
        border-radius: 8px;
    }
    .case__flow:after {
        top: -120px;
        right: -20px;
        width: 164px;
        height: 170px;
    }
    .case__step__item {
        margin: 16px 0 0;
        padding: 10px;
        line-height: 1.3;
        text-align: center;
        border-radius: 8px;
    }
    .case__step__item:before {
        top: -17px;
        left: 50%;
        margin: 0 0 0 -6px;
        border-style: solid;
        border-width: 14px 6px 0 6px;
        border-color: #fff064 transparent transparent transparent;
    }
    .case__step__item:first-child {
        margin: 0;
    }
    .case__step__item:first-child:before,
    .case__step__item:after {
        display: none;
    }

    /* message
	----------------------------------------------- */

    .message {
        margin: 60px 0 0;
    }
    .message:before,
    .message:after {
        display: block;
        content: "";
        width: 100%;
        height: 100px;
    }
    .message:before {
        background: url(../images/message_bg01.png) repeat center top;
        background-size: 750px 200px;
        animation-name: bgroopsp1;
        animation-duration: 70s;
        animation-timing-function: cubic-bezier(0, 0, 1, 1);
        animation-iteration-count: infinite;
    }
    .message:after {
        background: url(../images/message_bg02.png) repeat center bottom;
        background-size: 750px 200px;
        animation-name: bgroopsp2;
        animation-duration: 70s;
        animation-timing-function: cubic-bezier(0, 0, 1, 1);
        animation-iteration-count: infinite;
    }
    .message__inner {
        margin: auto;
        padding: 40px 0 35px;
    }
    .message__title__inner {
        font-size: 1.4rem;
    }
    .message__title__inner em {
        margin: 10px 0 0;
        padding: 10px 0 0;
        font-size: 2rem;
    }
    .message__summary {
        margin: 0 20px;
    }
    .message__text {
        margin: 22px auto 0;
        max-width: 400px;
        line-height: 1.69;
        text-align: justify;
    }

    /* conversion
	----------------------------------------------- */

    .conversion__inner {
        margin: auto;
        padding: 50px 20px;
        max-width: 640px;
    }
    .conversion__catch {
        font-size: 2rem;
    }
    .conversion__catch span:before {
        left: -18px;
        transform: rotate(-15deg);
    }
    .conversion__catch span:after {
        right: -18px;
        transform: rotate(15deg);
    }
    .conversion__column {
        margin: 30px 0 0;
    }
    .conversion__item {
        margin: 15px 0 0;
        padding: 25px 15px;
        text-align: center;
        border-radius: 8px;
    }
    .conversion__item2 {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
        padding: 25px 15px;
        /* width: 450px; */
        text-align: center;
        border-radius: 8px;
    }
    .conversion__item__title {
        font-size: 1.5rem;
    }
    .conversion__tel {
        margin: 15px 0 0;
    }
    .conversion__number {
        font-size: 3rem;
    }
    .conversion__number__label {
        margin: 0 5px 0 0;
        font-size: 1.6rem;
    }
    .conversion__time {
        margin: 10px 0 0;
        padding: 0 0 5px;
        font-size: 1.2rem;
        line-height: 1.6;
        font-weight: 700;
        border: 1px solid #bebebe;
    }
    .conversion__time em {
        font-size: 1.4rem;
    }
    .conversion__time__title {
        display: block;
        margin: 0 0 5px;
        padding: 2px;
        border-bottom: 1px solid #bebebe;
    }
    .conversion__button {
        margin: 15px auto 0;
        width: 90%;
        min-width: 250px;
        max-width: 460px;
    }

    /* price
	----------------------------------------------- */

    .price__inner {
        margin: auto;
        padding: 50px 0;
        max-width: 540px;
    }
    .price__title {
        margin: 40px 0 0;
        padding: 15px 10px;
        font-size: 1.8rem;
    }
    .price__pr {
        right: 10px;
        margin: -35px 0 0 0;
        width: 70px;
        height: 70px;
        color: #e0494d;
        font-size: 1.1rem;
        line-height: 1.28;
    }

    /*price__item*/
    .price__item {
        margin: 20px 20px;
        padding: 15px;
    }
    .price__item__title--small {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    .price__item__title--small small {
        font-size: 1rem;
    }
    .price__item__price {
        margin: 1.5rem 0 0;
        font-size: 1.4rem;
    }
    .price__item__price em {
        font-size: 2.2rem;
    }
    .price__item__price small {
        font-size: 1rem;
    }
    .price__item__image figcaption {
        font-size: 2rem;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    .price__item__text {
        margin: 15px 0 0;
        padding: 15px 0 0;
        font-size: 1.5rem;
    }
    .price__item__note {
        margin: 10px 0 0;
        font-size: 1.3rem;
    }

    /* concept
	----------------------------------------------- */

    .concept__title {
        padding: 40px 0;
        font-size: 2.4rem;
        line-height: 1.7;
        text-align: center;
        background: url(../images/concept_image.jpg) no-repeat center center;
    }
    .concept__summary {
        position: relative;
        margin: auto;
        padding: 28px 20px 35px;
        max-width: 640px;
        box-sizing: border-box;
    }
    .concept__summary:before {
        position: absolute;
        top: -18px;
        left: 50%;
        display: block;
        content: "";
        margin: 0 0 0 -30px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 30px 20px 30px;
        border-color: transparent transparent #f07154 transparent;
    }
    .concept__text {
        margin: 12px 0 0;
        line-height: 1.68;
        text-align: justify;
    }

    /* contact
	----------------------------------------------- */

    .contact {
        padding: 0 20px;
    }
    .contact__inner {
        margin: -50px auto 0;
        padding: 100px 0 50px;
        max-width: 640px;
    }
    .contact__item {
        margin: 30px -20px 0;
        padding: 20px 20px 0;
        text-align: center;
    }
    .contact__item__title {
        font-size: 1.5rem;
    }
    .contact__tel {
        margin: 15px 0 0;
    }
    .contact__number {
        font-size: 3rem;
    }
    .contact__number__label {
        margin: 0 5px 0 0;
        font-size: 1.6rem;
    }
    .contact__time {
        margin: 10px 0 0;
        padding: 0 0 5px;
        font-size: 1.2rem;
        line-height: 1.6;
        font-weight: 700;
        border: 1px solid #bebebe;
    }
    .contact__time em {
        font-size: 1.4rem;
    }
    .contact__time__title {
        display: block;
        margin: 0 0 5px;
        padding: 2px;
        border-bottom: 1px solid #bebebe;
    }

    /* form
	----------------------------------------------- */

    .form__th,
    .form__td {
        display: block;
        padding: 30px 0 0;
        font-size: 1.5rem;
    }
    .form__td {
        padding: 10px 0 0;
    }
    .form__icon {
        margin: 0 0 0 5px;
        padding: 2px 0.5rem 2px 0.8em;
        font-size: 1rem;
        letter-spacing: 0.3em;
        vertical-align: 0.1rem;
    }
    .form__name {
        display: flex;
        align-items: center;
        margin: 10px 0 0;
    }
    .form__input--name {
        margin: 0 0 0 10px;
    }
    .form__buttons {
        margin: 30px 0 0;
        text-align: center;
    }
    .form__button {
        margin: auto;
        width: 90%;
        max-width: 460px;
    }
    .form__button .button {
        padding: 2.5rem 0;
    }

    /* form--confirm */
    .form--confirm .form__table {
        margin: 40px 0 0;
    }
    .form--confirm .form__th,
    .form--confirm .form__td {
        line-height: 1.7;
        padding: 5px 0 20px;
    }
    .form--confirm .form__th {
        padding: 20px 0 0;
        border-top: 1px solid #bebebe;
    }
    .form--confirm .button--back {
        margin: 0 40px 30px;
        padding: 1.6rem 0;
        font-size: 1.5rem;
    }
}

/* keyframes
----------------------------------------------- */

@keyframes fade {
    0% {
        transform: scale(1, 1);
        opacity: 0;
    }
    40% {
        transform: scale(1.1, 1.1);
        opacity: 0.3;
    }
    60% {
        transform: scale(1.15, 1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    40% {
        transform: scale(0.8, 0.8);
    }
    60% {
        transform: scale(1, 1);
    }
}
@keyframes pyon {
    30% {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0px);
    }
    60% {
        transform: translateY(-5px);
    }
    70% {
        transform: translateY(0px);
    }
}
@keyframes bgroop {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: -1500px 0, 1500px 0;
    }
}
@keyframes bgroopsp1 {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -750px 0;
    }
}
@keyframes bgroopsp2 {
    from {
        background-position: 0 100px;
    }
    to {
        background-position: 750px 100px;
    }
}
