/* Body
========================================== */
html, body {
    width: 100%;
    font-size: 62.5%;
    overflow-x: clip;
}

body {
    line-height: var(--line-height-base);
    font-size: var(--font-size-body);
    font-family: var(--font-base);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--text-primary);
    /* background-image: url('./images/bg.jpg'); */
    background-repeat: repeat;
    letter-spacing: .1rem;
}

@media screen and (max-width: 599px) {
    body {
        word-wrap: break-word;
    }
}

/* header
========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform .25s, opacity .25s;
}

header.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.headerArea {
    z-index: 1200;
    padding: 0 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.headerArea .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1560px;
    height: 80px;
    padding: 0 1em 0 0;
}

.headerLogo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
}

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

.headerLogo img {
    max-width: 100%;
    height: auto;
    margin-right: 10px;
}

.headerLogo .logoImage {
    width: 200px;
    display: flex;
    align-items: center;
}

.logoName {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.5;
    align-items: flex-start;
}

.logoName .companyName {
    font-family: var(--font-secondary);
    font-size: var(--font-size-main);
    color: var(--color-secondary);
    letter-spacing: 0;
    font-weight: 700;
}

.logoName .en {
    color: var(--text-primary);
    font-size: clamp(1rem, 1vw + 0.4rem, 1.2rem);
}

.logoName.white .companyName,
.logoName.white .en {
    color: #fff;
}


.gnavWrap {
    display: flex;
    align-items: center;
}

.gnav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.gnav ul li {
    text-align: center;
}

.gnav ul li>a,
.gnav ul li.hasSubMenu .menuTitle {
    position: relative;
    line-height: 1.5;
    display: block;
    transition: 0.3s;
    padding: 2px clamp(8px, 1.2vw, 14px);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
}

.gnav ul li a:hover {
    opacity: .8;
}

.gnav ul li a .ja,
.gnav ul li .menuTitle .ja {
    font-size: 1.6rem;
    font-weight: 500;
}

/* header：電話番号 */
.gnav ul li.telBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--color-secondary);
    padding: 6px clamp(16px, 2vw, 28px);
    transform: translateY(-5px);
}

.gnav ul li.telBox>a {
    font-weight: 600;
    padding: 0;
    font-size: 2.5rem;
    line-height: 1;
}

.gnav ul li.telBox .officeHours {
    font-size: var(--font-size-caption);
    line-height: 1.2;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-secondary);
    padding: .2em 1em;
    font-weight: 500;
}

.gnav ul li.telBox .officeHours .en {
    display: inline-block;
    color: var(--color-text-light);
    font-weight: 600;
    padding-left: .5em;
}

/* header：コンタクトボタン */
.gnav ul li.contactBtnHeader a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(140px, 14vw, 190px);
    min-height: 50px;
    padding: 10px 40px;
    line-height: 1.4;
    background-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.gnav ul li.contactBtnHeader a::before {
    content: "";
    position: absolute;
    /* background: url(../images/icn_contact_mail_black.svg) no-repeat center / contain; */
    background: url("./images/icn_contact_mail_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    top: 58%;
    left: 15%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    z-index: 10;
}

.gnav ul li.contactBtnHeader a::after {
    content: "";
    position: absolute;
    background: url(./images/icn_arrow_black.svg) no-repeat center / contain;
    top: 50%;
    right: 10%;
    width: 10px;
    height: 10px;
    transition: transform 0.25s ease;
    transform: translateY(-50%);
}

.gnav ul li.contactBtnHeader a:hover {
    text-decoration: none;
}

.gnav ul li.contactBtnHeader a:hover::after {
    transform: translateY(-50%) translateX(4px);
}

.hasSubMenu {
    position: relative;
}

.hasSubMenu .menuTitle {
    cursor: pointer;
}

.hasSubMenu .subMenuBox {
    display: none;
    position: absolute;
    top: 100%;
    left: -60%;
    z-index: 100;
    width: 260px;
    padding: 1.2em 1.2em .8em;
    background: #fff;
}

.hasSubMenu .subMenuBox ul li a span {
    font-size: 1.4rem;
}

@media (hover: hover) {
    .hasSubMenu:hover .subMenuBox {
        display: block;
    }
}

.hasSubMenu.is-open .subMenuBox {
    display: block;
}

.hasSubMenu .subMenuBox ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hasSubMenu .subMenuBox ul li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px clamp(6px, 1vw, 12px);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: transparent;
    box-shadow: none;
    white-space: normal;
    overflow-wrap: anywhere;
}

.gnav .subMenuBox ul li a::after {
    content: "";
    position: absolute;
    background: url(./images/icn_arrow_black.svg) no-repeat center / contain;
    width: 10px;
    height: 10px;
    top: 40%;
    right: -10px;
    transition: transform 0.25s ease;
}

.gnav .subMenuBox ul li a:hover::after {
    transform: translateX(4px);
}

.spMenuWrap {
    display: none;
}

.spBtn, .spMenu, .overlay {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1240px) {
    header {
        z-index: 10;
    }

    .gnavWrap {
        display: none;
    }

    .headerArea {
        position: fixed;
        z-index: 1001;
        width: 100%;
        height: 75px;
        top: 0;
        left: 0;
        padding: 10px;
        margin-top: 0;
        border-radius: 0;
    }

    .headerArea .inner {
        height: 55px;
    }

    .headerLogo a {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0;
    }

    .headerLogo .logoImage {
        width: 200px;
        flex: 0 0 200px;
        display: flex;
        align-items: center;
    }

    .headerLogo .logoImage img {
        max-width: 100%;
        height: auto;
        margin-right: 0;
        display: block;
    }

    /* ハンバーガーメニュー */
    .spMenuWrap {
        display: block;
        position: relative;
        z-index: 99999;
    }

    .spBtn {
        opacity: 1;
        pointer-events: auto;
        position: fixed;
        top: 13px;
        right: 14px;
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 20px 13px 15px;
        border-radius: 3px;
        background-color: var(--color-primary);
        cursor: pointer;
        z-index: 3000;
    }

    .spBtn div {
        position: relative;
    }

    .spBtn span {
        display: block;
        position: absolute;
        width: 100%;
        height: 0;
        left: 0;
        border-top: 2px solid #fff;
        transition: .3s ease;
    }

    .spBtn span:nth-child(1) {
        top: 0;
    }

    .spBtn span:nth-child(2) {
        top: 8px;
    }

    .spBtn span:nth-child(3) {
        top: 16px;
    }

    .spBtn::after {
        position: absolute;
        left: 0;
        top: 3px;
        content: "MENU";
        text-align: center;
        width: 50px;
        font-size: 8px;
        font-weight: 600;
        color: #fff;
    }

    .spBtn.active span:nth-child(1) {
        top: 8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .spBtn.active span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .spBtn.active span:nth-child(3) {
        top: 8px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .spBtn.active::after {
        content: "CLOSE";
    }

    /* spメニュー */
    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .spMenu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        height: 100vh;
        background-color: var(--color-bg);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9999;

        opacity: 0;
        pointer-events: none;

        transition: transform 0.3s ease;
        padding: 80px 20px 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        isolation: isolate;
    }

    .spMenu.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 999;
    }

    .spNavi {
        margin-bottom: 3em;
        border-top: 1px solid #aaa;
    }

    .spNavi li {
        border-bottom: 1px solid #aaa;
    }

    .spNavi li a,
    .spNavi li.spSubMenu .menuTitle {
        position: relative;
        display: block;
        padding: 1em 1em 1em 2em;
        font-optical-sizing: auto;
        font-size: 1.5rem;
        font-weight: 500;
        text-decoration: none;
    }

    .spNavi li a::before,
    .spNavi li.spSubMenu .menuTitle::before {
        position: absolute;
        content: "";
        background: url(./images/icn_deco_green.svg) center / cover no-repeat;
        top: 50%;
        left: 0;
        width: 15px;
        height: 17px;
        transform: translateY(-50%);
    }

    .spNavi li a:hover {
        color: var(--color-primary);
    }

    .spNavi li.spSubMenu .subMenuBox {
        display: block;
    }

    .spNavi li.spSubMenu .subMenuBox ul li {
        border-bottom: none;
    }

    .spNavi li.spSubMenu .subMenuBox ul li a {
        padding: 0 1em 1em 3em;
    }

    .spNavi li.spSubMenu .subMenuBox ul li a::before {
        content: none;
    }

    .spMenu .mvBtnCotact {
        display: flex;
        justify-content: center;
        margin-bottom: 3em;
    }

    .spMenu .mvBtnCotact a {
        display: inline-block;
        position: relative;
        padding: 1em 5em;
        text-align: center;
    }

    .spMenu .mvBtnCotact a::before {
        top: 53%;
        left: 10%;
    }

    .spInfo {
        margin: 30px 0;
        text-align: center;
        font-size: 1.4rem;
    }

    .spInfo .spLogo a.spLogoLink {
        margin: 0 auto;
        display: block;
        width: 300px;
    }

    .spInfo .spLogo a.spLogoLink img {
        width: 100%;
    }

    .spInfo .spLogo p {
        margin: 1em auto;
    }

    .is-hidden-by-footer {
        opacity: 0;
        pointer-events: none;
    }

    .spInfo .spLogo .footerTel {
        margin: 1em auto;
    }

    .spInfo .spLogo .footerHour .serif {
        font-size: var(--font-size-subheading);
    }
}

@media (max-width: 599px) {
    .spMenu {
        padding: 80px 2em 0;
    }
}

@media (max-width: 390px) {
    .headerLogo .companyName {
        margin-left: 5px;
    }

    .spNavi li.spSubMenu .subMenuBox ul li a {
        padding: 0 1em 1em 1em;
    }

    .spInfo .spLogo a.spLogoLink {
        width: 200px;
    }

    .spMenu .mvBtnCotact a {
        padding: 1em 3em;
    }
}

/* contents
========================================== */
.contents {
    margin: 0 auto;
    width: 100%;
}

.contents p+p {
    margin-top: 1.3em;
}

.contentsInner {
    margin: 0 auto;
    padding: 80px 20px 80px;
    max-width: 1200px;
}

@media screen and (max-width:768px) {
    .contentsInner {
        padding: 20px 20px 80px;
    }
}

/* 共通
========================================== */
.strengthArea,
.businessArea .contentsInner,
.caseArea .contentsInner,
.newsArea .contentsInner,
.aboutArea .contentsInner {
    position: relative;
}

.caseArea .decorativeIcon.en,
.businessArea .decorativeIcon.en,
.strengthArea .decorativeIcon.en,
.newsArea .decorativeIcon.en,
.aboutArea .decorativeIcon.en {
    position: relative;
    font-size: var(--font-size-body);
    font-weight: 600;
    padding-left: 1.5em;
    color: var(--color-text-light);
    letter-spacing: 0;
}

.strengthArea .decorativeIcon.en::before,
.businessArea .decorativeIcon.en::before,
.newsArea .decorativeIcon.en::before,
.caseArea .decorativeIcon.en::before,
.aboutArea .decorativeIcon.en::before {
    content: "";
    background: url(./images/icn_deco_green.svg) center / cover no-repeat;
    position: absolute;
    top: 13px;
    left: 0px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
}

/* mv
========================================== */
.mvArea {
    position: relative;
    overflow: hidden;
    height: 900px;
    min-height: 700px;
    /* padding-top: var(--header-h); */
}

.mvArea picture {
    z-index: 1;
    inset: 0;
}

.mvArea picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mvTextArea {
    position: absolute;
    top: 23%;
    left: 12%;
    z-index: 2;
}

.mvText h1 span {
    display: block;
    font-size: var(--font-size-top);
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.mvText p {
    margin: 1.5rem 0;
}

.mvSp {
    display: none;
}

.mvBtnBox {
    padding: 2rem 3rem 2rem 0;
}

.mvBtnBox .flexBox {
    flex-direction: row;
    gap: var(--space-md);
}

.mvBtnCotact {
    margin-bottom: 1em;
}

.mvBtnCotact,
.mvBtnPage {
    position: relative;
}

.mvBtnCotact a {
    display: block;
    background: var(--color-secondary);
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-h3);
}

.mvBtnPage a {
    display: block;
    background: var(--color-primary);
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-sm);
}

.mvBtnCotact a::before {
    content: "";
    position: absolute;
    background: url(./images/icn_contact_hukidashi.svg) center / cover no-repeat;
    top: 50%;
    left: 10%;
    width: 20px;
    height: 16px;
    transition: transform 0.25s ease;
    transform: translateY(-50%);
}

.mvBtnCotact a::after,
.mvBtnPage a::after {
    content: "";
    position: absolute;
    background: url(./images/icn_arrow_white.svg) center / cover no-repeat;
    top: 50%;
    right: 10%;
    width: 10px;
    height: 10px;
    transition: transform 0.25s ease;
    transform: translateY(-50%);
}

.mvBtnCotact a:hover,
.mvBtnPage a:hover {
    text-decoration: none;
}

.mvBtnCotact a:hover::after,
.mvBtnPage a:hover::after {
    transform: translateY(-50%) translateX(4px);
}

@media (max-width: 1024px) {
    .mvArea {
        height: 1000px;
    }

    .mvSp {
        display: block;
    }

    .mvSp img {
        width: 100%;
    }

    .mvTextArea {
        top: 15%;
        left: 2.5%;
        width: 94%;
    }

    .mvText p {
        margin: 1.5rem auto;
    }

    .mvBtnBox {
        padding: 2em 0;
    }

    .mvBtnBox .flexBox {
        flex-direction: row;
        gap: var(--space-sm);
    }

}

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

    .mvTextArea {
        width: 93%;
    }

    .mvBtnCotact {
        width: 100%;
    }

    .mvBtnCotact a {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .mvBtnCotact a::before {
        left: 15%;
    }

    .mvBtnBox .flexBox.col2>.flexItem {
        width: 100%;
    }

    .mvBtnBox .flexBox {
        flex-direction: column;
    }
}

@media screen and (max-width: 599px) {
    .mvArea {
        height: 900px;
    }

    .mvTextArea {
        top: 12%;
        padding: 15px;
    }

    .mvLogoText {
        top: 130px;
        left: 8%;
        right: 8%;
        gap: 16px;
    }

    .mvBtnCotact a::before {
        left: 8%;
    }

    .mvTextArea {
        width: 95%;
    }

    .mvText p {
        margin: 1.5em 0;
    }

    .mvArea .mvLogo {
        width: clamp(140px, 42vw, 180px);
    }

    .mvText h1 p {
        font-size: clamp(3.2rem, 8vw, 4.8rem);
    }

    .mvText h1 p.sub {
        font-size: clamp(1.4rem, 3.8vw, 1.7rem);
    }

    .mvBtnCotact a,
    .mvBtnPage a {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 399px) {
    .mvText h1 span {
        display: block;
        font-size: 2.6rem;
        font-weight: 600;
        letter-spacing: 0.1rem;
    }
}


/* solution
========================================== */
.solutionArea {
    background: var(--color-bg);
    position: relative;

}

.solutionArea .decoration.en {
    position: absolute;
    top: -120px;
    left: 0px;
    font-size: var(--font-size-deco);
    color: rgba(88, 192, 187, 0.2);
    font-weight: 600;
    letter-spacing: 5px;
    z-index: 1;
}

.solutionBg {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.solutionBg::before {
    content: "";
    position: absolute;
    overflow: hidden;
    top: -100px;
    right: -250px;
    width: 900px;
    height: 900px;
    background: url("./images/strength_deco.png") center / contain no-repeat;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}


.solutionArea .mainTextBox {
    margin: 5em auto;
}

.solutionArea .mainTextBox p {
    text-align: center;
    font-weight: 500;
}

.solutionArea .mainTextBox p {
    font-size: var(--font-size-lead);
}

.solutionArea .mainTextBox p span {
    display: inline-block;
    background-color: var(--color-accent);
    padding: 0 .5em;
    font-size: var(--font-size-h3);
}

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

    .solutionArea,
    .solutionBg,
    .solutionArea .contentsInner,
    .solutionArea .mainTextBox {
        box-sizing: border-box;
        max-width: 100%;
    }

    .solutionArea .decoration.en {
        top: 0;
    }

    .solutionArea .mainTextBox {
        width: 100%;
    }

    .solutionArea .mainTextBox p {
        text-align: left;
    }
}

/* オモロができること */
.strengthArea p {
    font-weight: 500;
    margin: 2em auto 3em;
}

.strengthArea .flexBox.col3 {
    justify-content: center;
}

.strengthArea .flexBox.col3>.flexItem {
    width: calc((100% - var(--space-md) * 2) / 3);
}

.strengthArea .flexBox.col3 .flexItem {
    box-shadow: var(--shadow-primary);
    backdrop-filter: blur(8px);
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2em 1.2em;
}

.strengthArea .flexBox.col3 .flexItem h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.8em;
    background: var(--color-primary);
    color: #fff;
    padding: .6em .5em;
    text-align: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1em;
    font-weight: 600;
}

.strengthArea .flexBox.col3 .flexItem img {
    display: block;
    margin: 0 auto;
}

.strengthArea .flexBox.col3 .flexItem p {
    font-weight: 400;
    margin: 2em auto .5em;
}

@media screen and (max-width: 1024px) {
    .strengthArea .flexBox.col3 {
        flex-direction: row;
    }
}

@media screen and (max-width: 767px) {
    .strengthArea .flexBox.col3 {
        flex-direction: column;
    }

    .strengthArea .flexBox.col3>.flexItem {
        width: 100%;
    }
}

/* お悩み
========================================== */
.issuesArea h2 {
    font-size: var(--font-size-h1);
    text-align: center;
    margin-bottom: 1.5em;
    line-height: 2;
    font-weight: 500;
}

.issuesArea h2 span {
    font-size: var(--font-size-h3);
    display: inline-block;
}

.issuesArea h2 span.blue {
    background: var(--color-secondary);
    border-radius: var(--radius-sm);
    color: #fff;
    padding: 0 .3em;
    font-size: var(--font-size-h1);
    margin: 0 .3em;
    line-height: 1.3;
}


.issuesArea .flexBox.col3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.issuesArea .flexBox.col3 .flexItem {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--color-bg-dark);
    color: #fff;
    /* padding: 1em 0; */
    border-radius: var(--radius-md);
}

.issuesArea .flexBox.col3>.flexItem {
    width: calc((100% - var(--space-sm) * 2) / 3);
}

.issuesArea .flexBox.col3 .flexItem>.flexBox.col2-30-70 {
    width: 100%;
}

.issuesArea .flexBox.col3 .flexItem .flexBox.col2-30-70 {
    gap: var(--space-sm);
    padding: 2em 1em;
}

.issuesArea .flexBox.col3 .flexItem p {
    font-size: var(--font-size-lead);
    line-height: 1.5;
}

.issuesArea .flexBox.col3 .flexItem span {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-h3);
}

.issuesArea .issuesBox {
    text-align: center;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin: 3em auto;
    padding: 3em 3em 1em;
    max-width: 1000px;
}

.issuesArea .issuesBox p {
    line-height: 2;
    font-size: var(--font-size-h2);
}

.issuesArea .issuesBox span {
    background: var(--color-accent);
    padding: 0 .5em;
    display: inline-block;
    font-size: var(--font-size-h2);
    letter-spacing: 2px;
    font-weight: 600;
}

.issuesBtnBox {
    margin: 2em auto;
}

.issuesBtnBox .flexBox {
    justify-content: center;
}

.issuesBtnBox .flexBox .flexItem a {
    position: relative;
    display: block;
    background: var(--color-secondary);
    color: #fff;
    padding: 1em 3em;
    max-width: 500px;
    text-align: center;
    border-radius: var(--radius-md);
    font-size: var(--font-size-h3);
}

.issuesBtnBox .flexBox .flexItem.jirei a {
    background: var(--color-primary);
}

.issuesBtnBox .flexBox .flexItem.jirei a:hover,
.issuesBtnBox .flexBox .flexItem a:hover {
    text-decoration: none;
}

.issuesBtnBox .flexBox .flexItem a::after {
    content: "";
    position: absolute;
    background: url(./images/icn_arrow_white.svg) center / cover no-repeat;
    top: 50%;
    right: 10%;
    width: 10px;
    height: 10px;
    transition: transform 0.25s ease;
    transform: translateY(-50%);
}

.issuesBtnBox .flexBox .flexItem a:hover::after {
    transform: translateY(-50%) translateX(4px);
}

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

    .issuesArea .flexBox.col3,
    .issuesArea .flexBox.col3 .flexItem>.flexBox.col2-30-70 {
        flex-direction: row;
    }

    .issuesArea .flexBox.col3>.flexItem {
        width: calc((100% - var(--space-sm) * 2) / 2);
    }

    .issuesBtnBox {
        display: flex;
        justify-content: center;
    }

    .issuesBtnBox .flexBox .flexItem a {
        width: 500px;
    }
}

@media screen and (max-width: 599px) {
    .issuesArea .flexBox.col3 {
        flex-direction: column;
    }

    .issuesArea .flexBox.col3>.flexItem {
        width: 100%;
    }

    .issuesArea .flexBox {
        flex-direction: row;
        align-items: center;
    }

    .issuesArea .flexBox.col3 .flexItem:first-child {
        justify-content: center;
    }

    .issuesArea .flexBox.col3 .flexItem:last-child {
        justify-content: flex-start;
    }

    .issuesBtnBox .flexBox {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .issuesArea .issuesBox {
        padding: 3em 1em 1em;
    }

    .issuesArea .flexBox.col3>.flexItem>.flexBox.col2-30-70>.flexItem:first-child {
        width: 60%;
    }

    .issuesArea .flexBox.col2-30-70 .flexItem:first-child img {
        width: 50%;
        height: auto;
    }

    .issuesBtnBox .flexBox .flexItem a {
        max-width: 330px;
    }
}

@media screen and (max-width: 390px) {
    .issuesBtnBox .flexBox .flexItem a {
        max-width: 280px;
    }

    /* .issuesArea .flexBox.col3 .flexItem:first-child {
        width: 80%;
    } */
}

/* 事業内容
========================================== */
.businessArea {
    background: var(--color-bg);
}

.businessArea .contentsInner {
    position: relative;
    z-index: 2;
    padding: 180px 20px 80px;
}

.businessArea .contentsInner .decoration.en {
    position: absolute;
    top: -40px;
    right: 0px;
    font-size: var(--font-size-deco);
    color: rgba(88, 192, 187, 0.2);
    font-weight: 600;
    letter-spacing: 5px;
}

.businessBox {
    position: relative;
    background: var(--color-bg-blue);
    border-radius: var(--radius-md);
    color: #fff;
    padding: 2em 3em;
    margin: 3em 0;
}

.businessBox:last-child {
    background: var(--color-bg-green);
}

.businessBox .flexItem {
    margin-top: 4em;
}

.businessBox>.en {
    position: absolute;
    top: -25px;
    left: 0;
    font-weight: 600;
    font-size: 6rem;
}

.businessBox h3 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    margin: 1em 0;
}

.businessBox:last-child h3 {
    margin: .2em 0 1em;
}

.supportBox {
    margin: 2.5em auto;
}

.businessBox:last-child .supportBox {
    margin: 2em auto;
}

.supportBox__title {
    background: #fff;
    color: #2f9bc0;
    text-align: center;
    font-weight: 700;
    padding: .6em;
    border-radius: 4px;
}

.supportList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.supportList li {
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: .6em 1em;
}

.supportList li:nth-child(n + 5) {
    grid-column: span 2;
}

.pageBtn {
    display: flex;
    justify-content: center;
}

.pageBtn a {
    position: relative;
    display: block;
    background: var(--color-accent);
    padding: 1em;
    text-align: center;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    width: 70%;
    font-weight: 600;
    font-size: var(--font-size-h3);
}

.pageBtn a::after {
    content: "";
    position: absolute;
    background: url(./images/icn_arrow_black.svg) center / cover no-repeat;
    top: 50%;
    right: 10%;
    width: 10px;
    height: 10px;
    transition: transform 0.25s ease;
    transform: translateY(-50%);
}

.pageBtn a:hover {
    text-decoration: none;
}

.pageBtn a:hover::after {
    transform: translateY(-50%) translateX(4px);
}

@media screen and (max-width: 1024px) {
    .pageBtn {
        margin: 1em auto;
    }
}

@media screen and (max-width: 768px) {
    .businessArea .contentsInner {
        padding: 80px 20px 80px;
    }

    .businessArea .contentsInner .decoration.en {
        top: -20px;
        right: -10px;
        font-size: 2.5em;
    }

    .businessBox {
        padding: 2em;
    }

    .businessBox .flexBox.col2 .flexItem:last-child {
        margin-top: 0;
    }

    .supportBox {
        margin: 2.5em auto 1em;
    }

    .pageBtn a {
        width: 100%;
    }

    .pageBtn a::after {
        right: 5%;
    }
}


@media screen and (max-width: 599px) {
    .businessBox {
        padding: 1em;
    }
}

@media screen and (max-width: 390px) {
    .pageBtn a {
        padding: 1em .5em;
        font-size: 1.6rem;
    }

    .supportList li {
        font-size: 1.4rem;
    }
}

/* 事例
========================================== */
.caseArea .contentsInner::before {
    content: "";
    position: absolute;
    overflow: hidden;
    top: -200px;
    right: -400px;
    width: 700px;
    height: 700px;
    background: url("./images/case_deco.png") center / contain no-repeat;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.caseArea .contentsInner {
    position: relative;
    z-index: 1;
}


.caseArea .flexBox.col3 {
    align-items: stretch;
}

.caseArea .flexBox.col3>.flexItem {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 5em;
}

.caseArea .flexBox.col3>.flexItem:hover {
    text-decoration: none;
    opacity: .8;
}

.caseArea .flexBox.col3>.flexItem img {
    border-radius: var(--radius-md);
}

.caseInfo {
    margin: 1em 0;
    font-size: var(--font-size-caption);
}

.categoryInfo {
    position: relative;
    padding: .2em .5em .2em .5em;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
}

/* .categoryInfo::before {
    content: "#";
    position: absolute;
    top: 0;
    left: 10px;
} */

.caseArea .flexBox.col3>.flexItem .new {
    display: inline-block;
    color: var(--color-error);
    padding-left: 1em;
}

.caseArea .flexBox.col3>.flexItem h3 {
    font-weight: 500;
}

.noCase {
    margin: 2em 0 5em;
}

@media screen and (max-width: 1024px) {
    .caseArea .flexBox.col3 {
        flex-direction: row;
    }
}


@media screen and (max-width: 768px) {
    .caseArea .flexBox.col3 {
        flex-direction: column;
    }

    .caseArea .flexBox.col3>.flexItem {
        margin-bottom: 2em;
    }
}


/* 新着情報
========================================== */
.newsArea {
    background: var(--color-bg);
    padding: 6em 0;
}

.newsArea .flexBox.col2-30-70 .flexItem:first-child {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.newsArea .flexBox.col2-30-70 .flexItem:first-child .ttlType04 {
    margin: 2rem 0;
}

.newsArea .pageBtn a {
    width: 100%;
    font-size: var(--font-size-body);
    padding: 1.5rem 8rem;
    margin-top: 5rem;
}

.newsArea .newsList {
    margin-bottom: 0;
}

.newsList dl {
    display: flex;
    align-items: center;
    padding: 1.2em 2em;
    border-bottom: 1px solid var(--color-border);
}

.newsList dl:first-child {
    border-top: 1px solid var(--color-border);
}

.newsList dt {
    width: 20em;
    display: flex;
    align-items: center;
}

.newsList dt .date {
    width: 8em;
    font-weight: 400;
}

.newsList dt .category {
    width: 10em;
}

.newsList dt .category span {
    display: inline-block;
    padding: 0 1em;
    color: #fff;
    font-size: 1.4rem;
    position: relative;
    padding: .2em 2em .2em 2em;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.newsList dd {
    position: relative;
    width: calc(100% - 16em);
}

@media screen and (max-width: 1024px) {
    .newsArea {
        padding: 2em 0;
    }

    .newsArea .newsList {
        margin: 10px auto;
    }

    .newsList dl {
        flex-direction: column;
        padding: 1em;
    }

    .newsList dt {
        width: 100%;
    }

    .newsList dd {
        width: 100%;
        margin-top: 1em;
    }

    .newsArea .pageBtn {
        margin: 20px auto;
    }

    .newsArea .pageBtn a {
        width: 100%;
    }
}

/* オモロについて
========================================== */
.aboutArea {
    background: var(--color-primary);
    position: relative;

}

.aboutArea::before {
    content: "";
    position: absolute;
    background: url(./images/about_deco02.png) no-repeat center / contain;
    top: 130px;
    left: 750px;
    width: 120px;
    height: 120px;
    z-index: 0;
    pointer-events: none;
}

.aboutArea::after {
    content: "";
    position: absolute;
    background: url(./images/about_deco01.png) no-repeat center / contain;
    bottom: -80px;
    right: -150px;
    width: 350px;
    height: 350px;
    z-index: 0;
    pointer-events: none;
}

.aboutArea>* {
    position: relative;
    z-index: 1;
}

.aboutArea,
.aboutArea .decorativeIcon.en,
.aboutArea h2.ttlType04 {
    color: #fff;
}

.aboutTopText .en {
    display: inline;
    font-weight: 600;
}

.initial {
    color: var(--color-accent);
}

.aboutBtnGroup {
    margin: 4em auto;
}

.aboutBtnGroup .pageBtn {
    margin: 1em 0;
    justify-content: flex-start;
}

.pageBtn.blue a {
    color: #fff;
    background: var(--color-secondary);
}

.pageBtn.blue a::after {
    background: url(./images/icn_arrow_white.svg) no-repeat center / contain;
}

.aboutTopImg {
    position: relative;
    z-index: 2;
}

.aboutTopImg img {
    position: absolute;
    top: -120px;
    left: -50px;
    width: 150%;
    z-index: 2;
}


/* お問い合わせ
========================================== */
.contactArea {
    background: var(--color-bg);
}

.contactArea .flexBox {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    margin: 3em auto;
    padding: 10em 3em 4em 3em;
    box-shadow: var(--shadow-md);
    justify-content: space-between;
    gap: var(--space-xs);
}

.contactArea .flexBox h2.ttlType04 {
    margin: 1em auto;
    font-size: var(--font-size-h2);
}

.contactArea .flexBox.col2>.flexItem {
    width: calc((100% - var(--space-xs)) / 2);
}

.contactArea .flexBox .flexItem:first-child {
    padding-left: 1em;
}

.contactArea .flexBox .decoration.en {
    position: absolute;
    top: -65px;
    left: 5px;
    font-size: var(--font-size-deco);
    color: rgba(88, 192, 187, 0.2);
    font-weight: 600;
    letter-spacing: 5px;
}

.contactArea .flexBox .flexItem:last-child {
    margin: 2em 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contactArea .flexBox .contactTel {
    margin: 0 auto;
}

.contactArea .flexBox .contactTel a .en {
    color: var(--color-primary);
    font-size: var(--font-size-contact);
    font-weight: 600;
    letter-spacing: -1px;
}

.contactArea .mvBtnCotact {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .contactArea .flexBox.col2>.flexItem {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contactArea .flexBox .decoration.en {
        top: -20px;
    }

    .contactArea .flexBox {
        padding: 4em 3em 4em 3em;
    }

    .contactArea .flexBox.col2>.flexItem {
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    .contactArea .flexBox {
        padding: 4em 1em;
    }

    .contactArea .flexBox .contactTel a .en {
        font-size: 5rem;
    }

    .contactArea .mvBtnCotact a::after {
        right: 5%;
    }

    .contactArea .mvBtnCotact a:hover::after {
        transform: translateY(-50%) translateX(5px);
    }
}

@media screen and (max-width: 390px) {
    .contactArea .flexBox .contactTel a .en {
        font-size: 4rem;
    }
}


/* footer
========================================== */
footer {
    background: var(--color-primary);
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

footer .footerTel a:hover,
footer .pageBtn.blue a:hover {
    text-decoration: none;
}

footer .contentsInner {
    padding: 80px 0 20px;
}

footer .flexBox .flexItem:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerLogo,
.logoName,
.footerAddress {
    text-align: center;
    margin: 1em 0;
}

footer .flexBox .flexItem .flexBox.col3 {
    margin: 3em 0 2em 1em;
    gap: var(--space-lg);
    justify-content: center;
    width: 100%;
}

footer .flexBox .flexItem .flexBox.col3 .flexItem {
    display: flex;

}

.footerNaviArea li {
    margin: 2em auto;
}

.footerNaviArea li.subMenu {
    position: relative;
    padding-left: 2.5em;
}

.footerNaviArea li.subMenu::before {
    position: absolute;
    content: "∟";
    top: 0;
    left: 20px;
}

.footerTel a {
    font-size: var(--font-size-h2);
    font-weight: 600;
}

.footerHour {
    font-size: var(--font-size-body);
    font-weight: 600;
}

footer .pageBtn.blue {
    margin: 2em auto;
}

footer .pageBtn.blue a {
    width: 250px;
}

.mark {
    margin-left: auto;
    margin-right: 1rem;
    margin-bottom: 2rem;
    width: 20%;
}

.mark img {
    display: block;
    text-align: left;
    width: 100%;
}

.copyright {
    text-align: center;
}

.copyright .en {
    display: inline;
    text-align: center;
    background: #fff;
    color: var(--color-primary);
    border-radius: var(--radius-full);
    padding: .3em 1em;
    font-size: var(--font-size-caption);
}

@media screen and (max-width: 1024px) {
    footer .flexBox.col2-30-70>.flexItem {
        width: 100%;
    }

    footer .footerSpList .flexBox {
        flex-direction: row;
        margin: 0 1em;
    }

    .footerNaviArea li.subMenu {
        padding-left: 1.5em;
    }

    .footerNaviArea li.subMenu::before {
        left: 5px;
    }

    .mark {
        margin: 2rem auto;
    }
}

@media screen and (max-width: 599px) {
    .mark {
        width: 50%;
    }

    .logoName {
        margin: 0 auto 1em;
    }
}