.font-small {
    font-size: 18px;
    line-height: 30px;
}

.font-mon {
    font-family: 'Montserrat', sans-serif;
}

.font-pop {
    font-family: 'Poppins', sans-serif;
}

.font-jose {
    font-family: 'Josefin Sans', sans-serif;
}

.font-600 {
    font-weight: 600;
}

.font-500 {
    font-weight: 500;
}

.font-500 {
    font-weight: 500;
}

header {
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 990;
    transition: all .3s linear;
}

header.sticky {
    background: #FAF8F5;
}

.top-page header.sticky {
    background: #fff;
}

header p {
    font-weight: 500;
    margin-left: 20px;
}

header .pc-menu a {
    font-size: 14px;
    font-weight: 600;
    margin-left: 25px;
    padding: 5px 2px;
    border-bottom: solid 2px transparent;
}

header .pc-menu a:hover {
    border-bottom-color: #FA863E;
    color: #FA863E;
}

.btn-mail {
    background: #FA863E;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding: 0 35px 0 65px;
    height: 42px;
    text-align: center;
    border-radius: 100px;
    border: solid 2px #FA863E;
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.btn-mail span {
    position: relative;
    z-index: 2;
}

.btn-mail img {
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.btn-mail::before {
    content: '';
    width: 32px;
    height: 32px;
    background: #fff;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 16px;
    transition: all .2s linear;
}

.btn-mail:hover {
    color: #FA863E;
    background: #fff;
}


/* 
.btn-mail:hover::before {
    width: calc(100% - 10px);
} */

main {
    padding: 200px 0;
    background: #FAF8F5;
}

.top-page main {
    background: #fff;
    padding: 0;
}

.color-1 {
    color: #FA863E;
}

.color-3 {
    color: #FFE988;
}

.color-2 {
    color: #ED858C;
}

.color-4 {
    color: #80CCE3;
}

.page-title {
    text-align: center;
}

.page-title p {
    font-weight: 700;
    font-size: 24px;
}

.page-title h1 {
    font-size: 48px;
}

.contact-flow {
    text-align: center;
    padding: 80px 0;
}

.contact-flow .contact-flow-inner {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.contact-flow .contact-flow-inner p {
    font-size: 18px;
    font-weight: 500;
}

.contact-flow .contact-flow-inner .flow {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.contact-flow .contact-flow-inner .flow:first-of-type {
    left: 0;
}

.contact-flow .contact-flow-inner .flow:nth-of-type(2) {
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-flow .contact-flow-inner .flow:last-of-type {
    right: 0;
}

.contact-flow .contact-flow-inner .flow .flow-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #CCCCCC;
    border-radius: 100%;
    position: relative;
    z-index: 3;
}

.contact-flow .contact-flow-inner .flow::before {
    content: '';
    position: absolute;
    width: 255px;
    height: 2px;
    background: #CCCCCC;
    top: 50%;
    left: -223px;
    transform: translateY(70%);
}

.contact-flow .contact-flow-inner .flow:nth-of-type(2)::before {
    width: 275px;
}

.contact-flow .contact-flow-inner .flow:first-of-type::before {
    content: unset;
}

.contact-flow .contact-flow-inner .flow.active {
    color: #FA863E;
}

.contact-flow .contact-flow-inner .flow.active::before,
.contact-flow .contact-flow-inner .flow.active .flow-dot {
    background: #FA863E;
}

label[for="accept-label"],
.check-list label {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

label[for="accept-label"] {
    display: inline-block;
}

label[for="accept-label"] input,
.check-list label input {
    margin-right: 10px;
}

.form-field {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.form-field .field-label {
    flex: 0 0 25%;
    padding-top: 10px;
    font-weight: 500;
    color: #ED858C;
}

.form-field .field-label span {
    font-size: 12px;
    color: #fff;
    background: #ED858C;
    padding: 1px 5px 3px;
    margin-left: 15px;
}

.form-field .field-content {
    flex: 1;
}

.form-field .field-content textarea,
.form-field .field-content input {
    width: 100%;
    height: 40px;
    border: solid 1px #ED858C;
    padding: 10px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
}

.form-field .field-content textarea {
    height: 150px;
    resize: none;
}

.font-middle {
    font-size: 28px;
}

.font-large {
    font-size: 36px;
}

.btn-round {
    display: inline-block;
    padding: 12px 70px;
    background: #FA863E;
    color: #fff;
    font-weight: 600;
    border: solid 2px #FA863E;
    font-size: 18px;
    border-radius: 100px;
    position: relative;
}

button.btn-round {
    padding: 10px 100px;
}

.btn-round.ico-left svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-round.ico-right svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-round svg path {
    stroke: #fff;
}

.btn-round:hover {
    cursor: pointer;
}

footer {
    margin-top: -100px;
    position: relative;
}

.contact-page footer {
    margin-top: 0;
}

.footer-menu-sec {
    padding: 80px 0 50px;
}

.footer-menu-sec .footer-logo p:first-of-type {
    font-weight: 500;
}

.footer-menu-sec .footer-logo p:last-of-type {
    line-height: 24px;
    font-size: 13px;
}

.footer-menu {
    margin-left: 30px;
	    width: 150px;
}

.footer-menu a {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-menu ul a.sub-menu {
    font-size: 11px;
    font-weight: 400;
}

.footer-bottom-menu a {
    font-size: 13px;
    font-weight: 500;
    margin-right: 15px;
}

.copyright {
    padding: 20px 0;
    border-top: dotted #CCCCCC 1px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.confirm-page input[type="checkbox"] {
    width: 0;
    height: 0;
    opacity: 0;
}

.confirm-page .form-field .field-content input,
.confirm-page .form-field .field-content textarea {
    background: transparent;
    border-color: transparent;
}

.page-banner {
    padding: 0 50px;
    text-align: center;
}

.page-banner .page-banner-img {
    margin-top: 50px;
}

.page-tab {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 2px #ED858C;
    margin-top: 50px;
}

.page-tab a {
    display: block;
    flex: 0 0 49%;
    border: solid 1px transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    padding: 10px;
    font-size: 24px;
    font-weight: 600;
}

.page-tab.tab-active-1 a:first-of-type {
    background: #ED858C;
    color: #fff;
}

.page-tab.tab-active-2 {
    border-bottom-color: #80CCE3;
}

.page-tab.tab-active-2 a:last-of-type {
    background: #80CCE3;
    color: #fff;
}

.page-tab.tab-active-1 a:last-of-type:hover {
    background: rgba(128, 204, 227, .3);
}

.page-tab.tab-active-2 a:first-of-type:hover {
    background: rgba(237, 133, 140, .3);
}

.sec-title {
    text-align: center;
}

.business-list .form-field {
    margin: 0;
    border-bottom: dotted 1px #ED858C;
}

.business-list .form-field:first-of-type {
    border-top: dotted 1px #ED858C;
}

.business-list .form-field .field-content,
.business-list .form-field .field-label {
    padding: 15px 0;
}

.rec-flow {}

.rec-flow .rec-flow-item {
    flex: 0 0 23%;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #ED858C;
    position: relative;
    padding: 30px 10px;
}

.rec-flow .rec-flow-item::before {
    content: '';
    position: absolute;
    border-left: 10px solid #80CCE3;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
}

.rec-flow .rec-flow-item:last-of-type::before {
    content: unset;
}

.rec-event-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
}

.rec-event-list .event-item {
    flex: 0 0 31.33%;
    margin-right: 2%;
    margin-top: 50px;
}

.item-thumb {
    overflow: hidden;
    position: relative;
    font-size: 0;
    line-height: 0;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-item .item-thumb {
    border-radius: 10px;
    height: 240px;
}

.item-content .item-date {
    font-size: 14px;
    color: #80CCE3;
    margin-top: 5px;
}

.item-content .item-title {
    font-size: 18px;
    color: #ED858C;
    margin-top: 10px;
}

.item-content .item-excerpt {
    font-size: 18px;
    margin-top: 10px;
}

.faq-list .faq-item {
    margin-top: 30px;
}

.faq-item .faq-question,
.faq-item .faq-answer {
    padding: 10px 10px 10px 50px;
    position: relative;
}

.faq-item .faq-question {
    font-weight: 600;
    color: #ED858C;
    background: #fff;
    border-radius: 10px;
}

.faq-item .faq-question::before {
    content: 'Q.';
    color: #ED858C;
}

.faq-item .faq-answer::before {
    content: 'A.';
    color: #80CCE3;
}

.faq-item .faq-question::before,
.faq-item .faq-answer::before {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 15px;
    top: 10px;
    font-weight: 600;
}

.footer-entry {
    background: #FA863E;
    border-top-right-radius: 100px;
    color: #fff;
    padding: 80px 0;
}

.entry-detail span {
    margin-left: 5px;
    padding-top: 5px;
}

.circle-icon {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}

.ico-check-list {
    margin-top: 50px;
}

.ico-check-list li {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.ico-check-list li span {
    margin-left: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #ED858C;
}

interview-item .item-thumb {
    border-radius: 10px;
}

.ss-item .item-thumb div.font-small,
.interview-item .item-thumb div.font-small {
    position: absolute;
    left: 0;
    bottom: 0;
}

.ss-item .item-thumb span,
.interview-item .item-thumb span {
    background: #FAF8F5;
    color: #80CCE3;
    font-weight: 600;
    padding: 10px 25px 5px;
    border-top-right-radius: 10px;
    position: relative;
    z-index: 3;
}

.ss-item .item-thumb span::before,
.interview-item .item-thumb span::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: -20px;
    left: 0;
    height: 20px;
    width: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 10px 0 0 #FAF8F5;
}

.ss-item .item-thumb span::after,
.interview-item .item-thumb span::after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0px;
    right: -10px;
    height: 20px;
    width: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 10px 0 0 #FAF8F5;
}

.env-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1%;
}

.env-list .env-item {
    flex: 0 0 19%;
    padding: 30px 10px;
    border-radius: 10px;
    background: #fff;
    margin-right: 1%;
    margin-top: 20px;
    text-align: center;
}

.env-list .env-item:first-of-type {
    background: #ED858C;
    color: #fff;
}

.env-list .env-item:first-of-type .item-ico img {
    width: 30px;
}

.env-item .item-ico {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.env-item p {
    font-size: 18px;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
    margin-top: 15px;
    font-weight: 500;
}

.env-rule-list .rule-item:first-of-type {
    background: #ED858C;
}

.env-rule-list .rule-item:last-of-type {
    background: #80CCE3;
}

.rule-item {
    flex: 0 0 49%;
    margin-top: 20px;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.rule-item h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
}

.career-step .rec-flow .rec-flow-item {
    line-height: 24px;
    padding: 40px 10px 10px;
    position: relative;
}

.career-step .rec-flow .rec-flow-item div p:first-of-type {
    font-size: 24px;
    margin-bottom: 15px;
}

.career-step .rec-flow .rec-flow-item div p:last-of-type {
    font-size: 16px;
    min-height: 72px;
    color: #483C34;
}

.f-item .f-num,
.career-step .rec-flow .rec-flow-item .step-num {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: dotted 1px #80CCE3;
    color: #80CCE3;
    box-shadow: 0px 0px 0px 3px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-list .step-item {
    flex: 0 0 32.33%;
    margin-top: 30px;
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
    color: #fff;
}

.step-list .step-item h2 {
    font-size: 28px;
    margin-top: 10px;
}

.step-list .step-item img {
    width: 30px;
}

.step-list .step-item:first-of-type {
    background: #ED858C;
}

.step-list .step-item:nth-of-type(2) {
    background: #80CCE3;
}

.step-list .step-item:last-of-type {
    background: #A599C9;
}

.step-list .step-item p {
    margin-top: 30px;
}

.img-5-11 {
    max-width: 500px;
}

.day-flow-list {
    display: inline-block;
    max-width: 700px;
    width: 100%;
    position: relative;
}

.day-flow-list::before {
    content: '';
    width: 20px;
    height: calc(100% - 100px);
    left: 32px;
    top: 50px;
    position: absolute;
    background: #FFF7D0;
}

.day-flow-list .day-flow-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    position: relative;
    z-index: 3;
}

.day-flow-list .day-flow-item:first-of-type {
    margin-top: 0px;
}

.day-flow-list .day-flow-item:last-of-type {
    margin-bottom: 10px;
}

.day-flow-item .df-item-time {
    border-radius: 10px;
    background: #80CCE3;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 0 10px;
    margin-top: 10px;
    text-align: center;
    width: 86px;
}

.day-flow-item .df-item-content {
    flex: 1;
    margin-left: 30px;
    border-radius: 15px;
    background: #FFF7D0;
    padding: 10px 10px 10px 30px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
}

.day-flow-item .df-item-content::before {
    content: '';
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 30px solid #FFF7D0;
    position: absolute;
    left: -18px;
    top: 12px;
}

.day-flow-item .df-item-content h2 {
    margin-top: 10px;
}

.day-flow-item .df-item-content p {
    line-height: 30px;
    min-height: 60px;
    margin-top: 10px;
}

.day-flow-item .df-item-content .df-desc {
    flex: 1;
    margin-right: 15px;
}

.flow-list-title {
    text-align: left;
    padding-left: 15px;
}

.month-list {
    max-width: 490px;
    display: inline-block;
    width: 100%;
}

.month-list .d-flex {
    font-size: 18px;
    font-weight: 600;
}

.month-list .d-flex div {
    margin-top: 10px;
}

.month-list .d-flex div:first-of-type p:first-of-type {
    color: #fff;
    background: #5BAFD2;
    border-radius: 5px;
    padding: 2px 10px;
}

.month-list .d-flex div:last-of-type {
    text-align: left;
}

.month-list .d-flex div p {
    margin-top: 8px;
}

.month-list .d-flex div:last-of-type p span {
    border-radius: 5px;
    padding: 2px 5px;
    margin-right: 15px;
}

.month-list .d-flex div:last-of-type p:first-of-type span {
    background: #FFD43E;
}

.month-list .d-flex div:last-of-type p:last-of-type span {
    background: #A599C9;
}

.img-banner {
    display: flex;
    justify-content: space-between;
    margin-left: -46px;
    margin-right: -92px;
    text-align: center;
}

.img-banner img {
    margin-top: 20px;
}

.img-banner .img-banner-3,
.img-banner .img-banner-1 {
    flex: 0 0 13.5%;
}

.img-banner .img-banner-5 {
    flex: 0 0 18%;
}

.img-banner .img-banner-4,
.img-banner .img-banner-2 {
    flex: 0 0 24%;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.service-item .item-thumb {
    flex: 0 0 35%;
    border-radius: 10px;
}

.service-item .item-content {
    flex: 0 0 60%;
}

.service-item .item-content h3 {
    font-size: 24px;
    color: #ED858C;
}

.service-item .item-content h4 {
    font-size: 20px;
    color: #80CCE3;
    margin-top: 15px;
}

.service-item .item-content p {
    margin-top: 30px;
}

.service-item .item-content ul {
    padding-left: 20px;
    border-left: solid 1px #80CCE3;
    margin-top: 30px;
}

.service-item .item-content ul li {
    color: #80CCE3;
}

.service-item .item-content ul li span {
    font-weight: 600;
}

.btn-next,
.btn-back,
.btn-more {
    color: #FA863E;
    display: inline-flex;
    align-items: center;
	margin: 0 0 0 auto;
}

.btn-next span:first-of-type,
.btn-back span:last-of-type,
.btn-more span:first-of-type {
    font-size: 18px;
    padding: 3px 0;
    border-bottom: solid 2px #FA863E;
    font-weight: 600;
    margin-right: 15px;
}

.btn-back span:last-of-type {
    margin-right: 0;
}

.btn-back span:first-of-type {
    background: #FA863E;
    margin-right: 15px;
}

.btn-next span:last-of-type {
    background: #FA863E;
}

.btn-next span:last-of-type,
.btn-back span:first-of-type,
.btn-more span:last-of-type {
    width: 47px;
    height: 47px;
    border: solid 1px #FA863E;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sevice-desc {
    margin-top: 50px;
}

.sevice-desc ul {
    counter-reset: my-awesome-counter;
}

.sevice-desc ul li {
    margin-top: 30px;
    counter-increment: my-awesome-counter;
    position: relative;
    padding-left: 60px;
}

.sevice-desc ul li::before {
    content: counter(my-awesome-counter);
    color: red;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: dotted 1px #80CCE3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #80CCE3;
}

.sevice-desc ul li p:last-of-type {
    margin-top: 15px;
}

.sevice-desc ul li p:last-of-type {
    margin-top: 15px;
}

.about-desc-1 {
    margin-top: 30px;
}

.about-desc-1 h2 {
    margin: 0 20px;
    writing-mode: vertical-lr;
    text-orientation: upright;
    letter-spacing: 5px;
}

.about-desc-1 p {
    flex: 1;
}

.our-favor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our-favor-list .f-item {
    flex: 0 0 31.33%;
    margin-top: 50px;
    background: #fff;
    border-radius: 10px;
    padding: 40px 10px 30px;
    position: relative;
}

.f-title {
    font-size: 22px;
}

.f-item a {
    border-radius: 100px;
    border: solid 1px #FA863E;
    color: #FA863E;
    width: 100%;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.our-favor-result {
    padding-top: 100px;
    margin-right: -1%;
}

.our-favor-result .our-r-item {
    flex: 0 0 32.33%;
    background: #fff;
    border-radius: 10px;
    padding: 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1%;
    margin-right: 1%;
}

.our-favor-result .our-r-item:first-of-type {
    background: #80CCE3;
    color: #fff;
}

.our-favor-result .our-r-item:first-of-type img {
    width: 60px;
    margin-bottom: 15px;
}

.our-r-item h2 {
    font-size: 46px;
}

.our-r-item h3 {
    font-size: 100px;
    font-family: 'Josefin Sans', sans-serif;
    color: #ED858C;
}

.our-r-item p {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 20px;
}

.boss-message {
    margin-top: 100px;
    padding: 50px 0 150px;
    background: #ED858C;
    color: #fff;
    margin-bottom: -200px;
}

.news-list {
    width: 100%;
    max-width: 900px;
    margin: 50px auto 0;
}

.news-list .news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: solid 1px #DEDEDE;
}

.news-list .news-item:last-of-type {
    border-bottom-color: transparent;
}

.news-item img {
    margin-left: 20px;
}

.news-item span {
    font-size: 14px;
}

.news-item .news-info {
    margin-bottom: 10px;
}

.news-desc-info span:first-of-type,
.news-item span:last-of-type {
    margin-left: 15px;
    color: #5BAFD2;
}

.news-desc-info span:last-of-type,
.news-item span:first-of-type {
    background: #ED858C;
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    padding: 3px 10px;
}

.news-item h2 {
    font-size: 18px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    width: 52px;
    height: 52px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #FA863E;
    border: solid 1px #FA863E;
    font-size: 18px;
    margin: 0 3px;
}

.pagination a.active {
    background: #ED858C;
    color: #fff;
}

.news-desc-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.news-desc-info span:first-of-type {
    margin-left: 0;
    margin-right: 15px;
}

.news-desc-info {
    margin-bottom: 30px;
}

.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.top-banner h1 {
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 40px;
    letter-spacing: 10px;
    position: relative;
    z-index: 3;
}

.top-banner .small-banner {
    flex: 0 0 6.5%;
}

.top-banner .big-banner {
    flex: 0 0 71%;
}

.top-banner .small-banner,
.top-banner .big-banner {
    height: calc(100vh - 80px);
    position: relative;
    z-index: 3;
}

.top-banner .small-banner img,
.top-banner .big-banner img {
    height: 100%;
    object-fit: cover;
}

.top-banner .big-banner img {
    object-position: right;
}

.top-banner .small-banner img {
    object-position: left;
}

.top-page .top-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
    background: #FAF8F5;
}

.sec-news {
    padding-top: 100px;
    position: relative;
}

.sec-news .bg-1 {
    position: absolute;
    top: -200px;
    right: -100px;
}

.sec-news .bg-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
}

.sec-recruit .page-title,
.sec-env .page-title,
.sec-service .page-title,
.sec-about .page-title,
.sec-news .page-title {
    text-align: left;
}

.sec-recruit .page-title p,
.sec-env .page-title p,
.sec-service .page-title p,
.sec-about .page-title p,
.sec-news .page-title p {
    color: #80CCE3;
}

.sec-news .news-list {
    flex: 1;
    padding-left: 100px;
}

.sec-about {
    background: #FFF7D0;
    margin-top: 100px;
    border-bottom-right-radius: 100px;
    position: relative;
}

.sec-about .bg-3 {
    position: absolute;
    top: -100px;
    right: -200px;
}

.sec-about .bg-5 {
    position: absolute;
    bottom: -100px;
    left: -200px;
}

.sec-about .inner-container {
    padding: 200px 16px 100px;
}

.sec-about .sec-about-ill .d-inline-block {
    position: relative;
}

.sec-about .sec-about-ill .d-inline-block img {
    position: relative;
    z-index: 3;
}

.sec-about img.bg-4 {
    position: absolute !important;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1 !important;
}

.sec-about-content,
.sec-about-thumb {
    flex: 0 0 48%;
    position: relative;
}

.sec-about .sec-about-ill {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
}

.sec-about-thumb .ill-4 {
    position: absolute;
    top: -30px;
    left: 20px;
}

.sec-service {
    padding: 100px 0;
    position: relative;
}

.sec-service .sec-about-thumb .ill-4 {
    top: auto;
    left: -50px;
    bottom: -50px;
}

.sec-service .bg-6 {
    position: absolute;
    top: -100px;
    left: -200px;
}

.sec-service .bg-7 {
    position: absolute;
    bottom: -100px;
    right: -200px;
}

.sec-env {
    padding: 100px 0 0;
    background: #E7F5E7;
    position: relative;
}

.sec-env-ill {
    position: absolute;
    top: -50px;
    left: 55%;
}

.sec-env-ill .bg-10 {
    position: absolute;
    top: 75px;
    left: 3%;
}

.sec-env .env-img-1 {
    flex: 0 0 30%;
}

.sec-env .env-img-2 {
    flex: 0 0 20%;
    position: relative;
    margin-top: 100px;
}

.sec-env .env-content {
    flex: 1;
    position: relative;
    padding: 5% 8% 0;
}

.sec-env .env-img-2 .ill-4 {
    position: absolute;
    bottom: -50px;
    left: -50px;
}

.sec-env .env-content div,
.sec-env .env-content p {
    position: relative;
    z-index: 3;
}

.sec-env .env-content .bg-8 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec-step {
    background: #F3F8FC;
    padding: 100px 0;
}

.sec-step .sec-step-list {
    margin-right: -2%;
}

.sec-step .sec-step-list .ss-item {
    flex: 0 0 31.33%;
    margin-top: 2%;
    margin-right: 2%;
}

.ss-item .item-thumb span {
    color: inherit;
}

.sec-recruit {
    padding: 100px 0 200px;
    background: #FFF0F0;
    position: relative;
}

.sec-recruit .recruit-thumb {
    position: relative;
}

.sec-recruit .recruit-thumb .thumb-desc {
    position: absolute;
    width: 70%;
    bottom: 0;
    right: 0;
    background: #FFF0F0;
    border-top-left-radius: 10px;
    padding: 30px 0 30px 30px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.sec-recruit .recruit-thumb .thumb-desc p {
    flex: 0 0 45%;
}

.recruit-content {
    align-items: flex-start;
}

.recruit-content div:first-of-type {
    flex: 0 0 42%;
}

.recruit-content div:last-of-type {
    flex: 0 0 50%;
}

.recruit-content div:first-of-type {
    margin-top: 60px;
    text-align: right;
    position: relative;
}

.recruit-content div:first-of-type .bg-12 {
    position: absolute;
    bottom: -10px;
    right: -90px;
}

.recruit-content .recruit-menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.recruit-content .recruit-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 48%;
    margin-top: 2%;
    background: #fff;
    border-radius: 10px;
    color: #ED858C;
    font-size: 18px;
    font-weight: 500;
    padding: 17px 25px;
}

.recruit-thumb .ill-4 {
    position: absolute;
    bottom: -50px;
    left: -50px;
}

.sec-recruit .bg-13 {
    position: absolute;
    top: -10%;
    left: -10%;
}

.sec-recruit .bg-14 {
    position: absolute;
    bottom: -10%;
    right: -10%;
}

.one,
.two,
.three,
nav #nav-overlay {
    background: #FA863E;
}

.header-sp-menu {
    display: none;
}

.footer-entry a{
	color: #fff;
	display: flex;
	align-items: center
}
