@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/*============================================
start reset.css
============================================*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
    border: 0;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
ol, ul {
    list-style: none;
}
li, dd {
    list-style-type: none;
}
header, footer, nav, section, article, aside, figure, figcaption, main {
    display: block;
}
h1 {
    font-size: 2em;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
}
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: 1em;
}
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;
    max-width: 100%;
    height: auto;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}
input, 
[type="text"],
[type="email"],
[type="tel"],
[type="password"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid #999;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    width: 100%;
}
input:focus, 
[type="text"]:focus,
[type="email"]:focus,
[type="tel"]:focus,
[type="password"]:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
}
input[type="submit"] {
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0.32);
    background-image: none;
    border: none;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    font-size: 1em;
    margin: 0 0 1em;
    padding: 0.6em 2em;
    text-decoration: none;
}
input[type="submit"]:hover {
    cursor: pointer;
    outline: none;
}
input[type="submit"]:focus {
    outline: none;
}
input[type="submit"]::-moz-focus-inner {
    border: none;
    padding: 0;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
/* selectはブラウザ間で最も差異があり、色んな形のアローアイコンが登場するので、ここのアローアイコンを上書きして自分が用意した画像を背景として適応させる */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent url(../../img/arrow-icon.png) no-repeat center right 8px/16px 16px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    width: 100%;
}
select:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
}
select::-ms-expand {
    display: none;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    height: 100px; /*デザインに応じて高さ指定 */
    padding: 0.4em 0.8em;
    width: 100%;
}
textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
/**
* "display:none"で消すのではなく、"opacity: 0;"を使う。
*  （Tabキーで選択できなくなるのを防ぐため）
*  親要素に"position: relative;"つけるのを忘れずに！
*/
[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

[type="checkbox"] + span {
    cursor: pointer;
    display: inline-block;
    margin: 0 0.2em 0;
    padding: 0 0 0 1.2em;
    position: relative;
}
/**
* 標準で出力されるチェックボックスは消して、独自のチェックボックスを擬似要素で作る指定
*/
[type="checkbox"] + span::before {
    -webkit-transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 2px;
    content: "";
    display: block;
    height: 1em;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
}
[type="checkbox"] + span::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    border-bottom: 3px solid #0165fc;
    border-left: 3px solid #0165fc;
    content: "";
    display: block;
    height: 0.6em;
    left: 0;
    margin-top: -0.2em;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: all 0.3s ease 0s;
    width: 1em;
}
[type="checkbox"]:checked + span::after {
    opacity: 1;
}
/**
* "display:none"で消すのではなく、"opacity: 0;"を使う。
*  （Tabキーで選択できなくなるのを防ぐため）
*  親要素に"position: relative;"つけるのを忘れずに！
*/
[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
[type="radio"] + span {
    cursor: pointer;
    display: inline-block;
    margin: 0 0.2em 0;
    padding: 0 0 0 1.2em;
    position: relative;
}
/**
* 標準で出力されるラジオボタンは消して、独自のラジオボタンを擬似要素で作る指定
*/
[type="radio"] + span::before {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    background: #fff;
    content: "";
}
[type="radio"] + span::after {
    position: absolute;
    top: 9px;
    left: 3px;
    opacity: 0;
    width: 8px;
    height: 8px;
    padding: 2px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: #0165fc;
    transition: all 0.3s ease 0s;
    content: "";
}
[type="radio"]:checked + span::before {
    border: 1px solid #0165fc;
}
[type="radio"]:checked + span::after {
    opacity: 1;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[type="hidden"] {
    display: none;
}

/*============================================
end reset.css
============================================*/


/*============================================
base
============================================*/

html {
    font-size: 62.5%;
}
body {
    min-width: 1500px;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6em;
    font-weight: 400;
    letter-spacing: 0;
    color: #000;
}
a {
    transition: opacity .3s;
}
.is-sp {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    a:hover {
        opacity: .6;
    }
}
@media screen and (max-width: 599px) {
    body {
        min-width: auto;
    }
    .is-pc {
        display: none;
    }
    .is-sp {
        display: block;
    }
}

/*============================================
header
============================================*/

.header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 50;
}
.header__logo {
    width: 100%;
    max-width: 220px;
}
.header__logo a {
    display: block;
}
@media screen and (max-width: 599px) {
    .header {
        padding: 1.4rem 2rem 1rem;
    }
    .header__logo {
        max-width: 125px;
    }
}

/*============================================
footer
============================================*/

.footer {
    border-top: 1px solid #d8d8d8;
    padding: 2rem 0;
    margin-bottom: 12rem;
}
.footer + p{
    display: none; /* WordPress化で生じるものを非表示 */
}
.footer__inquiry {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.85);
    z-index: 100;
}
.footer__inquiry__inner {
    max-width: 1000px;
    padding: 1.8rem 0;
    margin: 0 auto;
}
.footer__inquiry ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__inquiry ul li:nth-child(1) {
    width: 100%;
    max-width: 420px;
    margin-right: 3.2rem;
}
.footer__inquiry ul li:nth-child(2) {
    width: 100%;
    max-width: 548px;
}
.footer__inquiry .cmn-btn a {
    font-size: 2rem;
}
.tel-pc a {
    display: block;
    font-weight: 700;
    pointer-events: none;
}
.tel-pc__title {
    position: relative;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: .8rem;
}
.tel-pc__title::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 125px;
    height: 1px;
    background: #000;
}
.tel-pc__title::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 125px;
    height: 1px;
    background: #000;
}
.tel-pc__num {
    display: inline-block;
    font-size: 3.8rem;
    margin-right: 1.4rem;
}
.tel-pc__num span {
    font-size: 2.1rem;
}
.tel-pc__time {
    display: inline-block;
    line-height: 1.625; /* calc(26 / 16) */
}
.footer__copy {
    text-align: center;
}
.footer__copy small {
    font-size: 1.2rem;
}
@media screen and (max-width: 1060px) {
    .footer__inquiry ul li:nth-child(1) {
        margin-right: 1.8rem;
    }
    .footer__inquiry .cmn-btn a {
        font-size: 1.7rem;
        font-size: min(1.7rem, 2.3vw);
    }
    .footer__inquiry .cmn-btn a span::before {
        right: -24px;
        width: 14px;
        height: 14px;
    }
    .footer__inquiry .cmn-btn a span::after {
        right: -21px;
        border-width: 3.5px 0 3.5px 6px;
    }
    .tel-pc__title {
        font-size: 2.2vw;
    }
    .tel-pc__title::before,
    .tel-pc__title::after {
        width: 9vw;
    }
    .tel-pc__num {
        min-width: 160px;
        font-size: 3vw;
        letter-spacing: -0.01em;
        margin-right: 0;
    }
    .tel-pc__num span {
        font-size: 1.5vw;
    }
    .tel-pc__time {
        min-width: 93px;
        font-size: 1.4vw;
    }
}
@media screen and (max-width: 599px) {
    .footer {
        padding: .9rem 2rem;
        margin-bottom: 6.7rem;
    }
    .footer .tel-pc {
        display: none;
    }
    .footer__inquiry__inner {
        width: 100%;
        padding: 1.2rem 0;
    }
    .footer__inquiry ul li:nth-child(1) {
        max-width: 100%;
        margin-right: 0;
    }
    .footer__inquiry .cmn-btn a {
        font-size: 1.4rem;
    }
    .footer__copy {
        line-height: 1;
    }
    .footer__copy small {
        font-size: .9rem;
    }
    .footer__copy small a {
        display: inline-block;
    }
}
@media screen and (max-width: 359px) {
    .footer__copy small {
        font-size: .8rem;
    }
}

/*============================================
common
============================================*/

.cmn-btn a {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    padding: 1em;
    border-radius: 40px;
    text-align: center;
    transition: box-shadow .3s, transform .3s;
}
.cmn-btn.orange a {
    background: #f39800;
    box-shadow: 0 6px #d38724;
}
.cmn-btn.green a {
    font-size: 2rem;
    background: #27ad3a;
    box-shadow: 0 6px #028376;
}
.cmn-btn a span {
    position: relative;
}
.cmn-btn a span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -34px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
}
.cmn-btn a span::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 0 5px 9px;
}
.cmn-btn.orange a span::after {
    border-color: transparent transparent transparent #f39800;
}
.cmn-btn.green a span::after {
    border-color: transparent transparent transparent #27ad3a;
}
.cmn-btn a span span {
    margin-right: .3em;
}
.cmn-btn a span span::before,
.cmn-btn a span span::after {
    content: none;
}
.section {
    padding: 8rem 0;
}
.section__inner {
    width: 1000px;
    margin: 0 auto;
}
.section__title {
    position: relative;
    font-size: 4.8rem;
    color: #27ad3a;
    text-align: center;
    padding-top: 6.2rem;
}
.section__title::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 28px;
    background: url(../../img/lp/cmn/icon_section-title_pc.svg) no-repeat center top / contain;
}
@media (hover: hover) and (pointer: fine) {
    .cmn-btn a:hover {
        box-shadow: none;
        transform: translateY(6px);
        opacity: 1;
    }
}
@media screen and (max-width: 599px) {
    .cmn-btn a {
        font-size: 1.4rem;
        padding: 1.3rem;
    }
    .cmn-btn.orange a {
        box-shadow: 0 3px #d38724;
    }
    .cmn-btn.green a {
        font-size: 1.4rem;
        box-shadow: 0 3px #028376;
    }
    .cmn-btn a span::before {
        right: -24px;
        width: 14px;
        height: 14px;
    }
    .cmn-btn a span::after {
        right: -21px;
        border-width: 3.5px 0 3.5px 6px;
    }
    .section {
        padding: 4rem 0;
    }
    .section__inner {
        width: 100%;
        padding: 0 2rem;
    }
    .section__title {
        font-size: 2.8rem;
        line-height: 1.4; /* calc(39 / 28) */
        padding-top: 4.1rem;
    }
    .section__title::before {
        width: 70px;
        height: 50px;
        background: url(../../img/lp/cmn/icon_section-title_sp.svg) no-repeat center top / contain;
    }
}

/*============================================
new-common
============================================*/
@media screen and (max-width: 599px) {
    .new-cmn-btn-top {
        gap: 5px;
    }
    .new-cmn-btn {
        color: #fff;
    }
    .new-cmn-btn-start {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f39800;
        box-shadow: 0 3px #d38724;
        border-radius: 30px;
        padding: 7px;
        line-height: 1.2;
        width: 100%;
        text-align: center;
        font-size: 1.4rem;
    }
    .new-cmn-btn-start a span {
        position: relative;
        left: -8px;
    }
    .new-cmn-btn-start a span::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border-radius: 50%;
        right: -33px;
        width: 14px;
        height: 14px;
    }
    .new-cmn-btn-start a span::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border-style: solid;
        right: -30px;
        border-width: 3.5px 0 3.5px 6px;
        border-color: transparent transparent transparent #f39800;
    }
    
    .new-cmn-btn-num {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #27ad3a;
        box-shadow: 0 3px #028376;
        border-radius: 30px;
        padding: 7px;
        line-height: 1.2;
        width: 100%;
        text-align: center;
    }
    .new-cmn-btn-num-title {
        font-size: 1.4rem;
        margin-left: 3px;
    }
    .new-cmn-btn-num-title span {
        font-size: 1.2rem;
    }
}

/*============================================
support
============================================*/

.support {
    background: #f7f5f2;
}
.support .section__title {
    margin-bottom: 5.5rem;
}
.support__sub-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5.5rem;
}
.support__box {
    display: flex;
    align-items: center;
}
.support__box:nth-child(2) {
    flex-direction: row-reverse;
    margin-top: 5rem;
}
.support__box__imgBox {
    width: 100%;
    max-width: 330px;
}
.support__box__imgBox__img {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 50%;
}
.support__box__imgBox__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}
.support__box:nth-child(1) .support__box__imgBox {
    margin-right: 4.2rem;
}
.support__box__textBox {
    width: 100%;
    max-width: 628px;
}
.support__box__imgBox__text {
    text-align: center;
}
.support__box__imgBox__text span {
    display: inline-block;
    font-weight: 700;
}
.support__box__imgBox__text span:first-child {
    margin: 1rem 0;
}
.support__box__imgBox__text span:last-child {
    font-size: 2.2rem;
    color: #27ad3a;
}
.support__box:nth-child(2) .support__box__textBox {
    margin-right: 4.2rem;
}
.support__box__title {
    font-size: 3.2rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 6px solid #f39800;
}
.support__box__text {
    line-height: 2; /* calc(32 / 16) */
}
@media screen and (max-width: 599px) {
    .support .section__title {
        margin-bottom: 2.7rem;
    }
    .support__sub-title {
        font-size: 2rem;
        line-height: 1.4; /* calc(28 / 20) */
        margin-bottom: 3.5rem;
    }
    .support__sub-title span {
        display: inline-block;
    }
    .support__box {
        display: block;
    }
    .support__box:first-child {
        margin-bottom: 2.7rem;
    }
    .support__box__imgBox {
        display: flex;
        align-items: center;
        max-width: 100%;
        margin-bottom: 2.3rem;
    }
    /* .support__box:last-of-type .support__box__imgBox {
        flex-direction: row-reverse;
    } */
    .support__box__imgBox__img {
        flex-shrink: 0;
        width: 48.7%;
        height: auto;
        padding-top: 48.7%;
    }
    .support__box__imgBox__text {
        flex-grow: 1;
        margin-left: 1.5rem;
    }
    /* WordPress化で生じるものを非表示 */
    /* .support__box__imgBox p:first-of-type {
        display: none;
    } */
    .support__box__imgBox__text span:first-child {
        margin-top: 0;
    }
    .support__box__imgBox__text span:last-child {
        font-size: 2rem;
    }
    .support__box__title {
        font-size: 1.5rem;
        line-height: 1.6; /* calc(24 / 15) */
        padding-bottom: 1em;
        margin-bottom: 1.6rem;
        border-bottom: 3px solid #f39800;
    }
    .support__box__text {
        font-size: 1.2rem;
        line-height: 1.8; /* calc(21.5 / 12) */
    }
}

/*============================================
flow
============================================*/

.flow {
    background: url(../../img/lp/cmn/flow_bg_pc.png) no-repeat center top 5% / cover;
}
.flow .section__title {
    margin-bottom: 5.6rem;
}
.flow__box ul {
    display: flex;
    justify-content: space-between;
}
.flow__box ul li {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 18%;
}
.flow__box ul li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    right: -16px;
    border-style: solid;
    border-width: 13px 0 13px 16px;
    border-color: transparent transparent transparent #f7e515;
}
.flow__box__imgBox {
    position: relative;
    width: 100%;
    padding-top: calc(140 / 180 * 100%);
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.flow__box__imgBox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flow__box__textBox {
    flex-grow: 1;
    padding: 2rem 1.3rem;
    border-radius: 0 0 10px 10px;
    background: #fff;
}
.flow__box__title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #27ad3a;
    text-align: center;
    margin-bottom: 2rem;
}
.flow__box__text {
    font-size: 1.4rem;
    line-height: 1.43; /* calc(20 / 14) */
    text-align: justify;
}
@media screen and (max-width: 599px) {
    .flow {
        background: url(../../img/lp/cmn/flow_bg_sp.png) no-repeat center top / cover;
    }
    .flow .section__title {
        margin-bottom: 2.3rem;
    }
    .flow__box ul {
        display: block;
    }
    .flow__box ul li {
        flex-direction: row;
        width: 100%;
    }
    .flow__box ul li:not(:last-child) {
        margin-bottom: 1.7rem;
    }
    .flow__box ul li:not(:last-child)::after {
        top: unset;
        bottom: -13px;
        right: 50%;
        transform: translateX(50%);
        border-width: 13px 11px 0 11px;
        border-color: #f7e515 transparent transparent transparent;
    }
    .flow__box__imgBox {
        width: 43%;
        padding-top: 34.3%;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
    }
    .flow__box__imgBox img {
        transform: scale(1.05);
    }
    .flow__box__imgBox .object-fit-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        font-family: 'object-fit: cover;'
    }
    .flow__box__textBox {
        width: 57%;
        padding: 1.2rem;
        border-radius: 0 10px 10px 0;
    }
    .flow__box__title {
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    .flow__box__text {
        font-size: 1.2rem;
        line-height: 1.5; /* calc(18 / 12) */
    }
}

/*============================================
faq
============================================*/

.faq .section__title {
    margin-bottom: 7rem;
}
.faq__box dl:not(:last-child) {
    padding-bottom: 2.4rem;
    margin-bottom: 2.8rem;
    border-bottom: 1px solid #f7f5f2;
}
.faq__box dl dt {
    position: relative;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.58; /* calc(38 / 24) */
    color: #27ad3a;
    padding: .9rem 0 .9rem 5.6rem;
    margin-bottom: 1rem;
}
.faq__box dl dd {
    position: relative;
    letter-spacing: .03em;
    line-height: 1.75; /* calc(28 / 16) */
    padding: .9rem 0 .9rem 5.6rem;
}
.faq__box dl dt::before,
.faq__box dl dd::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
}
.faq__box dl dt::before {
    background: url(../../img/lp/cmn/icon_faq-q.svg) no-repeat center center / cover;

}
.faq__box dl dd::before {
    background: url(../../img/lp/cmn/icon_faq-a.svg) no-repeat center center / cover;
}
@media screen and (max-width: 599px) {
    .faq .section__title {
        margin-bottom: 2rem;
    }
    .faq__box dl:not(:last-child) {
        padding-bottom: 1.8rem;
        margin-bottom: 1.4rem;
    }
    .faq__box dl dt {
        font-size: 1.5rem;
        line-height: 1.6;
        padding: .5rem 0 .8rem 4.5rem;
        margin-bottom: 0;
    }
    .faq__box dl dt::before {
        width: 30px;
        height: 30px;
    }
    .faq__box dl dd {
        font-size: 1.2rem;
        line-height: 1.5; /* calc(18 / 12) */
        letter-spacing: .06em;
        padding: 0 0 0 4.5rem;
    }
    .faq__box dl dd::before {
        width: 30px;
        height: 30px;
    }
}

/*============================================
access
============================================*/

.access {
    background: #f7f5f2;
}
.access .section__title {
    margin-bottom: 5.6rem;
}
.access__box {
    display: flex;
    align-items: center;
}
.access__box__textBox {
    width: 50%
}
.access__box__textBox > img {
    display: block;
    width: 35%;
    margin: 0 auto 2rem;
}
.access__box__title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #27ad3a;
    text-align: center;
    margin-bottom: 1.8rem;
}
.access table {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: .05em;
    border-collapse: collapse;
    margin-bottom: 3.6rem;
}
.access table tr {
    border-top: 1px solid #F7E723;
}
.access table tr:last-child {
    border-bottom: 1px solid #F7E723;
}
.access table tr th {
    width: 90px;
    padding: 15px 10px 15px 0;
    color: #27ad3a;
    line-height: 1.7;
    text-align: left;
    vertical-align: top;
}
.access table tr td {
    padding: 15px 0;
    line-height: 1.7;
}
.access .tel {
    text-align: center;
    margin-bottom: 2.6rem;
}
.access .tel a {
    display: inline-block;
    pointer-events: none;
}
.access .tel a p {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: .8rem;
}
.access .tel a span {
    font-weight: 700;
    letter-spacing: .05em;
    color: #27ad3a;
}
.access .tel a span:nth-of-type(1) {
    font-size: 1.4rem;

}
.access .tel a span:nth-of-type(2) {
    font-size: 3rem;
}
.access__box__mapBox {
    width: 50%;
    padding-left: 4rem;
}
.map {
    position: relative;
    padding-top: calc(568 / 460 * 100%);
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 599px) {
    .access .section__title {
        margin-bottom: 2.7rem;
    }
    .access__box {
        flex-direction: column-reverse;
    }
    .access__box__textBox {
        position: relative;
        width: 100%;
        padding: 0 2rem;
    }
    .access__box__textBox > img {
        margin: 0 auto 1rem;
    }
    .access__box__title {
        font-size: 1.7rem;
    }
    .access__box__textBox .cmn-btn {
        width: calc(100% + 4rem);
        margin: 0 -2rem;
    }
    .access__box__mapBox {
        width: 100%;
        padding: 0 2rem;
        margin-bottom: 2.4rem;
    }
    .map {
        padding-top: calc(330 / 295 * 100%);
    }
    .access table {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 2.8rem;
    }
    .access table tbody,
    .access table tr {
        display: block;
    }
    .access table tr th {
        display: block;
        width: 100%;
        padding: 1rem 0 .5rem;
    }
    .access table tr td {
        display: block;
        width: 100%;
        padding: 0 0 1rem;
    }
    .access .tel {
        margin-bottom: 2rem;
    }
    .access .tel a {
        pointer-events: auto;
    }
    .access .tel a p {
        font-size: 1.2rem;
    }
    .access .tel a span:nth-of-type(1) {
        font-size: 1.3rem;
    }
    .access .tel a span:nth-of-type(2) {
        font-size: 2.3rem;
    }
}

/*============================================
network
============================================*/

.network__box {
    display: flex;
}
.network__box__textBox {
    width: 100%;
    max-width: 393px;
    margin-right: 4rem;
}
.network__title {
    font-size: 3.4rem;
    line-height: 1.47; /* calc(50 / 34) */
    color: #27ad3a;
    margin-bottom: 3.2rem;
}
.network__text {
    line-height: 1.75; /* calc(28 / 16) */

}
.network__box__imgBox {
    width: 100%;
    max-width: 567px;
}
@media screen and (max-width: 599px) {
    .network__box {
        display: block;
    }
    .network__box__textBox {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .network__title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2.7rem;
    }
    .network__title span {
        display: inline-block;
    }
    .network__text {
        font-size: 1.2rem;
        line-height: 1.67; /* calc(20 / 12) */
    }
}

/*============================================
form
============================================*/
.contact p {
    margin: 1rem 0 3rem;
}
.contact table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px auto;
    background: #FEF8ED;
    font-size: 1.6rem;
}
.contact table tr {
    border-bottom: 2px solid #fff;
}
.contact table th,
.contact table td {
    padding: 20px;
    border: 2px solid #FFF;
    border-collapse: collapse;
    line-height: 1.5;
}
.contact table th {
    width: 30%;
    color: #FFF;
    font-feature-settings: "palt";
    text-align: left;
    vertical-align: top;
}
.contact table th span {
    display: inline-block;
    padding: 2px 7px;
    background: #ff0000;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
    float: right;
}
.contact table td {
    vertical-align: middle;
}
.contact table label {
    display: flex;
    padding: 5px;
}
.contact table [type="text"], .contact table [type="email"], .contact table [type="tel"] {
    background: #FFF;
    width: 100%;
    padding: 5px;
    font-size: 18px;
}
.contact table textarea {
    width: 100%;
    height: 100px;
    margin: 0;
    overflow: auto;
    resize: vertical;
    background: #FFF;
    border: 1px solid #999;
}
.lp-form_page .header {
    max-width: 1000px;
    padding: 8rem 0 5.6rem;
}
.lp-form_page .header__logo {
    max-width: 100%;
    text-align: center;
}
.lp-form_page .header__logo a {
    display: inline-block;
    width: 240px;
}
.lp-form_page .footer {
    min-width: 100%;
    padding: 1.8rem 0;
    margin-top: 0;
    margin-bottom: 0;
    background: #F7F5F2;
}
.lp-form_page .footer .footer__copy {
    display: block;
    letter-spacing: .05em;
}
.lp-form_mv {
    padding: 7rem 0 2.6rem;
    background: #f7f5f2;
}
.lp-form_title {
    position: relative;
    color: #27ad3a;
    font-size: 4.8rem;
    letter-spacing: .05em;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}
.lp-form_title::before {
    content: "";
    display: block;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: url(../../img/lp/cmn/icon_section-title_pc.svg) no-repeat center top / contain;
}
.lp-form_page .contact {
    padding: 0;
    margin-bottom: 0;
}
.lp-form_page .contact section {
    width: 1000px;
    margin: 0 auto;
    padding: 56px 0;
}
.lp-form_page .contact section > p {
    text-align: center;
}
.lp-form_page .contact section > p:first-of-type {
    margin: 0 0 5.6rem;
    line-height: 2;
    letter-spacing: .05em;
}
.lp-form_page .contact section > p:last-of-type {
    margin: 0;
}
.lp-form_page .contact table:nth-of-type(1) {
    margin-bottom: 2.3rem;
}
.lp-form_page .contact table:nth-of-type(2) {
    margin-bottom: 1.6rem;
}
.lp-form_page .contact table:nth-of-type(3) {
    margin-bottom: 5rem;
}
.lp-form_page .contact table:nth-of-type(-n+2) th {
    position: relative;
    padding-left: 52px;
}
#contact table:nth-of-type(1) tr:nth-child(2n+1) th,
#contact table:nth-of-type(3) tr:nth-child(2n+1) th {
    background: #F19200;
}
#contact table:nth-of-type(1) tr:nth-child(2n) th,
#contact table:nth-of-type(3) tr:nth-child(2n) th {
    background: #f8a321;
}
#contact table:nth-of-type(2) tr:nth-child(2n+1) th {
    background: #f8a321;
}
#contact table:nth-of-type(2) tr:nth-child(2n) th {
    background: #F19200;
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(9) th,
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(10) th {
    padding-left: 62px;
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(11) th {
    padding-left: 20px;
}
.lp-form_page .contact table:nth-of-type(-n+2) th::before {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    left: 18px;
    width: 32px;
    height: 16px;
}
.lp-form_page .contact table:nth-of-type(1) th::before {
    content: "Q1.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(1) th:before {
    content: "Q2.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(2) th:before {
    content: "Q3.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(3) th:before {
    content: "Q4.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(4) th:before {
    content: "Q5.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(5) th:before {
    content: "Q6.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(6) th:before {
    content: "Q7.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(7) th:before {
    content: "Q8.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(8) th:before {
    content: "Q9.";
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(9) th:before {
    content: "Q10.";
    width: 43px;
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(10) th:before {
    content: "Q11.";
    width: 43px;
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(11) th:before {
    content: none;
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(8) td input,
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(9) td input {
    width: 92px;
}
.lp-form_page .contact table tr td {
    padding: 20px 65px 20px 38px;
}
.lp-form_page .contact table tr td p {
    margin: 1rem 0;
}
.lp-form_page .contact table tr td,
.lp-form_page .contact table  tr:nth-child(even) td {
    background: #f7f5f2;
}
.lp-form_page .contact table tr td span {
    margin: 0 .5em 0 0;
}
.lp-form_page .contact table tr td textarea {
    font-size: 1.6rem;
}
.lp-form_page .contact table:nth-of-type(2) tr:nth-child(8) td span:nth-child(2) {
    margin-left: .5em;
}
.lp-form_page .contact table label input {
    margin-right: 7px;
}
.lp-form_page .contact p.btn {
    position: relative;
    margin: 0 calc((100% - 362px)/2);
    text-align: center;
}
.lp-form_page .contact p.btn::after {
    display: inline-block;
    position: absolute;
    top: 24px;
    right: 30px;
    z-index: auto;
    width: 18px;
    height: 18px;
    margin: -2px 0 0 5px;
    padding: 4px 3px 0 5px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 10px;
    line-height: 1;
    vertical-align: middle;
    content: "\025b6";
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}
.lp-form_page .contact p.btn input {
    position: relative;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    background-color: #000;
    box-shadow: 0 6px #505050;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    text-align: center;
    width: 362px;
    margin: 3rem auto 1.5rem;
    cursor: pointer;
}
.wpcf7 .ajax-loader {
    visibility: hidden;
    display: inline-block;
    background-image: url(../../images/ajax-loader.gif);
    width: 16px;
    height: 16px;
    border: none;
    padding: 0;
    margin: 0 0 5px 4px;
    vertical-align: middle;
}
.contact.usage-diagnosis table:nth-of-type(1) th {
    padding-left: 50px;
    font-feature-settings: "palt";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(5) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(6) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(8) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(9) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th {
    vertical-align: middle;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(5) th::before,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(6) th::before,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) th::before,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(8) th::before,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(9) th::before,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th::before {
    top: 25px;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th {
    white-space: nowrap;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(n+10) th {
    padding-left: 60px;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th {
    padding: 20px 10px 20px 60px;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(n+10) th::before {
    width: 43px;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(1) th::before {
    content: "Q1.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th::before {
    content: "Q2.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th::before {
    content: "Q3.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(4) th::before {
    content: "Q4.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(5) th::before {
    content: "Q5.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(6) th::before {
    content: "Q6.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) th::before {
    content: "Q7.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(8) th::before {
    content: "Q8.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(9) th::before {
    content: "Q9.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(10) th::before {
    content: "Q10.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th::before {
    content: "Q11.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(12) th::before {
    content: "Q12.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(13) th::before {
    content: "Q13.";
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th {
    padding-top: 50px;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th::before,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th::before {
    top: 50px;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th::after,
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th::after {
    display: block;
    position: absolute;
    top: 15px;
    left: 19px;
    width: 240px;
    height: 27px;
    padding: 0 1rem;
    background: #fdeacc;
    color: #F19200;
    content: '障がい者手帳をお持ちでない方';
}
.contact.usage-diagnosis table:nth-of-type(2) th {
    padding: 20px;
}
#contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(2n+1) th {
    background: #F19200;
}
#contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(2n) th {
    background: #f8a321;
}
.contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(1) th:before,
.contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(2) th:before,
.contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(3) th:before,
.contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(4) th:before,
.contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(5) th:before,
.contact.usage-diagnosis table:nth-of-type(2) tr:nth-child(6) th:before {
    content: none;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) td span:nth-child(2) {
    margin-left: 0.5em;
}
.contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(6) td input, .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) td input {
    width: 92px;
}
.lp-form_page .thanks-page .contact section {
    width: 1100px;
    padding: 8rem 0 6rem;
}
.thanks-page p {
    margin: 2rem 0 4rem;
    font-size: 2.4rem;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
}
.thanks-page + .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-width: 1500px;
    padding: 1.4rem 0;
    margin-top: 0;
    margin-bottom: 0;
}
@media (hover: hover) and (pointer: fine) {
    .lp-form_page .contact p.btn:hover {
        pointer-events: none;
    }
    .lp-form_page .contact p.btn:hover::after {
        transform: translateY(6px);
    }
    .lp-form_page .contact p.btn input:hover {
        box-shadow: none;
        transform: translateY(6px);
        pointer-events: auto;
    }
}
@media screen and (max-width: 599px) {
    .lp-form_page .header {
        display: block;
        padding: 3.5rem 0 2.8rem;
    }
    .lp-form_page .header__logo a {
        width: 130px;
    }
    .lp-form_mv {
        padding: 6.2rem 0 3.4rem;
    }
    .lp-form_title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    .lp-form_title::before {
        top: -38px;
        width: 73px;
        height: 30px;
        background: url(../../img/lp/cmn/icon_section-title_sp.svg) no-repeat center top / contain;
    }
    .lp-form_page .contact {
        padding: 0;
    }
    .lp-form_page .contact section {
        width: auto;
        padding: 20px;
    }
    .lp-form_page .contact section > p {
        font-size: 1.2rem;
    }
    .lp-form_page .contact section > p:first-of-type {
        margin-bottom: 2.8rem;
        line-height: 1.5;
    }
    .lp-form_page .contact section > p:last-of-type {
        line-height: 1.3;
    }
    .lp-form_page .contact table tr td p {
        margin: 5px auto 0;
    }
    .lp-form_page .contact table:nth-of-type(1) {
        margin-bottom: 1rem;
    }
    .lp-form_page .contact table:nth-of-type(1) + p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .lp-form_page .contact table:nth-of-type(2) {
        margin-top: 0;
        margin-bottom: 1.2rem;
    }
    .lp-form_page .contact table:nth-of-type(3) {
        margin-bottom: 2.8rem;
    }
    .lp-form_page .contact table th,
    .lp-form_page .contact table td {
        border: 0;
        border-collapse: collapse;
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }
    .lp-form_page .contact table tr th {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    .lp-form_page .contact table th span {
        margin-top: 1px;
        padding: 1px 6px;
        font-size: .9rem;
    }
    .lp-form_page .contact table tr td {
        font-size: 1.2rem;
        padding: 12px 20px 10px;
    }
    .lp-form_page .contact table tr td span {
        display: block;
    }
    .lp-form_page .contact table tr td span.wpcf7-list-item {
        position: relative;
    }
    .lp-form_page .contact table:nth-of-type(-n+2) th {
        padding-left: 42px;
    }
    .lp-form_page .contact table:nth-of-type(-n+2) th::before {
        top: 10px;
    }
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(9) th, .lp-form_page .contact table:nth-of-type(2) tr:nth-child(10) th {
        padding-left: 50px;
    }
    .contact table label {
        padding-left: 0;
    }
    .lp-form_page .contact table label input {
        margin-top: 4px;
        margin-right: 12px;
    }
    .lp-form_page input[type="radio"]:checked:after {
        top: 1px;
        left: 1px;
    }
    .lp-form_page .contact table label span {
        padding-left: 24px;
    }
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(8) td,
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(9) td {
        display: flex;
        align-items: center;
    }
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(8) td input,
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(9) td input {
        width: 100%;
    }
    [type="radio"] + span::before {
        top: 4px;
        width: 12px;
        height: 12px;
    }
    [type="radio"] + span::after {
        top: 6px;
        left: 2px;
        width: 8px;
        height: 8px;
    }
    .lp-form_page .contact table textarea {
        height: 50px;
    }
    .lp-form_page .contact p.btn {
        width: 100%;
        margin: 0;
    }
    .lp-form_page .contact p.btn input {
        width: 100%;
        font-size: 1.5rem;
        padding: 11px 40px;
        margin: 3rem auto 0.5rem;
        box-shadow: 0 3px #505050;
    }
    .lp-form_page .contact p.btn:after {
        top: 18px;
        width: 10px;
        height: 10px;
        padding: 2px;
        font-size: 7px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) th {
        padding-left: 42px;
    }
    .contact.usage-diagnosis table:nth-of-type(2) th {
        padding: 12px 20px;
    }
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(1) th,
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(2) th,
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(3) th,
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(4) th,
    .lp-form_page .contact table:nth-of-type(2) tr:nth-child(5) th {
        padding-right: 20px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(n+10) th {
        padding-left: 50px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th {
        padding: 10px 32px 10px 50px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(5) th::before,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(6) th::before,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) th::before,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(8) th::before,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(9) th::before,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) th::before {
        top: 10px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(1) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(5) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(8) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(9) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(10) td,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(11) td {
        padding: 12px 20px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th, .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th {
        padding-top: 38px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th::before, .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th::before {
        top: 38px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(2) th::after,
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(3) th::after {
        top: 12px;
        width: 175px;
        height: 20px;
        padding: 0 .5rem;
        white-space: nowrap;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(6) td input {
        width: 129px;
    }
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) td input {
        width: 120px;
    }
    .contact.usage-diagnosis table tr:nth-child(6) td span,
    .contact.usage-diagnosis table tr:nth-child(7) td span {
        display: inline-block;
    }
    .lp-form_page .thanks-page .contact section {
        width: auto;
        padding: 4rem 0 10rem;
    }
    .thanks p {
        font-size: 1.2rem;
        margin: 2rem 0;
    }
    .lp-form_page .footer {
        min-width: 100%;
        padding: 0.5rem 0 1rem;
    }
}
@media screen and (max-width: 374px) {
    .contact.usage-diagnosis table:nth-of-type(1) tr:nth-child(7) td input {
        width: 90px;
    }
}