@charset "UTF-8";

:root {
    --font-zen-kaku: "Zen Kaku Gothic New", sans-serif;
    --font-zen-maru: "Zen Maru Gothic", sans-serif;
    --color-black: #222;
    --color-pink: #CD64A0;
    --color-pink02: #ED86B3;
}
body {
    font-family: var(--font-zen-kaku);
    color: var(--color-black);
}
img {
    height: auto;
}
.wpo-section-title {
    font-family: var(--font-zen-maru);
}
.wpo-section-title span {
    font-size: 18px;
}
.wpo-section-title h2 {
    margin-top: 15px;
    font-family: var(--font-zen-maru);
    font-size: 40px;
}
@media (max-width: 767px) {

    .wpo-section-title h2 {
        margin-top: 10px;
        font-size: 30px;
    }

}

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

    header

---------------------------------*/
.navbar-header {
    margin-bottom: 0;
}
.navbar-header .navbar-brand {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-zen-maru);
    font-size: 20px;
    color: #000;
}
.wpo-site-header .navbar-header .navbar-brand img {
    width: 200px;
    max-width: unset;
}
.wpo-site-header #navbar {
    font-family: var(--font-zen-maru);
}
.wpo-site-header #navbar > ul > li {
    padding: 0 15px;
}
.wpo-site-header #navbar > ul > li > a {
    padding: 32px 0px;
    font-size: 18px;
}
.wpo-site-header #navbar > ul > li > a:hover {
    color: var(--color-pink02);
}
.header-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    padding: 8px 16px;
    border: 1px solid var(--color-pink02);
    color: var(--color-pink02);
}
.header-button:hover {
    background-color: var(--color-pink02);
    color: #fff;
}
@media (max-width: 1199px) {

    .navbar-header .navbar-brand {
        padding-top: 13px;
        font-size: 17px;
    }
    .wpo-site-header .navbar-header .navbar-brand img {
        width: 180px;
    }
    .wpo-site-header #navbar ul {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .wpo-site-header #navbar > ul > li > a {
        font-size: 17px;
    }
    .header-button {
        font-size: 17px;
    }

}
@media (max-width: 1100px) {

    .navbar-header .navbar-brand {
        font-size: 15px;
    }
    .wpo-site-header #navbar > ul > li {
        padding: 0 12px;
    }
    .wpo-site-header #navbar > ul > li > a {
        padding: 26px 0;
        font-size: 16px;
    }
    .header-button {
        font-size: 16px;
    }

}
@media (max-width: 991px) {

    .wpo-site-header .navigation {
        padding: 0;
    }
    .wpo-site-header .row {
        justify-content: space-between;
    }
    .wpo-site-header .navbar-header {
        display: flex;
        padding-left: 10px;
    }
    .wpo-site-header #navbar ul {
        transform: translateX(0);
    }
    .wpo-site-header #navbar > ul > li {
        padding: 0 20px;
    }
    .wpo-site-header #navbar > ul > li > a:hover {
        opacity: 0.7;
        color: #fff;
    }
    .wpo-site-header #navbar > ul > li > a.header-button {
        padding: 8px 16px;
        margin: 30px auto 0;
        border: 1px solid #fff;
    }
    .wpo-site-header #navbar > ul > li > a.header-button:hover {
        opacity: 1;
        background-color: #fff;
        color: var(--color-pink02);
    }
    .mobail-menu {
        width: fit-content;
        margin-left: auto;
    }
    .wpo-site-header #navbar {
        right: 0;
        left: unset;
        transform: translateX(100%);
    }
    .wpo-site-header #navbar.slideInn {
        left: unset !important;
        transform: translateX(0);
    }

}
@media (max-width: 767px) {

    .wpo-site-header .navbar-header .navbar-brand {
        transform: translateX(-18px);
        padding-top: 10px;
        font-size: 16px;
        margin-right: 0;
    }
    .wpo-site-header .navbar-header .navbar-brand img {
        width: 160px;
    }
    .mobail-menu {
        transform: translateX(10px);
    }

}


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

    footer

---------------------------------*/
.wpo-site-footer-s2 .wpo-lower-footer a {
    color: #fff;
    font-family: var(--font-zen-maru);
    font-size: 20px;
}
.wpo-site-footer-s2 .wpo-lower-footer a:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {

    .wpo-site-footer-s2 .wpo-lower-footer a {
        font-size: 16px;
    }

}


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

    Modal

---------------------------------*/
.cm-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: 100000;
}
.cm-modal.is-open {
    display: grid;
	place-items: center;
}
.cm-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.6);
}
.cm-modal-container {
	position: relative;
	width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 60px;
    overflow-y: auto;
    background-color: #fff;
}
.cm-modal-button {
	position: absolute;
    top: 20px;
	right: 20px;
	width: 35px;
    height: 35px;
    padding: 0;
    background: none;
    border: none;
	cursor: pointer;
}
.cm-modal-button::before,
.cm-modal-button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background-color: #000;
    content: "";
}
.cm-modal-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.cm-modal-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cm-modal-title {
    margin-bottom: 50px;
    color: #ED86B3;
    font-family: var(--font-zen-maru);
    font-size: 30px;
    text-align: center;
}
.cm-modal-sub-title {
    color: #ED86B3;
}
.cm-modal-title span {
    font-size: 0.8em;
}
.cm-modal-sub-title {
    margin-bottom: 15px;
    font-family: var(--font-zen-maru);
    font-size: 24px;
}
.cm-modal-sub-title:nth-child(n+2) {
    margin-top: 40px;
}
.cm-modal-content p {
    margin-bottom: 20px;
    font-size: 16px;
}
@media (max-width: 767px) {

    .cm-modal-container {
        padding: 60px 20px;
    }
    .cm-modal-button {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }
    .cm-modal-button::before,
    .cm-modal-button::after {
        width: 30px;
    }
    .cm-modal-title {
        font-size: 24px;
    }
    .cm-modal-sub-title {
        margin-bottom: 15px;
        font-size: 20px;
    }

}


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

    hero

---------------------------------*/
@media (max-width: 767px) {

    .wpo-static-hero-s8 .wpo-hero-img-wrap {
        padding-top: 10px;
    }

    .wpo-static-hero-s8 .wpo-hero-img-wrap .row > div {
        padding-right: 5px;
        padding-left: 5px;
    }

}

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

    About Us

---------------------------------*/
.about-sec .wpo-testimonial-items {
    padding: 40px 70px;
}
.about-sec .wpo-testimonial-items p {
    font-size: 16px;
    text-align: left;
}
.about-sec .wpo-testimonial-items p:last-of-type {
    text-align: right;
}
.about-sec .wpo-testimonial-text-btm {
    margin-top: 40px;
}
.arrow-button {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--color-pink02);
    background: none;
    color: var(--color-pink02);
    font-family: var(--font-zen-maru);
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s;
}
.arrow-button:hover {
    background-color: var(--color-pink02);
    color: #fff;
}
.arrow-button::after {
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(-45deg) translateY(20%);
    content: "";
}
@media (max-width: 767px) {

    .about-sec {
        margin-top: 40px;
        padding-top: 0;
    }
    .about-sec .wpo-testimonial-items {
        padding: 20px 15px;
    }
    .arrow-button {
        column-gap: 8px;
        font-size: 18px;
    }

}


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

    Gallery

---------------------------------*/
.gallery-sec {
    pointer-events: none;
    padding: 70px 0 150px;
}
.gallery-slide .splide .splide__slide {
    display: flex;
    align-items: flex-end;
}
@media (max-width: 767px) {

    .wpo-portfolio-section-s4 .grid.s1 img,
    .wpo-portfolio-section-s4 .grid.s6 img {
        width: 152px;
    }

    .wpo-portfolio-section-s4 .grid.s2 img,
    .wpo-portfolio-section-s4 .grid.s7 img {
        width: 224px;
    }

    .wpo-portfolio-section-s4 .grid.s3 img,
    .wpo-portfolio-section-s4 .grid.s8 img {
        width: 212px;
    }

    .wpo-portfolio-section-s4 .grid.s4 img,
    .wpo-portfolio-section-s4 .grid.s9 img {
        max-width: 290px;
    }

    .wpo-portfolio-section-s4 .grid.s5 img,
    .wpo-portfolio-section-s4 .grid.s10 img {
        max-width: 100px;
    }

    .wpo-portfolio-section-s4 .grid.s11 img,
    .wpo-portfolio-section-s4 .grid.s16 img {
        max-width: 236px;
    }

    .wpo-portfolio-section-s4 .grid.s12 img,
    .wpo-portfolio-section-s4 .grid.s17 img {
        max-width: 212px;
    }

    .wpo-portfolio-section-s4 .grid.s13 img,
    .wpo-portfolio-section-s4 .grid.s18 img {
        max-width: 290px;
    }

    .wpo-portfolio-section-s4 .grid.s14 img,
    .wpo-portfolio-section-s4 .grid.s19 img {
        max-width: 120px;
    }

    .wpo-portfolio-section-s4 .grid.s15 img,
    .wpo-portfolio-section-s4 .grid.s20 img {
        max-width: 176px;
    }

}


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

    Introduction

---------------------------------*/
.introduction-sec {
    background-color: #FAEFF5;
}
.wpo-story-section-s2 .wpo-story-wrap .wpo-story-item:nth-child(2) .wpo-story-content .thumb {  padding: 25px 5px;

}
.wpo-story-section-s2 .wpo-story-wrap .wpo-story-item:nth-child(2) .wpo-story-content .thumb span {
    font-size: 20px;
}


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

    Collaboration Room

---------------------------------*/
.room-sec .offer-product .offer-product-img {
    margin: 0 auto;
}
@media (max-width: 767px) {

    .room-sec .offer-product .col:nth-child(1) {
        order: 1;
    }
    .room-sec .offer-product .col:nth-child(2) {
        order: 2;
    }
    .room-sec .offer-product .col:nth-child(3) {
        order: 4;
    }
    .room-sec .offer-product .col:nth-child(4) {
        order: 3;
    }

}


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

    Recruit

---------------------------------*/
.recruit-sec .wpo-service-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}
.wpo-service-section-s4 .wpo-service-wrap .wpo-service-item a {
    display: block;
    padding: 20px;
    color: var(--color-black);
    transition: color 0.3s;
}
.wpo-service-section-s4 .wpo-service-wrap .wpo-service-item a:hover {
    color: var(--color-pink02);
}
.wpo-service-section-s4 .wpo-service-wrap .wpo-service-item p {
    margin-bottom: 0;
    font-family: var(--font-zen-maru);
    font-size: 18px;
}
.recruit-sec .wpo-service-wrap02 h3 {
    margin-bottom: 50px;
    font-family: var(--font-zen-maru);
    font-size: 32px;
    text-align: center;
}
.wpo-service-button-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
}
.theme-btn {
    display: inline-grid;
    place-items: center start;
    width: 100%;
    min-height: 110px;
    padding: 15px 75px 15px 45px;
    font-family: var(--font-zen-maru);
    font-size: 24px;
    text-align: left;
}
.theme-btn:hover {
    opacity: 0.7;
    background-color: var(--color-pink02);
}
.theme-btn:focus {
    background-color: var(--color-pink02);
}
.theme-btn::after {
    position: absolute;
    top: 50%;
    right: 35px;
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    border-right: 3px solid;
    border-bottom: 3px solid;
    transform: rotate(-45deg) translateY(-50%);
    content: "";
}
@media (max-width: 991px) {

    .recruit-sec .wpo-service-wrap {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 80px;
    }
    .wpo-service-button-items {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 540px;
    }

}
@media (max-width: 767px) {

    .recruit-sec .wpo-service-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .wpo-service-button-items {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 540px;
    }
    .recruit-sec .wpo-service-wrap02 h3 {
        font-size: 26px;
    }
    .theme-btn {
        min-height: 80px;
        padding: 15px 70px 15px 30px;
        font-size: 20px;
    }
    .theme-btn::after {
        right: 30px;
    }
    .button02 {
        margin-top: 1rem;
    }

}
.intoro03-button a{
    color: #ce64a0;
    border: 1px solid #ce64a0;
    padding: 8px 40px;
}
.intoro03-button a:hover{
    color: #ffffff;
    background-color: #ce64a0;
}
