@charset "utf-8";


/* ----------------------------------------------------------------------
	under
---------------------------------------------------------------------- */

/* l-under-mainimg */
.l-under-mainimg { position: relative; }

.l-under-mainimg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 1;
    background: url("../img/mainimg_bg.svg") center center no-repeat;
    background-size: 100vw 12vw;
    width: 100vw;
    height: 12vw;
    display: block;
}

.l-under-mainimg::after,
.l-cc-mainimg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/logo_bg.svg") center center no-repeat;
    background-size: 260px;
    width: 260px;
    height: 260px;
    display: block;
}

.l-under-mainimg-ph {
    position: relative;
    padding-left: 300px;
}

.l-under-mainimg-ph::before {
    content: "";
    position: absolute;
    top: 0;
    left: 300px;
    background-image: linear-gradient(90deg, #fff9f1 30%, transparent);
    width: 460px;
    height: 100%;
    display: block;
}

.l-under-mainimg-ph img { width: 100%; }

.l-under-mainimg-ttl {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    line-height: 1.5;
}

.l-under-mainimg-ttl__en {
     color: var(--color-red);
     font-size: 6rem;
     font-weight: 200;
     letter-spacing: 0;
}

.l-under-mainimg-ttl__ja {
    font-size: 2rem;
    font-weight: normal;
}

@media screen and (max-width: 990px) {
    .l-under-mainimg {
        position: relative;
        margin: 0 0 15px;
    }

    .l-under-mainimg::after,
    .l-cc-mainimg::after {
        background-size: 120px;
        width: 120px;
        height: 120px;
    }

    .l-under-mainimg-ph {
        position: relative;
        padding-left: 0;
        margin: 0 0 5px;
    }

    .l-under-mainimg-ph::before {
        left: 0;
        background-image: linear-gradient(90deg, #fff9f1 20%, transparent);
        width: 80%;
        /*background: var(--color-beige);
        width: 100%;
        opacity: 0.9;*/
    }

    .l-under-mainimg-ph img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: left center;
    }
    
    .strength .l-under-mainimg-ph img { object-position: right center; }

    .l-under-mainimg-ttl {
        left: 30px;
        z-index: 1;
        transform: translateY(calc(-50% + 10px));
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    }

    .l-under-mainimg-ttl__en {
         color: var(--color-red);
         font-size: 3rem;
    }

    .l-under-mainimg-ttl__ja {
        position: relative;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 990px) and  (orientation: landscape) {
    .l-under-mainimg-ph img { height: 480px; }
}


/* breadclumb */
.breadclumb {
    font-size: 1.4rem;
    text-align: right;
    margin: 0 50px 60px;
}

@media screen and (max-width: 990px) {
	.breadclumb {
		font-size: 1.2rem;
        text-align: left;
		overflow-x: auto;
		white-space: nowrap;
        margin: 0 0 40px 30px;
	}
}


/* l-lead */
.l-lead {
    text-align: center;
    margin: 0 0 80px;
}

.l-lead__catch {
    color: var(--color-red);
    font-size: 2rem;
    margin: 0 0 0.6em;
}

.l-lead__txt { line-height: 1.8; }

.l-lead__txt span { display: block; }

@media screen and (max-width: 990px) {
    .l-lead { margin: 0 0 60px; }

    .l-lead__catch {
        font-size: 1.8rem;
        margin: 0 0 0.6em;
    }

    .l-lead__txt { text-align: left; }
    
    .l-lead__txt span { display: inline; }
}


/* ----------------------------------------------------------------------
	strength
---------------------------------------------------------------------- */

.l-strength { margin: 0 0 140px; }

.l-strength-inner {
    position: relative;
    background: var(--color-white);
    padding: 40px 50px;
    margin: 0 5px 100px;
    border-radius: 20px;
}

.l-strength-inner:last-child { margin: 0; }

.l-strength-inner::before,
.l-strength-inner::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: calc(100% - 5px);
    height: 100%;
    display: block;
    border-radius: 20px;
}

.l-strength-inner::before {
    background: var(--color-light-pink);
    left: -5px;
}

.l-strength-inner::after {
    background: var(--color-light-yellow);
    right: -5px;
}

.l-strength-ttl-en {
    position: absolute;
    top: -34px;
    left: 570px;
    z-index: 1;
    color: var(--color-red);
}

.l-strength-inner--reverse .l-strength-ttl-en { left: 50px; }

.l-strength-ttl-en__txt {
    position: relative;
    font-size: 3rem;
    padding-left: 34px;
    display: inline-block;
}

.l-strength-ttl-en__txt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
    background-image: linear-gradient(325deg, #fdf4da, #fceef2);
    width: 56px;
    height: 56px;
    display: block;
    border-radius: 50%;
}

.l-strength-ttl-en__num {
    font-size: 4rem;
    margin: 0 auto;
    width: 78px;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: translateX(17px);
}

.l-strength-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.l-strength-inner--reverse .l-strength-column { flex-direction: row-reverse; }

.l-strength-box { width: 470px; }

.l-strength-ttl-ja {
    font-size: 2.6rem;
    margin: 0 0 0.8em;
}

@media screen and (max-width: 990px) {
    .l-strength { margin: 0 0 80px; }

    .l-strength-inner {
        padding: 20px;
        margin: 0 5px 30px;
        border-radius: 10px;
    }

    .l-strength-inner:last-child { margin: 0; }

    .l-strength-inner::before,
    .l-strength-inner::after { border-radius: 10px; }

    .l-strength-ttl-en {
        position: static;
        transform: translateX(-12px);
        text-align: center;
        margin: -25px 0 10px;
    }

    .l-strength-ttl-en__txt { padding-left: 24px; }

    .l-strength-ttl-en__txt::before {
        width: 46px;
        height: 46px;
    }

    .l-strength-ttl-en__num {
        font-size: 3.2rem;
        width: 60px;
        height: 60px;
        display: flex;
        transform: translateX(12px);
    }

    .l-strength-column { display: block; }

    .l-strength-inner--reverse .l-strength-column { flex-direction: row-reverse; }

    .l-strength-box { width: 100%; }
    
    .l-strength-ph img { width: 100%; }
    
    .l-strength-ttl-ja {
        font-size: 1.8rem;
        text-align: center;
        margin: 0 0 0.6em;
    }
    
    .l-strength-ttl-ja .br { display: inline-block; }
}


/* ----------------------------------------------------------------------
	service
---------------------------------------------------------------------- */

/* l-service-suitable */
.l-service-suitable {
    margin: 0 auto;
    max-width: 1100px;
}

.l-service-suitable-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.l-service-suitable-list > li {
    background: var(--color-beige);
    padding: 20px 30px 25px;
    width: calc((100% - 80px) / 3);
    border-radius: 10px;
}

.l-service-suitable-list dl dt {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 0 0.6em;
    margin: 0 0 0.8em;
    border-bottom: 1px solid var(--color-border);
}

@media screen and (max-width: 990px) {
    .l-service-suitable-list {
        margin: 0 30px;
        display: block;
    }

    .l-service-suitable-list > li {
        padding: 20px 20px 25px;
        margin: 0 0 30px;
        width: 100%;
    }
    
    .l-service-suitable-list > li:last-child { margin: 0; }
}


/* l-service-case */
.l-service-case { margin: 0 0 120px; }

.l-service-case-inner { margin: 0 0 30px; }
.l-service-case-inner:last-child { margin: 0; }

.l-service-case-ttl {
    position: relative;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 1.8rem;
    padding: 20px 80px 20px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s;
}
.l-service-case-ttl.on { background: var(--color-yellow); }
.l-service-case-ttl:hover { opacity: 0.8; }

.l-service-case-ttl .icon-plus {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.l-service-case-box {
    background: var(--color-white);
    padding: 50px;
    margin-top: 20px;
    border-radius: 10px;
    display: none;
}

.l-service-case-tbl th { width: 140px; } 

@media screen and (max-width: 990px) {
    .l-service-case { margin: 0 0 80px; }

    .l-service-case-ttl {
        padding: 20px 60px 20px 20px;
        font-size: 1.6rem;
    }

    .l-service-case-ttl .icon-plus { right: 20px; }

    .l-service-case-box { padding: 20px; }

    .l-service-case-tbl th { width: 100%; } 
}


/* l-service-faq */
.l-service-faq { margin: 0 0 120px; }

@media screen and (max-width: 990px) {
    .l-service-faq { margin: 0 0 80px; }
}


/* ----------------------------------------------------------------------
	telemarketing
---------------------------------------------------------------------- */

/* l-tele-intro */
.l-tele-intro {
    padding: 50px;
    margin: 0 0 120px;
    border-radius: 20px;
}

.l-tele-intro-inner {
    background: var(--color-white);
    padding: 50px;
}

.l-tele-intro-column {
    padding: 0 0 40px;
    margin: 0 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.l-tele-intro-column:last-child {
    padding: 0;
    margin: 0;
    border: none;
}

.l-tele-intro-column--reverse { flex-direction: row-reverse; }

.l-tele-intro-img { width: 300px; }
.l-tele-intro-img figcaption {
    color: var(--color-red);
    font-size: 4rem;
    font-weight: 200;
    text-align: center;
    margin-top: 0.3em;
} 

.l-tele-intro-box { width: 540px; }

.l-tele-intro-ttl {
    color: var(--color-red);
    font-size: 2.6rem;
    padding-left: 10px;
    margin: 0 0 0.6em;
    border-left: 3px solid var(--color-red);
}

.l-tele-intro-txt { line-height: 1.8; } 

@media screen and (max-width: 990px) {
    .l-tele-intro {
        padding: 10px;
        margin: 0 0 80px;
        border-radius: 10px;
    }

    .l-tele-intro-inner { padding: 30px 20px 20px; }

    .l-tele-intro-column {
        padding: 0 0 30px;
        margin: 0 0 30px;
        display: block;
    }

    .l-tele-intro-column:last-child {
        padding: 0;
        margin: 0;
        border: none;
    }

    .l-tele-intro-img {
        margin: 0 30px 20px;
        width: auto;
    }
    
    .l-tele-intro-img img { width: 100%; }
    
    .l-tele-intro-img figcaption { font-size: 2.6rem; } 

    .l-tele-intro-box { width: 100%; }

    .l-tele-intro-ttl { font-size: 2rem; }
}


/* l-tele-tools */
.l-tele-tools {
    background: url("../../img/telemarketing/tools_bg.webp") center center no-repeat;
    background-size: cover;
    padding: 80px 0 100px;
    margin: 0 0 120px;
}

.l-tele-tools-inner {
    margin: 0 auto;
    max-width: 1100px;
}

.l-tele-tools-txt {
    text-align: center;
    margin: 0 0 1.4em;
}

.l-tele-tools-list {
    margin: 0 auto;
    max-width: 680px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.l-tele-tools-list li {
    background: var(--color-yellow);
    color: var(--color-white);
    text-align: center;
    padding-top: 34px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.l-tele-tools-list li figcaption { margin-top: 0.4em; }

@media screen and (max-width: 990px) {
    .l-tele-tools {
        background: url("../../img/telemarketing/tools_bg_sp.webp") center top no-repeat;
        background-size: cover;
        padding: 40px 30px 60px;
        margin: 0 0 80px;
    }

    .l-tele-tools-txt { text-align: left; }

    .l-tele-tools-list {
        gap: 20px 0;
        max-width: 315px;
    }

    .l-tele-tools-list li {
        padding-top: 36px;
        width: 145px;
        height: 145px;
    }

    .l-tele-tools-list li figcaption { margin-top: 0.5em; }
}


/* ----------------------------------------------------------------------
	bpo
---------------------------------------------------------------------- */

/* l-bpo-problem */
.l-bpo-problem {
    position: relative;
    background: var(--color-white);
    padding: 60px 0 100px;
    margin: 0 0 80px
}

.l-bpo-problem::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    background: var(--color-white);
    width: 260px;
    height: 60px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.l-bpo-problem-inner {
    position: relative;
    margin: 0 auto;
    max-width: 1175px;
}

.l-bpo-problem-catch {
    color: var(--color-yellow);
    font-size: 2.6rem;
    text-align: center;
    margin: 0 0 1em;
}

.l-bpo-problem-catch__large { font-size: 3.6rem; }

.l-bpo-problem-fukidashi {
    position: relative;
    z-index: 1;
    width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 72px 30px;
}

.l-bpo-problem-fukidashi li {
    position:  relative;
    text-align: center;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
}

.l-bpo-problem-fukidashi li:nth-child(2n - 1) { background:  var(--color-light-yellow); }
.l-bpo-problem-fukidashi li:nth-child(2n) { background:  var(--color-light-pink); }

.l-bpo-problem-fukidashi li::before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -37px;
    width: 30px;
    height: 37px;
}

.l-bpo-problem-fukidashi li:nth-child(2n - 1)::before { background: url("../../img/bpo/problem_fukidashi_yellow.svg")  center center no-repeat; }
.l-bpo-problem-fukidashi li:nth-child(2n)::before { background: url("../../img/bpo/problem_fukidashi_pink.svg")  center center no-repeat; }

.l-bpo-problem-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 990px) {
    .l-bpo-problem {
        padding: 40px 20px;
        margin: 0 0 80px
    }

    .l-bpo-problem-catch { font-size: 2.4rem; }

    .l-bpo-problem-catch__large { font-size: 3.4rem; }

    .l-bpo-problem-fukidashi {
        margin: 0 auto;
        width: 335px;
        display: block;
    }

    .l-bpo-problem-fukidashi li { margin: 0 0 52px; }

    .l-bpo-problem-fukidashi li:nth-child(2n - 1) { margin-left: auto; }
    
    .l-bpo-problem-fukidashi li:nth-child(2n - 1)::before {
        left: inherit;
        right: 30px;
        transform: scaleX(-1);
    }

    .l-bpo-problem-img {
        position: static;
        text-align: center;
    }
}


/* l-bpo-request */
.l-bpo-request { margin: 0 0 120px; }

.l-bpo-request-catch {
    color: var(--color-red);
    font-size: 2rem;
    text-align: center;
    margin: 0 0 2em;
}

.l-bpo-request-catch__txt span { font-size: 2.6rem; }

.l-bpo-request-catch__line {
    position: relative;
    display: inline-block;
}

.l-bpo-request-catch__txt { 
    position: relative;
    padding: 0 70px;
}

.l-bpo-request-catch__line::before,
.l-bpo-request-catch__line::after,
.l-bpo-request-catch__txt::before,
.l-bpo-request-catch__txt::after {
    content: "";
    position: absolute;
    top: calc(50% + 20px);
    background: var(--color-red);
    width: 55px;
    height: 1px;
    display: block;
}

.l-bpo-request-catch__line::before,
.l-bpo-request-catch__txt::before { transform: translateY(-50%) rotate(45deg); }

.l-bpo-request-catch__line::before { left: 0; }
.l-bpo-request-catch__txt::before { left: 6px; }

.l-bpo-request-catch__line::after,
.l-bpo-request-catch__txt::after { transform: translateY(-50%) rotate(-45deg); }

.l-bpo-request-catch__line::after { right: 0; }
.l-bpo-request-catch__txt::after { right: 6px; }

.l-bpo-request-inner { background: var(--color-white); }

.l-bpo-request-column {
    display: flex;
    align-items: center;
}

.l-bpo-request-column-reverse { flex-direction: row-reverse; }

.l-bpo-request-box {
    padding: 50px;
    width: 550px;
}

.l-bpo-request-box dt {
    color: var(--color-red);
    font-size: 2.6rem;
    margin: 0 0 0.4em;
}

.l-bpo-request-box dt span { font-size: 3rem; }

@media screen and (max-width: 990px) {
    .l-bpo-request { margin: 0 0 80px; }

    .l-bpo-request-catch { font-size: 1.8rem; }

    .l-bpo-request-catch__txt span { font-size: 2.2rem; }

    .l-bpo-request-catch__txt { 
        position: relative;
        padding: 0 70px;
    }

    .l-bpo-request-inner { background: none; }

    .l-bpo-request-column {
        margin: 0 0 30px;
        display: block;
    }

    .l-bpo-request-column:last-child { margin: 0; }

    .l-bpo-request-ph img { width: 100%; }
    
    .l-bpo-request-box {
        background: var(--color-white); 
        padding: 15px 20px 20px;
        width: 100%;
    }

    .l-bpo-request-box dt {
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
        margin: 0 0 0.6em;
    }

    .l-bpo-request-box dt span {
        display: block;
        font-size: 3rem;
    }
}


/* ----------------------------------------------------------------------
	message
---------------------------------------------------------------------- */

.l-message {
    margin: 0 auto 120px;
    max-width: 600px;
}

.l-message-catch {
    color: var(--color-red);
    font-size: 2.6rem;
    text-align: center;
    margin: 0 0 1em;
}

.l-message-txt { margin: 0 0 1.2em; }

.l-message-txt p { line-height: 1.8; }

.l-message-name { text-align: right; }
 
 .l-message-name span { font-size: 2.4rem; }

@media screen and (max-width: 990px) {
    .l-message { margin: 0 0 80px; }

    .l-message-catch {  font-size: 2.2rem; }

    .l-message-name span { font-size: 2rem; }
}


/* ----------------------------------------------------------------------
	philosophy
---------------------------------------------------------------------- */

.l-philosophy {
    position: relative;
    background: url("../img/bg_koushi.svg") center top var(--color-white);
    background-size: 18px;
    text-align: center;
    padding: 80px 0;
    margin: 0 auto 120px;
    max-width: 1100px;
    border: 3px solid var(--color-yellow);
}

.l-philosophy::before,
.l-philosophy::after,
.l-philosophy-inner::before,
.l-philosophy-inner::after{
    content: "";
    position: absolute;
    background: var(--color-red);
    display: block;
}

.l-philosophy::before {
    top: 7px;
    left: 7px;
    width: 3px;
    height: calc(100% + 6px);
}

.l-philosophy::after {
    top: 7px;
    left: 7px;
    width: calc(100% + 6px);
    height: 3px;
}

.l-philosophy-inner::before {
    right: -13px;
    bottom: -13px;
    width: 3px;
    height: calc(100% + 6px);
}

.l-philosophy-inner::after {
    right: -13px;
    bottom: -13px;
    width: calc(100% + 6px);
    height: 3px;
}

.l-philosophy-logo { margin: 0 0 20px; }

.l-philosophy-catch {
    color: var(--color-red);
    margin: 0 0 1.6em;
}

.l-philosophy-catch__ja {
    font-size: 3.2rem;
    letter-spacing: .16em;
    margin: 0 0 0.4em;
}

.l-philosophy-catch__en { font-size: 1.8rem; }

.l-philosophy-txt {
    font-size: 1.7rem;
    line-height: 2.2;
}

.l-philosophy-txt span { display: block; }

@media screen and (max-width: 990px) {
    .l-philosophy {
        padding: 46px 30px 26px;
        padding: 46px 20px 26px 30px;
        margin: 0 20px 80px 10px;
    }
    
    .l-philosophy-logo img { width: 120px; }

    .l-philosophy-catch {
        color: var(--color-red);
        margin: 0 0 1.2em;
    }

    .l-philosophy-catch__ja {
        font-size: 2rem;
        letter-spacing: .1em;
        margin: 0 0 0.6em;
    }
    
    .l-philosophy-catch__en { font-size: 1rem; }

    .l-philosophy-txt {
        font-size: 1.6rem;
        text-align: left;
        line-height: 2;
    }
    
    .l-philosophy-txt span { display: inline; }
}


/* ----------------------------------------------------------------------
	profile
---------------------------------------------------------------------- */

.l-profile { margin: 0 0 120px; }

.l-profile-inner {
    background: var(--color-white);
    padding: 100px;
    border-radius: 10px;
}

@media screen and (max-width: 990px) {
    .l-profile { margin: 0 0 80px; }
    
    .l-profile-inner { padding: 30px 20px; }
}


/* ----------------------------------------------------------------------
	access
---------------------------------------------------------------------- */

.l-access { margin: 0 0 120px; }

.l-access-address {
    text-align: center;
    margin: 1.2em 0 2em;
}

.l-access-how-to {
    display: flex;
    justify-content: space-between;
}

.l-access-how-to > li { position: relative; }

.l-access-how-to > li:nth-child(1) { width: 410px; }
.l-access-how-to > li:nth-child(2) { width: 410px; }
.l-access-how-to > li:nth-child(3) { width: 220px; }

.l-access-how-to > li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: var(--color-white);
    width: 100%;
    height: calc(100% - 60px);
    display: block;
    border-radius: 10px;
}

.l-access-how-to-en {
    color: var(--color-red);
    text-align: center;
    margin: 0 0 0.4em;
}

.l-access-how-to-icon { text-align: center; }

.l-access-how-to-ttl {
    color: var(--color-red);
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.4em;
}

.l-access-how-to-detail {
    text-align: center;
    padding: 0 20px 20px;
}

.l-access-how-to-detail span { display: inline-block; }

.l-access-how-to-detail ul li {
    font-size: 1.6rem;
    text-align: left;
}



@media screen and (max-width: 990px) {
    .l-access { margin: 0 0 80px; }

    .l-access-map iframe {
        width: 100%;
        height: 400px;
    }

    .l-access-how-to { display: block; }

    .l-access-how-to > li {
        position: relative;
        margin: 0 0 30px;
        width: 100%!important;
    }

    .l-access-how-to > li:last-child { margin: 0; }
}


/* ----------------------------------------------------------------------
	contact-center
---------------------------------------------------------------------- */

.fixed-recruitment-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 2;
}

@media screen and (max-width: 990px) {
    .fixed-recruitment-btn {
        left: 0;
        bottom: 0;
        padding: 0 30px;
        width: 100%;
        animation: none;
    }
}


/* l-cc-mainimg */
.l-cc-mainimg {
    position: relative;
    padding: 130px 50px 40px;
}

.l-cc-mainimg-ph {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.l-cc-mainimg-ph img { width: 100%; }

.l-cc-mainimg-ph::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #ffffff, transparent);
    width: 600px;
    height: 100%;
}

.l-cc-mainimg-ttl {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(calc(-50% + 30px));
    color: var(--color-red);
    text-align: center;
}

.l-cc-mainimg-ttl-icon {
    background: rgba(255,255,255,0.8);
    font-size: 2rem;
    font-weight: 600;
    padding: 6px 25px 8px;
    margin: 0 0 30px;
    border: 2px solid var(--color-red);
    display: inline-block;
    border-radius: 10px;
}

.l-cc-mainimg-ttl-en__l {
    font-size: 7rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.14;
}

.l-cc-mainimg-ttl-en__s {
    font-size: 3.6rem;
    line-height: 1;
    letter-spacing: .05em;
    margin: -0.8em 0 0.2em;
}

.l-cc-mainimg-ttl-ja { font-size: 3.2rem; }

.l-cc-mainimg-btn {
    position: absolute;
    right: 80px;
    bottom: 70px;
}

@media screen and (max-width: 990px) {
    .l-cc-mainimg { padding: 80px 30px 20px; }

    .l-cc-mainimg-ph { border-radius: 10px; }

    .l-cc-mainimg-ph::before { display: none; }

    .l-cc-mainimg-ttl {
        position: static;
        transform: translateY(0);
        margin-top: -20px;
    }

    .l-cc-mainimg-ttl-icon {
        background: var(--color-white);
        font-size: 1.6rem;
        padding: 6px 20px;
        margin: 0 0 5px;
    }

    .l-cc-mainimg-ttl-en__l { font-size: 4rem; }

    .l-cc-mainimg-ttl-en__s {
        font-size: 3rem;
        margin: -0.6em 0 0.1em;
    }

    .l-cc-mainimg-ttl-ja { font-size: 2.4rem; }

    .l-cc-mainimg-btn { display: none; }
}


/* l-cc-message */
.l-cc-message {
    position: relative;
    text-align: center;
    margin: 0 0 10px;
    padding: 0 0 20vw;
}

.l-cc-message-inner {
    position: relative;
    margin: 0 auto;
    max-width: 1240px;
}

.l-cc-message-ttl { margin: 0 0 2em; }

.l-cc-message-ttl__en {
    color: var(--color-yellow);
    margin: 0 0 0.6em;
}

.l-cc-message-ttl__ja {
    color: var(--color-red);
    font-size: 2.8rem;
    font-weight: normal;
}

.l-cc-message-txt {
    font-size: 1.8rem;
    line-height: 2;
}

.l-cc-message-bg__ph01,
.l-cc-message-bg__ph02,
.l-cc-message-bg__deco01,
.l-cc-message-bg__deco02,
.l-cc-message-bg-btm { position: absolute; }

.l-cc-message-bg__ph01 {
    top: 20px;
    left: 0;
    z-index: 1;
}

.l-cc-message-bg__ph02 {
    top: 80px;
    right: 0;
    z-index: 1;
}

.l-cc-message-bg__deco01 {
    top: 230px;
    left: 180px;
}

.l-cc-message-bg__deco02 {
    top: -30px;
    right: 90px;
}


.l-cc-message-bg-btm {
    left: 0;
    bottom: 0;
    width: 100%;
    
}

.l-cc-message-bg-btm img { width: 100%; }

@media screen and (max-width: 990px) {
    .l-cc-message {
        margin: 0 0 25px;
        padding: 0;
    }

    .l-cc-message-ttl { margin: 0 30px 1em; }

    .l-cc-message-ttl__en {
        font-size: 1.1rem;
        margin: 0 0 0.6em;
    }

    .l-cc-message-ttl__ja { font-size: 2.2rem; }

    .l-cc-message-txt {
        font-size: 1.7rem;
        line-height: 2;
        padding: 0 30px 20px;
    }

    .l-cc-message-bg {
        position: relative;
        height: 56vw;
        margin: 0 0 20px;
    }

     .l-cc-message-bg__ph01 img,
     .l-cc-message-bg__ph02 img { width: 40vw; }

    .l-cc-message-bg__ph01 {
        top: 2.666vw;
        left: 2.666vw;
    }
    
    .l-cc-message-bg__ph02 {
        top: inherit;
        right: 2.666vw;
        bottom: 0;
    }
    
    .l-cc-message-bg__deco01 {
        top: inherit;
        left: 28vw;
        bottom: 3.333vw;
    }
    .l-cc-message-bg__deco01 img { width: 18.666vw; }

    .l-cc-message-bg__deco02 {
        top: 0;
        right: 17.333vw;
    }
    .l-cc-message-bg__deco02 img { width: 30.666vw; }

    .l-cc-message-bg-btm { position: static; }
}



/* l-cc-work */
.l-cc-work { position: relative; }

.l-cc-work-ttl {
    color: var(--color-red);
    text-align: center;
    margin: 0 0 1.4em;
}

.l-cc-work-ttl__ja {
    font-size: 2.8rem;
    font-weight: normal;
}

.l-cc-work-ttl__en {
    font-size: 6rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0;
}

.l-cc-work-list {
    display: flex;
    justify-content: space-between;
}

.l-cc-work-list li {
    background: var(--color-white);
    padding: 25px 30px 30px;
    width: 340px;
    border: 3px solid var(--color-red);
    border-radius: 20px;
}

.l-cc-work-list-ttl {
    color: var(--color-red);
    text-align: center;
    line-height: 1.4;
    margin: 0 0 0.4em;
}

.l-cc-work-list-ttl__ja { font-size: 2rem; }

.l-cc-work-list-ttl__en {
    font-size: 3.2rem;
    opacity: 0.1;
}

.l-cc-work-list-img { padding: 0 20px 20px; }

@media screen and (max-width: 990px) {
    .l-cc-work-ttl {
        line-height: 1.8;
        margin: 0 0 1.4em;
    }

    .l-cc-work-ttl__ja { font-size: 2.2rem; }

    .l-cc-work-ttl__en { font-size: 2.8rem; }

    .l-cc-work-list { display: block; }

    .l-cc-work-list li {
        padding: 22px 20px 20px;
        margin: 0 0 30px;
        width: 100%;
    }
    
    .l-cc-work-list li:last-child { margin: 0; }

    .l-cc-work-list-ttl__en {  font-size: 3rem; }
    
    .l-cc-work-list-img img { width: 100%; }
}


/* l-cc-one-day */
.l-cc-one-day { margin: -5.714vw 0 80px; }

.l-cc-one-day-bg img { width: 100%; }

.l-cc-one-day-inner {
    background: var(--color-white-pink);
    padding: 0 0 100px;
}

.l-cc-one-day-column {
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.l-cc-one-day-box { width: 520px; }

.l-cc-one-day-ttl {
    color: var(--color-red);
    font-size: 2.2rem;
    font-weight: normal;
    text-align: center;
    margin: 0 0 1.4em;
}

.l-cc-one-day-ttl__deco {
    position: relative;
    display: block;
}

.l-cc-one-day-ttl__deco::before,
.l-cc-one-day-ttl__deco::after {
    content: "";
    position: absolute;
    top: calc(50% + 10px);
    background: var(--color-red);
    width: 55px;
    height: 1px;
    display: block;
}

.l-cc-one-day-ttl__deco::before {
    transform: translateY(-50%) rotate(45deg);
    left: 0;
}

.l-cc-one-day-ttl__deco::after {
    transform: translateY(-50%) rotate(-45deg);
    right: 0;
}

.l-cc-one-day-txt { margin: 0 0 2em; }

.l-cc-one-day-btn { text-align: center; }

@media screen and (max-width: 990px) {
    .l-cc-one-day { margin: -10vw 0 80px; }

    .l-cc-one-day-inner { padding: 12vw 30px 60px; }

    .l-cc-one-day-column { display: block; }

    .l-cc-one-day-box { width: 100%; }

    .l-cc-one-day-ph { margin: 0 0 20px; }
    .l-cc-one-day-ph img { width: 100%; }

    .l-cc-one-day-ttl { margin: 0 0 1em; }

    .l-cc-one-day-ttl__deco::before { transform: translateY(calc(-50% + 10px)) rotate(45deg); }

    .l-cc-one-day-ttl__deco::after { transform: translateY(calc(-50% + 10px)) rotate(-45deg); }

    .l-cc-one-day-txt { margin: 0 0 2em; }

    .l-cc-one-day-btn { text-align: center; }
}

@media screen and (max-width: 990px) and  (orientation: landscape) {
    .l-cc-one-day-ttl__deco {
        padding: 0 50px;
        display: inline-block;
    }
}


/* l-cc-pont */
.l-cc-point { margin: 0 0 100px; }

.l-cc-point-ttl {
    color: var(--color-red);
    text-align: center;
    margin: 0 0 1.4em;
}

.l-cc-point-ttl__en {
    font-size: 6rem;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: 0;
}

.l-cc-point-ttl__ja {
    position: relative;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1.4;
}

.l-cc-point-ttl__ja::before,
.l-cc-point-ttl__ja::after {
    content: "";
    position: absolute;
    top: calc(50%);
    background: var(--color-red);
    width: calc((100% - 400px) / 2);
    height: 2px;
    display: block;
}

.l-cc-point-ttl__ja::before { left: 0; }
.l-cc-point-ttl__ja::after { right: 0; }

.l-cc-point-ttl__ja span {
    background: var(--color-red);
    color: var(--color-white);
    font-size: 3.8rem;
    padding-top: 2px;
    margin: 0 0.2em 0 0.2em;
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
}

.l-cc-point-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 58px 0;
}

.l-cc-point-list { padding: 18px 0 0; }

.l-cc-point-list li {
    position: relative;
    background: var(--color-white);
   width: 340px; 
    border-radius: 20px;
}

.l-cc-point-list-icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: var(--color-white);
    font-size: 1.8rem;
    line-height: 38px;
    text-align: center;
    margin: 0 auto;
    width: 120px;
    height: 36px;
    border-radius: 18px;
}

.l-cc-point-list-box { padding: 20px 30px 30px }

.l-cc-point-list-ttl {
    color: var(--color-red);
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.6em;
}

@media screen and (max-width: 990px) {
    .l-cc-point { margin: 0 0 80px; }

    .l-cc-point-ttl {
        color: var(--color-red);
        text-align: center;
        margin: 0 0 1.4em;
    }

    .l-cc-point-ttl__en {
        font-size: 5rem;
        line-height: 1.2;
    }

    .l-cc-point-ttl__ja {
        font-size: 2.3rem;
        line-height: 1.4;
    }

    .l-cc-point-ttl__ja::before,
    .l-cc-point-ttl__ja::after { display: none; }

    .l-cc-point-ttl__ja span {
        font-size: 3rem;
        padding-top: 4px;
        width: 50px;
        height: 50px;
    }

    .l-cc-point-list { gap: 48px 0; }

    .l-cc-point-list li { width: 100%; }

    .l-cc-point-list-box { padding: 20px; }
    
    .l-cc-point-list-ph img { width: 100%; }
}


/* l-cc-benefits-training */
.l-cc-benefits-training {
    padding: 80px 0;
    margin: 0 0 120px;
}

.l-cc-benefits-ph,
.l-cc-training-ph { margin: 0 0 20px; }

.l-cc-benefits-txt01 {
    color: var(--color-red);
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 0.6em;
}

.l-cc-benefits-txt02 { text-align: center; }

@media screen and (max-width: 990px) {
    .l-cc-benefits-training {
        padding: 60px 30px;
        margin: 0 0 80px;
    }
    
    .l-cc-benefits-ph img,
    .l-cc-training-ph img { width: 100% }
    
    .l-cc-benefits-txt02 { text-align: left; }
}


/* l-cc-faq */
.l-cc-faq { margin: 0 0 120px; }

.l-cc-faq-inner {
    background: var(--color-white);
    padding: 50px;
}

@media screen and (max-width: 990px) {
    .l-cc-faq { margin: 0 0 80px; }

    .l-cc-faq-inner { padding: 40px 20px; }
}


/* l-cc-recruitment */
.l-cc-recruitment { margin: 0 0 120px; }

.l-cc-recruitment-inner {
    background: var(--color-white-pink);
    padding: 10px 0 80px;
}

.l-cc-recruitment-ttl {
    position: relative;
    background: url("../img/ttl_bg_beige.svg") center top no-repeat;
    background-size: 60px 54px;
    text-align: center;
    padding-top: 54px;
    margin: -6vw 0 2em;
}

.l-cc-recruitment-ttl__en {
    color: var(--color-beige);
    font-size: 10rem;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1;
}

.l-cc-recruitment-ttl__ja {
    color: var(--color-red);
    font-size: 2.4rem;
    font-weight: normal;
    margin-top: -1.4em;
}

.l-cc-recruitment-list {
    margin: 0 auto;
    max-width: 1100px;
}

@media screen and (max-width: 990px) {
    .l-cc-recruitment { margin: 0 0 80px; }

    .l-cc-recruitment-inner { padding: 10px 30px 60px; }

    .l-cc-recruitment-ttl { margin: -3vw 0 1.4em; }

    .l-cc-recruitment-ttl__en { font-size: 5.5rem; }

    .l-cc-recruitment-ttl__ja { margin-top: -1em; }
}


/* ----------------------------------------------------------------------
	one-day
---------------------------------------------------------------------- */

/* l-one-day-intro */
.l-one-day-intro {
    margin: 0 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.l-one-day-intro-post {
    font-size: 1.8rem;
    margin: 0 0 0.6em;
}

@media screen and (max-width: 990px) {
    .l-one-day-intro {
        margin: 0 0 40px;
        display: block;
    }

    .l-one-day-intro-ph {
        text-align: center;
        margin: 0 0 20px;
    }

    .l-one-day-intro-post { text-align: center; }
}


/* l-one-day-flow */
.l-one-day-flow {
    background: var(--color-white);
    padding: 100px 0;
    margin: 0 0 120px;
    border-radius: 20px;
}

.l-one-day-flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.l-one-day-flow-line { position: relative; }

.l-one-day-flow-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    background: var(--color-border);
    width: 1px;
    height: 100%;
}

.l-one-day-flow-block {
    position: relative;
    padding: 0 0 50px 80px;
    display: flex;
    justify-content: space-between;
}

.l-one-day-flow-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    background: var(--color-white);
    width: 17px;
    height: 17px;
    border: 2px solid var(--color-red);
    border-radius: 50%;
}

.l-one-day-flow-box {
    position: relative;
    padding-right: 40px;
    width: 500px;
}

.l-one-day-flow-time { margin: 0 0 1em; }

.l-one-day-flow-time dt {
    color: var(--color-red);
    font-size: 2.4rem;
    line-height: 1;
    margin: -1px 0 0.6em;
}

.l-one-day-flow-time dd { font-size: 2rem; }

.l-one-day-flow-ph img { border-radius: 20px; }

.l-one-day-flow-holiday {
    background: var(--color-beige);
    padding: 40px 50px;
    border-radius: 20px;
}

.l-one-day-flow-holiday dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-one-day-flow-holiday dl dt {
    color: var(--color-red);
    font-size: 2.2rem;
    text-align: center;
    display: inline-block;
}

.l-one-day-flow-holiday dl dd { width: calc(100% - 110px); }

@media screen and (max-width: 990px) {
    .l-one-day-flow {
        padding: 30px 0 20px;
        margin: 0 0 80px;
    }

    .l-one-day-flow-block {
        padding: 0 20px 50px 70px;
        display: block;
    }

    .l-one-day-flow-box {
        padding-right: 0;
        width: 100%;
    }

    .l-one-day-flow-time { margin: 0 0 0.8em; }
    
    .l-one-day-flow-time dt {
        font-size: 2.2rem;
        margin: -1px 0 0.4em;
    }

    .l-one-day-flow-time dd { font-size: 1.8rem; }

    .l-one-day-flow-ph { margin-top: 20px; }
    .l-one-day-flow-ph img {
        width: 100%;
        border-radius: 10px;
    }

    .l-one-day-flow-holiday {
        margin: 0 20px;
        padding: 20px;
        border-radius: 0;
    }

    .l-one-day-flow-holiday dl { display: block; }

    .l-one-day-flow-holiday dl dt {
        font-size: 2rem;
        display: block;
        margin: 0 0 0.6em;
    }

    .l-one-day-flow-holiday dl dd { width: 100%; }
}


/* ----------------------------------------------------------------------
	recruitment
---------------------------------------------------------------------- */

.recruitment .f-contact { display: none; }

.recruitment-ttl {
    background: var(--color-white);
    color: var(--color-red);
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    padding: 14px 0;
    margin: 0 0 50px;
    border: 2px solid var(--color-red);
    border-radius: 10px;
}

.l-recruitment { margin: 0 0 120px; }

.l-recruitment-img { margin: 0 0 30px; }
.l-recruitment-img img { border-radius: 10px; }

.l-recruitment-icon ul {
    margin: 0 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.l-recruitment-icon p, 
.l-recruitment-icon ul li {
    background: var(--color-yellow);
    color: var(--color-white);
    text-align: center;
    line-height: 40px;
    width: 122px;
    height: 40px;
    border-radius: 5px;
}

.l-recruitment-desc__ttl {
    color: var(--color-red);
    margin: 0 0 1em;
}

.l-recruitment-tbl th {
    width: 150px;
    vertical-align: top;
}

.l-recruitment-btn-entry {
    text-align: center;
    margin-top: 80px;
}

.l-recruitment-btn-entry a {
    position: relative;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 2.4rem;
    line-height: 100px;
    text-decoration: none;
    width: 500px;
    height: 100px;
    display: inline-block;
    border-radius: 1000px;
}

.l-recruitment-btn-entry a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
	background: url("../img/icon_a_default_red.svg") right center no-repeat;
	background-size: 20px;
    width: 20px;
    height: 20px;
    display: block;
}

.l-recruitment-btn-entry--blank a::before {
    right: 40px;
	background: url("../img/icon_blank_white.svg") right center no-repeat;
	background-size: 14px 12px;
    width: 14px;
    height: 12px;
}

.l-recruitment-btn-entry a:hover { opacity: 0.8; }

.l-recruitment-btn-return {
    text-align: center;
    margin-top: 60px;
}

@media screen and (max-width: 990px) {
    .recruitment-ttl {
        font-size: 2rem;
        padding: 10px 0;
        margin: 0 0 30px;
    }

    .l-recruitment { margin: 0 0 80px; }

    .l-recruitment-icon ul {
        margin: 0 0 50px;
        gap: 15px;
    }

    .l-recruitment-desc__ttl { margin: 0 0 0.8em; }

    .l-recruitment-btn-entry { margin-top: 40px; }

    .l-recruitment-btn-entry a {
        font-size: 2rem;
        line-height: 70px;
        width: 100%;
        height: 70px;
    }

    .l-recruitment-btn-entry a::before { right: 30px; }
    
    .l-recruitment-btn-return { margin-top: 40px; }
}


/* ----------------------------------------------------------------------
	contact
---------------------------------------------------------------------- */

.l-contact-form {
    margin: 0 auto;
    max-width: 900px;
}


/* ----------------------------------------------------------------------
	privacy
---------------------------------------------------------------------- */

/* privacy-detail-ttl */
.privacy-detail-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0.4em;
    margin: 0 0 1em;
    border-bottom: 1px solid var(--color-black);
}

.privacy-detail-s-ttl {
    font-weight: bold;
    text-indent: -1.2em;
    margin: 0 0 0.2em 1.2em;
}

@media screen and (max-width: 990px) {
    .privacy-detail-ttl { font-size: 1.8rem; }
}


/* privacy-lead */
.l-privacy-lead { margin: 0 0 60px; }


/* privacy-detail */
.l-privacy-detail { margin: 0 0 120px; }

.l-privacy-detail-inner { margin: 0 0 60px; }

.l-privacy-detail-box { margin: 0 0 30px; }

.l-privacy-detail-inner:last-child,
.l-privacy-detail-box:last-child { margin: 0; }

@media screen and (max-width: 990px) {
    .l-privacy-detail { margin: 0 0 80px; }
}



