@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap');

body {
    font-family: "Noto Sans JP" !important;
}

* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

main {}

h1 {
    font-size: 1em;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    display: block;
    width: 100%;
}

li {
    list-style: none;
}

.rela {
    position: relative;
}

.abso {
    position: absolute;
}

.weight {
    font-weight: 700;
}

/*padding.margin*/
.m_auto {
    margin: auto;
}

/*flex*/
.flex {
    display: flex;
}

.justify_center {
    justify-content: center;
}

.justify_base {
    justify-content: baseline;
}

.justify_between {
    justify-content: space-between;
}

.justify_around {
    justify-content: space-around;
}

.justify_end {
    justify-content: end;
}

.align_center {
    align-items: center !important;
}

.align_start {
    align-items: start;
}

.align_end {
    align-items: flex-end;
}

.align_base {
    align-items: baseline;
}

.flex_column {
    flex-direction: column;
}

/*text*/
.t_center {
    text-align: center;
}

.t_right {
    text-align: right;
}


.pc {
    display: block;
}

.sp {
    display: none;
}

/*header*/
.no_input {
    display: none;
}

.cp_fullscreenmenu .menu {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    background: rgba(255, 255, 255, .8);
    background-image: url(../img/menu_wave.png);
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 10;
}

.cp_fullscreenmenu .menu ul {
    position: absolute;
    top: 170px;
    left: 50%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 56%;
}

.cp_fullscreenmenu .menu ul li {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
}

.cp_fullscreenmenu .menu ul li a {
    font-size: 2em;
    font-weight: bold;
    display: block;
    padding: 27px 50px;
    transition: all 0.2s ease-in-out;
    text-align: left;
    text-decoration: none;
    color: #000;
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);*/
}

.cp_fullscreenmenu .menu ul li a::after {
    content: "→";
    width: 50px;
    height: 50px;
    position: absolute;
    right: 2%;
}

.cp_fullscreenmenu .menu ul li a:hover {
    color: rgba(251, 166, 106, 1);
}

.cp_fullscreenmenu .menu ul li a:hover::after {
    animation: anim 1s;
}

.menu_button {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 7%;
    text-align: center;
}

.menu_button a {
    background: url(../img/orange_oval.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.458vw;
    width: 29.167vw;
    font-weight: 400;
    letter-spacing: .7rem;
    padding: 2.083vw 1.042vw;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.menu_button a::after {
    content: "→";
    position: absolute;
    right: 50px;
}

.menu_button a:hover {
    opacity: 0.8;
}

.menu_button a:hover::after {
    animation: anim 1s;
}

@keyframes anim {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(15px);
    }
}

/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu #toggle:checked~.menu {
    visibility: visible;
    opacity: 1;
}

.cp_fullscreenmenu #toggle:checked~.menu ul {
    top: 70px;
}

.cp_fullscreenmenu #toggle:checked~.menu ul li {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    border-bottom: 2px dashed #ccc;
}

.cp_fullscreenmenu #toggle:checked~.menu ul li:nth-child(1) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
}

.cp_fullscreenmenu #toggle:checked~.menu ul li:nth-child(2) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
}

.cp_fullscreenmenu #toggle:checked~.menu ul li:nth-child(3) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
}

.cp_fullscreenmenu #toggle:checked~.menu ul li:nth-child(4) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
}

.cp_fullscreenmenu #toggle:checked~.menu ul li:nth-child(5) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
}

.cp_fullscreenmenu #toggle:checked+label.hamburger .bar {
    background-color: rgba(0, 0, 0, 1);
}

.cp_fullscreenmenu #toggle:checked+label.hamburger .bar:nth-child(2) {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.cp_fullscreenmenu #toggle:checked+label.hamburger .bar:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(18px) rotate(45deg);
}

.cp_fullscreenmenu #toggle:checked+label.hamburger .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
    position: fixed;
    z-index: 20;
    top: 20px;
    right: 20px;
    display: block;
    cursor: pointer;
}

.cp_fullscreenmenu .hamburger .bar {
    width: 40px;
    height: 3px;
    margin: 10px auto;
    transition: all 0.3s ease-in-out;
    background-color: #000;
}

.cp_fullscreenmenu .hamburger .bar:nth-child(2) {
    width: 30px;
}

/*footer*/
footer {}

.footer_wave {
    width: 100%;
}

.footer_container {
    background-color: #f7f5f2;
    width: 100%;
    height: 20vh;
    position: relative;
}

.copyright {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.729vw;
}

/*----------------------------------------------

index

------------------------------------------------*/

.main_imgBox {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.top_01 {
    background: url(../img/top_eyecatch_01.jpg);
}

.top_02 {
    background: url(../img/top_eyecatch_02.jpg);
}

.top_03 {
    background: url(../img/top_eyecatch_03.jpg);
}

.top_04 {
    background: url(../img/top_eyecatch_04.jpg);
}

.top_05 {
    background: url(../img/top_eyecatch_05.jpg);
}

.top_06 {
    background: url(../img/top_eyecatch_06.jpg);
}

.main_img {
    z-index: 5;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite;
}

.main_img:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.main_img:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}

.main_img:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s;
}

.main_img:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}

.main_img:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
}

@keyframes anime {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    25% {
        opacity: 0;
        transform: scale(1.2);
        z-index: 9;
    }

    100% {
        opacity: 0
    }
}

.top_eyeCatch {
    position: relative;
}

.eyeCatch_comment {
    position: absolute;
    left: 13%;
    bottom: 7%;
    color: #fff;
    font-size: 2.8em;
    text-shadow: #000 1px 0 2px;
    z-index: 9;
    letter-spacing: 11px;
    font-weight: 700;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.top_about_container {
    background: url(../img/top_screen02.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    position: relative;
}

.top_about_container h1 {
    font-weight: 700;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 2.8em;
    text-align: center;
    padding-top: 3em;
    letter-spacing: 8px;
}

.top_about_inner {
    width: 56%;
    margin: 8em auto 13em;
}

.top_about_inner h2 {
    width: 64%;
    font-size: 1.2em;
    letter-spacing: 4px;
    line-height: 1.3;
}

.top_wave {}

.top_merit_container {
    background-color: #f7f5f2;
}

.top_merit_inner {
    max-width: 1300px;
    width: 56%;
    margin: 0 auto;
    padding: 3em 0;
}

.circle_title {
    width: 170px;
    margin: 0 auto;
}

.merit_flex {
    justify-content: space-between;
}

.merit_flex_inner {
    width: calc(100% / 3 - 22px);
    background: #fff;
    box-shadow: 7px 7px 0px rgba(188, 188, 188, .6);
    border-radius: 25px 0 25px 0;
    padding: 19px 16px 26px;
}

.merit_img_box {
    position: relative;
    width: 100%;
    height: 24vh;
}

.img_center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.merit_img_balance {
    width: 10.417vw;
}

.merit_img_pc {
    width: 11.458vw;
}

.merit_img_light {
    width: 6.51vw;
}

.merit_title {
    font-size: 1.146vw;
    text-align: center;
    line-height: 1.4;
}

.merit_comment {
    margin-top: 1em;
    font-size: 0.833vw;
    letter-spacing: 2px;
}

.bottom_wave {}

.top_jobInfo_container {
    margin: 7em 0;
}

.jobInfo_comment {
    text-align: center;
    font-size: 1.458vw;
    letter-spacing: 4px;
    line-height: 1.5;
    margin-top: 3em;
}

.back_orange_link {
    text-align: center;
    margin: 3em 0 10em;
}

.big_orange_link {
    background: url(../img/orange_oval.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.458vw;
    width: 35.417vw;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 2.76vw 1.042vw;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.big_orange_link::after {
    content: "→";
    position: absolute;
    right: 50px;
}

.big_orange_link:hover {
    opacity: .8;
}

.big_orange_link:hover::after {
    animation: anim 1s;
}

.top_oneDay_container {
    width: 56%;
    background: #f7f5f2;
    margin: 16em auto;
    border-radius: 30px;
}

.top_inter {}

.oneDay_flex {
    align-items: center;
}

.oneDay_left {
    width: 50%;
    padding: 2.24vw;
    margin: 3em 0;
}

.oneDay_left img {}

.oneDay_right {
    width: 50%;
}

.oneDay_right p {
    margin: 3em 0;
    text-align: center;
    font-size: 1.146vw;

}

.check_btn {
    text-align: center;
}

.green_btn_link {
    background: url(../img/green_square.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.042vw;
    width: 14.323vw;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 0.729vw 0.521vw;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.green_btn_link::after {
    content: "→";
    position: absolute;
    right: 25px;
}

.green_btn_link:hover {
    opacity: .8;
}

.green_btn_link:hover::after {
    animation: anim 1s;
}

.top_interview_container {}

.interview_comment {
    text-align: center;
    font-size: 1.458vw;
    letter-spacing: 3px;
    margin: 5em 0 3em;
}

.interview_flex {
    justify-content: center;
    width: 56%;
    margin: 0 auto;
}

.interview_inner {
    width: calc(100% / 3);
    position: relative;
}

.interview_img {}

.interview_title {}

.blue_circle_rightBottom {
    position: absolute;
    right: 3%;
    top: 78%;
}

.teacher {
    position: relative;
    display: inline-block;
}

.blue_circle {
    width: 143px;
}

.teacher p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_entry_container {
    margin: 14em 0;
}

/*----------------------------------------------

philosophy

------------------------------------------------*/
.child_eyeCatch {
    position: relative;
}

.c_eyeCatch_img {
    width: 100%;
}

.c_eyeCatch_comment {
    text-shadow: 3px 3px 2px rgba(0, 0, 0, .6);
    color: #fff;
    position: absolute;
    bottom: 12%;
    right: 17%;
    font-size: 4em;
    letter-spacing: 7px;
    font-weight: 700;
}

.phi_top_container {
    width: 56%;
    margin: 7em auto;
}

.phi_top_comment {
    font-size: 1.146vw;
    margin: 3em auto;
    letter-spacing: 2px;
    line-height: 1.3;
}

.company {
    margin-bottom: 10em;
}

.company_flex {
    width: 56%;
    margin: 0 auto 4em;
    border-bottom: 2px dashed #ccc;
    padding: 0 0 4em;
    align-items: center;
}

.company_flex:last-child {
    border-bottom: none;
}

.com_left {
    width: 50%;
}

.com_img {
    width: 50%;
    margin: 0 auto;
}

.com_text {
    width: 60%;
    margin: 0 auto;
}

.com_right {
    width: 50%;
}

.com_right p {
    font-size: 1.042vw;
    letter-spacing: 2px;
    line-height: 1.2;
}

/*----------------------------------------------

recruitment

------------------------------------------------*/
.rec_link_box {
    width: 56%;
    margin: 6em auto 13em;
}

.orange_link {
    width: calc(100% / 3);
    text-align: center;
}

.orange_link a {
    background: url(../img/orange_oval.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.146vw;
    width: 91%;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 20px 20px;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.orange_link a:hover {
    opacity: .8;
}

.white_box {}

.rec_shadow_box {
    width: 56%;
    margin: 13em auto;
    box-shadow: 7px 7px 10px rgba(188, 188, 188, .1), 1px 1px 7px rgba(188, 188, 188, .8);
    border-radius: 15px;
    padding: 2em;
    background-color: #fff;
}

.shadow_title {
    font-size: 1.406vw;
    letter-spacing: 3px;
    text-align: center;
}

.home_flex {
    margin-bottom: 2em;
}

.home_left {
    width: 50%;
}

.home_right {
    width: 50%;
}

.home_img_01 {
    width: 60%;
    margin: 5% 5% 0 auto;
}

.home_img_02 {
    width: 63%;
    margin: 13% 0 0 5%;
}

.rec_table {
    width: 100%;
    border-collapse: collapse;
}

.rec_table tr {
    border-bottom: 1px dashed #ccc;
}

.rec_table tr td {
    height: 3.49vw;
    vertical-align: middle;
    font-size: 0.833vw;
}

.rec_list_title {
    padding-left: 15px;
    width: 9.375vw;
}

.rec_list_comment {}

.green_link {
    margin: 5em auto 1em;
    text-align: center;
}

.green_link a {
    background: url(../img/green_square.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.042vw;
    width: 14.323vw;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 0.729vw 0.521vw;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.green_link a::after {
    content: "→";
    position: absolute;
    right: 25px;
}

.green_link a:hover {
    opacity: .8;
}

.green_link a:hover::after {
    animation: anim 1s;
}

.rec_wave_top {}

.rec_wave_bottom {}

.gray_box {
    background: #f7f5f2;
    padding: 13em 0;
}

.dax_back_img {
    margin: 0 auto !important;
    background-image: url(../img/recruit_03.jpg);
    background-position: bottom 31% right 10%;
    background-repeat: no-repeat;
    background-size: 68%;
}

.day_flex {}

.day_left {}

.day_right {}

.training_flex {}

.training_left {
    width: 45%;
}

.training_right {
    width: 55%;
}

.training_img_01 {
    margin-top: 2em;
    padding-right: 2em;
}

/*----------------------------------------------

interview

------------------------------------------------*/
.int_top_container {
    margin: 6em auto;
}

.interview_container {
    margin-bottom: 18em;
}

.interview_photo {
    position: relative;
}

.interview_photo img {
    width: 30%;
    margin: 5em auto;
}

.blue_square {
    background: #edf7f9;
    position: absolute;
    padding: 3em 2em;
    bottom: -14%;
    right: 30%;
}

.int_name_big {
    font-weight: 700;
    font-size: 1.25vw;
    text-align: center;
    margin-bottom: 1em;
}

.int_name_job {
    text-align: center;
    font-size: 0.833vw;
}

.int_interview_inner {
    width: 56%;
    margin: 8em auto;
}

.int_interview_flex {}

.int_left {
    padding: 1em 2em;
    border-right: 2px dashed #ccc;
}

.int_right {
    padding: 1em 2em;
}

.orange_title {
    font-size: 1.302vw;
    color: #fba66a;
}

.int_interview_comment {
    font-size: 0.833vw;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 1em 0 2em;
}

.int_message {
    background: #f7f5f2;
    padding: 2em;
    width: 85%;
    margin: 2em auto;
}

.int_message_title {
    position: relative;
    text-align: center;
    font-size: 1.302vw;
    margin-bottom: 1em;
}

.int_message_title::before {
    background-color: #9eeb53;
    border-radius: 5px;
    bottom: -12px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 125px;
}

.int_message_comment {
    font-size: 0.781vw;
}

/*----------------------------------------------

day_flow

------------------------------------------------*/
.homeCare_oneDay {
    width: 56%;
    min-width: 1000px;
    margin: 5em auto;
    border: 1px solid #fba66a;
    border-radius: 25px;
}

.oneDay_head {
    background: #edf7f9;
    border-radius: 25px 25px 0 0;
    padding: 7em 0 4em;
    position: relative;
}

.head_img {
    width: 260px;
    margin: 0 auto;
}

.fukidashi {
    width: 12.5vw;
    position: absolute;
    right: 100px;
    top: 3px;
}

.oneDay_inner {
    width: 820px;
    margin: 8em auto;
    position: relative;
}

.oneDay_inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-right: 1px dashed #eee;
    height: 100%;
}

.oneDay_inner .block {
    width: 410px;
    padding: 0 40px;
    margin-bottom: 40px;
    position: relative;
    margin-left: auto;
}

.oneDay_inner .time {
    font-family: "Montserrat", sans-serif;
    font-size: 1.094vw;
    margin-bottom: 30px;
    position: relative;
}

.oneDay_inner .time::before {
    content: "";
    position: absolute;
    top: 35px;
    right: -40px;
    width: 410px;
    height: 1px;
    background: #9eeb53;
}

.oneDay_inner .time::after {
    content: "";
    position: absolute;
    left: -50px;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9eeb53;
    z-index: 5;
}

.oneDay_inner .oneDay_text {
    font-size: 0.833vw;
}

.oneDay_inner .block:nth-of-type(even) {
    padding: 0 50px;
    margin-left: 0;
}

.oneDay_inner .block:nth-of-type(even) .time::before {
    background: #ffcba6;
    right: -50px;
}

.oneDay_inner .block:nth-of-type(even) .time::after {
    background: #ffcba6;
    left: auto;
    right: -60px;
}

.center_box {}

.dayCare_oneDay {
    background: #f7f5f2;
    width: 56%;
    min-width: 1000px;
    border-radius: 25px;
    margin: 7em auto;
    padding: 5em 0;
}

.white_back {
    width: 85%;
    min-width: 900px;
    background-color: #fff;
    margin: 4em auto;
    padding: 4em 2em;
}

.m_2em {
    margin: 2em auto;
}

.training_oneDay {
    width: 56%;
    min-width: 1000px;
    border: 1px solid #9eeb53;
    border-radius: 25px;
    margin: 8em auto;
    padding: 5em 0;
}

/*----------------------------------------------

entry

------------------------------------------------*/
.entry_container {
    margin: 8em auto;
    width: 56%;
    text-align: center;
}

.entry_comment {
    margin: 3em auto;
    display: inline-block;
    text-align: left;
    font-size: 0.938vw;
    letter-spacing: 1px;
    line-height: 1.3;
}

.caution_container {
    border: 1px solid #ccc;
    width: 80%;
    padding: 2em;
    margin: 0 auto 7em;
}

.caution_title {
    font-size: 0.833vw;
    margin-bottom: 1em;
}

.text_gray {
    color: #b3b3b3;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.2;
    font-size: 0.833vw;
}

.entryFrom_container {
    width: 80%;
    margin: 2em auto;
}

.form_flex {
    width: 100%;
    border-bottom: 2px dashed #ccc;
    text-align: left;
}

.form_left {
    display: flex;
    width: 37%;
    font-size: 1.042vw;
    padding: 3% 0 3% 5%;
    align-items: flex-start;
}

.form_title {}

.require {
    color: #fba66a;
    border: 1px solid;
    font-size: 0.729vw;
    padding: 3px;
    margin-left: 6%;
}

.form_right {
    width: 63%;
    padding: 3% 0 3% 5%;
    font-size: 0.833vw;
}

.radio_label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 7px;
}

.option_input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 22px;
    border: none;
    outline: none;
    appearance: none;
}

.option_input::before,
.option_input::after {
    position: absolute;
    content: '';
    border-radius: 50%;
}

.option_input::before {
    width: 20px;
    height: 20px;
    background: #ffffff;
}

.option_input::after {
    display: block;
    width: 16px;
    height: 16px;
    background: #fba66a;
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: scale(0, 0);
}

.option_input:checked:after {
    transform: scale(1, 1);
}

.half_input {
    border: 1px #ccc solid;
    padding: 8px;
    width: 60%;
}

.birth_flex {}

.birth_input {
    border: 1px #ccc solid;
    padding: 5px;
    width: calc(100% / 4 - 35px);
    margin-right: 2px;
}

.birth_flex label {
    margin-right: 5px;
}

.full_input {
    border: 1px #ccc solid;
    padding: 8px;
    width: 93%;
}

.memo {
    width: 93%;
    border: 1px solid #ccc;
    padding: 8px;
}

.error_msg {
    color: #e8383d;
    font-size: 0.729vw;
}

.btn {
    text-align: center;
    margin: 3em 0 2em;
}

.btn {
    background: url(../img/orange_oval.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.198vw;
    width: 24.479vw;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 1.823vw 1.042vw;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.btn::after {
    content: "→";
    position: absolute;
    right: 25px;
}

.btn:hover {
    opacity: .8;
}

.btn:hover::after {
    animation: anim 1s;
}

.confirm_btn_container {}

.btn {}

.confirm_btn {}

.back_button {

    text-align: center;
}

.back_button a {
    background: url(../img/orange_oval.svg);
    background-repeat: no-repeat;
    display: inline-block;
    color: #fff;
    font-size: 1.042vw;
    width: 18.75vw;
    font-weight: 400;
    letter-spacing: 5px;
    padding: 1.302vw 1.042vw;
    border-radius: 60px;
    background-size: cover;
    position: relative;
}

.back_button a::after {
    content: "→";
    position: absolute;
    right: 25px;
}

.back_button a:hover {
    opacity: 0.8;
}

.back_button a:hover::after {
    animation: anim 1s;
}


/*----------------------------------------------

responsive

------------------------------------------------*/


.pc {
    display: block;
}

.sp {
    display: none;
}

@media (max-width: 560px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .eyeCatch_comment {
        left: 5%;
        font-size: 32px;
        letter-spacing: 8px;
    }

    .top_about_container h1 {
        font-size: 28px;
        padding-top: 2em;
        letter-spacing: 8px;
    }

    .top_about_container {
        background: url(../img/top_screen.png);
        background-position: bottom right;
        background-size: 100%;
    }

    .top_about_inner {
        width: 90%;
        margin: 5em auto;
    }

    .top_about_inner h2 {
        width: 100%;
        font-size: 14px;
        letter-spacing: 3px;
    }

    .top_merit_inner {
        width: 90%;
    }

    .circle_title {
        width: 120px;
    }

    .merit_flex {
        margin: 3em auto;
        flex-direction: column;
    }

    .merit_flex_inner {
        width: 100%;
        background: #fff;
        box-shadow: 4px 4px 0px rgba(188, 188, 188, .6);
        border-radius: 25px 0 25px 0;
        padding: 10px 15px 25px;
        margin-bottom: 20px;
    }

    .merit_img_box {
        height: 10vh;
    }

    .merit_img_box {
        height: 27vh;
    }

    .merit_img_balance {
        width: 175px;
    }

    .merit_title {
        font-size: 23px;
    }

    .merit_comment {
        font-size: 14px;
    }

    .merit_img_pc {
        width: 175px;
    }

    .merit_img_light {
        width: 107px;
    }

    .jobInfo_comment {
        font-size: 16px;
    }

    .big_orange_link {
        font-size: 16px;
        width: 300px;
        padding: 24px 15px;
    }

    .big_orange_link::after {
        right: 25px;
    }

    .top_oneDay_container {
        width: 90%;
        margin: 10em auto;
    }

    .oneDay_right p {
        margin: 2em 0;
        font-size: 14px;
    }

    .green_btn_link {
        font-size: 13px;
        width: 150px;
        padding: 8px 5px;
    }

    .green_btn_link::after {
        right: 15px;
    }

    .interview_comment {
        font-size: 16px;
        margin: 3em 0 3em;
    }

    .interview_flex {
        width: 90%;
    }

    .blue_circle {
        width: 80px;
    }

    .teacher p {
        font-size: 13px;
    }

    .top_entry_container {
        margin: 10em 0;
    }

    .copyright {
        font-size: 12px;
    }

    .cp_fullscreenmenu .menu ul {
        width: 90%;
    }

    .cp_fullscreenmenu .menu ul li a {
        font-size: 20px;
    }

    .menu_button {
        bottom: 18%;
    }

    .menu_button a {
        font-size: 16px;
        width: 315px;
        padding: 26px 10px;
    }

    .c_eyeCatch_comment {
        right: 5%;
        font-size: 25px;
    }

    .phi_top_container {
        width: 90%;
        margin: 5em auto;
    }

    .phi_top_comment {
        font-size: 16px;
        margin: 2em auto;
    }

    .company_flex {
        width: 90%;
        margin: 0 auto 3em;
        padding: 0 0 3em;
        flex-direction: column;
    }

    .com_left {
        width: 100%;
        margin-bottom: 1em;
    }

    .com_right {
        width: 100%;
    }

    .com_right p {
        font-size: 14px;
    }

    .rec_link_box {
        width: 100%;
        margin: 3em auto 3em;
    }

    .rec_link_box {
        width: 100%;
        margin: 3em auto 3em;
    }

    .orange_link a {
        font-size: 8px;
        padding: 15px 10px;
    }

    .rec_shadow_box {
        width: 90%;
        margin: 5em auto;
    }

    .shadow_title {
        font-size: 20px;
    }

    .home_flex {
        margin-bottom: 1em;
        flex-direction: column-reverse;
    }

    .home_left,
    .home_right {
        width: 100%;
    }

    .rec_table tr td {
        height: 40px;
        vertical-align: middle;
        font-size: 12px;
    }

    .rec_list_title {
        padding-left: 10px;
        width: 85px;
    }

    .green_link {
        margin: 2em auto 1em;
    }

    .green_link a {
        font-size: 16px;
        width: 250px;
        padding: 14px 10px;
    }

    .gray_box {
        padding: 5em 0;
    }

    .day_flex {
        flex-direction: column;
    }

    .training_flex {
        flex-direction: column-reverse;
    }

    .training_left,
    .training_right {
        width: 100%;
    }

    .training_img_01 {
        padding-right: 0;
    }

    .int_top_container {
        margin: 3em auto;
    }

    .interview_photo img {
        width: 60%;
        margin: 2em auto;
    }

    .blue_square {
        background: #edf7f9;
        position: absolute;
        padding: 35px 15px;
        bottom: -24%;
        right: 6%;
    }

    .int_name_big {
        font-size: 16px;
    }

    .int_name_job {
        font-size: 14px;
    }

    .int_interview_inner {
        width: 90%;
        margin: 4em auto;
    }

    .orange_title {
        font-size: 14px;
    }

    .int_left,
    .int_right {
        padding: 5px;
    }

    .int_interview_comment {
        font-size: 12px;
    }

    .int_message {
        padding: 20px;
        width: 100%;
    }

    .int_message_title {
        font-size: 14px;
        margin-bottom: 2.2em;
    }

    .int_message_comment {
        font-size: 12px;
    }

    .interview_container {
        margin-bottom: 10em;
    }

    .homeCare_oneDay {
        width: 90%;
        min-width: 0;
    }

    .oneDay_head {
        padding: 7em 0 2em;
    }

    .head_img {
        width: 200px;
    }

    .fukidashi {
        width: 145px;
        right: 5px;
    }

    .oneDay_inner {
        width: 85%;
        margin: 3em auto;
        position: relative;
    }

    .oneDay_inner .block {
        width: 100%;
        padding: 0 0 0 4vw !important;
        margin-bottom: 25px;
    }

    .oneDay_inner .time {
        font-size: 16px;
        padding-left: 5%;
        margin-bottom: 20px;
    }

    .oneDay_inner .time::before {
        left: 0 !important;
        top: 26px;
        width: 100%;
    }

    .oneDay_inner .time::after {
        width: 14px;
        height: 14px;
        right: auto;
        left: -13px;
        top: 19px;
    }

    .oneDay_inner .block:nth-of-type(even) .time::after {
        left: -13px;
    }

    .oneDay_inner .oneDay_text {
        font-size: 16px;
    }

    .oneDay_inner::after {
        left: 3%;
    }

    .dayCare_oneDay {
        width: 90%;
        margin: 7em auto;
        padding: 2em 0;
    }

    .white_back {
        width: 90%;
        min-width: 0;
        margin: 3em auto;
        padding: 1em 0;
    }

    .training_oneDay {
        width: 90%;
        min-width: 0;
        margin: 5em auto;
        padding: 3em 0;
    }

    .entry_container {
        margin: 3em auto;
        width: 90%;
    }

    .entry_comment {
        font-size: 13px;
    }

    .caution_container {
        width: 100%;
        margin: 0 auto 5em;
    }

    .caution_title {
        font-size: 14px;
    }

    .text_gray {
        font-size: 13px;
    }

    .entryFrom_container {
        width: 100%;
    }

    .form_flex {
        width: 100%;
        flex-direction: column;
    }

    .form_left {
        width: 100%;
        font-size: 16px;
        padding: 3% 0 0 5%;
        align-items: center;
    }

    .require {
        font-size: 14px;
    }

    .form_right {
        width: 100%;
        padding: 3% 0 3% 5%;
        font-size: 16px;
    }

    .half_input {
        width: 93%;
    }

    .birth_input {
        width: calc(100% / 3 - 35px);
    }

    .btn {
        font-size: 16px;
        width: 300px;
        padding: 21px 5px;
    }

    .error_msg {
        font-size: 13px;
        margin-top: 4px;
    }

    .back_button a {
        font-size: 15px;
        width: 260px;
        padding: 18px 10px;
    }

}