:root {
    --color-accent: #BF1A20;
    --color-bg: #F4F2EC;
    --color-gradation: linear-gradient(90deg, #F15A24, #BF1A20);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-block-size: 100svb;
    min-height: 100svh;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}
p, h1, h2, h3, h4, h5, h6, li {
    font-weight: 400;
    overflow-wrap: break-word;
}
th, td {
    font-weight: 400;
}
ul, ol {
    list-style: none;
}
img, svg, video {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font-family: inherit;
    color: inherit;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
}
.display_tb {
    display: none;
}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}
@media (width > 600px) {
    .display_sp {
        display: none;
    }
    .display_pc {
        display: none;
    }
    .display_tb {
        display: block;
    }
}
@media (width > 1024px) {
    .display_sp {
        display: none;
    }
    .display_tb {
        display: none;
    }
    .display_pc {
        display: block;
    }
}
html {
    scroll-padding-top: 0;
}
body {
    font-size: 3vw;
    font-family: "century-gothic", noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    color: #333;
    background-color: #fff;
}
a {
    color: #171717;
    transition: opacity 0.5s;
}
a:hover {
    opacity: 0.5;
}
p {
    margin-bottom: 3vw;
}
.inner {
    width: 90%;
    margin-inline: auto;
}
.fade_left,
.fade_right,
.fade_up {
    opacity: 0;
    transition: transform 1s, opacity 1s;
}
.fade_left.active,
.fade_right.active,
.fade_up.active {
    opacity: 1;
    transform: translate(0, 0);
}
.fade_left {
    transform: translate(10vw, 0);
}
.fade_right {
    transform: translate(-10vw, 0);
}
.fade_up {
    transform: translate(0, 10vw);
}
section {
    padding: 15vw 0;
    overflow: hidden;
}
.section_title {
    text-align: center;
    margin-bottom: 7.5vw;
}
.section_title h2 {
    font-size: 6.5vw;
    font-weight: 900;
    line-height: 1;
}
.section_title p {
    margin-bottom: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 4vw;
}
.section_description {
    text-align: center;
    margin-bottom: 7.5vw;
}
.section_description p {
    display: inline-block;
    text-align: left;
    font-weight: 500;
}
.section_description p span {
    background-color: yellow;
    padding: 1vw 1.5vw;
    margin: 0 0.5vw;
    border-radius: 5vw;
    border: 1px solid #e6e600;
}
.page header {
    background-color: var(--color-accent);
    height: 11vw;
}
#header_logo {
    display: none;
    position: absolute;
    top: 2.5vw;
    left: 5vw;
    width: 16vw;
    height: 6vw;
    z-index: 1;
}
#header_logo a {
    display: block;
    height: 100%;
}
#header_logo a img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#header_menu {
    position: fixed;
    bottom: 1vw;
    width: 100%;
    z-index: 2;
}
#header_menu ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 1vw;
}
#header_menu ul li {
    width: calc((100% - 4vw) / 3);
}
#header_menu ul li a {
    display: grid;
    place-content: center;
    height: 100%;
    white-space: nowrap;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 1vw;
    padding: 1.5vw 0;
    font-size: 2.5vw;
    font-weight: bold;
}
#header_menu ul li:last-child a {
    color: var(--color-accent);
    background-color: #fff;
    transition: 0.5s;
}
#header_menu ul li:last-child a:hover {
    opacity: 1;
    color: #fff;
    background-color: #4cc764;
}
#top {
    position: relative;
    background-image: url(../img/home_bg.jpg);
    background-size: 100% 100%;
    height: 100svh;
    padding: 0;
    overflow: hidden;
}
#top ._txt {
    text-align: center;
    margin-top: 12.5vw;
}
#top ._txt p {
    font-size: 7vw;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2vw;
    background-image: linear-gradient(#fff 25%, #C7B299);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1vw 1vw 1vw black);
    transition-delay: 1.25s;
}
#top ._txt h1 {
    font-size: 12.5vw;
    font-weight: 900;
    line-height: 1.15;
    background-image: linear-gradient(#fff 0%, #C7B299 33.333%, #fff 33.333%, #C7B299 66.666%, #fff 66.666%, #C7B299 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1vw 1vw 1vw black);
    transition-delay: 1.75s;
}
#top ._txt h1 span {
    font-size: 17.5vw;
}
#top ._img ._therapist {
    position: absolute;
    bottom: 0;
    width: 33vw;
}
#top ._img #top_therapist_01 {
    left: 1vw;
    bottom: 30vw;
    width: 47vw;
    transition-delay: 0.5s;
}
#top ._img #top_therapist_02 {
    left: 35vw;
    bottom: 22vw;
    width: 36vw;
    transition-delay: 0.625s;
}
#top ._img #top_therapist_03 {
    right: 2vw;
    bottom: 27vw;
    width: 41vw;
    transition-delay: 0.75s;
}
#top ._img #top_therapist_04 {
    left: 4vw;
    bottom: -2vw;
    transition-delay: 0.25s;
}
#top ._img #top_therapist_05 {
    left: 30vw;
    bottom: -7vw;
    width: 40vw;
    transition-delay: 0.375s;
}
#top ._img #top_therapist_06 {
    bottom: -5vw;
    right: 4vw;
    width: 35vw;
    transition-delay: 0.5s;
}
#here_it_is {
    padding: 0;
}
#here_it_is img {
    width: 100%;
}
#philosophy {
    padding-bottom: 12.5vw;
}
#philosophy .section_body p {
    text-align: center;
    font-weight: 600;
}
#commitment {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/commitment_bg.jpg");
    background-size: 100%, 200%;
    background-position: 0 0, bottom center;
    background-repeat: no-repeat;
}
#commitment .section_title h2 {
    color: #fff;
}
#commitment .section_title p {
    color: rgba(255, 255, 255, 0.333);
}
#commitment .section_body ._txt {
    margin-bottom: 10vw;
}
#commitment .section_body ._txt p {
    color: #fff;
    font-weight: 600;
}
#commitment .section_body ._txt p br {
    display: none;
}
#commitment .section_body ._item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1vw;
}
#commitment .section_body ._item span {
    display: block;
    width: 32%;
    line-height: 1;
    font-size: 3.25vw;
    white-space: nowrap;
    text-align: center;
    background-image: var(--color-gradation);
    color: #fff;
    font-weight: bold;
    padding: 2.5vw 1vw;
    border-radius: 5vw;
    background-color: var(--color-accent);
}
#commitment .section_body ._item span:nth-child(2) {
    transition-delay: 0.125s;
}
#commitment .section_body ._item span:nth-child(3) {
    transition-delay: 0.25s;
}
#commitment .section_body ._item span:nth-child(4) {
    transition-delay: 0.375s;
}
#commitment .section_body ._item span:nth-child(5) {
    transition-delay: 0.5s;
}
#commitment .section_body ._item span:nth-child(6) {
    transition-delay: 0.625s;
}
#commitment .section_body ._item span:nth-child(7) {
    transition-delay: 0.75s;
}
#commitment .section_body ._item span:nth-child(8) {
    transition-delay: 0.875s;
}
#commitment .section_body ._item span:nth-child(9) {
    transition-delay: 1s;
}
#commitment .section_body ._item span:nth-child(10) {
    transition-delay: 1.125s;
}
#commitment .section_body ._item span:nth-child(11) {
    transition-delay: 1.25s;
}
#commitment .section_body ._item span:nth-child(12) {
    transition-delay: 1.375s;
}
#commitment .section_body ._item::after {
    content: "";
    display: block;
    width: 32%;
}
#message {
    background-size: 40%, 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 0 left -10.5vw, bottom left;
    padding-bottom: 10vw;
}
#message .section_body ._head {
    text-align: center;
    margin-bottom: 7.5vw;
}
#message .section_body ._head p {
    font-weight: 500;
    margin-bottom: 0;
}
#message .section_body ._head h3 {
    font-size: 5vw;
    font-weight: 700;
}
#message .section_body ._txt {
    margin-left: 25vw;
}
#message .section_body ._txt p {
    font-weight: 500;
}
#message .section_body ._txt p br {
    display: none;
}
#message .section_body ._sign {
    margin-left: 25vw;
    text-align: right;
    font-weight: 500;
}
#features {
    background-image: linear-gradient(-45deg, #ff3130 25%, #ff5a5a 25%, #ff5a5a 50%, #ff3130 50%, #ff3130 75%, #ff5a5a 75%, #ff5a5a);
    background-size: 5vw 5vw;
}
#features .inner .section_title h2 {
    color: #fff;
}
#features .inner .section_title p {
    color: rgba(255, 255, 255, 0.333);
}
#number {
    background-color: var(--color-accent);
    color: #fff;
    padding-bottom: 0;
}
#number .inner .section_title p {
    color: rgba(255, 255, 255, 0.333);
}
#number .section_body ._item {
    position: relative;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    height: 61.8vw;
}
#number .section_body ._item ._txt {
    font-size: 4.5vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}
#number .section_body ._item ._txt span {
    font-size: 10vw;
    font-weight: 900;
}
#number .section_body ._item ._txt span._survey {
    display: block;
    margin-top: 1vw;
    font-size: 3vw;
    font-weight: normal;
}
#number .section_body ._item svg {
    position: absolute;
    transform: rotate(-90deg);
    inset: 0;
    width: 52.5vw;
    margin: auto;
}
#number .section_body ._item svg circle {
    stroke: #fff;
    stroke-width: 1px;
    fill: transparent;
    width: 100%;
    height: 100%;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}
#number .section_body ._item svg.active circle {
    animation-name: motion_circle;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
}
@keyframes motion_circle {
    0% {
        stroke-dashoffset: 600;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
#career {
    background-image: linear-gradient(#fff 0, #fff 70%, rgba(255, 255, 255, 0)), url(../img/career_bg.jpg);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 150%;
    background-position: bottom center, bottom center;
}
#career .section_body ._career {
    margin-bottom: 5vw;
}
#career .section_body ._career ._item {
    position: relative;
    padding: 3vw 5vw;
    background-color: #BF1A20;
    border-radius: 3vw;
    margin-bottom: 5vw;
}
#career .section_body ._career ._item ._position {
    text-align: center;
    font-size: 3.75vw;
    font-weight: bold;
    color: #BF1A20;
    background-color: #fff;
    width: 50vw;
    margin: 0 auto 3vw;
    border-radius: 5vw;
}
#career .section_body ._career ._item ._desc {
    color: #fff;
}
#career .section_body ._career ._item::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(50% - 4vw);
    background-color: #BF1A20;
    width: 8vw;
    height: 3vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: 1s;
}
#career .section_body ._career ._item.active::before {
    bottom: -2.5vw;
    transition-delay: 1s;
}
#career .section_body ._career ._item:nth-last-child(1) {
    background-color: #BF1A20;
}
#career .section_body ._career ._item:nth-last-child(1) ._position {
    color: #BF1A20;
}
#career .section_body ._career ._item:nth-last-child(1)::before {
    content: none;
}
#career .section_body ._career ._item:nth-last-child(2) {
    background-color: #C9301F;
}
#career .section_body ._career ._item:nth-last-child(2) ._position {
    color: #C9301F;
}
#career .section_body ._career ._item:nth-last-child(2)::before {
    background-color: #C9301F;
}
#career .section_body ._career ._item:nth-last-child(3) {
    background-color: #D2441F;
}
#career .section_body ._career ._item:nth-last-child(3) ._position {
    color: #D2441F;
}
#career .section_body ._career ._item:nth-last-child(3)::before {
    background-color: #D2441F;
}
#career .section_body ._career ._item:nth-last-child(4) {
    background-color: #DC5A1F;
}
#career .section_body ._career ._item:nth-last-child(4) ._position {
    color: #DC5A1F;
}
#career .section_body ._career ._item:nth-last-child(4)::before {
    background-color: #DC5A1F;
}
#career .section_body ._career ._item:nth-last-child(5) {
    background-color: #E8741F;
}
#career .section_body ._career ._item:nth-last-child(5) ._position {
    color: #E8741F;
}
#career .section_body ._career ._item:nth-last-child(5)::before {
    background-color: #E8741F;
}
#career .section_body ._career ._item:nth-last-child(6) {
    background-color: #F7931E;
}
#career .section_body ._career ._item:nth-last-child(6) ._position {
    color: #F7931E;
}
#career .section_body ._career ._item:nth-last-child(6)::before {
    background-color: #F7931E;
}
.career_img {
    margin-bottom: 7.5vw;
}
#career .section_body ._raise {
    border-radius: 3vw;
    background-color: #fff;
    overflow: hidden;
}
#career .section_body ._raise ._head {
    background-color: var(--color-accent);
    padding: 3vw;
}
#career .section_body ._raise ._head h3 {
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 5vw;
}
#career .section_body ._raise ._body {
    padding: 6vw 5vw 3vw;
}
#career .section_body ._raise ._body ._system {
    margin-bottom: 5vw;
}
#career .section_body ._raise ._body ._system ._title {
    text-align: center;
    margin-bottom: 1vw;
}
#career .section_body ._raise ._body ._system ._title h4 {
    position: relative;
    display: inline-block;
    font-size: 4.5vw;
    font-weight: 900;
}
#career .section_body ._raise ._body ._system ._title h4::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    margin: auto;
}
#career .section_body ._raise ._body ._system._michelin h4::before {
    background-image: url(../img/career_star.svg);
    width: 5.5vw;
    height: 5.5vw;
    left: -8vw;
    top: -0.5vw;
}
#career .section_body ._raise ._body ._system._incentive h4::before {
    background-image: url(../img/career_heart.svg);
    width: 5vw;
    height: 4.5vw;
    left: -7.5vw;
}
#voice {
    background-color: var(--color-bg);
}
#voice .section_body ._staff ._img {
    position: relative;
    width: 80vw;
    margin: 0 auto 11vw;
}
#voice .section_body ._staff ._img span {
    position: absolute;
    bottom: -3.5vw;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--color-accent);
    color: #fff;
    font-weight: bold;
    font-size: 3.5vw;
    padding: 1.25vw;
    width: 61.8vw;
    text-align: center;
    border-radius: 1vw;
}
#voice .section_body ._staff ._txt ._box {
    overflow: hidden;
    margin-bottom: 10vw;
}
#voice .section_body ._staff ._txt ._box ._title {
    position: relative;
    display: inline-block;
    font-size: 3.5vw;
    font-weight: bold;
    margin-bottom: 3vw;
}
#voice .section_body ._staff ._txt ._box ._title::after {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--color-accent);
    top: 50%;
    left: calc(100% + 2vw);
    width: 0;
    margin: auto;
    transition: 2s;
}
#voice .section_body ._staff ._txt ._box ._title.active::after {
    transition-delay: 0.5s;
    width: 80vw;
}
#schedule .section_body ._item {
    position: relative;
    border-radius: 3vw;
    background-color: var(--color-bg);
    margin-bottom: 5vw;
}
#schedule .section_body ._item ._head {
    background-color: var(--color-accent);
    border-top-left-radius: 3vw;
    border-top-right-radius: 3vw;
    padding: 1vw 1vw 1vw 5vw;
    display: flex;
    font-size: 4vw;
    font-weight: 600;
    color: #fff;
    -moz-column-gap: 3vw;
    column-gap: 3vw;
}
#schedule .section_body ._item ._body {
    padding: 3vw 5vw 4vw;
}
#schedule .section_body ._item ._body br {
    display: none;
}
#schedule .section_body ._item ._body._notxt {
    text-align: center;
    color: #EDE8DD;
    font-size: 9vw;
    font-weight: 900;
    line-height: 1;
}
#schedule .section_body ._item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(50% - 4vw);
    background-color: var(--color-bg);
    width: 8vw;
    height: 3vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: 1s;
}
#schedule .section_body ._item.active::after {
    bottom: -2.9vw;
    transition-delay: 1s;
}
#schedule .section_body ._item:last-child::after {
    content: none;
}
#flow {
    background-image: var(--color-gradation);
}
#flow .section_title h2 {
    color: #fff;
}
#flow .section_title p {
    color: #fff;
}
#flow .section_description p {
    color: #fff;
}
#flow .section_body ._item {
    position: relative;
    background-color: #fff;
    border-radius: 1.5vw;
    padding: 9vw 5vw 5vw;
    text-align: center;
    margin-bottom: 9vw;
}
#flow .section_body ._item ._step {
    position: absolute;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 5vw;
    font-weight: bold;
    border-radius: 6vw;
    line-height: 1.4;
    width: 33vw;
    top: -5vw;
    left: 0;
    right: 0;
    margin: auto;
}
#flow .section_body ._item ._step span {
    font-size: 7vw;
    margin-left: 1vw;
}
#flow .section_body ._item ._txt ._action {
    font-size: 3.5vw;
    font-weight: 500;
}
#flow .section_body ._item ._txt ._action br {
    display: none;
}
#flow .section_body ._item::before {
    position: absolute;
    content: "";
    left: 10vw;
    top: 100%;
    width: 1.5vw;
    height: 0;
    background-color: #fff;
    transition: 1s;
}
#flow .section_body ._item.active::before {
    transition-delay: 1s;
    height: 10vw;
}
#flow .section_body ._item:last-child::before {
    content: none;
}
.flow_group {
    position: relative;
    display: flex;
    margin-bottom: 5vw;
}
.flow_group::before {
    position: absolute;
    content: '';
    bottom: 1vw;
    left: -9vw;
    background-image: url(../img/flow_arrow.svg);
    background-size: auto 100%;
    background-position: center right;
    background-repeat: no-repeat;
    width: 0;
    height: 7.5vw;
    z-index: 1;
    transition: width 1s, left 1s;
}
.flow_group.active::before {
    width: 92vw;
    left: 1vw;
}
.flow_item {
    width: 30%;
    margin: 1vw;
    background-color: #fff;
    border-radius: 1vw;
    padding: 5vw 1vw 7vw;
    text-align: center;
    font-size: 3.5vw;
    font-weight: 800;
    line-height: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flow_item span {
    font-size: 2.75vw;
}
.flow_item:nth-child(2) {
    transition-delay: .25s;
}
.flow_item:nth-child(3) {
    transition-delay: .5s;
}
.flow_group._left {
    flex-direction: row-reverse;
}
.flow_group._left::before {
    background-position: center right;
    left: unset;
    right: 1vw;
    transform: scaleX(-1);
}
.flow_group._left.active::before {
}
#guideline .inner .section_body ._item {
    background-color: var(--color-bg);
    border-radius: 3vw;
    padding: 6vw 3vw 5vw;
    margin-bottom: 5vw;
}
#guideline .inner .section_body ._item ._career {
    text-align: center;
    font-size: 5vw;
    font-weight: 900;
    padding-bottom: 1vw;
    border-bottom: 2px solid #000;
    margin-bottom: 1vw;
}
#guideline .inner .section_body ._item ._wanted ._row {
    border-bottom: 1px solid #999;
    padding: 3vw 1.5vw 3vw 3vw;
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
    font-size: 2.75vw;
}
#guideline .inner .section_body ._item ._wanted ._row ._head {
    width: 15vw;
}
#guideline .inner .section_body ._item ._wanted ._row ._body {
    width: calc(100% - 17vw);
}
#guideline .inner .section_body ._item ._wanted ._row:last-child {
    border: none;
}
#experience {
    background-color: var(--color-bg);
    padding-bottom: 5vw;
}
#experience .inner .section_body ._ex_type {
    margin-bottom: 7.5vw;
}
#experience .inner .section_body ._ex_type ._ex_type_title {
    margin-bottom: 2.5vw;
}
#experience .inner .section_body ._ex_type ._ex_type_title h3 {
    font-size: 4vw;
    font-weight: 800;
    text-align: center;
    color: var(--color-accent);
}
#experience .inner .section_body ._ex_type ._ex_head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5vw;
}
#experience .inner .section_body ._ex_type ._ex_head ._stay {
    background-color: var(--color-accent);
    color: #fff;
    font-weight: bold;
    padding: 0.5vw 7.5vw;
    border-radius: 5vw;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex {
    position: relative;
    background-color: #fff;
    font-weight: bold;
    border-radius: 2vw;
    text-align: center;
    padding: 2.5vw 1vw;
    margin-bottom: 5vw;
    line-height: 1.5;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_1 {
    position: relative;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_1::before {
    left: 13.125vw;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_1::after {
    right: 13.125vw;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex::before {
    left: calc(50% - 0.75vw);
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 {
    position: relative;
    display: flex;
    justify-content: space-between;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex {
    width: 30%;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(1)::before {
    left: 13.125vw;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(2)::before {
    left: calc(50% - 0.75vw);
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(3)::before {
    right: 13.125vw;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_1::before,
#experience .inner .section_body ._ex_type ._ex_body ._ex_1::after,
#experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex::before,
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex::before {
    position: absolute;
    content: "";
    top: 100%;
    width: 1.5vw;
    height: 0;
    background-color: #fff;
    transition: 1s;
}
#experience .inner .section_body ._ex_type ._ex_body ._ex_1.active::before,
#experience .inner .section_body ._ex_type ._ex_body ._ex_1.active::after,
#experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex.active::before,
#experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex.active::before {
    height: 5vw;
    transition-delay: 1s;
}
#experience .inner .section_body ._ex_type ._ex_body>div:last-child::before, #experience .inner .section_body ._ex_type ._ex_body>div:last-child::after, #experience .inner .section_body ._ex_type ._ex_body>div:last-child ._ex::before {
    content: none;
}
#experience .inner .section_body ._ex_type ._ex_body._one ._ex_1::before,
#experience .inner .section_body ._ex_type ._ex_body._one ._ex_1::after {
    content: none;
}
#cv {
    padding: 10vw 0;
}
#cv .inner ._item {
    width: 56vw;
    margin: 0 auto 2.5vw;
}
#cv .inner ._item a {
    position: relative;
    background-color: #4cc764;
    display: flex;
    align-items: center;
    -moz-column-gap: 3vw;
    column-gap: 3vw;
    -webkit-clip-path: polygon(0 0, 51vw 0, 100% 50%, 51vw 100%, 0 100%);
    clip-path: polygon(0 0, 51vw 0, 100% 50%, 51vw 100%, 0 100%);
    padding: 2.5vw 5vw 2.5vw 5vw;
}
#cv .inner ._item a ._img {
    width: 8vw;
}
#cv .inner ._item a ._img img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#cv .inner ._item a ._txt {
    color: #fff;
    font-size: 3.5vw;
    font-weight: 900;
}
#cv .inner ._item a ._txt span {
    font-size: 4.5vw;
    margin-right: 0.5vw;
}
#cv .inner ._item a ._txt span.en {
    font-size: 5vw;
}
#entry {
    background-color: var(--color-bg);
}
#entry .section_body form .form ._item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 3.5vw;
    column-gap: 3.5vw;
    row-gap: 2vw;
    margin-bottom: 6vw;
}
#entry .section_body form .form ._item ._head {
    order: 2;
    font-size: 3.5vw;
    font-weight: bold;
}
#entry .section_body form .form ._item ._required {
    order: 1;
}
#entry .section_body form .form ._item ._required span {
    background-color: var(--color-accent);
    color: #fff;
    font-size: 2.75vw;
    font-weight: bold;
    padding: 1vw 4vw;
    border-radius: 1vw;
}
#entry .section_body form .form ._item ._required._non span {
    background-color: #ccc;
}
#entry .section_body form .form ._item ._body {
    order: 3;
    width: 100%;
}
#entry .section_body form .form ._item ._body input {
    width: 100%;
    padding: 2.5vw 3vw;
    border-radius: 1vw;
    font-size: 3.6vw;
    font-weight: bold;
    background-color: #fff;
}
#entry .section_body form .form ._item ._body input::-moz-placeholder {
    color: #c9c1a9;
}
#entry .section_body form .form ._item ._body input::placeholder {
    color: #c9c1a9;
}
#entry .section_body form .form ._item ._body input[type=date] {
    width: auto;
    padding: 2.5vw 5vw 2.5vw 3vw;
}
#entry .section_body form .form ._item ._body select {
    padding: 2.5vw 12.5vw 2.5vw 3vw;
    border-radius: 1vw;
    font-weight: bold;
    background-color: #fff;
    font-size: 3.6vw;
}
#entry .section_body form .form ._item ._body textarea {
    width: 100%;
    padding: 2.5vw 1vw 2.5vw 3vw;
    border-radius: 1vw;
    font-weight: bold;
    font-size: 3.6vw;
}
#entry .section_body form .form ._item ._body textarea::-moz-placeholder {
    color: #c9c1a9;
}
#entry .section_body form .form ._item ._body textarea::placeholder {
    color: #c9c1a9;
}
#entry .section_body form .form ._item ._body ._select {
    position: relative;
    display: inline-block;
}
#entry .section_body form .form ._item ._body ._select::before, #entry .section_body form .form ._item ._body ._select::after {
    position: absolute;
    content: "";
    top: 5.25vw;
    width: 2.5vw;
    height: 0.6vw;
    background-color: var(--color-accent);
    z-index: 1;
    pointer-events: none;
}
#entry .section_body form .form ._item ._body ._select::before {
    right: 2.5vw;
    transform: rotate(-45deg);
    transform-origin: left;
}
#entry .section_body form .form ._item ._body ._select::after {
    right: 4.7vw;
    transform: rotate(45deg);
    transform-origin: right;
}
#entry .section_body form .form ._send {
    padding-top: 2.5vw;
    text-align: center;
}
#entry .section_body form .form ._send input[type=submit],
#entry .section_body form .form ._send input[type=button] {
    padding: 2vw 12.5vw;
    font-weight: bold;
    color: #fff;
    background-image: var(--color-gradation);
    border-radius: 1.5vw;
    transition: 0.5s;
    font-size: 3.6vw;
    cursor: pointer;
}
#entry .section_body form .form ._send input[type=submit]:disabled,
#entry .section_body form .form ._send input[type=button]:disabled {
    filter: grayscale(1);
    opacity: 0.25;
}
#entry .section_body form .form ._send .wpcf7-spinner {
    display: none;
}
#entry .section_body form .form_confirm ._item ._body span {
    display: block;
    padding: 2.5vw 3vw;
    border-radius: 1vw;
    border: 1px solid #e4dfd0;
    font-weight: bold;
    font-size: 4vw;
    min-height: 12vw;
}
#entry .section_body form .form_confirm ._send input[type=button].button_back {
    margin-right: 5vw;
}
.form_confirm {
    display: none;
}
.wpcf7-response-output {
    display: none;
}
.wpcf7-not-valid-tip {
    margin: 1vw 3vw 0;
}
footer {
    position: sticky;
    top: 100vh;
    padding-bottom: 20vw;
    background-color: var(--color-accent);
}
#copy_right {
    padding: 2.5vw;
    color: #fff;
    text-align: center;
    font-size: 2.5vw;
}
/* -------------------------------- 600 --------------------------------*/
@media (width > 600px) {
    body {
        font-size: 2.25vw;
    }
    p {
        margin-bottom: 2.5vw;
    }
    .fade_left {
        transform: translate(10vw, 0);
    }
    .fade_right {
        transform: translate(-10vw, 0);
    }
    .fade_up {
        transform: translate(0, 10vw);
    }
    section {
        padding: 10vw 0;
    }
    .section_title {
        margin-bottom: 5vw;
    }
    .section_title h2 {
        font-size: 5.5vw;
    }
    .section_title p {
        font-size: 3vw;
    }
    .section_description {
        margin-bottom: 5vw;
    }
    .section_description p span {
        padding: 0.5vw 1vw;
        margin: 0 0.5vw;
        border-radius: 3vw;
    }
    .page header {
        height: 10.5vw;
    }
    #header_logo {
        top: 3vw;
        left: 4vw;
        width: 12.5vw;
        height: 5vw;
    }
    #header_menu {
        bottom: 0.5vw;
    }
    #header_menu ul {
        row-gap: 0.5vw;
    }
    #header_menu ul li {
        width: calc((100% - 2vw) / 3);
    }
    #header_menu ul li a {
        border-radius: 0.75vw;
        padding: 1vw 0;
        font-size: 2vw;
    }
    #top ._txt {
        margin-top: 16vw;
    }
    #top ._txt p {
        font-size: 6vw;
        margin-bottom: 2vw;
        filter: drop-shadow(0.5vw 0.5vw 0.5vw black);
    }
    #top ._txt h1 {
        font-size: 7.5vw;
        background-image: linear-gradient(#fff 0%, #C7B299 50%, #fff 50%, #C7B299 100%);
        filter: drop-shadow(0.5vw 0.5vw 0.5vw black);
    }
    #top ._txt h1 span {
        font-size: 11.5vw;
    }
    #top ._img ._therapist {
        width: 30vw;
    }
    #top ._img #top_therapist_01 {
        left: 1vw;
        bottom: 23vw;
        width: 44vw;
    }
    #top ._img #top_therapist_02 {
        left: 35vw;
        bottom: 20vw;
        width: 32vw;
    }
    #top ._img #top_therapist_03 {
        right: 6vw;
        bottom: 23vw;
        width: 37vw;
    }
    #top ._img #top_therapist_04 {
        left: 7vw;
        bottom: -2vw;
    }
    #top ._img #top_therapist_05 {
        left: 32vw;
        bottom: -7vw;
        width: 36vw;
    }
    #top ._img #top_therapist_06 {
        bottom: -5vw;
        right: 8vw;
        width: 31vw;
    }
    #philosophy {
        padding-bottom: 10vw;
    }
    #commitment {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/commitment_bg.jpg");
        background-size: 100%, 200%;
        background-position: 0 0, bottom center;
    }
    #commitment .section_body ._txt {
        margin-bottom: 7.5vw;
    }
    #commitment .section_body ._txt p br {
        display: none;
    }
    #commitment .section_body ._item {
        row-gap: 1vw;
    }
    #commitment .section_body ._item span {
        width: 32.5%;
        font-size: 2.75vw;
        padding: 2vw 1vw;
    }
    #commitment .section_body ._item::after {
        width: 32.5%;
    }
    #message .section_body ._head {
        margin-bottom: 5vw;
    }
    #message .section_body ._head h3 {
        font-size: 5vw;
    }
    #message .section_body ._txt {
        margin-left: 27.5vw;
    }
    #message .section_body ._txt p br {
        display: none;
    }
    #message .section_body ._sign {
        margin-left: 25vw;
    }
    #features {
        background-image: linear-gradient(-45deg, #ff3130 25%, #ff5a5a 25%, #ff5a5a 50%, #ff3130 50%, #ff3130 75%, #ff5a5a 75%, #ff5a5a);
        background-size: 5vw 5vw;
    }
    #number .section_body ._item ._txt {
        font-size: 4.5vw;
    }
    #number .section_body ._item ._txt span {
        font-size: 10vw;
    }
    #number .section_body ._item ._txt span._survey {
        margin-top: 1vw;
        font-size: 2.5vw;
    }
    #number .section_body ._item svg {
        width: 52.5vw;
    }
    #career {
        background-image: linear-gradient(#fff 0, #fff 70%, rgba(255, 255, 255, 0)), url(../img/career_bg.jpg);
        background-repeat: no-repeat, no-repeat;
        background-size: auto, 150%;
        background-position: bottom center, bottom center;
    }
    #career .section_body ._career {
        margin-bottom: 5vw;
    }
    #career .section_body ._career ._item {
        padding: 3vw 5vw;
        border-radius: 2vw;
        margin-bottom: 3.5vw;
    }
    #career .section_body ._career ._item ._position {
        font-size: 3.5vw;
        width: 38.2vw;
        margin: 0 auto 2.5vw;
    }
    #career .section_body ._career ._item::before {
        left: calc(50% - 3vw);
        width: 6vw;
        height: 2vw;
    }
    #career .section_body ._career ._item.active::before {
        bottom: -1.9vw;
    }
    #career .section_body ._raise {
        border-radius: 3vw;
    }
    #career .section_body ._raise ._head {
        padding: 2vw;
    }
    #career .section_body ._raise ._head h3 {
        font-size: 4vw;
    }
    #career .section_body ._raise ._body {
        padding: 5vw 6vw 1.5vw;
    }
    #career .section_body ._raise ._body ._system {
        margin-bottom: 5vw;
    }
    #career .section_body ._raise ._body ._system ._title {
        margin-bottom: 1vw;
    }
    #career .section_body ._raise ._body ._system ._title h4 {
        font-size: 3.5vw;
    }
    #career .section_body ._raise ._body ._system._michelin h4::before {
        width: 4.5vw;
        height: 4.5vw;
        left: -7vw;
        top: -0.5vw;
    }
    #career .section_body ._raise ._body ._system._incentive h4::before {
        width: 4vw;
        height: 3.5vw;
        left: -6vw;
    }
    #voice {
        padding-bottom: 5vw;
    }
    #voice .section_body ._staff ._img {
        position: relative;
        width: 61.8vw;
        margin: 0 auto 9vw;
    }
    #voice .section_body ._staff ._img span {
        bottom: -3.5vw;
        font-size: 3vw;
        padding: 1vw;
        width: 45vw;
        border-radius: 1vw;
    }
    #voice .section_body ._staff ._txt ._box {
        margin-bottom: 7.5vw;
    }
    #voice .section_body ._staff ._txt ._box ._title {
        font-size: 3vw;
        margin-bottom: 2vw;
    }
    #voice .section_body ._staff ._txt ._box ._title::after {
        height: 2px;
        left: calc(100% + 2vw);
    }
    #voice .section_body ._staff ._txt ._box ._title.active::after {
        transition-delay: 0.5s;
        width: 80vw;
    }
    #schedule {
        padding-bottom: 5vw;
    }
    #schedule .section_body ._item {
        border-radius: 3vw;
        margin-bottom: 5vw;
    }
    #schedule .section_body ._item ._head {
        border-top-left-radius: 2.5vw;
        border-top-right-radius: 2.5vw;
        padding: 1vw 1vw 0.75vw 5vw;
        font-size: 3.5vw;
        -moz-column-gap: 2.5vw;
        column-gap: 2.5vw;
    }
    #schedule .section_body ._item ._body {
        padding: 3vw 5vw 4vw;
    }
    #schedule .section_body ._item ._body br {
        display: none;
    }
    #schedule .section_body ._item ._body._notxt {
        font-size: 9vw;
    }
    #schedule .section_body ._item::after {
        left: calc(50% - 4vw);
        width: 8vw;
        height: 3vw;
    }
    #schedule .section_body ._item.active::after {
        bottom: -2.9vw;
    }
    #flow {
        background-image: var(--color-gradation);
    }
    #flow .section_body ._item {
        border-radius: 1.5vw;
        padding: 7.5vw 5vw 5vw;
        margin-bottom: 8vw;
    }
    #flow .section_body ._item ._step {
        font-size: 4vw;
        border-radius: 5vw;
        width: 30vw;
        top: -4vw;
    }
    #flow .section_body ._item ._step span {
        font-size: 5.5vw;
    }
    #flow .section_body ._item ._txt ._action {
        font-size: 3vw;
    }
    #flow .section_body ._item::before {
        top: 100%;
        width: 1.25vw;
        height: 0;
    }
    #flow .section_body ._item.active::before {
        height: 8vw;
    }
.flow_group {}
.flow_group::before {}
.flow_group.active::before {
}
.flow_item {}
.flow_item span {}
.flow_group._left {}
.flow_group._left.active::before {}
    #guideline .inner .section_body ._item {
        border-radius: 3vw;
        padding: 5vw 3vw 5vw;
        margin-bottom: 5vw;
    }
    #guideline .inner .section_body ._item ._career {
        font-size: 4vw;
        padding-bottom: 0.5vw;
        margin-bottom: 1vw;
    }
    #guideline .inner .section_body ._item ._wanted ._row {
        padding: 2.5vw 1.5vw 2.5vw 3vw;
        -moz-column-gap: 3vw;
        column-gap: 3vw;
        font-size: 2vw;
    }
    #guideline .inner .section_body ._item ._wanted ._row ._head {
        width: 15vw;
    }
    #guideline .inner .section_body ._item ._wanted ._row ._body {
        width: calc(100% - 17vw);
    }
    #guideline .inner .section_body ._item ._wanted ._row:last-child {
        border: none;
    }
    #experience .inner .section_body ._ex_type ._ex_head {
        margin-bottom: 3vw;
    }
    #experience .inner .section_body ._ex_type ._ex_head ._stay {
        padding: 1vw 9vw;
        border-radius: 5vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex {
        border-radius: 1.5vw;
        padding: 2.5vw 1vw;
        margin-bottom: 3vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 {
        position: relative;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::before {
        left: 13.125vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::after {
        right: 13.125vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex::before {
        left: calc(50% - 0.75vw);
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(1)::before {
        left: 13.125vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(2)::before {
        left: calc(50% - 0.75vw);
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(3)::before {
        right: 13.125vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::after,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex::before {
        width: 1vw;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1.active::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1.active::after,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex.active::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex.active::before {
        height: 3vw;
    }
    #cv {
        padding: 7.5vw 0;
    }
    #cv .inner ._item {
        width: 49vw;
        margin: 0 auto 2vw;
    }
    #cv .inner ._item a {
        -moz-column-gap: 2vw;
        column-gap: 2vw;
        -webkit-clip-path: polygon(0 0, 45vw 0, 100% 50%, 45vw 100%, 0 100%);
        clip-path: polygon(0 0, 45vw 0, 100% 50%, 45vw 100%, 0 100%);
        padding: 2vw 4vw 1.5vw 4vw;
    }
    #cv .inner ._item a ._img {
        width: 6vw;
    }
    #cv .inner ._item a ._txt {
        font-size: 3vw;
    }
    #cv .inner ._item a ._txt span {
        font-size: 4vw;
        margin-right: 0.75vw;
    }
    #cv .inner ._item a ._txt span.en {
        font-size: 4.5vw;
    }
    #entry .section_body form .form ._item {
        -moz-column-gap: 2.5vw;
        column-gap: 2.5vw;
        row-gap: 1.5vw;
        margin-bottom: 5vw;
    }
    #entry .section_body form .form ._item ._head {
        font-size: 3vw;
    }
    #entry .section_body form .form ._item ._required span {
        font-size: 2.25vw;
        padding: 1vw 3.5vw;
    }
    #entry .section_body form .form ._item ._body input {
        padding: 2vw 2.5vw;
        font-size: 3vw;
    }
    #entry .section_body form .form ._item ._body input[type=date] {
        width: auto;
        padding: 2.5vw 5vw 2.5vw 3vw;
    }
    #entry .section_body form .form ._item ._body select {
        padding: 2.5vw 12.5vw 2.5vw 3vw;
        border-radius: 1vw;
        font-size: 3vw;
    }
    #entry .section_body form .form ._item ._body textarea {
        font-size: 3vw;
    }
    #entry .section_body form .form ._item ._body ._select {
        position: relative;
        display: inline-block;
    }
    #entry .section_body form .form ._item ._body ._select::before, #entry .section_body form .form ._item ._body ._select::after {
        top: 4.75vw;
        width: 2vw;
        height: 0.5vw;
    }
    #entry .section_body form .form ._item ._body ._select::before {
        right: 2.8vw;
    }
    #entry .section_body form .form ._item ._body ._select::after {
        right: 4.5vw;
    }
    #entry .section_body form .form ._send {
        padding-top: 1vw;
    }
    #entry .section_body form .form ._send input[type=submit],
    #entry .section_body form .form ._send input[type=button] {
        padding: 2vw 10vw;
        font-size: 3vw;
    }
    #entry .section_body form .form ._send .wpcf7-spinner {
        display: none;
    }
    #entry .section_body form .form_confirm ._item ._body span {
        padding: 2.5vw 3vw;
        border-radius: 1vw;
        font-size: 4vw;
    }
    #entry .section_body form .form_confirm ._send input[type=button].button_back {
        margin-right: 5vw;
    }
    .form_confirm {
        display: none;
    }
    .wpcf7-response-output {
        display: none;
    }
    .wpcf7-not-valid-tip {
        margin: 1vw 3vw 0;
    }
    footer {
        padding-bottom: 15vw;
    }
    #copy_right {
        padding: 2vw;
        font-size: 2vw;
    }
}
/* -------------------------------- 1024 --------------------------------*/
@media (width > 1024px) {
    body {
        font-size: 1.25rem;
    }
    p {
        margin-bottom: 2.5rem;
    }
    .inner {
        max-width: 1200px;
    }
    .fade_left {
        transform: translate(10rem, 0);
    }
    .fade_right {
        transform: translate(-10rem, 0);
    }
    .fade_up {
        transform: translate(0, 10rem);
    }
    section {
        padding: 7.5rem 0;
    }
    .section_title {
        margin-bottom: 2.5rem;
    }
    .section_title h2 {
        font-size: 3.5rem;
    }
    .section_title p {
        font-size: 2rem;
    }
    .section_description {
        margin-bottom: 5rem;
    }
    .section_description p span {
        padding: 0.25rem 1rem;
        margin: 0 0.25rem;
        border-radius: 3rem;
    }
    .page header {
        height: 5.25rem;
    }
    #header_logo {
        top: 1.5rem;
        left: 3rem;
        width: 120px;
        height: 40px;
    }
    #header_menu {
        bottom: 0.5rem;
        max-width: 1200px;
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
    }
    #header_menu ul {
        row-gap: unset;
        justify-content: space-between;
    }
    #header_menu ul li {
        width: 16%;
    }
    #header_menu ul li a {
        border-radius: 0.5rem;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    #top .inner {
        width: 100%;
        max-width: 100%;
    }
    #top .inner ._txt {
        margin-top: 12.5vh;
    }
    #top .inner ._txt p {
        font-size: 4.5vw;
        margin-bottom: 0.75vw;
        background-image: linear-gradient(#fff, #C7B299);
        filter: drop-shadow(0.25vw 0.25vw 0.25vw black);
    }
    #top .inner ._txt h1 {
        font-size: 5vw;
        background-image: linear-gradient(#fff 0%, #C7B299 100%);
        filter: drop-shadow(0.25vw 0.25vw 0.25vw black);
    }
    #top .inner ._txt h1 span {
        font-size: 7.5vw;
    }
    #top .inner ._img ._therapist {
        width: 21vw;
    }
    #top .inner ._img #top_therapist_01 {
        left: -2vw;
        bottom: 0vw;
        width: 29vw;
        transition-delay: 0.25s;
        transform: translate(-10vw, 0);
    }
    #top .inner ._img #top_therapist_01.active {
        transform: translate(0, 0);
    }
    #top .inner ._img #top_therapist_02 {
        left: 18vw;
        bottom: -3vw;
        width: 21vw;
        transition-delay: 0.375s;
        transform: translate(-10vw, 0);
    }
    #top .inner ._img #top_therapist_02.active {
        transform: translate(0, 0);
    }
    #top .inner ._img #top_therapist_03 {
        right: 47vw;
        bottom: -1vw;
        width: 24vw;
        transition-delay: 0.5s;
        transform: translate(-10vw, 0);
    }
    #top .inner ._img #top_therapist_03.active {
        transform: translate(0, 0);
    }
    #top .inner ._img #top_therapist_04 {
        left: 47vw;
        bottom: -2vw;
        transition-delay: 0.625s;
    }
    #top .inner ._img #top_therapist_05 {
        left: 62vw;
        bottom: -6vw;
        width: 25vw;
        transition-delay: 0.75s;
    }
    #top .inner ._img #top_therapist_06 {
        bottom: -5vw;
        right: 0vw;
        width: 22vw;
        transition-delay: 0.875s;
    }
    #philosophy {
        padding-bottom: 5rem;
    }
    #commitment {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/commitment_bg.jpg");
        background-size: 100%, 85%;
        background-position: 0 0, bottom right;
    }
    #commitment .section_body ._txt {
        text-align: center;
        margin-bottom: 5rem;
    }
    #commitment .section_body ._txt p br {
        display: block;
    }
    #commitment .section_body ._item {
        row-gap: 1rem;
        -moz-column-gap: 1%;
        column-gap: 1%;
        justify-content: center;
    }
    #commitment .section_body ._item span {
        width: 18%;
        font-size: 1.666rem;
        padding: 1.5rem 0.5rem;
    }
    #commitment .section_body ._item::after {
        width: 32.5%;
    }
    #message {
        background-size: 400px, 100%;
        background-position: bottom 0 left calc(50% - 400px), bottom right;
        padding-bottom: 7.5rem;
    }
    #message .inner {
        position: relative;
        width: 735px;
        left: min(225px, 12.5%);
    }
    #message .inner .section_title {
        text-align: left;
    }
    #message .inner .section_body ._head {
        margin-bottom: 2rem;
        text-align: left;
    }
    #message .inner .section_body ._head h3 {
        font-size: 2.9rem;
    }
    #message .inner .section_body ._txt {
        margin-left: 0;
    }
    #message .inner .section_body ._txt p br {
        display: block;
    }
    #message .inner .section_body ._sign {
        margin-left: 25rem;
    }
    #features {
        background-image: linear-gradient(-45deg, #ff3130 25%, #ff5a5a 25%, #ff5a5a 50%, #ff3130 50%, #ff3130 75%, #ff5a5a 75%, #ff5a5a);
        background-size: 5rem 5rem;
    }
    #number .section_body {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    #number .section_body ._item {
        width: 50%;
        height: 33.3vw;
    }
    #number .section_body ._item ._txt {
        font-size: 2.25vw;
    }
    #number .section_body ._item ._txt span {
        font-size: 5vw;
    }
    #number .section_body ._item ._txt span._survey {
        margin-top: 0.5vw;
        font-size: 1.25vw;
    }
    #number .section_body ._item svg {
        width: 26.125vw;
    }
    #number .section_body ._item svg circle {
        stroke-width: 0.5px;
    }
    #number .section_body ._item:nth-child(2n) svg.active circle {
        animation-delay: 0.5s;
    }
    #career {
        background-image: linear-gradient(#fff 0, #fff 61.8%, rgba(255, 255, 255, 0)), url(../img/career_bg.jpg);
        background-repeat: no-repeat, no-repeat;
        background-size: auto, 100%;
        background-position: bottom center, bottom center;
    }
    #career .section_body ._career {
        margin-bottom: 5rem;
    }
    #career .section_body ._career ._item {
        padding: 2rem 3rem;
        border-radius: 1rem;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
    #career .section_body ._career ._item ._position {
        font-size: 1.5rem;
        width: 25rem;
        padding: 0.5rem 0;
        margin: 0;
    }
    #career .section_body ._career ._item::before {
        left: calc(50% - 1.5rem);
        width: 3rem;
        height: 1rem;
    }
    #career .section_body ._career ._item.active::before {
        bottom: -0.9rem;
    }
    .career_img {
        margin-bottom: 7.5rem;
    }
    #career .section_body ._raise {
        border-radius: 1rem;
    }
    #career .section_body ._raise ._head {
        padding: 1rem;
    }
    #career .section_body ._raise ._head h3 {
        font-size: 2.5rem;
    }
    #career .section_body ._raise ._body {
        padding: 3rem 3rem 2.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #career .section_body ._raise ._body ._system {
        margin-bottom: 0;
        width: 48%;
        background-color: var(--color-bg);
        border-radius: 1rem;
        padding: 2rem;
    }
    #career .section_body ._raise ._body ._system ._title {
        margin-bottom: 1rem;
    }
    #career .section_body ._raise ._body ._system ._title h4 {
        font-size: 2rem;
    }
    #career .section_body ._raise ._body ._system._michelin h4::before {
        width: 2.5rem;
        height: 2.5rem;
        left: -4rem;
        top: -0.5rem;
    }
    #career .section_body ._raise ._body ._system._incentive h4::before {
        width: 2.5rem;
        height: 2rem;
        left: -3.5rem;
    }
    #voice {
        padding-bottom: 5rem;
    }
    #voice .section_body ._staff {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
    }
    #voice .section_body ._staff ._img {
        width: 40%;
        height: 360px;
        margin: 0;
    }
    #voice .section_body ._staff ._img img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
        width: 100%;
        height: 100%;
    }
    #voice .section_body ._staff ._img span {
        bottom: -1.75rem;
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        width: 80%;
        border-radius: 0.5rem;
    }
    #voice .section_body ._staff ._txt {
        width: 55%;
    }
    #voice .section_body ._staff ._txt ._box {
        margin-bottom: 0;
    }
    #voice .section_body ._staff ._txt ._box ._title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    #voice .section_body ._staff ._txt ._box ._title::after {
        height: 2px;
        left: calc(100% + 1rem);
    }
    #voice .section_body ._staff ._txt ._box ._title.active::after {
        width: 480px;
    }
    #voice .section_body ._staff ._txt ._box ._body {
        margin-left: 1.5rem;
    }
    #voice .section_body ._staff:nth-child(2n) {
        flex-direction: row-reverse;
    }
    #schedule {
        padding-bottom: 5rem;
    }
    #schedule .section_body ._item {
        border-radius: 1rem;
        margin-bottom: 2rem;
        display: flex;
        align-items: stretch;
    }
    #schedule .section_body ._item ._head {
        width: 27.5%;
        border-top-left-radius: 1rem;
        border-top-right-radius: 0;
        border-bottom-left-radius: 1rem;
        padding: 2rem 1rem 1rem;
        font-size: 1.5rem;
        flex-direction: column;
        justify-content: center;
    }
    #schedule .section_body ._item ._head ._time {
        width: 85%;
        padding: 0.75rem 1rem;
        line-height: 1;
        text-align: center;
        background-color: #fff;
        color: var(--color-accent);
        border-radius: 4rem;
        margin: 0 auto 0.5rem;
    }
    #schedule .section_body ._item ._head ._todo {
        text-align: center;
    }
    #schedule .section_body ._item ._body {
        width: 72.5%;
        padding: 2rem;
    }
    #schedule .section_body ._item ._body br {
        display: block;
    }
    #schedule .section_body ._item ._body._notxt {
        font-size: 5rem;
    }
    #schedule .section_body ._item::after {
        left: calc(60% - 2rem);
        width: 4rem;
        height: 1.5rem;
    }
    #schedule .section_body ._item.active::after {
        bottom: -1.2rem;
    }
    #flow {
        background-image: var(--color-gradation);
    }
    #flow .section_body {
        display: block;
    }
    #flow .section_body ._item {
        width: 23.5%;
        border-radius: 0.5rem;
        padding: 4rem 1rem 2rem;
        margin-bottom: 0;
        transform: translate(-10rem, 0);
    }
    #flow .section_body ._item.active {
        transform: translate(0, 0);
    }
    #flow .section_body ._item ._step {
        font-size: 2rem;
        border-radius: 5rem;
        width: 61.8%;
        top: -2rem;
    }
    #flow .section_body ._item ._step span {
        font-size: 2.75rem;
        margin-left: 0.5rem;
    }
    #flow .section_body ._item ._txt ._action {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    #flow .section_body ._item ._txt ._action br {
        display: block;
    }
    #flow .section_body ._item ._txt ._note {
        font-size: 0.9rem;
    }
    #flow .section_body ._item::before {
        top: calc(50% - 5px);
        right: -10%;
        height: 5px;
        left: 100%;
        height: 5px;
        width: 0;
        transition-delay: 1s;
    }
    #flow .section_body ._item.active::before {
        width: 12%;
        height: 5px;
    }
    #flow .section_body ._item:nth-child(2) {
        transition-delay: 0.25s;
    }
    #flow .section_body ._item:nth-child(2)::before {
        transition-delay: 1.25s;
    }
    #flow .section_body ._item:nth-child(3) {
        transition-delay: 0.5s;
    }
    #flow .section_body ._item:nth-child(3)::before {
        transition-delay: 1.5s;
    }
    #flow .section_body ._item:nth-child(4) {
        transition-delay: 0.75s;
    }
.flow_group {
    margin-bottom: 2rem;
}
.flow_group::before {
    bottom: -0.5rem;
    left: -9rem;
    height: 6rem;
}
.flow_group.active::before {
    width: 94%;
    left: 0.5rem;
}
.flow_item {
    width: 27.5%;
    font-size: 2.5rem;
    margin: 0 0.5rem;
    border-radius: 0.5rem;
    padding: 2.5rem 1rem 5rem;
}
.flow_item span {
    font-size: 1.5rem;
}
.flow_group._left {}
.flow_group._left::before {
    right: -9rem;
}
.flow_group._left.active::before {
    right: 0.5rem;
    left: auto;
}

    #guideline .inner .section_body ._item {
        border-radius: 1rem;
        padding: 2rem 4rem 4rem;
        margin-bottom: 5rem;
    }
    #guideline .inner .section_body ._item ._career {
        font-size: 2rem;
        padding-bottom: 0.5rem;
        padding-left: 2rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    #guideline .inner .section_body ._item ._wanted ._row {
        padding: 1.5rem 1.5rem 1.5rem 2rem;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
        font-size: 1.2rem;
    }
    #guideline .inner .section_body ._item ._wanted ._row ._head {
        width: 10rem;
    }
    #guideline .inner .section_body ._item ._wanted ._row ._body {
        width: calc(100% - 12rem);
    }
    #guideline .inner .section_body ._item ._wanted ._row:last-child {
        border: none;
    }
    #guideline .inner .section_body ._item:last-child {
        margin-bottom: 0;
    }
    #experience {
        padding-bottom: 2.5rem;
    }
    #experience .inner .section_body ._ex_type {
        margin-bottom: 5rem;
    }
    #experience .inner .section_body ._ex_type ._ex_type_title {
        margin-bottom: 2rem;
    }
    #experience .inner .section_body ._ex_type ._ex_type_title h3 {
        font-size: 3rem;
    }
    #experience .inner .section_body ._ex_type ._ex_head {
        margin-bottom: 2rem;
        justify-content: space-around;
    }
    #experience .inner .section_body ._ex_type ._ex_head ._stay {
        font-size: 1.75rem;
        font-weight: 900;
        padding: 0.75rem 5rem;
        border-radius: 5rem;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex {
        border-radius: 0.7rem;
        padding: 2rem;
        margin-bottom: 2.5rem;
        font-size: 1.75rem;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 {
        position: relative;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::before {
        left: 15%;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::after {
        right: 15%;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex::before {
        left: calc(50% - 0.75rem);
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(1)::before {
        left: 50%;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(2)::before {
        left: calc(50% - 0.75rem);
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex:nth-child(3)::before {
        right: 50%;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1::after,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex::before {
        width: 0.75rem;
    }
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1.active::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1.active::after,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_1 ._ex.active::before,
    #experience .inner .section_body ._ex_type ._ex_body ._ex_3 ._ex.active::before {
        height: 2.5rem;
    }
    #cv {
        padding: 7.5rem 0;
    }
    #cv .inner {
        display: flex;
        justify-content: space-between;
    }
    #cv .inner ._item {
        width: 32%;
        margin: 0;
    }
    #cv .inner ._item a {
        -moz-column-gap: min(2rem, 1.3vw);
        column-gap: min(2rem, 1.3vw);
        -webkit-clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
        clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
        padding: 0.5rem 4rem 0.5rem 1.5rem;
        height: 100%;
        background-image: linear-gradient(90deg, #bf1a20 0%, #bf1a20 25%, #d2ff00 50%, #4cc764 75%, #4cc764 100%);
        background-position: 100%;
        background-size: 400%;
        transition: 1s;
    }
    #cv .inner ._item a:hover {
        opacity: 1;
        background-position: 0%;
    }
    #cv .inner ._item a ._img {
        width: min(3rem, 3vw);
        height: min(4rem, 4vw);
    }
    #cv .inner ._item a ._txt {
        font-size: min(1.5rem, 1.7vw);
    }
    #cv .inner ._item a ._txt span {
        font-size: min(1.75rem, 2.5vw);
        margin-right: min(0.5rem, 0.5vw);
    }
    #cv .inner ._item a ._txt span.en {
        font-size: min(2rem, 2.5vw);
    }
    #cv .inner ._item._email {
        transition-delay: 0.25s;
    }
    #cv .inner ._item._tel {
        transition-delay: 0.5s;
    }
    #entry .section_body form .form ._item {
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
        row-gap: 1.5rem;
        margin-bottom: 3rem;
        flex-wrap: nowrap;
    }
    #entry .section_body form .form ._item ._head {
        order: 1;
        font-size: 1.5rem;
        width: 15rem;
        text-align: right;
    }
    #entry .section_body form .form ._item ._required {
        order: 2;
        width: 5rem;
        text-align: right;
    }
    #entry .section_body form .form ._item ._required span {
        font-size: 1rem;
        padding: 0.4rem 0.75rem;
        font-weight: 500;
        border-radius: 0.25rem;
    }
    #entry .section_body form .form ._item ._body input {
        padding: 1rem 1.5rem;
        font-size: 1.5rem;
        border-radius: 0.5rem;
    }
    #entry .section_body form .form ._item ._body input[type=date] {
        width: auto;
        padding: 1rem 2rem 1rem 1.5rem;
    }
    #entry .section_body form .form ._item ._body select {
        padding: 1rem 1rem 1rem 1.5rem;
        border-radius: 0.5rem;
        font-size: 1.5rem;
        cursor: pointer;
    }
    #entry .section_body form .form ._item ._body textarea {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
    }
    #entry .section_body form .form ._item ._body ._select {
        position: relative;
        display: inline-block;
    }
    #entry .section_body form .form ._item ._body ._select::before, #entry .section_body form .form ._item ._body ._select::after {
        top: 2.25rem;
        width: 1rem;
        height: 0.25rem;
    }
    #entry .section_body form .form ._item ._body ._select::before {
        right: 1.5rem;
    }
    #entry .section_body form .form ._item ._body ._select::after {
        right: 2.3rem;
    }
    #entry .section_body form .form ._send {
        padding-top: 1rem;
    }
    #entry .section_body form .form ._send input[type=submit],
    #entry .section_body form .form ._send input[type=button] {
        padding: 1rem 5rem;
        font-size: 1.5rem;
        border-radius: 0.5rem;
    }
    #entry .section_body form .form ._send .wpcf7-spinner {
        display: none;
    }
    #entry .section_body form .form_confirm ._item ._body span {
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        font-size: 1.5rem;
        min-height: 4.5rem;
    }
    #entry .section_body form .form_confirm ._send input[type=button].button_back {
        margin-right: 5rem;
    }
    .form_confirm {
        display: none;
    }
    .wpcf7-response-output {
        display: none;
    }
    .wpcf7-not-valid-tip {
        margin: 1rem 1.5rem 0;
    }
    footer {
        padding-bottom: 5rem;
    }
    #copy_right {
        padding: 2rem;
        font-size: 1rem;
    }
}
/* -------------------------------- 1920 --------------------------------*/
@media (width > 1920px) {
    #top .inner ._txt {
        margin-top: 5vh;
    }
}
/* thank you
---------------------------------------------------------------*/
/*# sourceMappingURL=style.css.map */
