/*
576px ...スマホ
768px ...タブレット
992px ...小さなモニタ
1200px ...少し小さいパソコンのモニタ
1400px ...一般的なパソコンのモニタ
*/

/* common */
/* -------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #282b2c;
}

@media print,
screen and (max-width:576px) {
    line-height: 1.6;

    body {
        font-size: 13px;
    }

}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 下からフェードイン */
.fadein-under {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
}

.fadein-under.is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* 位置同じでフェードイン */
.fadein-same {
    transition: opacity 1.5s ease;
    opacity: 0;
}

.fadein-same.is-visible {
    opacity: 1;
}

/* one div loaders */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff100;
    opacity: 1;
}

.circle-grow-1 {
    width: var(--size);
    height: var(--size);
    background-color: var(--color);
    border-radius: 50%;
    transform: scale(0);
    animation: var(--animation-timing-function) var(--animation-duration) infinite circle-grow-1-animation;
    --size: 24px;
    --color: #000;
    --animation-timing-function: linear;
    --animation-duration: 1s;
    opacity: 0;
}

@keyframes circle-grow-1-animation {
    transform: scale(0);

    0% {
        opacity: 0;
    }

    80% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* mv */
/* -------------------------------------------------- */
.mv {
    background: linear-gradient(90deg, #fff 0%, #fff 70%, #fff100 70%, #fff100 100%);
}

.mv__block {
    position: relative;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    height: 430px;
    max-width: 1280px;
    margin: 0 auto;
}

.mv__block::before {
    position: absolute;
    top: 0;
    right: -30%;
    z-index: 0;
    width: 69%;
    height: 100%;
    background: #fff100;
    transform: skewX(-20deg);
    transform-origin: top right;
    content: "";
}

.mv__block>* {
    position: relative;
    z-index: 1;
}

.mv__box--left {
    margin-top: 20px;
}

.mv__logo {
    display: block;
    margin-left: 40px;
}

.mv__title {
    margin-left: 90px;
}

.mv__title-sub {
    display: block;
    margin-top: 100px;
    margin-left: 16px;
}

.mv__title-main {
    display: block;
    margin-top: 10px;
}

.mv__text {
    margin-left: 100px;
}

.mv__box--right {
    margin-top: 40px;
}

@media screen and (max-width: 1100px) {
    .mv {
        background: linear-gradient(117deg, #fff 0%, #fff 50%, #fff100 50%, #fff100 100%);
    }

    .mv__block {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 10px 20px 30px;
    }

    .mv__block::before {
        display: none;
    }

    .mv__box--left,
    .mv__box--right {
        margin: 0;
        text-align: center;
    }

    .mv__logo,
    .mv__title,
    .mv__title-sub,
    .mv__title-main,
    .mv__text {
        margin: 0 auto;
        text-align: center;
    }

    .mv__logo {
        text-align: left;
        margin-top: 10px;
    }

    .mv__logo img {
        width: 50%;
        height: auto;
    }

    .mv__title-sub {
        width: 90%;
        height: auto;
        text-align: center;
        margin-top: 20px;
    }

    .mv__title-main {
        margin-top: 10px;
    }

    .mv__text {
        padding: 0 20px;
        font-size: 18px;
        line-height: 1.8;
        margin-top: 20px;
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 768px) {
    .mv {
        background: linear-gradient(106deg, #fff 0%, #fff 50%, #fff100 50%, #fff100 100%);
    }

    .mv__title-sub img {
        width: 100%;
        height: auto;
    }

    .mv__title-main img {
        width: 100%;
        height: auto;
    }

    .mv__box--right img {
        margin-top: 20px;
    }

    .mv__text {
        margin: 0;
        padding: 0 20px;
        font-size: 15px;
        text-align: left;
    }

}

@media screen and (max-width: 576px) {
    .mv {
        background: linear-gradient(111deg, #fff 0%, #fff 50%, #fff100 50%, #fff100 100%);
    }

    .mv__box--right img {
        width: 80%;
        height: auto;
    }

}

/* problem */
/* -------------------------------------------------- */
.problem {
    padding: 40px 20px;
    text-align: center;
    background-color: #f3f3f3;
}

.problem__heading {
    position: relative;
    display: inline-block;
    padding: 0 2.5rem;
    font-size: 26px;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-bottom: 60px;
}

.problem__heading::before {
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 30px;
    height: 77px;
    background: url("/asset/00032/genbakanri/wavy-line-left-2x.webp") no-repeat center center;
    background-size: contain;
    content: "";
}

.problem__heading::after {
    position: absolute;
    top: 0.2em;
    right: 0;
    width: 30px;
    height: 77px;
    background: url("/asset/00032/genbakanri/wavy-line-right-2x.webp") no-repeat center center;
    background-size: contain;
    content: "";
}

.problem__heading-em {
    font-weight: bold;
    color: #0070c0;
}

.problem__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.problem__box {
    position: relative;
    max-width: 254px;
    padding: 2rem 1rem 1.5rem;
    text-align: left;
    background: #fff;
    border-radius: 10px;
}

.problem__box::before {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 64px;
    height: 68px;
    background: url('/asset/00032/genbakanri/balloon-2x.webp') no-repeat center center;
    background-size: contain;
    content: "";
}

.problem__title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.problem__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333;
}

.problem__solution-label {
    position: relative;
    z-index: 1;
    width: 216px;
    height: 75px;
    margin: 50px auto -80px;
    font-size: 28px;
    line-height: 60px;
    font-weight: bold;
    text-align: center;
    color: #000;
    background: #fff100;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media screen and (max-width: 1100px) {
    .problem__list {
        flex-wrap: wrap;
        gap: 50px;
    }

    .problem__box {
        width: 60%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .problem__title {
        font-size: 24px;
    }

    .problem__text {
        font-size: 16px;
    }

}

@media screen and (max-width: 768px) {
    .problem {
        padding: 40px 10px;
    }

    .problem__heading {
        padding: 0 1.5rem;
        font-size: 24px;
        margin-bottom: 40px;
    }

    .problem__heading::before,
    .problem__heading::after {
        width: 20px;
        height: 70px;
    }

    .problem__list {
        display: block;
    }

    .problem__box {
        width: 90%;
        margin: 0 auto 30px;
        padding: 1.5rem 1rem 1.5rem;
    }

    .problem__box::before {
        top: -20px;
        right: 10px;
        width: 50px;
        height: 55px;
    }

    .problem__title {
        font-size: 21px;
    }

    .problem__text {
        font-size: 0.9rem;
    }

    .problem__solution-label {
        width: 180px;
        height: 60px;
        margin: 40px auto -60px;
        font-size: 20px;
        line-height: 55px;
    }

}

/* solution */
/* -------------------------------------------------- */
.solution {
    max-width: 1100px;
    margin: 0 auto;
}

.solution__title {
    position: relative;
    max-width: 930px;
    margin: 90px auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.solution__title span {
    display: block;
    transform: skewX(-155deg);
}

.solution__lead {
    font-size: 17px;
}

.solution__steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto;
    flex-wrap: nowrap;
}

.solution__step {
    flex: 1 1 auto;
    text-align: center;
}

.solution__arrow {
    width: 40px;
    height: auto;
}

.solution__note {
    position: relative;
    max-width: 620px;
    margin: 60px auto 30px;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
}

.solution__note:before,
.solution__note::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: "";
}

.solution__note:before {
    border-color: transparent;
    border-width: 12px;
    margin-left: -12px;
    border-top-color: #282b2c;
}

.solution__note:after {
    border-color: transparent;
    border-width: 9px;
    margin-left: -9px;
    border-top-color: white;
}

.solution__achieve {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

.solution__achieve-maker {
    background: linear-gradient(transparent 70%, #fff100 70%);
}

.solution__tags {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 40px auto 60px;
}

.solution__tag {
    width: 96px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background: #fff100;
    border: 2px solid #282b2c;
    border-radius: 4px;
}

@media screen and (max-width: 1100px) {
    .solution {
        padding: 40px 20px 0 20px;
    }

    .solution__title {
        transform: none;
    }

    .solution__title span {
        transform: none;
    }

}

@media screen and (max-width: 768px) {
    .solution__steps {
        flex-direction: column;
        gap: 24px;
    }

    .solution__arrow-hide {
        display: none !important;
    }

    .solution__title {
        margin: 40px auto 20px;
        font-size: 22px;
    }

    .solution__lead {
        font-size: 15px;
    }

    .solution__note {
        max-width: 90%;
        padding: 8px 16px;
        font-size: 20px;
    }

    .solution__achieve {
        font-size: 20px;
    }

    .solution__tags {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .solution__tag {
        width: calc(50% - 12px);
        padding: 8px 0;
        font-size: 14px;
    }

}


/* contact-button */
/* -------------------------------------------------- */
.contact-button {
    padding: 25px 0;
    text-align: center;
    background: #fff100;
}

.contact-button__link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 9999px;
    transition: 0.3s;
    text-decoration: none;
}

.contact-button__link:hover {
    opacity: 0.8;
}

.contact-button__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    background-color: #282b2c;
    border: 2px solid #282b2c;
    border-radius: 50%;
    margin-left: 10px;
    padding-left: 2px;
}

/* video */
/* -------------------------------------------------- */
.video {
    padding: 50px 0;
    background-color: #f2f2f2;
}

.video__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.video__title {
    position: relative;
    max-width: 630px;
    margin: 0 auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.video__title span {
    display: block;
    transform: skewX(-155deg);
}

.video__lead {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.video__container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 40px;
    aspect-ratio: 16 / 9;
}

.video__container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video__note {
    font-size: 14px;
    color: #282b2c;
}

.video__note-mark {
    color: red;
}

@media screen and (max-width: 1100px) {
    .video {
        padding: 40px 20px 0 20px;
    }

    .video__title {
        transform: none;
    }

    .video__title span {
        transform: none;
    }

    .video__lead {
        font-size: 15px;
    }

}

@media screen and (max-width: 768px) {
    .video {
        padding: 40px 20px 0 20px;
    }

    .video__title {
        font-size: 22px;
    }

    .video__title span {
        transform: none;
    }

    .video__lead {
        font-size: 15px;
    }

}

/* feature */
/* -------------------------------------------------- */
.feature {
    max-width: 1100px;
    padding: 60px 20px 20px;
    margin-inline: auto;
}

.feature__title {
    position: relative;
    max-width: 460px;
    margin: 0 auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.feature__title span {
    display: block;
    transform: skewX(-155deg);
}

.feature__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.feature__row--reverse {
    flex-direction: row-reverse;
}

.feature__icon-box {
    /* flex: 0 0 200px;
    */
    text-align: center;
}

.feature__icon-box img {
    display: block;
    height: auto;
    margin-inline: auto;
}

.feature__icon-box--01 img {
    width: 399px;
}

.feature__icon-box--02 img {
    width: 491px;
}

.feature__icon-box--03 img {
    width: 460px;
}

.feature__text-box {
    flex: 1;
}

.feature__label {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 35px;
}

.feature__label::before {
    position: absolute;
    top: 45%;
    left: 0;
    display: inline-block;
    width: 23px;
    height: 6px;
    background-color: #fff100;
    content: "";
}

.feature__description {
    font-size: 17px;
    line-height: 1.8;
}

@media screen and (max-width: 1100px) {
    .feature {
        padding: 40px 20px 0 20px;
    }

    .feature__title {
        transform: none;
    }

    .feature__title span {
        transform: none;
    }

}

@media (max-width: 992px) {
    .feature__row {
        flex-direction: column-reverse;
    }

    .feature__row--reverse {
        flex-direction: column-reverse;
    }

    .feature__icon-box {
        margin: 0 auto 40px;
        text-align: left;
        margin-bottom: 20px;
    }

    .feature__title {
        font-size: 22px;
    }

}

@media (max-width: 576px) {
    .feature {
        padding: 40px 20px 0 20px;
    }

    .feature__label {
        font-size: 20px;
        padding-left: 22px;
    }

    .feature__label::before {
        width: 18px;
        height: 5px;
    }

    .feature__description {
        font-size: 0.9rem;
    }

    .feature__icon-box--01 img {
        width: 100%;
    }

    .feature__icon-box--02 img {
        width: 100%;
    }

    .feature__icon-box--03 img {
        width: 100%;
    }

}

/* case */
/* -------------------------------------------------- */
.case {
    padding: 60px 20px;
    background-color: #f2f2f2;
}

.case__title {
    position: relative;
    max-width: 320px;
    margin: 0 auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.case__title span {
    display: block;
    transform: skewX(-155deg);
}

.case__subtitle {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.case__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.case__item {
    flex: 1 1 calc(50% - 15px);
    max-width: 525px;
    min-height: 275px;
    padding: 0px;
    background-color: #fff;
    border: 2px solid #282b2c;
    box-sizing: border-box;
}

.case__header-block {
    display: flex;
    flex-direction: row;
}

.case__badge {
    width: 66px;
    height: 55px;
    padding: 6px 0;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #282b2c;
    margin-bottom: 10px;
}

.case__header {
    width: 100%;
    height: 55px;
    padding: 6px 0 6px 20px;
    font-size: 22px;
    font-weight: bold;
    background-color: #fff100;
    border-bottom: 2px solid #282b2c;
}

.case__heading {
    padding: 0 20px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.case__text {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    line-height: 1.8;
}

@media screen and (max-width: 1100px) {
    .case {
        padding: 40px 20px;
    }

    .case__title {
        transform: none;
    }

    .case__title span {
        transform: none;
    }

}

@media (max-width: 767px) {
    .case__list {
        flex-direction: column;
    }

    .case__item {
        flex: 1 1 100%;
        margin: 0 auto;
    }

    .case__title {
        font-size: 22px;
    }

    .case__subtitle {
        font-size: 20px;
    }

    .case__heading {
        font-size: 16px;
    }

    .case__header {
        padding: 9px 0 9px 20px;
        font-size: 19px;
    }

    .case__text {
        font-size: 14px;
    }

}

/* plan */
/* -------------------------------------------------- */
.plan {
    padding: 60px 20px;
    background: #fff;
}

.plan__title {
    position: relative;
    max-width: 380px;
    margin: 0 auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.plan__title span {
    display: block;
    transform: skewX(-155deg);
}

.plan__lead {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.plan__text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.plan__set {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
}

.plan__group {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f2f2f2;
}

.plan__item {
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
    color: #282b2c;
    background: #fff100;
    border: 2px solid #000;
    border-radius: 4px;
    margin-bottom: 10px;
}

.plan__item:last-child {
    margin-bottom: 0;
}

.plan__plus {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    align-self: center;
}

.plan__notes {
    font-size: 13px;
    text-align: left;
    padding-left: 1em;
}

.plan__mark {
    color: red;
}

.plan__notes li {
    font-size: 14px;
    margin-bottom: 8px;
}

@media screen and (max-width: 1100px) {
    .plan {
        padding: 40px 20px;
    }

    .plan__title {
        transform: none;
    }

    .plan__title span {
        transform: none;
    }

}

@media (max-width: 768px) {
    .plan__set {
        flex-direction: column;
        gap: 30px;
    }

    .plan__group {
        width: 100%;
    }

    .plan__item {
        font-size: 16px;
    }

    .plan__title {
        font-size: 22px;
    }

    .plan__lead {
        font-size: 20px;
    }

}

/* flow */
/* -------------------------------------------------- */
.flow {
    padding: 60px 20px;
    background-color: #f2f2f2;
}

.flow__title {
    position: relative;
    max-width: 260px;
    margin: 0 auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.flow__title span {
    display: block;
    transform: skewX(-155deg);
}

.flow__text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.flow__steps {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 27px;
}

.flow__steps::after {
    position: absolute;
    top: 25px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 2px;
    background: #282b2c;
    content: "";
}

.flow__box {
    position: relative;
    min-width: 100px;
}

.flow__number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    padding: 5px 0 0 0;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #282b2c;
    border-radius: 50%;
}

.flow__label {
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background: #fff100;
    border: 2px solid #282b2c;
    border-radius: 4px;
}

.flow__text {
    font-size: 14px;
}

@media screen and (max-width: 1100px) {
    .flow {
        padding: 40px 20px;
    }

    .flow__title {
        transform: none;
    }

    .flow__title span {
        transform: none;
    }

}

@media screen and (max-width: 768px) {
    .flow__steps {
        flex-direction: column;
        gap: 10px;
    }

    .flow__box {
        width: 80%;
        margin: 0 auto;
    }

    .flow__steps::after {
        display: none;
    }

    .flow__title {
        font-size: 22px;
    }

}

/* contact */
/* -------------------------------------------------- */
.contact {
    padding: 60px 20px;
}

.contact__title {
    position: relative;
    max-width: 580px;
    margin: 0 auto 40px;
    padding: 1rem;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border: 2px solid #282b2c;
    transform: skewX(155deg);
}

.contact__title span {
    display: block;
    transform: skewX(-155deg);
}

.contact__make {
    color: red;
}

.contact__lead {
    margin-bottom: 50px;
}

@media screen and (max-width: 1100px) {
    .contact {
        padding: 40px 20px;
    }

    .contact__title {
        transform: none;
    }

    .contact__title span {
        transform: none;
    }

}

@media screen and (max-width: 768px) {
    .contact__title {
        font-size: 22px;
    }

    .contact__lead {
        font-size: 15px;
    }

}

/* footer */
/* -------------------------------------------------- */
.footer {
    padding: 30px 20px;
    font-size: 14px;
    background-color: #fff100;
}

.footer__container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 20px;
    list-style: none;
}

.footer__link a {
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.footer__link a:hover {
    opacity: 0.7;
}

.footer__copyright {
    font-size: 14px;
}

/* お問い合わせフォーム */
/* -------------------------------------------------- */
#tx_form_0 {
    margin: 0;
    padding: 0;
    display: block;
}

#mailform-section {
    margin: 0;
    color: #333;
}

#mailform-section {
    margin-bottom: 20px;
}

#mailform-section div.form-layout {
    width: 95%;
    display: block;
    margin: 0 auto;
}

#mailform-section div.form-layout div.form-items {
    width: 100%;
    margin: 0 auto;
}

#mailform-section div.form-layout div.form-items div.form-item {
    clear: both;
    padding: 0 0 20px 0;
    margin-bottom: 30px;
    border-bottom: dashed 1px #ccc;
}

#mailform-section div.form-layout div.form-items div.form-item:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#mailform-section div.form-layout div.form-items div.form-item div.label {
    float: none;
    clear: both;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 0 0 0 10px;
    color: #333;
    font-size: 100%;
    border-left: solid 4px #FDEF16;
}

#mailform-section div.form-layout div.form-items div.form-item div.field {
    float: none;
    clear: both;
    background: #fff;
    width: 100%;
    text-align: left;
    vertical-align: top;
    padding: 8px 0;
}

#mailform-section div.form-layout div.form-items div.form-item div.field p.description {
    margin: 10px 0;
    font-size: 100%;
}

#mailform-section div.form-layout div.form-items .field-textarea {
    width: calc(100% - 20px);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: none;
    background: #efefef;
    padding: 10px;
    font-size: 100%;
    border: 1px solid #ccc;
    color: #333;
}

#mailform-section input.input-text {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: calc(100% - 20px);
    border: none;
    background: #efefef;
    padding: 10px;
    font-size: 100%;
    color: #333;
    border: 1px solid #ccc;
}

#mailform-section textarea.input-textarea {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid #ccc;
}

#mailform-section input.input-select {
    border: 1px solid #ccc;
}

#mailform-section select.input-select {
    position: relative;
    width: 100%;
    padding: 10px;
    /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
    height: 40px;
    border: none;
    background: #eee;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #eee), color-stop(0, #fff));
    background: -webkit-linear-gradient(#fff, #eee);
    background: -moz-linear-gradient(#fff, #eee);
    background: -o-linear-gradient(#fff, #eee);
    background: -ms-linear-gradient(#fff, #eee);
    background: linear-gradient(#fff, #eee);
    border: solid 1px #ccc;
    font-size: 100%;
}

#mailform-section select.input-select option {
    padding: 5px 0;
    display: block;
}

#mailform-section .required {
    color: red;
    font-weight: normal;
}

#mailform-section .error {
    background-color: #fcf;
    padding: 0px;
    text-align: left;
}

#mailform-section .error-message {
    color: #f00;
}

#mailform-section .completion-message {
    border: 1px solid #ccc;
    padding: 30px;
}

#mailform-section div.submitee {
    clear: both;
    text-align: center;
}

#mailform-section div.submitee button {
    cursor: pointer;
    border-width: 0px;
    height: 50px;
    width: 100px;
    margin-top: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    background: #fff100;
}

#mailform-section div.submitee button:hover {
    opacity: 0.7;
    transition: 0.5s;
}

#mailform-section div.submitee button span {
    font-size: 180%;
}

#mailform-section input[type=radio],
#mailform-section input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
    display: none;
    margin: 0;
}

#mailform-section input[type=radio]+label,
#mailform-section input[type=checkbox]+label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    cursor: pointer;
    padding: 0 0 0 20px;
}

#mailform-section input[type=radio]+label:hover,
#mailform-section input[type=checkbox]+label:hover {
    color: #FDEF16;
}

#mailform-section input[type=radio]+label::before,
#mailform-section input[type=checkbox]+label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background: #FFF;
}

#mailform-section input[type=radio]:checked+label::after,
#mailform-section input[type=checkbox]:checked+label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}

#mailform-section input[type=radio]+label::before {
    border: 1px solid #666;
    border-radius: 30px;
}

#mailform-section input[type=radio]:checked+label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -2px;
    background: #FDEF16;
    border-radius: 8px;
}

#mailform-section input[type=checkbox]+label::before {
    border: 1px solid #666;
}

#mailform-section input[type=checkbox]:checked+label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #333;
    border-bottom: 3px solid #333;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}