fieldset,
legend,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    outline: none;
    padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    border: 1px solid #ccc;
    font-size: 16px;
    margin: 0;
    outline: none;
    padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
    outline: none;
    padding: 4px;
}

textarea {
    height: 100px;
    overflow: auto;
    width: 100%;
}

select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
    padding-right: 30px;
}

.select {
    background: #fff;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.select select {
    background: none;
    border: 1px solid #ccc;
    cursor: pointer;
    padding-right: 24px;
    text-overflow: "";
    width: 100%;
}

.select::before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    content: "";
    height: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 8px;
    top: 13px;
    width: 0;
}


/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
    display: none;
}

input[type="radio"]+span,
input[type="checkbox"]+span {
    color: #555;
    cursor: pointer;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    margin-left: 8px;
    padding: 10px 20px;
    position: relative;
    text-align: center;
}

input[type="radio"]+span::before,
input[type="checkbox"]+span::before {
    background: #fff;
    border: 1px solid #ccc;
    content: "";
    height: 16px;
    left: -8px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}


/* fieldset */

fieldset {
    border: 1px solid #ccc;
    padding: 8px 16px;
}

legend {
    padding: 0 8px;
}


/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    background: #efefef;
    border: 1px solid #999;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    margin: 0;
    padding: 10px 30px;
}


/* ブラウザ対策
---------------------------------------------------------------------------- */


/* Firefox */


/* IE */

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


/* webkit */


/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
    display: none;
}

::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
    -moz-appearance: none;
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    margin: 0;
    outline: none;
    padding: 0;
}


/* 挙動
---------------------------------------------------------------------------- */


/* hover */

input:hover,
textarea:hover,
select:hover {
    border-color: #666;
}

input[type="radio"]+span:hover,
input[type="checkbox"]+span:hover {
    color: #000;
}

input[type="radio"]+span:hover::before,
input[type="checkbox"]+span:hover::before {
    border-color: #000;
}

input[type="radio"]+span:hover::after,
input[type="checkbox"]+span:hover::after {
    background: #ccc;
    content: "";
    height: 8px;
    left: -4px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    width: 8px;
}


/* checked */

input[type="radio"]:checked+span,
input[type="checkbox"]:checked+span {
    color: #3498db;
}

input[type="radio"]:checked+span::before,
input[type="checkbox"]:checked+span::before {
    border-color: #3498db;
}

input[type="radio"]:checked+span::after,
input[type="checkbox"]:checked+span::after {
    background: #3498db;
    content: "";
    height: 8px;
    left: -4px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    width: 8px;
}


/* radio */

input[type="radio"]+span::before,
input[type="radio"]+span:hover::after,
input[type="radio"]:checked+span::after {
    border-radius: 50%;
}


/* button */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}


/* focus */

input:focus,
textarea:focus {
    border-color: #3498db;
}

input[type="submit"]:focus,
input[type=reset]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
    outline-offset: -2px;
}


/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
    background: #eee;
    border-color: #ccc;
    cursor: not-allowed;
}

input[type="radio"]:disabled+span,
input[type="checkbox"]:disabled+span {
    color: #ccc;
    cursor: not-allowed;
}

input[type="radio"]:disabled+span::before,
input[type="checkbox"]:disabled+span::before {
    border-color: #ccc;
    cursor: not-allowed;
}


/* バリデーション */


/* placeholder */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* リキッドレイアウト対応 */

html {
    font-size: 4.26667vw;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    color: #000;
    font-family: "kozuka-gothic-pr6n", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-wrap: break-word;
    position: relative;
    z-index: -9999;
}


/* Box sizing rules */

*,
*::before,
*::after {
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
    overflow-x: hidden;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

img {
    border: none;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

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

ul,
ol {
    list-style: none;
}

table {
    border: 1px solid;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

th,
td {
    border: 1px solid;
    padding: 4px 6px;
    text-align: left;
    vertical-align: top;
}

blockquote,
q {
    quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
    content: '';
    content: none;
}

address {
    font-style: normal;
}

b,
strong {
    font-weight: 700;
}

form {
    margin: 0;
    padding: 0;
}

label {
    display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
    touch-action: manipulation;
}

input,
button,
select,
optgroup,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button,
select {
    text-transform: none;
}

select {
    cursor: pointer;
}

textarea {
    -ms-overflow-style: scrollbar;
    overflow: auto;
    resize: vertical;
}

dialog {
    background-color: inherit;
    border: solid;
    color: inherit;
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

dialog:not([is-open]) {
    display: none;
}

summary {
    cursor: pointer;
    display: list-item;
}


/* Remove all animations and transitions for people that prefer not to see them */

.cta-button_wrapper {
    align-items: center;
    display: flex;
    height: 4.375rem;
    justify-content: center;
    width: 100%;
}

.cta-button {
    background-color: #f78217;
    border-radius: 3.75rem;
    color: #fff;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    height: 3.125rem;
    letter-spacing: 0.01em;
    line-height: 2.2;
    max-width: 18.75rem;
    text-align: center;
    width: 100%;
}

.cta-button:hover {
    opacity: 0.7;
}

.footer {
    background: #fff;
    height: 4.375rem;
    padding-bottom: 1.375rem;
    padding-top: 1rem;
    width: 100%;
}

.footer__content {
    width: 100%;
}

.footer__logo-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
}

.footer__logo {
    height: 0.6875rem;
    max-width: 2.75rem;
    width: 100%;
}

.footer__copyright {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
    text-align: center;
}
main{
    padding-top: 30px;
}
.header {
    background: #fff;
    height: 3rem;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
}

.header__content {
    height: inherit;
    padding: 0 0.9375rem;
    width: 100%;
}
.hdcontact{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.hdcontact a{
    background-color: #f78217;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    line-height: 48px;
    padding: 0 20px;
}
.hdcontact a.application{
    background-color:#0071bc;
}
.hdcontact a:hover{
    opacity: .5;
}
.header__logo-wrapper {
    align-items: center;
    display: flex;
    height: inherit;
}

.header__logo {
    height: 3rem;
    max-width: 6rem;
    width: 100%;
}

.inner {
    height: inherit;
    margin: 0 auto;
    max-width: 31.25rem;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

.fadeIn {
    -webkit-animation-name: fadeInAnime;
    -webkit-animation-delay: 0.3s;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 0.3s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-name: fadeInAnime;
    animation-timing-function: ease;
    opacity: 0;
}

.--background-white {
    background-color: #fff;
}

.--background-gray {
    background-color: #e7edf4;
}

.font-blue {
    color: #0071bc;
}

.font-small14 {
    font-size: 0.75rem;
    font-weight: 500;
}

.font-big20 {
    font-size: 1.125rem;
    letter-spacing: 0.25em;
}

.font-big28 {
    font-size: 1.5rem;
}

.font-big30 {
    font-size: 1.625rem;
}

.font-big38 {
    font-size: 1.875rem;
}

.font-big40 {
    font-size: 2rem;
}

.font-big62 {
    font-size: 2.5rem;
}

.font-big68 {
    font-size: 2.5rem;
    letter-spacing: 0.25em;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.apply {
    background-color: #0071bc;
    width: 100%;
}

.apply__container {
    padding-bottom: 3.125rem;
    padding-top: 2.5rem;
}

.apply__title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.apply__lead {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 1.25rem;
    text-align: center;
}

.apply__content {
    margin-top: 0.75rem;
}

.apply__rule-wrapper {
    background-color: #d8e3f4;
    height: 8.75rem;
    margin: 0 auto;
    max-width: 31.25rem;
    overflow-y: scroll;
    padding: 0.75rem 0.5rem 1rem;
    width: 100%;
}

.apply__rule-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.apply__rule-text {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.apply__price {
    background-color: #fff;
    margin: 1rem auto 0;
    max-width: 31.25rem;
    padding: 0.875rem 0.5rem 0.75rem;
    width: 100%;
}

.apply__price-title {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.company {
    background-color: #e7edf4;
}

.company__container {
    padding-bottom: 3.75rem;
    padding-top: 3.125rem;
}

.company__title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
}

.company__lead {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.001em;
    line-height: 1.8;
    margin-top: 1.5625rem;
    text-align: center;
}

.company__image-wrapper {
    margin-top: 1rem;
}

.company__content {
    margin-top: 1rem;
}

.company__introduction-summary {
    background-color: #fff;
    border: 0.0625rem solid #b4cbea;
    margin: 0 auto;
    max-width: 17.5625rem;
    padding-bottom: 0.625rem;
    padding-top: 0.625rem;
    width: 100%;
}

.company__introduction-summary:not(:first-child) {
    margin-top: 0.75rem;
}

.company__introduction-summary-date {
    color: #0071bc;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}

.company__introduction-summary-title {
    color: #0071bc;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.company__introduction-summary-num {
    color: #0071bc;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.company__introduction-list {
    border-top: 0.0625rem solid #9ab0c7;
    list-style: none;
    margin-top: 2rem;
}

.company__introduction-item {
    border-bottom: 0.0625rem solid #9ab0c7;
    padding: 0.75rem 0.375rem;
}

.company__introduction-item-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.company__introduction-item-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.65;
    margin-top: 0.625rem;
}

.join__container {
    background-color: #fff;
}

.join__container {
    padding-bottom: 2.5rem;
    padding-top: 3.125rem;
}

.join__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.join__content {
    margin-top: 1.875rem;
}

.join__item:not(:first-child) {
    margin-top: 1.875rem;
}

.join__item-title {
    background-color: #e7edf4;
    color: #0071bc;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 2;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
}

.join__item-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1.125rem;
    padding-left: 0.875rem;
    padding-right: 0.875rem;
}

.merit {
    background-color: #e7edf4;
    position: relative;
    text-align: center;
    width: 100%;
}

/*.merit::after {
    border-color: #e7edf4 transparent transparent transparent;
    border-style: solid;
    border-width: 1.875rem 3.125rem 0 3.125rem;
    bottom: -1.75rem;
    content: '';
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0);
}*/

.merit__container {
    padding-bottom: 3.125rem;
    padding-top: 2.5rem;
}

.merit__lead {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.merit__list {
    display: inline-block;
    list-style: none;
    margin-top: 1.25rem;
    text-align: left;
}

.merit__item {
    font-size: 1rem;
    line-height: 3;
    padding-left: 1.25rem;
    position: relative;
    white-space: nowrap;
}

.merit__item:not(:last-child) {
    border-bottom: 0.0625rem solid #9ab0c7;
}

.merit__item::before {
    background-color: #000;
    border-radius: 50%;
    content: '';
    height: 0.375rem;
    left: 1%;
    position: absolute;
    top: 50%;
    transform: translate(-1%, -50%);
    width: 0.375rem;
}

.mv {
    height: 18.75rem;
    position: relative;
    width: 100%;
}

.top__mv .kv .kv01 {
    position: relative;
    width: 100%;
    height: 34.375rem;
    background: url("../images/common/mv.jpg") no-repeat center 0;
    background-size: cover;
}

.top__mv .kv .kv02 {
    position: relative;
    width: 100%;
    height: 34.375rem;
    background: url("../images/common/mv02txt.png"), url("../images/common/mv-02.jpg");
    background-repeat: no-repeat, no-repeat;
    background-position: top 40% center, right;
    background-size: contain, cover;
}

.top__mv .kv .kv03 {
    position: relative;
    width: 100%;
    height: 34.375rem;
    background: url("../images/common/mv-03.jpg") center no-repeat;
    background-size: cover;
    text-align: center;
}

.top__mv .kv .kv04 {
    position: relative;
    width: 100%;
    height: 34.375rem;
    background: url("../images/common/mv-04.jpg") center no-repeat;
    background-size: cover;
    text-align: center;
}

.mv__content {
    height: inherit;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.mv__image {
    -o-object-fit: cover;
    height: inherit;
    object-fit: cover;
    width: 100%;
}

.mv__title-wrapper {
    left: 50%;
    position: absolute;
    top: 17.6%;
    transform: translate(-50%, -17.6%);
    width: auto;
}

.mv__description {
    background-color: rgba(13, 37, 57, 0.5);
    color: #fff;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.mv__subtitle {
    background-color: rgba(13, 37, 57, 0.5);
    color: #fff;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.875rem;
    white-space: nowrap;
}

.mv__title {
    font-size: 3.125rem;
    white-space: nowrap;
}

.policy {
    -moz-transition: all 0.5s 0s ease;
    -webkit-transition: all 0.5s 0s ease;
    background-color: #0071bc;
    border: 0.1875rem solid #0071bc;
    display: none;
    left: 50%;
    max-width: 18.75rem;
    position: fixed;
    top: 5%;
    transform: translate(-50%, 0);
    transition: all 0.5s 0s ease;
    width: 100%;
    z-index: 50;
}

.policy__overlay {
    -moz-transition: all 0.5s 0s ease;
    -webkit-transition: all 0.5s 0s ease;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.5s 0s ease;
    width: 100vw;
    z-index: 20;
}

.policy.is-active,
.policy__overlay.is-active {
    display: block;
}

.policy__title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.5;
    position: relative;
    text-align: center;
    width: 100%;
}

.policy__icon {
    background-color: #fff;
    color: #0071bc;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    height: 2.5rem;
    line-height: 1.75;
    max-width: 2.5rem;
    position: absolute;
    right: 3%;
    text-align: center;
    top: 50%;
    transform: translate(-3%, -50%);
    width: 100%;
}

.policy__icon:hover {
    opacity: 0.7;
}

.policy__content {
    background-color: #fff;
    height: 31.25rem;
    overflow-y: scroll;
    padding: 1.375rem 1.625rem 3.125rem;
}

.policy__article {
    text-align: center;
}

.policy__article:not(:first-child) {
    margin-top: 2.5rem;
}

.policy__article-num {
    border-bottom: 0.0625rem solid #0071bc;
    color: #0071bc;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.8;
}

.policy__article-title {
    color: #0071bc;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
}

.policy__article-list {
    margin-top: 1rem;
}

.policy__article-item {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: left;
}

.policy__article-text {
    background-color: #ededed;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.75rem;
    padding: 0.75rem 1.25rem;
    text-align: left;
}

.policy__article-item-supply {
    color: #666;
    font-size: 0.78125rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

.price {
    background-image: url(../images/common/price_bg.jpg);
    background-repeat: no-repeat;
    height: 31.25rem;
    position: relative;
    width: 100%;
}

.price__content {
    background-color: #fff;
    left: 50%;
    max-width: 31.25rem;
    padding: 1.5rem 1rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.price__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.price__price {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin-top: 0.375rem;
    text-align: center;
    vertical-align: middle;
}

.price__list {
    margin: 0 auto;
    max-width: 21.25rem;
    width: 100%;
}

.price__item {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    white-space: nowrap;
}

.service-cards {
    -ms-grid-columns: (1fr)[2];
    row-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    cursor: auto;
    display: block;
    margin: 0 auto;
    max-width: 12.6875rem;
    width: 100%;
}

.service-card__image {
    width: 100%;
}

.service-card__body {
    padding: 0.75rem 0.25rem;
}

.service-card__text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.75;
}

.service-card__genre {
    color: #0071bc;
    font-size: 0.75rem;
    line-height: 1;
}

.service-card__explain {
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 0.005em;
}

.service-detail__title-wrapper {
    align-items: center;
    border: 0.0625rem solid #000;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.service-detail__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 2;
}

.service-detail__title-wrapper::before {
    content: '';
    height: 1.5rem;
    left: 50%;
    position: absolute;
    top: -135%;
    transform: translate(-50%, 135%);
    width: 1.5rem;
}

.title-wrapper--01::before {
    background-image: url(../images/common/num01.png);
    background-size: contain;
}

.title-wrapper--02::before {
    background-image: url(../images/common/num02.png);
    background-size: contain;
}

.title-wrapper--03::before {
    background-image: url(../images/common/num03.png);
    background-size: contain;
}

.title-wrapper--04::before {
    background-image: url(../images/common/num04.png);
    background-size: contain;
}

.title-wrapper--05::before {
    background-image: url(../images/common/num05.png);
    background-size: contain;
}

.service-detail__content {
    margin: 0 auto;
    max-width: 31.25rem;
    width: 100%;
}

.service-detail__lead {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: center;
}

.service-detail__lead-small {
    font-size: 0.75rem;
    text-align: center;
}

.service-detail__list {
    margin: 1.875rem auto 0;
    width: 100%;
}

.service-detail__list-title {
    font-size: 1.375rem;
    font-weight: 700;
    left: 1.25;
    text-align: center;
}

.service-detail__list-subtitle {
    font-size: 0.6875rem;
    line-height: 2;
    text-align: center;
}

.service-detail__list-tab-wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
}

.service-detail__list-tab {
    border: 0.0625rem solid #666666;
    border-radius: 1rem;
    box-shadow: 0.125rem 0.125rem 0.0625rem #ccc;
    cursor: pointer;
    font-size: 0.6875rem;
    height: 1.75rem;
    line-height: 2.2;
    margin-right: 0.1875rem;
    margin-top: 0.375rem;
    max-width: 5.2rem;
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}
.service-detail__list-tab.service-detail__list-tab-reiya{
    max-width: 11.5rem;
}
.service-detail__list-tab.service-detail__list-tab-inherit{
    max-width: 8.2rem;
}
.service-detail__list-tab::before {
    content: '>';
    left: 5px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.service-detail__list-tab:hover {
    opacity: 0.7;
}

.--max-width133 {
    max-width: 7.5rem;
    padding-left: 1rem;
}

.--max-width173 {
    max-width: 10.8125rem;
    padding-left: 1rem;
}

.service-detail__list-genre {
    align-items: center;
    background-color: #999999;
    color: #fff;
    display: flex;
    font-weight: 700;
    justify-content: center;
    letter-spacing: -0.05em;
    line-height: 2.25;
    margin-top: 1.5rem;
    width: 100%;
}

.service-detail__cards {
    margin-top: 1.5rem;
    width: 100%;
}

.service-detail__service-schedule {
    margin: 1.875rem auto 0;
}


/*# service02以降
-----------------------------------*/

.service-detail__content--02 {
    margin-top: 1rem;
}

.service-detail__image02 {
    display: block;
    height: 3.5625rem;
    margin: 0 auto;
    max-width: 5.375rem;
    width: 100%;
}


/*# タブ切り替え
-----------------------------------*/

input[name='service01-tab-name'] {
    display: none;
}

input[name='service05-tab-name'] {
    display: none;
}

input:checked+.service-detail__list-tab {
    background-color: #000;
    color: #fff;
}

.service-detail__area {
    display: none;
    width: 100%;
}

#service01-tab1:checked~.service-detail__area-bank {
    display: block;
}

#service01-tab2:checked~.service-detail__area-inherit {
    display: block;
}

#service01-tab3:checked~.service-detail__area-ma {
    display: block;
}

#service01-tab4:checked~.service-detail__area-sales {
    display: block;
}

#service01-tab5:checked~.service-detail__area-tax {
    display: block;
}

#service01-tab6:checked~.service-detail__area-univ {
    display: block;
}

#service01-tab7:checked~.service-detail__area-relation {
    display: block;
}
#service01-tab8:checked~.service-detail__area-reiya {
    display: block;
}
#service05-tab1:checked~.service-detail__area-rule {
    display: block;
}

#service05-tab2:checked~.service-detail__area-study {
    display: block;
}

#service05-tab3:checked~.service-detail__area-trivia {
    display: block;
}

#service05-tab4:checked~.service-detail__area-skill {
    display: block;
}

.service-elearning {
    margin: 1.5rem auto 0;
    max-width: 20.5625rem;
    width: 100%;
}

.service-elearning__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 0.625rem;
    text-align: center;
}

.service-elearning__lead {
    font-weight: 500;
    margin-top: 0.875rem;
    text-align: center;
}

.service-elearning__list {
    border-top: 0.0625rem dashed #ccc;
    margin-top: 0.875rem;
}

.service-elearning__item {
    border-bottom: 0.0625rem dashed #ccc;
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    padding-left: 2.875rem;
    padding-top: 0.5rem;
    text-align: left;
}

.service-elearning__button-wrapper {
    margin: 1.25rem auto 1.875rem;
}

.service-elearning__button {
    background-color: #fff;
    border-radius: 2.25rem;
    box-shadow: 0.1875rem 0.1875rem 0.0625rem #ccc;
    font-size: 1rem;
    font-weight: 500;
    height: 2.9375rem;
    letter-spacing: 0.01em;
    max-width: 16.875rem;
    width: 100%;
}

.service-elearning__button>span {
    margin-right: 1.25rem;
}

.service-elearning__button:hover {
    opacity: 0.7;
}

.service-example__wrapper {
    margin: 2.5rem auto 0;
    max-width: 31.25rem;
    width: 100%;
}

.service-example__lead {
    background-color: #0071bc;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.25;
    text-align: center;
    width: 100%;
}

.service-example__example {
    background-color: #f0f0f0;
    border-bottom: 0.0625rem solid #ccc;
    padding: 1.3125rem 2.25rem 1.5rem;
    width: 100%;
}

.service-example__image {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.service-example__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.5rem;
    width: 100%;
}

.service-example__text {
    font-size: 0.75rem;
    line-height: 1.8;
    margin-top: 0.375rem;
}

.service-person {
    background-color: #ededed;
    margin-top: 0.875rem;
    padding: 1.375rem 1.875rem 1.375rem 1.125rem;
    width: 100%;
}

.service-person__image-wrapper {
    height: 11.25rem;
    margin: 0 auto;
    max-width: 10.3125rem;
    width: 100%;
}

.person-image {
    width: 100%;
}

.service-person__description {
    margin-top: 0.5rem;
    width: 100%;
}

.service-person__company {
    font-size: 0.75rem;
    font-weight: 500;
}

.service-person__name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-person__text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.service-schedule {
    background-color: #e7edf4;
    max-width: 31.25rem;
    padding: 0.75rem 1rem;
    width: 100%;
}

.service-schedule__title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.service-schedule__title a{
    text-decoration: underline;
}
.service-schedule__title a:hover{
    text-decoration: none;
}
.service-schedule__item {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.service-schedule__table {
    -ms-grid-columns: 2.0181fr 1fr 2.6727fr 2.6727fr;
    -moz-column-gap: 0;
    row-gap: 0;
    column-gap: 0;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 2.0181fr 1fr 2.6727fr 2.6727fr;
    margin-top: 0.75rem;
}

.service-schedule__table-head1 {
    background-color: #f0f0f0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.001em;
    line-height: 1.75;
    padding-right: 0.375rem;
    text-align: right;
    white-space: nowrap;
}

.service-schedule__table-head2 {
    background-color: #fff;
    font-size: 0.6875rem;
    letter-spacing: -0.001em;
    line-height: 1.75;
    text-align: center;
    white-space: nowrap;
}

.service-schedule__table-data {
    background-color: #fff;
    font-size: 0.75rem;
    line-height: 2;
    text-align: center;
}

.service-schedule__height24 {
    background-color: #fff;
    height: 1.375rem;
    line-height: 1.75;
}

.service-schedule__table-head1,
.service-schedule__table-head2,
.service-schedule__table-data {
    border: 0.0625rem solid #999;
}

.service__content {
    padding-bottom: 1.875rem;
}

.service__lead {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.55;
    text-align: center;
}

.service__lead-under-line01 {
    position: relative;
}

.service__lead-under-line01::after {
    background-image: url(../images/common/under-line_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -2.5rem;
    content: '';
    display: inline-block;
    height: 2.1875rem;
    left: 0;
    position: absolute;
    width: 100%;
}

.service__lead-under-line02 {
    position: relative;
}

.service__lead-under-line02::after {
    background-image: url(../images/common/under-line_02.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -2.5rem;
    content: '';
    display: inline-block;
    height: 2.1875rem;
    left: 0;
    position: absolute;
    width: 100%;
}

.service__banner {
    display: block;
    margin-top: 1.875rem;
    text-align: center;
    width: 100%;
}

.service__list {
    margin-top: 2.375rem;
}

.service__list-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.service__item-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.75rem;
    width: 100%;
}

.service__item {
    border: 0.0625rem solid #000;
    height: 19.6875rem;
    height: auto;
    margin: 1rem auto 0;
    max-width: 12.5rem;
    position: relative;
    text-align: center;
    width: 100%;
    width: 49%;
}

.service__item-head {
    padding: 0.625rem 0.5rem 60px 0.625rem;
}

.service__item-num {
    height: 1.4375rem;
    width: 1.4375rem;
}

.service__item-lead {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.4;
    margin-top: 0.625rem;
    text-align: left;
}

.service__item-icon-wrapper {
    align-items: center;
    display: flex;
    height: 4.5rem;
    justify-content: center;
    width: 100%;
}

.service__item-icon {
    text-align: center;
}

.icon--01 {
    height: 1.6875rem;
}

.icon--02 {
    height: 2rem;
}

.icon--03 {
    height: 2.5rem;
}

.icon--04 {
    height: 2.5rem;
}

.icon--05 {
    height: 2.4375rem;
}

.service__item-text {
    font-size: 0.8125rem;
    letter-spacing: 0.015em;
    line-height: 1.4;
    text-align: left;
}

.service__item-foot {
    align-items: center;
    background-color: #e7edf4;
    bottom: 0;
    content: '';
    display: flex;
    height: 3.1875rem;
    justify-content: center;
    position: absolute;
    width: 100%;
}

.service__item-button {
    background-color: #fff;
    border: 0.0625rem solid #666666;
    border-radius: 1rem;
    box-shadow: 0.125rem 0.125rem 0.0625rem #cccccc;
    font-size: 0.875rem;
    height: 1.75rem;
    line-height: 2;
    padding-left: 0.625rem;
    width: 7.25rem;
}

.service__item-button-arrow {
    font-size: 0.75rem;
    margin-left: 0.625rem;
}

.top__service {
    margin-top: 2.5rem;
}

.top__service01 {
    margin-top: 2.5rem;
}

.top__service02 {
    margin-top: 3.125rem;
}

.top__service03 {
    margin-top: 2.5rem;
}

.top__service04,
.top__service05 {
    margin-top: 3.125rem;
}

.top__price {
    margin-top: 1.5625rem;
}

.voice {
    width: 100%;
}

.voice__container {
    padding-bottom: 2.8125rem;
    padding-top: 3.75rem;
}

.voice__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.voice__content {
    margin-top: 1.25rem;
}

.voice__item {
    border: 0.125rem solid #000;
    margin-top: 1.75rem;
    max-width: 31.25rem;
    padding: 2.25rem 1.875rem;
    position: relative;
    width: 100%;
}

.voice__item::before {
    background-color: #fff;
    content: '';
    height: 2.5rem;
    left: -0.625rem;
    max-width: 3rem;
    position: absolute;
    top: -0.625rem;
    width: 100%;
    z-index: 10;
}

.voice__item::after {
    background-image: url(../images/common/double-mark.png);
    background-size: contain;
    content: '';
    height: 1.375rem;
    left: -0.625rem;
    max-width: 1.5rem;
    position: absolute;
    top: -0.625rem;
    width: 100%;
    z-index: 20;
}

.voice__item-head {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.voice__item-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.7;
    margin-top: 1.125rem;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        -webkit-animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media screen and (min-width: 375px) {
    html {
        font-size: 16px;
    }
    .u-appear-sp {
        display: inline;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 1.68776vw;
    }
    .cta-button_wrapper {
        height: 9.625rem;
    }
    .cta-button {
        font-size: 1.875rem;
        height: 6.0625rem;
        line-height: 3.25;
        max-width: 27.25rem;
    }
    .footer {
        height: 8.125rem;
        padding-bottom: 2.25rem;
        padding-top: 1.875rem;
    }
    .footer__logo {
        height: 1.5rem;
        max-width: 5.9375rem;
    }
    .footer__copyright {
        font-size: 0.84375rem;
        margin-top: 0.5rem;
    }
    main{
        padding-top: 70px;
    }
    .header {
        height: 4.375rem;
    }
    .header__content {
        padding: 0 2.5rem;
    }
    .hdcontact a{
        font-size: 20px;
        line-height: 70px;
        padding: 0 50px;
    }
    .header__logo {
        height: 1.8125rem;
        max-width: 7.0625rem;
    }
    .inner {
        max-width: 1080px;
        padding-left: 66px;
        padding-right: 66px;
    }
    .font-small14 {
        font-size: 0.875rem;
    }
    .font-big20 {
        font-size: 1.25rem;
    }
    .font-big28 {
        font-size: 1.75rem;
    }
    .font-big30 {
        font-size: 1.875rem;
    }
    .font-big38 {
        font-size: 2.375rem;
    }
    .font-big40 {
        font-size: 2.5rem;
    }
    .font-big62 {
        font-size: 3.875rem;
    }
    .font-big68 {
        font-size: 4.25rem;
    }
    .u-hidden-tab {
        display: none;
    }
    .u-appear-pc {
        display: none;
    }
    .u-appear-tab {
        display: inline;
    }
    .apply__container {
        padding-bottom: 7rem;
        padding-top: 6.25rem;
    }
    .apply__title {
        font-size: 2.5rem;
    }
    .apply__lead {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    .apply__content {
        margin-top: 0.875rem;
    }
    .apply__rule-wrapper {
        height: 12.125rem;
        max-width: 33.75rem;
        padding: 1.5rem 1.625rem 2rem;
    }
    .apply__rule-title {
        font-size: 0.875rem;
    }
    .apply__rule-text {
        font-size: 0.875rem;
        margin-top: 1.25rem;
    }
    .apply__price {
        margin-top: 1.25rem;
        max-width: 33.75rem;
        padding: 1.875rem 3rem 0.5rem;
    }
    .apply__price-title {
        font-size: 1.625rem;
    }
    .company__container {
        padding-bottom: 8.5rem;
        padding-top: 7.5rem;
    }
    .company__title {
        font-size: 2.5rem;
    }
    .company__lead {
        font-size: 1.375rem;
        margin-top: 4.25rem;
    }
    .company__image-wrapper {
        margin-top: 1.3125rem;
    }
    .company__content {
        margin-top: 1.3125rem;
    }
    .company__introduction-summary-wrapper {
        display: flex;
        justify-content: space-around;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .company__introduction-summary {
        margin: 0;
        padding-bottom: 1.25rem;
        padding-top: 2.5rem;
    }
    .company__introduction-summary:not(:first-child) {
        margin-top: 0;
    }
    .company__introduction-summary-date {
        font-size: 1rem;
    }
    .company__introduction-summary-title {
        font-size: 1.5625rem;
    }
    .company__introduction-summary-num {
        font-size: 1.5625rem;
    }
    .company__introduction-list {
        margin-top: 3rem;
    }
    .company__introduction-item {
        padding: 2.25rem 1.5rem;
    }
    .company__introduction-item-title {
        font-size: 1.375rem;
    }
    .company__introduction-item-text {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    .join__container {
        padding-bottom: 6.375rem;
        padding-top: 7rem;
    }
    .join__title {
        font-size: 2.5rem;
    }
    .join__content {
        margin-top: 2.25rem;
    }
    .join__item:not(:first-child) {
        margin-top: 2.25rem;
    }
    .join__item-title {
        font-size: 1.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .join__item-text {
        font-size: 1rem;
        margin-top: 1.3125rem;
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
    /*.merit::after {
        border-width: 3.125rem 5.625rem 0 5.625rem;
        bottom: -3rem;
    }*/
    .merit__container {
        padding-bottom: 5.4375rem;
        padding-top: 4.6875rem;
    }
    .merit__lead {
        font-size: 2rem;
    }
    .merit__list {
        margin-top: 2.5rem;
    }
    .merit__item {
        font-size: 1.25rem;
        padding-left: 3.125rem;
    }
    .merit__item::before {
        left: 5%;
        transform: translate(-5%, -50%);
    }
    .mv {
        height: 34.375rem;
    }
    .top__mv .kv .kv02 {
        background-position: top 75% center, center;
        background-size: auto, cover;
    }
    .mv__title-wrapper {
        top: 8rem;
    }
    .mv__description {
        font-size: 3rem;
        line-height: 1.75;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .mv__subtitle {
        font-size: 2.375rem;
        line-height: 1.5;
        margin-top: 2.5rem;
        padding: 0.75rem 1rem 0;
    }
    .mv__title {
        font-size: 5.625rem;
    }
    .policy {
        max-width: 42.5rem;
    }
    .policy__title {
        font-size: 1.25rem;
    }
    .policy__content {
        height: 50rem;
        height: 38rem;
    }
    .policy__article:not(:first-child) {
        margin-top: 2.875rem;
    }
    .policy__article-num {
        font-size: 0.875rem;
    }
    .policy__article-title {
        font-size: 1.25rem;
    }
    .policy__article-list {
        margin-top: 1.25rem;
    }
    .policy__article-item {
        font-size: 0.875rem;
        text-indent: 1.25rem;
    }
    .policy__article-text {
        font-size: 0.875rem;
        margin-top: 0.875rem;
    }
    .policy__article-item-supply {
        font-size: 0.9375rem;
        text-indent: 1.25rem;
    }
    .price {
        height: 46.3125rem;
    }
    .price__content {
        max-width: 34.375rem;
        padding: 3.25rem 5.375rem 2.25rem;
    }
    .price__title {
        font-size: 2.5rem;
    }
    .price__price {
        font-size: 1.25rem;
        margin-top: 0.75rem;
    }
    .price__list {
        margin-top: 1.5rem;
        max-width: 22.5rem;
    }
    .service-cards {
        -ms-grid-columns: (1fr)[4];
        row-gap: 1.375rem;
        -moz-column-gap: 1.3125rem;
        column-gap: 1.3125rem;
        grid-template-columns: repeat(4, 1fr);
    }
    .service-detail__title-wrapper {
        padding-bottom: 0.25rem;
        padding-top: 0.25rem;
    }
    .service-detail__title {
        font-size: 1.75rem;
        letter-spacing: -0.05em;
    }
    .service-detail__title-wrapper::before {
        height: 2.125rem;
        left: 50%;
        top: -75%;
        transform: translate(-50%, 75%);
        width: 2.125rem;
    }
    .service-detail__content {
        max-width: 55rem;
    }
    .service-detail__lead {
        font-size: 1rem;
        margin-top: 2rem;
    }
    .service-detail__lead-small {
        font-size: 0.8125rem;
    }
    .service-detail__list {
        margin-top: 3.375rem;
        max-width: 55.0625rem;
    }
    .service-detail__list-title {
        font-size: 1.5rem;
    }
    .service-detail__list-subtitle {
        font-size: 0.8125rem;
        line-height: 2.5;
    }
    .service-detail__list-tab-wrapper {
        justify-content: left;
        margin-top: 1rem;
    }
    .service-detail__list-tab {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
        padding-left: 0.5rem;
    }
    .service-detail__list-tab:not(:last-child) {
        margin-right: 0.5rem;
    }
    .service-detail__list-genre {
        font-size: 1.0625rem;
        margin-top: 1.6875rem;
    }
    .service-detail__cards {
        margin-top: 1.625rem;
    }
    .service-detail__service-schedule {
        margin-top: 2.25rem;
    }
    .service-detail__content--02 {
        margin-top: 1.25rem;
    }
    .service-elearning {
        margin-top: 1.75rem;
    }
    .service-elearning__title {
        font-size: 1.5rem;
        margin-top: 0.75rem;
    }
    .service-elearning__lead {
        margin-top: 1rem;
    }
    .service-elearning__list {
        margin-top: 1rem;
    }
    .service-elearning__item {
        font-size: 1.125rem;
        padding-bottom: 0.625rem;
        padding-left: 3.125rem;
        padding-top: 0.625rem;
    }
    .service-elearning__button-wrapper {
        margin-bottom: 3.125rem;
        margin-top: 1.5rem;
    }
    .service-elearning__button {
        height: 1.875rem;
    }
    .service-example__wrapper {
        margin-top: 2.875rem;
        max-width: 34.375rem;
    }
    .service-example__head {
        align-items: center;
        display: flex;
        justify-content: left;
    }
    .service-example__image {
        margin-right: 1.125rem;
        max-width: 10.3125rem;
        padding-left: 0;
        padding-right: 0;
    }
    .service-example__title {
        font-size: 1.125rem;
        margin-top: 0;
        max-width: calc(100% - 10.3125rem);
    }
    .service-example__text {
        margin-top: 1rem;
    }
    .service-person {
        display: flex;
        margin-top: 1rem;
        padding: 1.25rem 2rem 1.25rem 1.25rem;
    }
    .service-person__image-wrapper {
        margin-right: 2.5rem;
    }
    .service-person__description {
        margin-top: 0;
        padding-bottom: 0.5rem;
        padding-top: 1rem;
    }
    .service-person__company {
        font-size: 0.8125rem;
    }
    .service-person__name {
        font-size: 1.125rem;
    }
    .service-person__text {
        font-size: 0.8125rem;
        margin-top: 0.75rem;
    }
    .service-schedule {
        max-width: 34.375rem;
        padding: 2.25rem 3rem;
    }
    .service-schedule__title {
        font-size: 1rem;
    }
    .service-schedule__item {
        font-size: 1rem;
        margin-top: 1.125rem;
    }
    .service-schedule__table {
        margin-top: 0.875rem;
    }
    .service-schedule__table-head1 {
        line-height: 2.25;
        padding-right: 1.125rem;
    }
    .service-schedule__table-head2 {
        font-size: 0.75rem;
        line-height: 2.25;
    }
    .service-schedule__table-data {
        font-size: 0.875rem;
    }
    .service-schedule__height24 {
        height: 1.5rem;
    }
    .service__lead {
        font-size: 2.5rem;
    }
    .service__banner {
        margin-top: 2.25rem;
    }
    .service__list {
        margin-top: 2.875rem;
    }
    .service__list-title {
        font-size: 1.375rem;
    }
    .service__item-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding-left: 3.125rem;
        padding-right: 3.125rem;
    }
    .service__item-lead {
        margin-top: 0.75rem;
    }
    .top__service {
        margin-top: 4.8125rem;
    }
    .top__service01 {
        margin-top: 4.8125rem;
    }
    .top__service02 {
        margin-top: 6.25rem;
    }
    .top__service03 {
        margin-top: 5.0625rem;
    }
    .top__service04,
    .top__service05 {
        margin-top: 7.25rem;
    }
    .top__price {
        margin-top: 2.875rem;
    }
    .voice__container {
        padding-bottom: 10rem;
        padding-top: 11.25rem;
    }
    .voice__content {
        align-items: baseline;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: 67.5rem;
        justify-content: space-between;
        margin-right: -1.875rem;
        margin-top: 1.375rem;
    }
    .voice__item {
        margin-right: 1.875rem;
        margin-top: 2.25rem;
        max-width: 22.5rem;
        padding: 2.25rem 1.875rem;
    }
    .voice__item:nth-child(3) {
        margin-bottom: 2.875rem;
    }
    .voice__item-head {
        font-size: 1rem;
    }
    .voice__item-text {
        font-size: 1rem;
        margin-top: 1.25rem;
    }
}

@media (min-width: 948px) {
    html {
        font-size: 16px;
    }
}

@media screen and (min-width: 948px) {
    .u-hidden-pc {
        display: none;
    }
    .u-appear-pc {
        display: inline;
    }
}

@media (min-width: 1000px) {
    .voice__content {
        height: 57.8125rem;
        margin-right: -2.375rem;
    }
    .voice__item {
        margin-right: 2.375rem;
        max-width: 27.75rem;
    }
}

@media (min-width: 1050px) {
    .service__item-wrapper {
        justify-content: space-between;
        margin-left: -3.125rem;
        padding-left: 0;
        padding-right: 0;
        width: 110%;
    }
}

@media screen and (max-width: 767px) {
    .u-appear-pc {
        display: none;
    }
    .u-appear-tab {
        display: none;
    }
}

@media screen and (max-width: 374px) {
    .u-appear-sp {
        display: none;
    }
}

@media (max-width: 300px) {
    .service__lead-under-line01::after {
        bottom: -2.3125rem;
    }
    .service__lead-under-line02::after {
        bottom: -2.1875rem;
    }
}

@-webkit-keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.omoi__container {
    padding-top: 3.75rem;
}
.omoi__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}
.omoi__lead {
    font-size: 1rem;
    letter-spacing: -0.001em;
    line-height: 1.8;
    margin-top: 1rem;
    text-align: center;
}
.omoi__list{
    font-size: 1rem;
    max-width: 300px;
    margin: 1rem auto 0;
    background-color: #f0f0f0;
    padding: 1rem;
    text-align: left;
}
@media screen and (min-width: 768px) {
    .omoi__container {
        padding-top: 11.25rem;
    }
    .omoi__lead {
        font-size: 1.375rem;
        margin-top: 2rem;
    }
    .omoi__list{
        font-size: 1.375rem;
        margin: 2rem auto 0;
    }
}