@charset "UTF-8";



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

kv

------------------------------------------- */
.top-kv {
	position: relative;
    background: #fff;
}
.top-kv > span {
    display: block;
    font-family: var(--font-josefin);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    position: absolute;
    right: 10rem;
    bottom: 1.8rem;
    line-height: 1;
    z-index: 10;
    letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
    .top-kv > span {
        font-size: 0.8rem;
        right: 1rem;
        bottom: 1rem;
    }
}



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

concept

------------------------------------------- */
.top-concept {
    display: flex;
    position: relative;
}
.top-concept > div {
    width: 50%;
}
@media screen and (max-width: 768px) {
    .top-concept {
        display: block;
    }
    .top-concept > div {
        width: auto;
    }
}
/* ----- wrap-1 ----- */
.top-concept .wrap-1 {

    color: #fff;
    padding: 6rem 8rem 0 18rem;
    position: relative;
    
}
.top-concept .wrap-1::before {
    content: "";
    width: 100%;
    height: calc(100% + 4rem);
    background: url(../img/top-bg-3.jpg) no-repeat center / cover;
    position: absolute;
    left: 0;
    top: -4rem;
    border-radius: 0 2rem 0 0;
}
.top-concept h3 {
    padding-left: 4rem;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .top-concept .wrap-1 {
        background: url(../img/top-bg-3.jpg) no-repeat center / cover;
        color: #fff;
        padding: 4rem 3rem;
    }
    .top-concept .wrap-1::before {
        display: none;
    }    
    .top-concept h3 {
        text-align: center;
        padding-left: 0;
    }
}
/* ----- wrap-2 ----- */
.top-concept .wrap-2 {
    background: var(--bg-blue);
    padding: 8rem 15rem 6rem 8rem;
}
.top-concept p {
    margin-bottom: 4rem;
}
.top-concept .more {
    margin-left: auto;
}
@media screen and (max-width: 768px) {
    .top-concept .wrap-2 {
        padding: 4rem 3rem;
    }
    .top-concept p {
        margin-bottom: 3rem;
    }
    .top-concept .more {
        margin: 0 auto;
    }
}
/* ----- scroll ----- */
.scroll {
    color: #fff;
    position: absolute;
    left: 11rem;
    top: -1.5rem;
    font-family: var(--font-josefin);
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    z-index: 100;
}
.scroll span {
    width: 0.12rem;
    height: 13rem;
    background: #fff;
    animation: scroll infinite 1s;
}
@keyframes scroll {
    0% {
        transform: scale(1,1);
        transform-origin: bottom;
    }
    100% {
        transform: scale(1,0);
        transform-origin: bottom;
    }
}
@media screen and (max-width: 768px) {
    .scroll {
        left: 2rem;
        top: 1.5rem;
        font-size: 1rem;
    }
    .scroll span {
        width: 0.12rem;
        height: 8rem;
    }
}



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

service

------------------------------------------- */
.top-service {
    padding: 8rem 0;
    background: #fff;
    position: relative;
}
/* .top-service::before {
    content: "";
    width: 100%;
    height: 10rem;
    background: linear-gradient(to right, var(--bg-blue-2), var(--bg-blue));
    position: absolute;
    left: 0;
    bottom: 0;
} */
@media screen and (max-width: 768px) {
    .top-service {
        padding: 6rem 3rem;
    }
    /* .top-service::before {
        height: 8rem;
    } */
}
/* ----- wrap ----- */
.top-service .wrap {
    display: flex;
    flex-direction: row-reverse;
}
.top-service .wrap > figure {
    width: 35%;
}
.top-service .wrap > div {
    width: 65%;
    padding-right: 10rem;
}
.top-service .wrap > div > div {
    padding-left: 4rem;
}
.top-service .wrap p {
    margin: 5.5rem 0;
}
@media screen and (max-width: 768px) {
    .top-service .wrap {
        display: block;
    }
    .top-service .wrap > figure {
        width: auto;
        margin-bottom: 4rem;
    }
    .top-service .wrap > div {
        width: auto;
        padding-right: 0;
    }
    .top-service .wrap > div > div {
        padding-left: 0;
    }
    .top-service .wrap h3 {
        text-align: center;
    }
    .top-service .wrap p {
        margin: 3rem 0;
    }
}


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

aside

------------------------------------------- */
.container aside {
    padding: 0;
    background: none;
}
aside {
    padding: 5rem 0;
    background: #fff;
}
aside ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
aside ul li {
    width: 48.5%;
}
aside ul li:nth-child(n + 3) {
    margin-top: 3%;
}
aside ul li a {
    display: block;
    box-shadow: 0.4rem 0.4rem 0.8rem rgba(0,0,0,0.4);
}
aside ul li a:hover {
    opacity: 1;
    box-shadow: 0 0 0 rgba(0,0,0,0.4);  
}
@media screen and (max-width: 768px) {
    aside {
        padding: 4rem 3rem;
    }
    aside ul {
        display: block;
    }
    aside ul li {
        width: auto;
    }
    aside ul li:not(:last-child) {
        margin-bottom: 2rem;
    }
    aside ul li:nth-child(n + 3) {
        margin-top: 0;
    }
}



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

parallax

------------------------------------------- */
.bg-parallax {
    height: 30rem;
}
.bg-parallax::before {
    content: "";
    background: url(../img/bg-pa.jpg) no-repeat center / cover;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .bg-parallax::before {
        background: url(../img/bg-pa-sp.jpg) no-repeat center / cover;
    }
}



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

herbal_sauna

------------------------------------------- */
.top-herbal_sauna {
    background: #fff;
    padding: 6rem 0;
}
@media screen and (max-width: 768px) {
    .top-herbal_sauna {
        padding: 6rem 3rem;
    }
}
/* ----- wrap-1 ----- */
.top-herbal_sauna .wrap-1 {
    display: flex;
    align-items: center;
}
.top-herbal_sauna .wrap-1 > div:nth-of-type(1) {
    width: 45%;
}
.top-herbal_sauna .wrap-1 > div:nth-of-type(1) > div {
    padding-left: 3rem;
}
.top-herbal_sauna .wrap-1 > div:nth-of-type(1) h3 {
    margin-bottom: 4rem;
}
.top-herbal_sauna .wrap-1 > div:nth-of-type(2) {
    width: 55%;
}
.top-herbal_sauna .wrap-1 > div:nth-of-type(2) figure {
    margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
    .top-herbal_sauna .wrap-1 {
        display: block;
    }
    .top-herbal_sauna .wrap-1 > div:nth-of-type(1) {
        width: auto;
    }
    .top-herbal_sauna .wrap-1 > div:nth-of-type(1) > div {
        padding-left: 0;
    }
    .top-herbal_sauna .wrap-1 > div:nth-of-type(1) h3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    .top-herbal_sauna .wrap-1 > div:nth-of-type(2) {
        width: auto;
    }
    .top-herbal_sauna .wrap-1 > div:nth-of-type(2) figure {
        margin-bottom: 2rem;
    }
    .top-herbal_sauna .wrap-1 p {
        margin-bottom: 3rem;
    }
}
/* ----- wrap-2 ----- */
.top-herbal_sauna .wrap-2 {
    margin-top: 7rem;
}
.top-herbal_sauna .wrap-2 h3 {
    font-weight: 500;
    font-size: 2rem;
    color: var(--blue-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}
.top-herbal_sauna .wrap-2 h3::before,
.top-herbal_sauna .wrap-2 h3::after {
    content: "";
    width: 3rem;
    height: 3rem;
}
.top-herbal_sauna .wrap-2 h3::before {
    background: url(../img/deco-1.png) no-repeat;
    background-size: 100% auto;
}
.top-herbal_sauna .wrap-2 h3::after {
    background: url(../img/deco-2.png) no-repeat;
    background-size: 100% auto;
}
.top-herbal_sauna .wrap-2 > div {
    width: 56rem;
    height: 32rem;
    background: #606060;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .top-herbal_sauna .wrap-2 h3::before,
    .top-herbal_sauna .wrap-2 h3::after {
        width: 4rem;
        height: 4rem;
    }
    .top-herbal_sauna .wrap-2 > div {
        width: auto;
        height: 24rem;
    }
}



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

other

------------------------------------------- */
.top-other {
    background: url(../img/top-bg-5.jpg) no-repeat center right / cover;
    padding: 5rem 0;
}
.top-other ul {
    display: flex;
    justify-content: space-between;
    width: 80rem;
    margin: 0 auto;
}
.top-other ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    padding: 5rem 0 4rem 0;
}
.top-other ul li:nth-child(1) {
    background: url(../img/top-bg-1.jpg) no-repeat center / cover;
}
.top-other ul li:nth-child(2) {
    background: url(../img/top-bg-2.jpg) no-repeat center / cover;
}
.top-other h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.container .top-other {
    background: none;
    padding: 0;
    margin-top: 3rem;
}
.container .top-other ul li {
    border: solid 1rem var(--bg-blue);
    background: #fff;
} 
@media screen and (max-width: 768px) {
    .top-other {
        padding: 3rem;
    }
    .top-other ul {
        display: block;
        width: auto;
    }
    .top-other ul li {
        width: auto;
        padding: 5rem 0 4rem 0;
    }
    .top-other ul li:not(:last-child) {
        margin-bottom: 3rem;
    }
}
.top-other .more {
    width: 30rem;
    border-radius: 10rem;
    padding: 1.2rem 0 1.4rem 4rem;
    background: url(../img/arrow-bk.png) no-repeat center right 3rem;
	background-size: auto 1rem;
    position: relative;
}
.top-other li:nth-child(1) .more {
    background-color: rgba(255,255,255,0.5);
}
.top-other li:nth-child(1) .more:hover {
    background: url(../img/arrow-wh.png) no-repeat center right 3rem;
	background-size: auto 1rem;
    background-color: var(--grey);
}
.top-other li:nth-child(2) .more {
    color: #fff;
    background: url(../img/arrow-wh.png) no-repeat center right 3rem;
	background-size: auto 1rem;
    border: none;
    padding: 1.3rem 0 1.5rem 4rem;
}
.top-other li:nth-child(2) .more:hover::before {
    opacity: 1;
}
.top-other li:nth-child(2) .more::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #a5aaef,#53cddf);
    opacity: 0.8;
    border-radius: 10rem;
    z-index: -1;
    transition: all .3s;
}



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

news

------------------------------------------- */
.top-news {
    padding: 6rem 0 8rem 0;
    background: #fff;
}
/* ----- wrap ----- */
.top-news .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.top-news h2 {
    margin-bottom: 0;
}
.top-news .CMS-NEWS-INDEX {
    padding-bottom: 0;
}
.top-news .CMS-NEWS-MORE-READ {
    display: none;
}
@media screen and (max-width: 768px) {
    .top-news {
        padding: 6rem 3rem;
    } 
    .top-news .wrap {
        display: block;
        margin-bottom: 3rem;
    }
    .top-news h2 {
        margin-bottom: 0;
    }
    .top-news .more {
        margin-top: 4rem;
    }
}



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

contact

------------------------------------------- */
.top-contact {
    background: var(--bg-blue-2);
    padding: 6rem 0 0 0;
}
@media screen and (max-width: 768px) {
    .top-contact {
        padding: 3rem 3rem 0 3rem;
    }
}
/* ----- wrap ----- */
.top-contact .wrap {
    background: #fff;
    padding: 6rem 10rem;
}
.top-contact .wrap > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.top-contact .wrap > div h2 {
    margin-bottom: 0;
    white-space: nowrap;
}
.top-contact .wrap > div p {
    padding-left: 6rem;
}
@media screen and (max-width: 768px) {
    .top-contact .wrap {
        padding: 3rem;
    }
    .top-contact .wrap > div {
        display: block;
        margin-bottom: 2rem;
    }
    .top-contact .wrap > div h2 {
        margin-bottom: 3rem;
    }
    .top-contact .wrap > div p {
        padding-left: 0;
    }
}
/* ----- ul ----- */
.top-contact ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-contact ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5.6rem;
    color: #fff;
    border-radius: 10rem;
    width: 30rem;
    font-size: 1.4rem;
}
.top-contact ul li a img:nth-of-type(1) {
    width: 2rem;
    margin-right: 1.2rem;
}
.top-contact ul li a img:nth-of-type(2) {
    width: 2.6rem;
    margin-left: 1rem;
}
.top-contact ul li:nth-child(1) a {
    background: var(--blue-2);
}
.top-contact ul li:nth-child(2) a {
    background: var(--blue-1);
}
.top-contact ul li:nth-child(1) {
    margin-right: 1.5rem;
}
.top-contact ul li:nth-child(1) span {
    padding-bottom: 0.3rem;
}
.top-contact ul li:nth-child(2) span {
    font-family: var(--font-josefin);
    font-size: 2rem;
    padding-top: 0.6rem;
}
@media screen and (max-width: 768px) {
    .top-contact ul {
        display: block;
    }
    .top-contact ul li a {
        width: auto;
    }
    .top-contact ul li:nth-child(1) {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}



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

test

------------------------------------------- */
.test dl dt {
    font-weight: 500;
}
.test dl dd:not(:last-of-type) {
    margin-bottom: 2rem;
}
.test_list li{
    list-style: square;
    margin-left: 2rem;
}

.test_subttl{
    font-size: 2rem;
    font-weight: 600;
    padding: 3rem 0 2rem;
}

.test_subttl.small{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 2rem 0 1rem;
}



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

form

------------------------------------------- */
.CMS-FORM-GROUP {
    display: flex;
    align-items: center;
}
.CMS-FORM-GROUP:not(:last-of-type) {
    margin-bottom: 4rem;
}
.CMS-FORM-GROUP > label {
    width: 30%;
    font-weight: 500;
}
.CMS-FORM-GROUP input,
.CMS-FORM-GROUP textarea {
    width: 70%;
    padding: 2rem;
    border: #ddd solid 1px;
}
.CMS-FORM-INPUT,
.CMS-FORM-EMAIL {
    -webkit-appearance: none;
    appearance: none;
}
.CMS-FORM-GROUP textarea {
    height: 16rem;
    -webkit-appearance: none;
    appearance: none;
}
.CMS-FORM-GROUP input[type="submit"] {
    background: var(--prime);
    border: none;
    color: #fff;
    display: block;
    font-weight: 500;
    font-size: 1.6rem;
    width: 24rem;
    padding: 2rem 0;
    margin: 0 auto;
    transition: all .3s;
}
.CMS-FORM-GROUP input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.5;
}
.CMS-FORM-RADIO input[type="radio"] {
    width: 2rem;
    height: 2rem;
    display: block;
    margin-top: 0.9rem;
    border-radius: 50%;
}
.CMS-FORM-RADIO {
    width: 70%;
}
.CMS-FORM-RADIO > div {
    display: flex;
    align-items: center;
}
.CMS-FORM-RADIO label{
    display: block;
    width: calc(100% - 3.5rem);
    margin-top: 0.8rem;
    margin-left: 0.5rem;
    font-weight: normal;
}
_::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO label {
    margin-top: 0;
}
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-appearance: button;
    appearance: button;
    border: none;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
}
.his {
    background: rgba(240,0,0,1);
    line-height: 1;
    color: #fff;
    font-size: 1.1rem;
    padding: 0.2rem 0.7rem 0.4rem 0.7rem;
    margin-left: 1.0rem;
    vertical-align: 0.1rem;
    font-weight: normal;
    border-radius: 10rem;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP {
        display: block;
    }
    .CMS-FORM-GROUP label {
        width: 100%;
        display: block;
        margin-bottom: 1rem;
    }
    .CMS-FORM-GROUP input,
    .CMS-FORM-GROUP textarea {
        width: 100%;
    }
    .CMS-FORM-RADIO input[type="radio"] {
        transform: scale(0.6);
    }
    _::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO label {
        margin-top: 1.4rem;
        margin-left: 0;
    }
    .CMS-FORM-GROUP input[type="submit"] {
        width: 100%;
        padding: 2rem 0;
        font-size: 1.8rem;
    }   
    input[type="date"] {
        width: 100%;
        font-size: 2rem;
        color: #000;
    }
}



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

privacy

------------------------------------------- */
.privacy {
	border: 0.2rem solid #ccc;
	padding: 2rem;
	height: 48rem;
	overflow: auto;
	background: #fff;
}
.privacy-note {
    margin-bottom: 3rem;
}



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

thanx

------------------------------------------- */
.thanx {
    text-align: center;
}
.back {
    text-align: center;
    display: block;
}
@media screen and (max-width: 768px) {
    .thanx {
        text-align: left;
    }
}



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

slick

------------------------------------------- */
.slick-slider {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* ----- couter ----- */
svg.progress {
    width: 12rem;
    display:block;
    background: rgba(255,255,255,0.6);
    border: solid 0.12rem #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}
@media screen and (max-width: 768px) {
    svg.progress {
        width: 6rem;
    }
}
circle.progress{
    fill: none;
    stroke:#fff;
    stroke-width: 0.5rem;
    stroke-dasharray: 314;
    animation: progress ease 5s infinite;
}
/* @keyframes progress {
    0% {
        stroke-dashoffset: 314;
    }
    100% {
        stroke-dashoffset: 0;
    }
} */
.slick-counter {
    width: 12rem;
    height: 12rem;
    position: absolute;
    right: 8rem;
    bottom: 5.5rem;
    font-weight: 500;
    font-family: var(--font-josefin);
    color: #fff;
    background: rgba(255,255,255,0.7);
    border: solid 0.3rem #fff;
    border-radius: 50%;
}
.slick-counter::before {
    content: "";
    width: 0.25rem;
    height: 4rem;
    background: #fff;
    transform: translate(-50%,-50%) rotate(25deg);
    position: absolute;
    top: 50%;
    left: 50%;
    position: absolute;
}
.total {
    position: absolute;
    font-size: 2.8rem;
    right: 3.5rem;
    bottom: 2.5rem;
}
.slick-counter .current {
    position: absolute;
    font-size: 2.8rem;
    left: 3.5rem;
    top: 3rem;
}
@media screen and (max-width: 768px) {
    .slick-counter {
        width: 6rem;
        height: 6rem;
        right: 1rem;
        bottom: 3rem;
    }
    .slick-counter::before {
        width: 0.15rem;
        height: 3rem;
    }
    .total {
        font-size: 1.6rem;
        right: 1.5rem;
        bottom: 1rem;
    }
    .slick-counter .current {
        font-size: 1.6rem;
        left: 1.6rem;
        top: 1.2rem;
    }
}
.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 100;
    border: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    text-indent: -9999em;
}
.slick-arrow:hover {
    opacity: .6;
}
.slick-prev {
    left: -9.5rem;
    background: url(../img/prev.png) no-repeat center;
    background-size: 7rem;
    width: 7rem;
    height: 7rem;
}
.slick-next {
    right: -9.5rem;
    background: url(../img/next.png) no-repeat center;
    background-size: 7rem;
    width: 7rem;
    height: 7rem;
}



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

recruit

------------------------------------------- */
.recruit .container > div:nth-of-type(1),
.recruit .container > div:nth-of-type(3) {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}
.recruit .container > div:nth-of-type(3) a {
    text-decoration: underline;
}
.recruit .container > div:nth-of-type(2) {
    margin: 2rem auto;
    width: 80%;
    background: #6CACC9;
    color: #fff;
    padding: 2rem 10rem;
    display: flex;
    justify-content: center;
}
.recruit .container > div:nth-of-type(2) ul {
    display: flex;
    font-weight: bold;
    font-size: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.recruit .container > div:nth-of-type(2) ul li {
    text-align: center;
    width: 50%;
}
.recruit .container > div:nth-of-type(2) ul li:last-child {
    width: 100%;
    margin-top: 0.5rem;
}
.recruit .container > div:nth-of-type(2) li span::before {
    content: "・";
}
@media screen and (max-width: 768px) {
    .recruit .container > div:nth-of-type(2) {
        width: 100%;
        padding: 2rem 0 2.3rem 0;
    }
    .recruit .container > div:nth-of-type(2) ul {
        display: block;
    }
    .recruit .container > div:nth-of-type(2) ul li {
        width: 100%;
    }
    .recruit .container > div:nth-of-type(2) ul li:last-child {
        margin-top: 0;
    }
}



/* ---- recruit-story ---- */
.recruit-story dl {
    position: relative;
    padding-left: 8rem;
    padding-bottom: 4rem;
}
.recruit-story dl::before {
    content: "";
    width: 0.16rem;
    height: 100%;
    background: var(--prime);
    position: absolute;
    left: 5rem;
    top: 0;
}
.recruit-story dt {
    color: var(--prime);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.recruit-story dt::before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: var(--prime);
    border-radius: 50%;
    position: absolute;
    left: -3.6rem;
    top: 1rem
}
.recruit-story dd {
    display: flex;
    position: relative;
}
.recruit-story dd:last-of-type::before {
    content: "Now";
    color: var(--prime);
    font-weight: 500;
    position: absolute;
    left: -8rem;
    bottom: -2.9rem;
    font-size: 1.7rem;
}
.recruit-story dd:last-of-type::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: var(--prime);
    border-radius: 50%;
    position: absolute;
    left: -3.6rem;
    bottom: -2.5rem
}
.recruit-story dd img {
    width: 30rem;
    height: auto;
    object-fit: cover;
}
.recruit-story dd p {
    margin-left: 2rem;
}
.recruit-story dd:not(:last-of-type) {
    margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
    .recruit-story dl {
        padding-left: 4rem;
        padding-bottom: 2.5rem;
    }
    .recruit-story dl::before {
        left: 1rem;
    }
    .recruit-story dd {
        display: block;
    }
    .recruit-story dd:last-of-type::before {
        left: -5rem;
        bottom: -5rem;
    }
    .recruit-story dd img {
        width: 30rem;
        height: auto;
        object-fit: cover;
    }
    .recruit-story dd p {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* ---- recruit-wokrs ---- */
.recruit-wokrs ul {
    display: flex;
    justify-content: space-between;
}
.recruit-wokrs ul li {
    width: 32%;
}
.recruit-wokrs dt {
    color: var(--prime);
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    margin: 1.5rem 0 1.2rem 0;
}
@media screen and (max-width: 768px) {
    .recruit-wokrs ul {
        display: block;
    }
    .recruit-wokrs ul li {
        width: 100%;
    }
    .recruit-wokrs ul li:not(:last-child) {
        margin-bottom: 4rem;
    }
    .recruit-wokrs dt {
        font-size: 1.8rem;
    }
}

/* ---- recruit-program ---- */
.recruit-program table {
    width: 100%;
    border-collapse: collapse;
}
.recruit-program table th,
.recruit-program table td {
    vertical-align: middle;
    padding: 1.5rem;
}
.recruit-program table th {
    background: #58D2DD;
    color: #fff;
    border: solid 0.2rem #fff;
    font-size: 1.6rem;
}
.recruit-program table td {
    border: solid 0.2rem #fff;
    background: #F5F5F5;
}
@media screen and (max-width: 768px) {
    .recruit-program table tr {
        display: flex;
        flex-direction: column;
    }
}

/* ---- recruit-rewards ---- */
.recruit-rewards ul {
    display: flex;
    justify-content: space-between;
}
.recruit-rewards ul li {
    width: 32%;
    background: #F5F5F5;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.recruit-rewards ul li figure img {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    object-fit: cover;
}
.recruit-rewards ul dt {
    color: var(--prime);
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 8rem;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .recruit-rewards ul {
        display: block;
    }
    .recruit-rewards ul li {
        width: 100%;
    }
    .recruit-rewards ul li:not(:last-child) {
        margin-bottom: 4rem;
    }
    .recruit-rewards ul dt {
        font-size: 1.8rem;
    }
}
/* div */
.recruit-rewards div {
    margin-top: 6rem;
    background: #58D2DD24;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recruit-rewards div dl {
    width: 60%;
}
.recruit-rewards div figure {
    width: 30%;
}
.recruit-rewards div > dl > dt {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.recruit-rewards div > dl > dd > dl dt {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
    .recruit-rewards div {
        margin-top: 3rem;
        flex-direction: column-reverse;
    }
    .recruit-rewards div dl {
        width: 100%;
    }
    .recruit-rewards div figure {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* ---- recruit-num ---- */
.recruit-num ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.recruit-num ul li {
    width: 32%;
    margin-right: 2%;
}
.recruit-num ul li:nth-child(3n) {
    margin-right: 0;
}
.recruit-num ul li:nth-child(n + 4) {
    margin-top: 2%;
} 
@media screen and (max-width: 768px) {
    .recruit-num ul {
        display: block;
    }
    .recruit-num ul li {
        width: 100%;
        margin-right: 0;
    }
    .recruit-num ul li:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    .recruit-num ul li:nth-child(n + 4) {
        margin-top: 0;
    } 
}

/* ---- recruit-voice ---- */
.recruit-voice > div {
    background: #F5F5F5;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.recruit-voice div figure {
    width: 35%;
}
.recruit-voice div div {
    width: 60%;
}
.recruit-voice h4 {
    color: var(--prime);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
    .recruit-voice > div {
        flex-direction: column;
    }
    .recruit-voice div figure {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .recruit-voice div div {
        width: 100%;
    }
}

/* ---- recruit-flow ---- */
.recruit-flow {

}
.recruit-flow div {
    background: #F5F5F5;
    height: 20rem;
}


@media screen and (max-width: 768px) {
}

.recruit-ttl .ttl {
    padding-right: 3.5rem;
}
.recruit-ttl {
    position: relative;
    transition: all .3s;
}
.recruit-ttl i {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    right: 0;
    top: calc(50% - 0.75rem);
    border: solid 0.15rem var(--prime);
    border-radius: 50%;
}
.recruit-ttl i::before,
.recruit-ttl i::after {
    content: "";
    background: var(--prime);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.recruit-ttl i::before {
    width: 60%;
    height: 0.2rem;
}
.recruit-ttl i::after {
    width: 0.2rem;
    height: 60%;
    transition: all .3s;
}
.recruit-ttl.open i::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.recruit-ttl:hover {
    cursor: pointer;
    opacity: 0.6;
}



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

top-recruit

------------------------------------------- */
.top-recruit {
    background: url(../img/top-bg-4.png) no-repeat left top;
    background-size: auto 100%;
    background-color: #e6dfd2;
    padding: 10rem 0;
    border-top: solid 0.2rem var(--grey);
    border-bottom: solid 0.2rem var(--grey);
}
.top-recruit > div {
    padding: 0 10rem 0 40rem;
}
.top-recruit .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}
.top-recruit h2 {
    margin-bottom: 0;
}
.top-recruit .wrap p {
    padding-left: 6rem;
}
.top-recruit .more-wrap {
    display: flex;
}
.top-recruit .more-wrap a {
    padding: 1.2rem 0 1.7rem 2rem;
}
.top-recruit .more-wrap a:nth-of-type(1) {
    background-color: #fff;
}
.top-recruit .more-wrap a:nth-of-type(1):hover {
	background-color: var(--grey);
}
.top-recruit .more-wrap a:nth-of-type(2) {
    background: url(../img/arrow-wh.png) no-repeat center right 1rem;
	background-size: auto 1rem;
    background-color: #2a92a0;
    color: #fff;
    border: solid 0.2rem #2a92a0;
}
.top-recruit .more-wrap a:nth-of-type(2):hover {
    background-color: var(--prime);
    border: solid 0.2rem var(--prime);
}
@media screen and (max-width: 768px) {
    .top-recruit {
        padding: 8rem 3rem;
        position: relative;
    }
    .top-recruit::before {
        content: "";
        width: 100%;
        height: 100%;
        background: #e6dfd2;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0.9;
    }
    .top-recruit > div {
        padding: 0;
        position: relative;
        z-index: 100;
    }
    .top-recruit .wrap {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    .top-recruit h2 {
        margin-bottom: 2rem;
    }
    .top-recruit .wrap p {
        padding-left: 0;
    }
    .top-recruit .more-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .top-recruit .more-wrap a {
        width: 48%;
    }
    .top-recruit .more-wrap a:nth-of-type(1) {
        margin-right: 0;
    }
    .top-recruit .more {
        margin: 0;
    }
}



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

tiktok

------------------------------------------- */
.tiktok {
    width: 80rem;
    margin: 5rem auto 0 auto;
}
.tiktok a {
    position: relative;
    background:
        url(../img/deco-3.png) no-repeat left 0.5rem top 0.5rem,
        url(../img/deco-4.png) no-repeat right 0.5rem top 0.5rem,
        url(../img/deco-5.png) no-repeat left 0.5rem bottom 0.5rem;
    background-size:
        4rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.tiktok a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #a5aaef,#53cddf);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.tiktok a:hover {
    opacity: 1;
}
.tiktok a > * {
    position: relative;
    z-index: 10;
}
.tiktok a > img {
    width: 14rem;
}
.tiktok a > div {
    padding-left: 5rem;
    color: #fff;
}
.tiktok a h3 {
    font-size: 1.8rem;
    border-bottom: solid 0.12rem #fff;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.tiktok a p {
    margin-bottom: 2rem;
}
.tiktok a .more {
    background: url(../img/arrow-wh.png) no-repeat center right 1rem;
	background-size: auto 1rem;
    color: #fff;
    padding: 0;
    border: none;
    width: 16rem;
    margin-left: auto;
    position: relative;
    right: -8rem;
}
@media screen and (max-width: 768px) {
    .tiktok {
        width: auto;
        margin: 3rem auto 0 auto;
    }
    .tiktok a {
        flex-direction: column;;
        padding: 2rem 3rem 3rem 3rem;
    }
    .tiktok a > img {
        width: 14rem;
        margin-bottom: 2rem;
    }
    .tiktok a > div {
        padding-left: 0;
    }
    .tiktok a h3 {
        font-size: 1.6rem;
    }
    .tiktok a p {
        margin-bottom: 3rem;
    }
    .tiktok a .more {
        right: auto;
        margin: 0 0 0 auto;
    }
}