@charset "UTF-8";

/* :::::::::::::::::::: common :::::::::::::::::::: */
html {
    font-family: "Noto Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
    font-size: 62.5%;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    color: #333;
    background: #ffffff;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
}

body {
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    width: 100%;
}

@media screen and (max-width: 750px) {
    body.fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

tbody, thead {
    display: block;
    width: 100%;
}

thead td { 
    font-weight: bold;
}

th,
td {
    display: block;
    text-align: left;
}

input,
textarea {
    box-sizing: border-box;
    font-family: inherit;
    width: 100%;
    padding: 0;
    border: unset;
    border-width: 0;
    background-color: transparent;
}

input[type="text" i] {
    padding: 0;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #F2F2F2 inset;
    -webkit-text-fill-color: #FFF;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-width: 0px;
}


/* :::::::::: common class :::::::::: */

.en {
    font-family: 'Century Gothic', Century Gothic, CenturyGothic, "Montserrat", "Noto Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.display_ib {
    display: inline-block;
}

.textLink {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .3s;
}

@media (hover: hover) {

    .textLink:hover,
    .textLink:focus {
        opacity: .5;
    }
}

.hoverOpacity {
    opacity: 1;
    transition: opacity .3s;
}

@media (hover: hover) {

    .hoverOpacity:hover,
    .hoverOpacity:focus {
        opacity: .5;
    }
}

.align-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ::::: ブレイクポイント用クラス ::::: */
.pc {
    display: block !important;
}

.tab-sp {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    .pc {
        display: none !important;
    }

    .tab-sp {
        display: block !important;
    }
}

.pc-tab {
    display: block !important;
}

.sp {
    display: none !important;
}

@media screen and (max-width: 750px) {
    .pc-tab {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.pc-sp {
    display: block !important;
}

.tab {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    .pc-sp {
        display: none !important;
    }

    .tab {
        display: block !important;
    }
}

@media screen and (max-width: 750px) {
    .pc-sp {
        display: block !important;
    }

    .tab {
        display: none !important;
    }
}

/* ::::: ブレイクポイント用クラス ここまで ::::: */

/* ::::: wrapper ::::: */
.wrapper {
    width: 84%;
    max-width: 130rem;
    margin: 0 auto;
}

/* ----- wrapper responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 89%;
    }
}

/* ::::: wrapper ここまで ::::: */

/* ::::: inview  ::::: */
/* transformタイプ */
.inview {
    transform: translate(0, 5px);
    opacity: 0;
    transition: opacity 1.4s, transform 1.4s;
}

.inview.show {
    transform: translate(0, 0);
    opacity: 1.0;
}

/* 画像（ズームイン）タイプ */
.inview.inviewHomeColumn div.bgi img.img {
    transform: scale(1.07);
    transition: transform 1.4s;
    opacity: 1;
}

.inview.inviewHomeColumn.show div.bgi img.img {
    opacity: 1;
    transform: scale(1.01);
}

/* marginタイプ */
.inview.marginType {
    margin-top: 0.8rem;
    transform: unset;
    transition: margin 1.2s 0.3s, opacity 1.2s 0.3s;
}

.inview.marginType.show {
    margin-top: 0;
    transform: scale(1);
}

/* opacityのみタイプ */
.inview.inviewOpacity {
    transform: translate(0);
    opacity: 0;
    transition: opacity 1.2s;
}

.inview.inviewOpacity.show {
    transform: translate(0);
    opacity: 1;
    transition: opacity 1.2s;
}

/* ::::: inview ここまで ::::: */


/* :::::::::: common モジュール :::::::::: */

/* ::::: accordion（ベースのみ） ::::: */
.c-accordionButton {
    cursor: pointer;
}

.c-accordionContent {
    display: none;
}

/* ::::: accordion（ベースのみ） ここまで ::::: */

/* ::::: logoPageTop ::::: */
.logoPageTop {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 13rem;
    background-color: #334a85;
}

.logoPageTop__img,
.logoPageTop__imgLink {
    position: absolute;
    top: 1.75rem;
    left: 8%;
    display: inline-block;
    width: 21rem;
    opacity: 1;
    transition: opacity .3s;
}

.logoPageTop__imgLink {}

.logoPageTop__imgLink:hover {
    opacity: 0.6;
}

/* ----- logoPageTop responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .logoPageTop {
        position: fixed;
        top: 0;
        left: 0;
        height: 6rem;
    }

    a.logoPageTop {}

    a.logoPageTop:hover,
    a.logoPageTop:focus {}

    .logoPageTop__img,
    .logoPageTop__imgLink {
        top: 0.5rem;
        left: 5.5%;
        width: 12rem;
    }
}

/* ::::: logoPageTop ここまで ::::: */

/* :::::::::: header :::::::::: */
.header {
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    height: 7rem;
    background-color: #FFF;
    transition: height .3s;
}

.header.-scroll {
    position: fixed;
}

.header__logo {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    display: inline-block;
    width: 7rem;
    transition: transform .3s;
}

.header.-scroll .header__logo {
    transform: translateX(0);
}

.header.-scroll .header__logo:hover {
    opacity: .7;
}

.header__list {
    width: 84%;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin: 0 8%;
    transition: margin .3s;
}

.header.-scroll .header__list {
    width: 84%;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin: 0 auto 0 calc(14rem);
}

.header__item {
    position: relative;
    z-index: 1;
}

.header__item__facebook {
    width: 54px;
    margin-right: 12px;
}

.header__topLvLink,
.header__secondLvLink {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1.4;
    transition: color .15s, margin .3s, font-size .3s;
}

.header__item.--about::before,
.header__item.--service::before,
.header__topLvLink::before,
.header__secondLvLink::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform-origin: right top;
    transform: scale(0, 1);
    display: block;
    width: 100%;
    height: 1px;
    background: #333;
    transition: transform 0.3s;
}

.header__item.--about:hover::before,
.header__item.--service:hover::before,
.header__topLvLink:hover::before,
.header__secondLvLink:hover::before,
.header__item.--about:focus::before,
.header__item.--service:focus::before,
.header__topLvLink:focus::before,
.header__secondLvLink:focus::before,
.header__topLvLink.-current::before,
.header__secondLvLink.-current::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.header__linkArea {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30rem;
    padding-top: 2.2rem;
    margin-top: 1.7rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
}

.header__item:hover .header__linkArea {
    opacity: 1;
    visibility: visible;
}

.header__linkArea::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    border-top: 0.7rem solid transparent;
    border-right: 0.7rem solid transparent;
    border-bottom: 0.7rem solid #333333;
    border-left: 0.7rem solid transparent;
}

.header__linkList {
    border-radius: 5px;
    background-color: #333333;
}

.header__linkItem {}

.header__linkItem:not(:first-child) {
    border-top: 1px solid #1e1e1e;
}

.header__link {
    display: block;
    padding: 1.5rem 1.8rem;
    font-size: 1.6rem;
    letter-spacing: 0.022em;
    line-height: 1.875;
    color: #fff;
    opacity: 1;
    transition: opacity .3s;
}

.header__link:hover {
    opacity: .6;
}

/* ---------- header responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .header {
        display: none;
    }

    .header.-scroll {}

    .header__logo {}

    .header.-scroll .header__logo {}

    .header.-scroll .header__logo:hover {}

    .header__list {}

    .header.-scroll .header__list {}

    .header__item {}

    .header__item {}

    .header__topLvLink,
    .header__secondLvLink {}

    .header__item.--about::before,
    .header__item.--service::before,
    .header__topLvLink::before,
    .header__secondLvLink::before {}

    .header__item.--about:hover::before,
    .header__item.--service:hover::before,
    .header__topLvLink:hover::before,
    .header__secondLvLink:hover::before,
    .header__item.--about:focus::before,
    .header__item.--service:focus::before,
    .header__topLvLink:focus::before,
    .header__secondLvLink:focus::before,
    .header__topLvLink.-current::before,
    .header__secondLvLink.-current::before {}

    .header__linkArea {}

    .header__item:hover .header__linkArea {}

    .header__linkArea::before {}

    .header__linkList {}

    .header__linkItem {}

    .header__linkItem:not(:first-child) {}

    .header__link {}

    .header__link:hover {}

    .header__item__facebook {
        margin: 24px auto;
    }
}

/* :::::::::: header ここまで :::::::::: */

/* :::::::::: footer :::::::::: */
.footer {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 14rem;
    color: #333;
    background-color: #f3f3f3;
}

.footer__inner {
    width: 87.5%;
    margin: 0 auto;
}

.footer__upper {
    display: flex;
}

.footer__logoArea {
    position: relative;
    padding-right: 8rem;
    padding-right: 3.5vw;
}

.footer__logo {
    width: 14rem;
}

.footer__logo__facebook {
    width: 6rem;
    padding-top: 7rem;
}

.footer__linkArea {
    display: flex;
    padding-top: 2rem;
}

.footer__rowForHome {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0;
    padding-right: 7rem;
    padding-right: 4vw;
}

.footer__row {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 6rem;
    padding-right: 7rem;
    padding-right: 4vw;
}

.footer__row:first-child {}

.footer__row:last-child {
    padding-right: 0;
}

.footer__upperInRow {}

.footer__lowerInRow {
    height: 10rem;
}

.footer__lowLinkArea {
    display: flex;
}

.footer__topLvLinkTitle,
.footer__secondLvLinkTitle {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    opacity: 1;
    transition: opacity .2s;
}

.footer__secondLvLinkTitle:nth-child(2) {
    display: inline-block;
    margin-top: 3rem;
}

.footer__linkList {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 1.5rem;
}

.footer__linkList:last-child {
    padding-bottom: 0;
}

.footer__link {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
    opacity: 1;
    transition: opacity .3s;
}

.footer__link:hover {
    opacity: 0.5;
}

.footer__copyright {
    width: 100%;
    padding-top: 1rem;
    font-size: 1.4rem;
    line-height: 2;
    color: #999999;
}

/* ---------- footer responsive 1000px ---------- */
@media screen and (max-width: 1000px) {
    .footer {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    .footer__inner {
        width: 89%;
    }

    .footer__upper {
        flex-direction: column;
    }

    .footer__logoArea {
        display: flex;
        justify-content: center;
        padding-right: 0;
    }

    .footer__logo {
        width: 12rem;
    }

    .footer__linkArea {
        flex-direction: column;
        padding-top: 3.7rem;
    }

    .footer__rowForHome {
        padding-right: 0;
    }

    .footer__row {
        flex-direction: row;
        justify-content: start;
        gap: 2rem;
        padding-right: 0;
    }

    .footer__row:first-child {}

    .footer__row:last-child {}

    .footer__upperInRow {
        width: calc((100% - 2rem) / 2);
    }

    .footer__lowerInRow {
        width: calc((100% - 2rem) / 2);
        height: auto;
    }

    .footer__lowLinkArea {
        flex-direction: column;
        gap: 4.3rem;
        padding-top: 4.3rem;
    }

    .footer__topLvLinkTitle,
    .footer__secondLvLinkTitle {
        font-size: 2.2rem;
    }

    .footer__secondLvLinkTitle:nth-child(2) {}

    .footer__linkList {
        padding-top: 2.2rem;
    }

    .footer__linkList:last-child {}

    .footer__link {
        font-size: 1.4rem;
    }

    .footer__link:hover {}

    .footer__copyright {
        padding-top: 1.8rem;
        font-size: 1.3rem;
    }
}

/* :::::::::: footer ここまで :::::::::: */

/* :::::::::: hamButton :::::::::: */
/* ---------- hamButton responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    :root {
        --hamButton-width: 6rem;
        --hamButton-height: 6rem;
    }

    .hamButton {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1001;
    }

    .hamButton__inner {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: var(--hamButton-width);
        height: var(--hamButton-height);
        background-color: #fff;
        transition: height .2s;
    }

    .hamButton__lineBase {
        position: relative;
        z-index: 1;
        width: 2.4rem;
        height: 14px;
    }

    .hamButton__line {
        position: absolute;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 1px;
        background-color: #333333;
    }

    .hamButton__line.--line1 {
        top: 0;
    }

    .hamButton__line.--line2 {
        top: 7px;
    }

    .hamButton__line.--line3 {
        bottom: 0;
    }

    @keyframes ham-line1 {
        0% {
            top: 0;
            transform: rotate(0);
        }

        60% {
            top: 7px;
            transform: rotate(0);
        }

        100% {
            top: 7px;
            transform: rotate(45deg);
        }
    }

    @keyframes ham-line1-c {
        0% {
            top: 7px;
            transform: rotate(45deg);
        }

        40% {
            top: 7px;
            transform: rotate(0);
        }

        100% {
            top: 0;
            transform: rotate(0);
        }
    }

    @keyframes ham-line2 {
        0% {
            opacity: 1;
        }

        59% {
            opacity: 1;
        }

        60% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes ham-line2-c {
        0% {
            opacity: 0;
        }

        40% {
            opacity: 0;
        }

        42% {
            opacity: 1;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes ham-line3 {
        0% {
            bottom: 0;
            transform: rotate(0);
        }

        60% {
            bottom: 7px;
            transform: rotate(0);
        }

        100% {
            bottom: 7px;
            transform: rotate(-45deg);
        }
    }

    @keyframes ham-line3-c {
        0% {
            bottom: 7px;
            transform: rotate(-45deg);
        }

        40% {
            bottom: 7px;
            transform: rotate(0);
        }

        100% {
            bottom: 0;
            transform: rotate(0);
        }
    }
}

/* :::::::::: hamButton ここまで :::::::::: */

/* :::::::::: hamMenu :::::::::: */
.hamMenu {
    display: none;
}

.hamMenu.-oepn {
    display: none;
}

/* ---------- hamMenu responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .hamMenu {
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        display: block;
        width: 100%;
        height: 100vh;
        background-color: #FFF;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .hamMenu.-open {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .hamMenu__base {
        position: relative;
        z-index: 0;
        height: 100%;
    }

    .hamMenu__inner {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
    }

    .hamMenu__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 8rem 0 0;
        margin: 0 auto;
    }

    .hamMenu__list {
        width: 100%;
        padding-bottom: 1.8rem;
    }

    .hamMenu__item {}

    .hamMenu__item:not(:first-child) {
        border-top: 1px solid #eeeeee;
    }

    .hamMenu__link {
        position: relative;
        display: block;
        width: 100%;
        padding: 1rem 5.5%;
        font-size: 2rem;
        line-height: 2;
        transition: color 0.3s;
    }

    .hamMenu__hoverUnderline {
        position: relative;
    }

    .hamMenu__hoverUnderline::before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: calc(100%);
        height: 1px;
        background: #333;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform 0.3s;
    }

    .header__item.--about:hover::before,
    .header__item.--service:hover::before,
    .hamMenu__link:hover .hamMenu__hoverUnderline::before,
    .hamMenu__accordionLink:hover .hamMenu__hoverUnderline::before,
    .header__item.--about:focus::before,
    .header__item.--service:focus::before,
    .hamMenu__link:focus .hamMenu__hoverUnderline::before,
    .hamMenu__accordionLink:focus .hamMenu__hoverUnderline::before,
    .hamMenu__link.-current .hamMenu__hoverUnderline::before,
    .hamMenu__accordionLink.-current .hamMenu__hoverUnderline::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }

    .hamMenu__accordionButton {}

    .hamMenu__accordionContent {}

    .hamMenu__accordionButtonText {
        position: relative;
        display: block;
        width: 100%;
        padding: 1rem 5.5%;
        font-size: 2rem;
        line-height: 2;
        transition: color 0.3s;
    }

    .hamMenu__accordionButton.-open .hamMenu__accordionButtonText {
        color: #334a85;
    }

    .hamMenu__accordionButtonIcon {
        position: absolute;
        top: 50%;
        right: 5.5%;
        transform: translateY(-50%);
        z-index: 1;
        width: 17px;
        height: 17px;
    }

    .hamMenu__accordionButtonIcon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 17px;
        height: 2px;
        background-color: #333333;
    }

    .hamMenu__accordionButton.-open .hamMenu__accordionButtonIcon::before {
        background-color: #334a85;
    }

    .hamMenu__accordionButtonIcon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 2px;
        height: 17px;
        background-color: #333333;
        opacity: 1;
    }

    .hamMenu__accordionButton.-open .hamMenu__accordionButtonIcon::after {
        opacity: 0;
    }

    .hamMenu__accordionLinkList {
        padding-left: 2rem;
        padding: 0 5.5% 2.5rem calc(5.5% + 2rem);
    }

    .hamMenu__accordionLinkItem {}

    .hamMenu__accordionLink {
        position: relative;
        font-size: 1.4rem;
        line-height: 2.14;
        letter-spacing: 0.022em;
    }

    .hamMenu__link:hover,
    .hamMenu__link:focus {}
}

/* :::::::::: hamMenu ここまで :::::::::: */

/* :::::::::: main :::::::::: */
body.-scroll .main {
    padding-top: 7rem;
}

/* ----- main responsive (1000) ----- */
@media screen and (max-width: 1000px) {

    .main,
    body.-scroll main {
        padding-top: 6rem;
    }

    main.company {
        padding-top: 12rem;
    }

    body.-scroll .main.company {
        padding-top: 12rem;
    }
}

/* :::::::::: main ここまで :::::::::: */

/* ::::: c-detailLink ::::: */
.c-detailLink {
    position: relative;
    display: inline-block;
    padding-bottom: 7px;
    font-size: 2.1rem;
    transition: color .2s;
}

.c-detailLink:hover {
    color: #334a85;
}

.c-detailLink::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform-origin: left top;
    transform: scale(1, 1);
    width: 100%;
    height: 1px;
    background: #333;
    transition: transform 0.3s, background-color 0.3s;
}

.c-detailLink:hover::before {
    transform-origin: right top;
    transform: scale(0, 1);
    background: #334a85;
}

/* .c-detailLink::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform-origin: right top;
    transform: scale(0, 1);
    width: 100%;
    height: 1px;
    background: #333;
    transition: transform 0.3s 0.3s, background-color 0.3s;
}
.c-detailLink:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
    background: #334a85;
    transition: transform 0.3s, background-color 0.3s;
} */

/* ----- c-detailLink responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .c-detailLink {
        padding-bottom: 8px;
        font-size: 1.8rem;
    }

    .c-detailLink:hover {}

    .c-detailLink::before {}

    .c-detailLink:hover::before {}
}

/* ::::: c-detailLink ここまで ::::: */

/* ::::: c-pageTitleLargeArea ::::: */
.c-pageTitleLargeArea {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 48rem;
}

.confirm .c-pageTitleLargeArea,
.completed .c-pageTitleLargeArea {
    height: 42rem;
}

.c-pageTitleLargeArea__wrapper {
    position: relative;
    width: 84%;
    height: 100%;
    max-width: 130rem;
    margin: 0 auto;
}

.c-pageTitleLargeArea__mainTitle {
    position: absolute;
    top: calc(50% - 3.2rem);
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: #FFF;
}

.confirm .c-pageTitleLargeArea__mainTitle,
.completed .c-pageTitleLargeArea__mainTitle {
    top: calc(50% - 0.8rem);
}

.c-pageTitleLargeArea__mainTitle--en {
    font-size: 8rem;
}

.c-pageTitleLargeArea__mainTitle--ja {
    font-size: 2.5rem;
    font-weight: 500;
}

.c-pageTitleLargeArea__bgi {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- c-pageTitleLargeArea responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .c-pageTitleLargeArea {
        height: 40rem;
    }

    .confirm .c-pageTitleLargeArea,
    .completed .c-pageTitleLargeArea {
        height: 34rem;
    }

    .c-pageTitleLargeArea__wrapper {
        width: 89%;
    }

    .c-pageTitleLargeArea__mainTitle {
        top: calc(50% - 2.6rem);
        left: 0;
        flex-direction: column;
        align-items: start;
        gap: 1.3rem;
    }

    .c-pageTitleLargeArea__mainTitle--en {
        font-size: 4.8rem;
    }

    .c-pageTitleLargeArea__mainTitle--ja {
        font-size: 1.9rem;
    }

    .c-pageTitleLargeArea__bgi {}
}

/* ::::: c-pageTitleLargeArea ここまで ::::: */

/* ::::: c-pageTitleArea ::::: */
.c-pageTitleArea {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 34rem;
}

.c-pageTitleArea__wrapper {
    position: relative;
    width: 84%;
    height: 100%;
    max-width: 130rem;
    margin: 0 auto;
}

.c-pageTitleArea__mainTitle {
    position: absolute;
    top: calc(50% - 0.8rem);
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    color: #334a85;
}

.c-pageTitleArea__mainTitle--en {
    font-size: 7rem;
}

.c-pageTitleArea__mainTitle--ja {
    margin-top: 1.8rem;
    font-size: 2.5rem;
    font-weight: 500;
}

.c-pageTitleArea__bgi {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- c-pageTitleArea responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .c-pageTitleArea {
        height: 28rem;
    }

    .c-pageTitleArea__wrapper {
        width: 89%;
    }

    .c-pageTitleArea__mainTitle {
        position: absolute;
        top: calc(50% - 0.8rem);
        left: 0;
        transform: translateY(-50%);
    }

    .c-pageTitleArea__mainTitle--en {
        font-size: 4.8rem;
        line-height: 1.04;
    }

    .c-pageTitleArea__mainTitle--ja {
        margin-top: 1.1rem;
        font-size: 1.9rem;
    }

    .c-pageTitleArea__bgi {}
}

/* ::::: c-pageTitleArea ここまで ::::: */

/* ::::: c-anchorLink ::::: */
/* c-anchorLinkのwrap */
.company__c-anchorLinkWrap {
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: #494949;
    opacity: 0.85;
}

body.-scroll .company__c-anchorLinkWrap {
    position: fixed;
    top: 7rem;
    left: 0;
}

/*  */
.c-pageTitleLargeArea__c-anchorLinkWrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(73, 73, 73, 0.85);
}

.c-pageTitleLargeArea__c-anchorLinkWrap.-scrollFixed {
    position: fixed;
    top: 7rem;
    bottom: unset;
}

/* c-anchorLinkのwrap ここまで */
.c-anchorLink {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 84%;
    height: 6rem;
    max-width: 130rem;
    margin: 0 auto;
    color: #FFF;
}

.c-anchorLink__link {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.022em;
    opacity: 1;
    transition: opacity .3s;
}

@media (hover: hover) {
    .c-anchorLink__link:hover {
        opacity: .6;
    }
}

.c-anchorLink__linkText {
    position: relative;
    display: inline;
}

.c-anchorLink__linkText::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform-origin: right top;
    transform: scale(0, 1);
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.3s;
}

.c-anchorLink__link.-current .c-anchorLink__linkText::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.c-anchorLink__linkText--sp {
    display: none;
}

/* ----- name responsive (1000) ----- */
@media screen and (max-width: 1000px) {

    /* c-anchorLinkのwrap */
    .company__c-anchorLinkWrap {
        position: fixed;
        top: 6rem;
        left: 0;
    }

    body.-scroll .company__c-anchorLinkWrap {
        position: fixed;
        top: 6rem;
        left: 0;
    }

    .c-pageTitleArea__c-anchorLinkWrap {}

    .c-pageTitleLargeArea__c-anchorLinkWrap {}

    .c-pageTitleLargeArea__c-anchorLinkWrap.-scrollFixed {
        top: 6rem;
    }

    /* c-anchorLinkのwrap ここまで */
    .c-anchorLink {
        gap: 0;
        width: 100%;
    }

    .c-anchorLink__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 0.5rem;
        margin-bottom: 0.1rem;
        text-align: center;
        font-size: 1.4rem;
        line-height: 1.78;
    }

    main.concept .c-anchorLink__link,
    main.srvChild .c-anchorLink__link {
        width: calc(100% / 3);
    }

    main.about .c-anchorLink__link {
        width: 25%;
    }

    main.company .c-anchorLink__link {
        width: calc(100% / 4);
    }

    main.service .c-anchorLink__link,
    main.contact .c-anchorLink__link {
        width: 50%;
    }

    .c-anchorLink__link:not(:first-child) {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }

    .c-anchorLink__link:hover {}

    .c-anchorLink__linkText {}

    .c-anchorLink__link.-current .c-anchorLink__linkText {}

    .c-anchorLink__linkText::before {}

    .c-anchorLink__linkText--sp {}

    /* ----- responsive (750) ----- */
    @media screen and (max-width: 750px) {
        .c-anchorLink__linkText {
            display: none;
        }

        .c-anchorLink__linkText.c-anchorLink__linkText--sp {
            display: inline;
        }

        .c-anchorLink__link.-current .c-anchorLink__linkText.c-anchorLink__linkText--sp {
            background-image: linear-gradient(transparent 0%, transparent calc(100% - 1px), #FFF calc(100% - 1px), #FFF 100%);
        }

        .c-anchorLink__linkText.--margin-top {
            /* margin-top: -1rem; */
        }

        .c-anchorLink__linkText::before {
            content: unset;
        }

        .c-anchorLink__linkText--sp {
            display: none;
        }
    }

    .c-anchorLink__link.-current .c-anchorLink__linkText {}
}

/* ::::: c-pageTitleArea ここまで ::::: */
/* :::::::::::::::::::: common ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: main.home（トップページ専用コンテンツ） :::::::::::::::::::: */
/* :::::::::: load :::::::::: */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    transition: opacity 1.8s, visibility 1.8s;
}

.body.loading-end .loading {
    opacity: 0;
    visibility: hidden;
}

.loadingContentWrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.loadingCircleImg {
    width: 2.5rem;
    animation: loading .5s linear infinite;
}

@keyframes loading {
    0% {
        ransform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* :::::::::: load ここまで :::::::::: */

/* :::::::::: homeKv :::::::::: */
.homeKv {
    position: relative;
}

.homeKv__img {
    position: relative;
    z-index: 0;
    height: calc(100vh - 20rem);
    max-height: 80rem;
    min-height: 65rem;
}

.homeKv__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(33, 33, 33, 0.25) 0%, transparent 100%);
}

.homeKv__catchcopyWrap {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    color: #FFF;
}

.homeKv__wrapper {
    position: relative;
    width: 84%;
    max-width: 130rem;
    margin: 0 auto;
}

.homeKv__catchcopy {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.022em;
}

.homeKv__catchcopy-en {
    padding-top: 3rem;
    font-size: 1.8rem;
    line-height: 1.75;
}

.homeKv__srcollWrap {
    position: absolute;
    bottom: -9rem;
    left: 4px;
    z-index: 1;
}

.scrollLink {
    position: relative;
    padding-left: 2rem;
    font-size: 1.8rem;
    color: #fff;
    opacity: 1;
    transition: opacity .3s;
}

.scrollLink:hover {
    opacity: .6;
}

.scrollLink::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%) translateY(75px);
    width: 1px;
    background-color: #FFF;
    animation: scroll-bar 3.0s 1s infinite ease;
}

.scrollLink::after {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    transform: translateX(-50%) translateY(48px);
    width: 1px;
    background-color: #FFF;
    animation: scroll-bar 3.0s infinite ease;
}

@keyframes scroll-bar {
    0% {
        height: 0px;
        top: -45px;
    }

    50% {
        height: 90px;
        top: -45px;
    }

    100% {
        height: 0;
        top: 45px;
    }
}

/* ----- homeKv responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .homeKv {}

    .homeKv__img {
        height: calc(100vh - 6rem);
        max-height: 800px;
        min-height: 500px;
    }

    @media screen and (max-width: 750px) {
        .homeKv__img {
            min-height: 600px;
            max-height: 166vw;
        }
    }

    .homeKv__catchcopyWrap {
        top: unset;
        bottom: 36.4%;
        left: 0;
    }

    .homeKv__wrapper {
        width: 89%;
    }

    .homeKv__catchcopy {
        font-size: 3rem;
        line-height: 1.67;
        white-space: nowrap;
    }

    .homeKv__catchcopy-en {
        padding-top: 2.2rem;
        font-size: 1.7rem;
    }

    .homeKv__srcollWrap {
        bottom: -6rem;
    }

    .scrollLink {
        padding-left: 1.8rem;
        font-size: 1.5rem;
    }

    .scrollLink:hover {}

    .scrollLink::before {}

    .scrollLink::after {}
}

/* :::::::::: homeKv ここまで :::::::::: */

/* :::::::::: homeConcept :::::::::: */
.homeConcept {
    position: relative;
    padding: 18.5rem 0 12.7rem;
    margin-top: -7rem;
}

.homeConcept__contentWrap {
    position: relative;
    width: 46%;
    min-width: 52rem;
}

.homeConcept__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

:root {
    --homeSectionTitleEnFontSize: 8rem;
    --homeSectionTitleJaDisplay: inline-block;
    --homeSectionTitleJaPaddingTop: 1.8rem;
    --homeSectionTitleJaFontSize: 2.5rem;
    --homeSectionTitleJaLineHeight: 1.75;
    --homeSectionTitleJaLetterSpacing: 0.022em;
}

.homeConcept__title--en {
    font-size: var(--homeSectionTitleEnFontSize);
}

.homeConcept__title--ja {
    display: var(--homeSectionTitleJaDisplay);
    padding-top: var(--homeSectionTitleJaPaddingTop);
    font-size: var(--homeSectionTitleJaFontSize);
    line-height: var(--homeSectionTitleJaLineHeight);
    letter-spacing: var(--homeSectionTitleJaLetterSpacing);
}

.homeConcept__text {
    padding-top: 5.2rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.homeConcept__caption {
    font-size: 1.2rem;
    line-height: 1.6;
}

.homeConcept__linkArea {
    padding-top: 6.5rem;
}

.homeConcept__img {
    position: absolute;
    top: 13rem;
    right: -13%;
    transform: translateX(100%);
    transform-origin: center;
    width: 84%;
}

/* ----- responsive (1200) ----- */
@media screen and (max-width: 1200px) {
    .homeConcept__img {
        top: 11rem;
        right: -2rem;
        width: 35rem;
    }
}

.homeConcept__bgi {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    z-index: -1;
    width: 100%;
}

.homeConcept__bgi .img {
    width: 100%;
}

/* ---------- homeConcept responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeConcept {
        padding: 11.6rem 0 7.3rem;
        margin-top: -6rem;
    }

    .homeConcept__contentWrap {
        width: 100%;
        min-width: unset;
    }

    .homeConcept__title {}

    :root {
        --homeSectionTitleEnFontSize: 4.8rem;
        --homeSectionTitleJaPaddingTop: 0.7rem;
        --homeSectionTitleJaFontSize: 1.9rem;
    }

    .homeConcept__title--en {}

    .homeConcept__title--ja {}

    .homeConcept__text {
        padding-top: 3.3rem;
        line-height: 2;
    }

    .homeConcept__linkArea {
        padding-top: 3.8rem;
    }

    .homeConcept__img {
        position: relative;
        top: 0;
        right: unset;
        transform: translateX(0);
        width: 100%;
        max-width: 500px;
        margin: 3.5rem auto 0;
    }

    .homeConcept__bgi {}
}

/* :::::::::: homeConcept ここまで :::::::::: */

/* :::::::::: homeService :::::::::: */
.homeService {
    position: relative;
    padding: 17.2rem 0 12.4rem;
    margin-top: -7rem;
}

.homeService__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.homeService__title--en {
    font-size: var(--homeSectionTitleEnFontSize);
}

.homeService__title--ja {
    display: var(--homeSectionTitleJaDisplay);
    padding-top: var(--homeSectionTitleJaPaddingTop);
    font-size: var(--homeSectionTitleJaFontSize);
    line-height: var(--homeSectionTitleJaLineHeight);
    letter-spacing: var(--homeSectionTitleJaLetterSpacing);
    line-height: 1.75;
}

.homeService__linkArea {
    padding-top: 5rem;
}

.homeService__c-serviceListWrap {
    padding-top: 5rem;
}

.c-serviceList {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    width: 84%;
    max-width: 1300px;
    margin: 0 auto;
}

.c-serviceList__item {
    width: calc((100% - 6rem * 2) / 3);
}

.c-serviceList__link {
    transition: color .3s;
}

.c-serviceList__link:hover {
    color: #334a85;
}

.c-serviceList .c-serviceList__link:hover .c-detailLink {
    color: #334a85;
}

.c-serviceList__img {
    position: relative;
    overflow: hidden;
}

.c-serviceList__img.inview {
  transition:
    opacity 1.4s ease;
}

/* .c-serviceList__img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%;
    left: 0;
    top: calc(-150% + 38px);
    background-color: #fff;
    border-bottom: 76px #324a85 solid;
    transition: .4s;
    box-sizing: border-box;
    transform: skewY(-30deg);
}

.c-serviceList__img::after {
    content: '';
    position: absolute;
    width: 101%;
    height: 200%;
    left: 0;
    bottom: calc(-150% + 38px);
    border-top: 76px #324a85 solid;
    background-color: #fff;
    transition: .4s;
    box-sizing: border-box;
    transform: skewY(-30deg);
}

.c-serviceList__link .c-serviceList__img.show::after {
    bottom: -250%;
}

.c-serviceList__link .c-serviceList__img.show::before {
    top: -250%;
} */

.c-serviceList .c-serviceList__link .c-serviceList__img { transition: transform 0.3s ease; }
.c-serviceList .c-serviceList__link:hover .c-serviceList__img { transform: scale(1.1); }



.c-serviceList__linkBody {}

.c-serviceList__title {
    padding-top: 4.4rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.022em;
}

.c-serviceList__text {
    padding-top: 2.2rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.c-serviceList__linkWrap {
    padding-top: 3rem;
}

.c-serviceList__LinkText {
    position: relative;
    display: inline-block;
    padding-bottom: 7px;
    font-size: 2.1rem;
    transition: color .3s;
}

.c-serviceList__link:hover .c-serviceList__LinkText {
    color: #334a85;
}

.c-serviceList__LinkText::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform-origin: left top;
    transform: scale(1, 1);
    width: 100%;
    height: 1px;
    background: #333;
    transition: transform 0.3s, background-color 0.3s;
}

.c-serviceList__link:hover .c-serviceList__LinkText::before {
    transform-origin: right top;
    transform: scale(0, 1);
    background: #334a85;
}

/* ----- homeService responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .homeService {
        padding: 5.6rem 0 7rem;
        margin-top: 0;
    }

    .homeService__title {}

    .homeService__title--en {}

    .homeService__title--ja {}

    .homeService__linkArea {
        padding-top: 3.9rem;
    }

    .homeService__c-serviceListWrap {
        padding-top: 5rem;
    }

    .c-serviceList {
        gap: 5rem;
        width: 100%;
    }

    .c-serviceList__item {
        width: 100%;
    }

    .c-serviceList__link {}

    .c-serviceList__link:hover {}

    .c-serviceList .c-serviceList__link:hover .c-detailLink {}

    .c-serviceList__img {}

    .c-serviceList__img::before {}

    .c-serviceList__link:hover .c-serviceList__img::before {}

    .c-serviceList__linkBody {
        padding: 0 5.5%;
    }

    .c-serviceList__title {
        padding-top: 3.3rem;
        font-size: 1.8rem;
        line-height: 1.77;
    }

    .c-serviceList__text {
        padding-top: 2rem;
    }

    .c-serviceList__linkWrap {
        padding-top: 3.3rem;
    }

    .c-serviceList__LinkText {
        padding-bottom: 8px;
        font-size: 1.8rem;
    }

    .c-serviceList__link:hover .c-serviceList__LinkText {}

    .c-serviceList__LinkText::before {}

    .c-serviceList__link:hover .c-serviceList__LinkText::before {}
}

/* :::::::::: homeService ここまで :::::::::: */

/* :::::::::: homeAboutRecruit :::::::::: */
.homeAboutRecruit {
    padding: 10.2rem 0 12.4rem;
    background-color: #f5f6f9;
}

.homeAboutRecruit__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 7%;
}

.homeAboutRecruit__sec {
    width: calc((100% - 7%) / 2);
    padding-top: 18rem;
    margin-top: -18rem;
}

.homeAboutRecruit__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.homeAboutRecruit__title--en {
    font-size: var(--homeSectionTitleEnFontSize);
}

.homeAboutRecruit__title--ja {
    display: var(--homeSectionTitleJaDisplay);
    padding-top: var(--homeSectionTitleJaPaddingTop);
    font-size: var(--homeSectionTitleJaFontSize);
    line-height: var(--homeSectionTitleJaLineHeight);
    letter-spacing: var(--homeSectionTitleJaLetterSpacing);
    line-height: 1.75;
}

.homeAboutRecruit__text {
    padding-top: 5.4rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.homeAboutRecruit__linkArea {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 4rem;
    padding-top: 6rem;
}

/* ----- homeAboutRecruit responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .homeAboutRecruit {
        padding: 5.5rem 0 7rem;
    }

    .homeAboutRecruit__inner {
        gap: 5rem;
    }

    .homeAboutRecruit__sec {
        width: 100%;
        padding-top: 0;
        margin-top: 0;
    }

    .homeAboutRecruit__title {}

    .homeAboutRecruit__title--en {}

    .homeAboutRecruit__title--ja {}

    .homeAboutRecruit__text {
        padding-top: 3.3rem;
    }

    .homeAboutRecruit__linkArea {
        gap: 1.5rem 2rem;
        padding-top: 3.3rem;
    }
}

/* :::::::::: homeAboutRecruit ここまで :::::::::: */

/* :::::::::: homeNews :::::::::: */
.homeNewsArea {
    padding-top: 7rem;
    margin-top: -7rem;
}

.homeNews {
    padding: 10.5rem 0 12.9rem;
    border-bottom: 1px solid #d1d7dc;
    background-color: #fff;
}

.homeNews__inner {
    display: flex;
    align-items: start;
}

.homeNews__titleArea {
    position: relative;
    display: flex;
    justify-content: start;
    width: 40%;
    padding-bottom: 13rem;
}

.homeNews__title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #334a85;
}

.homeNews__title--en {
    position: relative;
    font-size: var(--homeSectionTitleEnFontSize);
}

.homeNews__title--ja {
    display: var(--homeSectionTitleJaDisplay);
    padding-top: var(--homeSectionTitleJaPaddingTop);
    font-size: var(--homeSectionTitleJaFontSize);
    line-height: var(--homeSectionTitleJaLineHeight);
    letter-spacing: var(--homeSectionTitleJaLetterSpacing);
    line-height: 1.75;
}

.homeNews__c-newsListWrap {
    width: 60%;
}

.homeNews__c-detailLinkWrap {
    margin-top: 5.8rem;
}

/* ---------- homeNews responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeNewsArea {
        padding-top: 0;
        margin-top: 0;
    }

    .homeNews {
        padding-top: 5.5rem;
        padding-bottom: 6.8rem;
    }

    .homeNews__inner {
        flex-wrap: wrap;
    }

    .homeNews__titleArea {
        width: 100%;
        padding-bottom: 1.7rem;
    }

    .homeNews__title {}

    .homeNews__title--en {}

    .homeNews__title--ja {}

    .homeNews__c-newsListWrap {
        width: 100%;
    }

    .homeNews__c-detailLinkWrap {
        margin-top: 5rem;
    }
}

/* :::::::::: homeNews ここまで :::::::::: */

/* :::::::::: homeContact :::::::::: */
.homeContact {
    padding-top: 7rem;
    margin-top: -7rem;
}

.c-contactLinkSec {
    overflow: hidden;
    position: relative;
}

.c-contactLinkSec__link {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    min-height: 50vw;
    max-height: 560px;
    padding: 18.3rem 0 20.5rem;
    color: #FFF;
}

.c-contactLinkSec__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .3s;
}

.c-contactLinkSec__link:hover::before {
    background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1300px) {
    .c-contactLinkSec__link {
        min-height: unset;
        height: 50vw;
    }
}

.c-contactLinkSec__bgi {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-contactLinkSec__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.c-contactLinkSec__title--en {
    font-size: var(--homeSectionTitleEnFontSize);
}

.c-contactLinkSec__title--ja {
    display: var(--homeSectionTitleJaDisplay);
    padding-top: var(--homeSectionTitleJaPaddingTop);
    font-size: var(--homeSectionTitleJaFontSize);
    line-height: var(--homeSectionTitleJaLineHeight);
    letter-spacing: var(--homeSectionTitleJaLetterSpacing);
}

.c-contactLinkSec__detailLinkText {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 2.1rem;
    padding-top: 4.8rem;
    padding-bottom: 0.7rem;
}

.c-contactLinkSec__detailLinkText::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 1px;
    background: #FFF;
    transform-origin: left top;
    transform: scale(1, 1);
    transition: transform 0.3s;
}

.c-contactLinkSec__link:hover .c-contactLinkSec__detailLinkText::before {
    transform-origin: right top;
    transform: scale(0, 1);
}

/* ----- c-contactLinkSec responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .homeContact {
        padding-top: 0;
        margin-top: 0;
    }

    .c-contactLinkSec {}

    .c-contactLinkSec__link {
        min-height: 50vw;
        max-height: 480px;
        padding: 18.3rem 0 20.5rem;
    }

    @media screen and (max-width: 750px) {
        .c-contactLinkSec__link {
            height: 111vw;
            padding: 8.3rem 0 10.5rem;
        }
    }

    @media screen and (min-width: 1300px) {
        .c-contactLinkSec__link {
            height: 50vw;
        }
    }

    .c-contactLinkSec__bgi {}

    .c-contactLinkSec__title {}

    .c-contactLinkSec__title--en {}

    .c-contactLinkSec__title--ja {}

    .c-contactLinkSec__detailLinkText {
        font-size: 1.8rem;
        padding-top: 4rem;
        padding-bottom: 0.8rem;
    }
}

/* :::::::::: homeContact ここまで :::::::::: */
/* :::::::::::::::::::: home ここまで :::::::::::::::::::: */


/* :::::::::::::::::::: concept :::::::::::::::::::: */
/* ::::: concept__history ::::: */
.concept__history {
    padding: 23.8rem 0 11.8rem;
    margin-top: -13rem;
}

.concept__2columnLayout {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 7%;
}

.concept__textTypeContent {
    width: 50%;
}

.concept__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

:root {
    --pageSectionTitleEnFontSize: 5rem;
    --pageSectionTitleJaDisplay: inline-block;
    --pageSectionTitleJaPaddingTop: 1.3rem;
    --pageSectionTitleJaFontSize: 2.3rem;
    --pageSectionTitleJaFontWeight: 500;
    --pageSectionTitleJaLineHeight: 1.75;
    --pageSectionTitleJaLetterSpacing: 0.022em;
}

.concept__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.concept__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

.concept__mediumTitleWrap {
    padding-top: 4rem;
}

.concept__advantage .concept__mediumTitleWrap {
    padding-top: 0;
}

.concept__mediumTitle {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.022em;
}

.concept__textWrap {
    padding-top: 5rem;
}

.concept__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.concept__conceptTableWrap {
    width: calc(100% * 450 / 1080);
    padding-top: 14rem;
}

.conceptTable {
    width: 100%;
}

.conceptTable__body {}

.conceptTable__tr {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    width: 100%;
    padding: 1.5rem 0 1.6rem;
    border-bottom: 1px solid #eeeeee;
}

.conceptTable__tr:last-child {
    border-bottom: unset;
}

.conceptTable__th {
    width: 8.5rem;
    padding-right: 2rem;
    font-size: 2.4rem;
    line-height: 1.25;
    color: #334a85;
}

.conceptTable__td {
    width: calc(100% - 8.5rem);
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

/* ::::: concept__history ここまで ::::: */

/* ::::: concept__advantage ::::: */
.concept__advantage {
    position: relative;
    padding: 23.8rem 0 11.8rem;
    margin-top: -13rem;
}

.concept__advantageInner {
    padding-top: 6rem;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 7%;
}

.concept__advantageImg {
    width: 40%;
    margin-top: 2rem;
}

.concept__advantageBgi {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    z-index: -1;
    width: 100%;
}

/* ::::: concept__advantage ここまで ::::: */

/* ::::: concept__future ::::: */
.concept__future {
    position: relative;
    padding: 23.8rem 0 11.8rem;
    margin-top: -13rem;
}

.concept__futureImg {
    width: calc(100%* 450 / 1080);
    margin-top: 14rem;
}

/* ::::: concept__future ここまで ::::: */

/* ::::: concept__service ::::: */
.concept__service {
    position: relative;
    z-index: 0;
    padding: 10.8rem 0 11.8rem;
}

.concept__serviceLinkArea {
    padding-top: 6rem;
}

.concept__c-serviceListWrap {
    padding-top: 5rem;
}

/* ::::: concept__service ここまで ::::: */

/* ----- concept responsive (1000) ----- */
@media screen and (max-width: 1000px) {

    /* ::::: concept__history ::::: */
    .concept__history {
        padding: 17.7rem 0 6.3rem;
        margin-top: -12rem;
    }

    .concept__2columnLayout {
        gap: 0;
    }

    .concept__textTypeContent {
        width: 100%;
    }

    .concept__title {}

    :root {
        --pageSectionTitleEnFontSize: 3.5rem;
        --pageSectionTitleJaPaddingTop: 0.7rem;
        --pageSectionTitleJaFontSize: 1.8rem;
    }

    .concept__title--en {}

    .concept__title--ja {}

    .concept__mediumTitleWrap {
        padding-top: 2rem;
    }

    .concept__mediumTitle {
        font-size: 2.4rem;
        line-height: 1.875;
    }

    .concept__textWrap {
        padding-top: 2.6rem;
    }

    .concept__text {}

    .concept__conceptTableWrap {
        width: 100%;
        padding-top: 2.2rem;
    }

    .conceptTable {}

    .conceptTable__body {}

    .conceptTable__tr {
        padding: 1.5rem 0 1.6rem;
    }

    .conceptTable__tr:last-child {
        border-bottom: 1px solid #eeeeee;
    }

    .conceptTable__tr:last-child {}

    .conceptTable__th {
        width: 100%;
        padding-right: 0;
        font-size: 2.1rem;
    }

    .conceptTable__td {
        width: 100%;
    }

    /* ::::: concept__history ここまで ::::: */

    /* ::::: concept__advantage ::::: */
    .concept__advantage {
        padding: 17.7rem 0 6.3rem;
        margin-top: -12rem;
    }

    .concept__advantageInner {
        padding-top: 2.5rem;
        flex-direction: column-reverse;
    }

    .concept__advantageImg {
        width: 100%;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .concept__advantageBgi {}

    /* ::::: concept__advantage ここまで ::::: */

    /* ::::: concept__future ::::: */
    .concept__future {
        padding: 17.7rem 0 6.3rem;
        margin-top: -12rem;
    }

    .concept__futureImg {
        width: 100%;
        max-width: 500px;
        margin: 4rem auto 0;
    }

    /* ::::: concept__future ここまで ::::: */

    /* ::::: concept__service ::::: */
    .concept__service {
        padding: 17.7rem 0 6.3rem;
        margin-top: -12rem;
    }

    .concept__serviceLinkArea {
        padding-top: 4rem;
    }

    .concept__c-serviceListWrap {}

    /* ::::: concept__service ここまで ::::: */
}

/* :::::::::::::::::::: concept ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: about :::::::::::::::::::: */
.about__mission {
    padding: 23.8rem 0 11.8rem;
    margin-top: -13rem;
}

.about__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.about__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.about__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

.about__mediumTitleWrap {
    padding-top: 4rem;
}

.about__mediumTitle {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.022em;
}

.about__textWrap {
    padding-top: 5rem;
}

.about__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

/* ::::: about__visiion ::::: */
.about__vision,
.about__value {
    padding: 23.8rem 0 11.5rem;
    margin-top: -13rem;
}

.about__listWrap {
    padding-top: 5.2rem;
}

.about__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 5%;
}

.about__item {
    width: 23rem;
    width: calc((100% - 5% * 3) / 4);
}

@media screen and (max-width: 1200px) {
    .about__item {
        width: calc((100% - 5% * 2) / 3);
    }
}

.about__itemInner {}

.about__itemNum {
    font-size: 4rem;
}

.about__itemEn {
    padding-top: 1.5rem;
    font-size: 4rem;
}

.about__itemTitle {
    padding-top: 2.8rem;
    font-size: 2.1rem;
    line-height: 1.67;
    letter-spacing: 0.022em;
}

.about__itemText {
    padding-top: 2.3rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

/* ::::: about__visiion ここまで ::::: */

/* ::::: about__message ::::: */
.about__message {
    padding: 23.8rem 0 13rem;
    margin-top: -13rem;
}

.about__message2colum {
    display: flex;
    align-items: start;
    gap: 8%;
    margin-top: 5rem;
}

.about__messageImg {
    width: 44%;
    margin-left: -8%;
    margin-left: calc(-8% * 1280 / 1080);
}

.about__messageTextTypeWrap {
    flex-grow: 1;
    width: 48%;
}

.about__messageLowerTextWrap {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 3rem;
}

.about__signImg {
    display: inline-block;
    width: 26rem;
    margin-top: 4rem;
}

/* ::::: about__message ここまで ::::: */
/* ----- about responsive (1000) ----- */
@media screen and (max-width: 1000px) {

    .about__mission,
    .about__value {
        padding: 17.7rem 0 5.3rem;
        margin-top: -12rem;
    }

    .about__title {}

    .about__title--en {}

    .about__title--ja {}

    .about__mediumTitleWrap {
        padding-top: 2rem;
    }

    .about__mediumTitle {
        font-size: 2.4rem;
        line-height: 1.875;
    }

    .about__textWrap {
        padding-top: 2.6rem;
    }

    .about__text {}

    /* ::::: about__visiion ::::: */
    .about__vision {
        padding: 17.7rem 0 6.3rem;
        margin-top: -12rem;
    }

    .about__listWrap {
        padding-top: 3.7rem;
    }

    .about__list {
        gap: 2.6rem 5%;
        max-width: 600px;
    }

    .about__item {
        width: calc((100% - 5%) / 2);
    }

    @media screen and (max-width: 700px) {
        .about__item {
            width: 100%;
        }
    }

    .about__itemInner {}

    .about__itemNum {
        font-size: 3rem;
    }

    .about__itemEn {
        padding-top: 0.8rem;
        font-size: 3rem;
    }

    .about__itemTitle {
        padding-top: 1.7rem;
        font-size: 1.9rem;
        line-height: 1.73;
    }

    .about__itemText {
        padding-top: 1.7rem;
    }

    /* ::::: about__visiion ここまで ::::: */
    /* ::::: about__message ::::: */
    .about__message {
        padding: 17.7rem 0 7.3rem;
        margin-top: -12rem;
    }

    .about__message2colum {
        gap: 8%;
        margin-top: 3rem;
    }

    .about__messageImg {
        width: 44%;
        margin-left: -8%;
        margin-left: calc(-8% * 1280 / 1080);
    }

    .about__messageTextTypeWrap {
        width: 48%;
    }

    .about__messageLowerTextWrap {
        margin-top: 3rem;
    }

    .about__signImg {
        width: 20rem;
        margin-top: 2.3rem;
    }

    /* ::::: about__message ここまで ::::: */
}

/* ----- name responsive (750) ----- */
@media screen and (max-width: 750px) {
    .about__message2colum {
        flex-wrap: wrap;
        gap: unset;
    }

    .about__messageImg {
        width: 100%;
        max-width: 450px;
        margin-left: 0;
    }

    .about__messageTextTypeWrap {
        width: 100%;
        padding-top: 3.9rem;
    }
}

/* :::::::::::::::::::: about ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: company :::::::::::::::::::: */
/* ::::: companyData ::::: */
.companyData {
    padding: 24rem 0 12.5rem;
    margin-top: -13rem;
}

.c-company__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.c-company__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.c-company__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

/* ::::: companyData ここまで ::::: */

/* ::::: companyAccess ::::: */
.companyAccess {
    padding: 24rem 0 12.5rem;
    margin-top: -13rem;
}

.companyAccess__map {
    padding: 5rem 0 6.5rem;
}

.companyAccess__map iframe {
    width: 100%;
    height: 500px;
}

.companyAccess__tableSec {}

.companyAccess__tableSec+.companyAccess__tableSec {
    padding-top: 7rem;
}

.companyAccess__tableSecTitle {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.022em;
}

.companyData__c-tableWrap {
    padding-top: 5rem;
}

.companyAccess__c-tableWrap {
    padding-top: 4.5rem;
}

.c-table {
    width: 100%;
}

.c-table__body {}

.c-table__tr {
    display: flex;
    align-items: start;
    width: 100%;
    padding: 1.5rem 0 1.6rem;
    border-bottom: 1px solid #eeeeee;
}

.c-table__tr:first-child {
    border-top: 1px solid #eeeeee;
}

.c-table__th {
    width: 19rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
    color: #334a85;
}

.c-table.--companyAccess2 .c-table__th {
    width: 25rem;
}

.c-table__td {
    width: calc(100% - 19rem);
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.c-table.--companyAccess2 .c-table__td {
    width: calc(100% - 25rem);
}

.c-table__tdText {}

.c-table__tdText--role {
    display: inline-block;
    width: 16rem;
    padding-right: 2rem;
}

.c-table__tdText--who {
    display: inline-block;
    width: calc(100% - 16rem);
}

/* ::::: companyData ここまで ::::: */

/* ::::: companyGroup ::::: */
.companyGroup {
    padding: 24rem 0 12.5rem;
    margin-top: -13rem;
}

.companyGroup__contentBody {
    padding-top: 5rem;
}

/*タブ切り替え全体のスタイル*/
.tab-containers {
    display: flex;
    margin-bottom: 6rem;
}

.tab-container-ja {
    width: 30rem;
}

.tab-container__title {
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.022em;
}

.tab-container-oversea {
    width: calc(100% - 30rem);
}

.tab-button {
    position: relative;
    padding-left: 3rem;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.022em;
}

.tab-button.active {
    font-weight: 700;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url('/img/common/tab-icon.png');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: top left;
}

.tab-button.active::before {
    background-image: url('/img/common/tab-icon-active.png');
}

.tab-content {
    display: none;
}

/* ::::: companyGroup ここまで ::::: */

/* ::::: companyHistory  ::::: */
.companyHistory {
    padding: 24rem 0 11.8rem;
    margin-top: -13rem;
}

.companyHistory__c-tableWrap {
    padding-top: 5rem;
}

/* ::::: companyHistory ここまで ::::: */

/* ----- company responsive (1000) ----- */
@media screen and (max-width: 1000px) {

    /* ::::: companyData ::::: */
    .companyData {
        padding: 17.7rem 0 6.8rem;
        margin-top: -12rem;
    }

    .c-company__title {}

    .c-company__title--en {}

    .c-company__title--ja {}

    /* ::::: companyData ここまで ::::: */

    /* ::::: companyAccess ::::: */
    .companyAccess {
        padding: 17.7rem 0 6.8rem;
        margin-top: -12rem;
    }

    .companyAccess__map {
        padding: 3rem 0 5rem;
    }

    .companyAccess__map iframe {
        height: 400px;
    }

    .companyAccess__tableSec {}

    .companyAccess__tableSec+.companyAccess__tableSec {
        padding-top: 4.8rem;
    }

    .companyAccess__tableSecTitle {
        font-size: 1.8rem;
    }

    .companyData__c-tableWrap {
        padding-top: 4rem;
    }

    .companyAccess__c-tableWrap {
        padding-top: 3.3rem;
    }

    .c-table {}

    .c-table__body {}

    .c-table__tr {
        padding: 1.4rem 0 1.5rem;
    }

    .c-table__tr:first-child {}

    .c-table__th {
        width: 8rem;
        padding-right: 1.5rem;
    }

    .c-table.--companyAccess2 .c-table__th {
        width: 8rem;
    }

    .c-table__td {
        width: calc(100% - 8rem);
    }

    .c-table.--companyAccess2 .c-table__td {
        width: calc(100% - 8rem);
    }

    .c-table__tdText:not(:first-child) {
        padding-top: 1.5rem;
    }

    .c-table__tdText--role {
        width: 100%;
        padding-right: 0;
    }

    .c-table__tdText--who {
        width: 100%;
    }

    /* ::::: companyAccess ここまで ::::: */

    /* ::::: companyGroup ::::: */
    .companyGroup {
        padding: 17.7rem 0 6.8rem;
        margin-top: -12rem;
    }

    .companyGroup__contentBody {
        padding-top: 3rem;
    }

    /*タブ切り替え全体のスタイル*/
    .tab-containers {
        margin-bottom: 4rem;
    }

    .tab-container-ja {
        width: 16rem;
    }

    .tab-container__title {
        /* padding-bottom: 0.5rem; */
    }

    .tab-container-oversea {
        width: calc(100% - 16rem);
    }

    .tab-button {}

    .tab-button.active {}

    .tab-button::before {}

    .tab-button.active::before {}

    .tab-content {}

    /* ::::: companyGroup ここまで ::::: */

    /* ::::: companyHistory  ::::: */
    .companyHistory {
        padding: 17.7rem 0 6.8rem;
        margin-top: -12rem;
    }

    .companyHistory__c-tableWrap {
        padding-top: 3.5rem;
    }

    /* ::::: companyHistory ここまで ::::: */
}

/* :::::::::::::::::::: company ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: service :::::::::::::::::::: */
.service__intro {
    padding: 23.2rem 0 12.4rem;
    margin-top: -13rem;
}

.service__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.service__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.service__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

.service__mediumTitleWrap {}

.service__mediumTitle {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.022em;
}

.service__textBoxesWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8%;
    padding-top: 5rem;
}

.service__textbox {
    width: 46%;
}

.service__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.service__img {
    width: 69.5rem;
    margin: 8.2rem auto 0;
}

/* ::::: service__service ::::: */
.service__service {
    position: relative;
    z-index: 0;
    padding-top: 24rem;
    margin-top: -13rem;
}

.service__c-serviceListWrap {
    padding-top: 5rem;
}

/* ::::: service__service ここまで ::::: */
.service__c-telSecArea {
    padding: 12rem 0 12.6rem;
}

/* ----- service responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .service__intro {
        padding: 17.1rem 0 7.3rem;
        margin-top: -12rem;
    }

    .service__mission {
        padding: 5.7rem 0 6.3rem;
    }

    .service__title {}

    .service__title--en {}

    .service__title--ja {}

    .service__mediumTitleWrap {}

    .service__textBoxesWrap {
        gap: 3rem;
        padding-top: 2.6rem;
    }

    .service__mediumTitle {
        font-size: 2.4rem;
        line-height: 1.875;
    }

    .service__textbox {
        width: 100%;
    }

    .service__text {}

    .service__img {
        width: 100%;
        margin: 5.8rem auto 0;
    }

    /* ::::: service__service ::::: */
    .service__service {
        padding: 17.6rem 0 0;
        margin-top: -12rem;
    }

    .service__c-serviceListWrap {
        padding-top: 5rem;
    }

    /* ::::: service__service ここまで ::::: */
    .service__c-telSecArea {
        padding: 0;
    }
}

/* :::::::::::::::::::: srvChild :::::::::::::::::::: */
.srvChild__intro {
    padding: 10.8rem 0 12.5rem;
}

.srvChild__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.srvChild__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.srvChild__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

.srvChild__mediumTitleWrap {
    padding-top: 3.5rem;
}

.srvChild__mediumTitle {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.022em;
}

.srvChild__textBoxesWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8%;
}

.srvChild__textBox {
    width: calc((100% - 8%) / 2);
}

.srvChild__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

/* ::::: srvChild__introLower ::::: */
.srvChild__introLower {
    padding: 0 6%;
    margin-top: 8rem;
}

.srvChild__introLowerTitle {
    padding-bottom: 4rem;
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.022em;
    color: #334a85;
}

.srvChild__introfiguresWrap {}

.srvChild__introList {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}

.srvChild__introItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 5% * 2) / 3);
}

.srvChild__introImg {
    width: 16rem;
}

.srvChild__introItemText {
    padding-top: 3rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

/* ::::: srvChild__introLower ここまで ::::: */

/* ::::: srvChild__solution ::::: */
.srvChild__solution {
    padding: 23.8rem 0 12.5rem;
    margin-top: -13rem;
}

.srvChild__solutionListWrap {
    padding-top: 5rem;
}

.solutionList {}

.solutionList__item {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 6%;
}

.solutionList__item+.solutionList__item {
    padding-top: 6rem;
}

.solutionList__img {
    width: 33%;
}

.solutionList__itemTextTypeContent {
    width: calc(100% - 33% - 6%);
}

.solutionList__title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: 0.022em;
}

.solutionList__text {
    padding-top: 3.4rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

/* ::::: srvChild__solution ここまで ::::: */

/* ::::: srvChild__lineUp ::::: */
.srvChild__lineUp {
    padding: 23.8rem 0 12.4rem;
    margin-top: -13rem;
}

.srvChild__lineUpTextBoxesWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8%;
    padding: 5rem 0 0;
}

/* lineUpUnit */
.lineUpUnit {
    margin-top: 6.5rem;
}

.lineUpUnit__unitTitle {
    padding-bottom: 5rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.022em;
    color: #334a85;
}

.lineUpUnit__body {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 7%;
}

.lineUpUnit__textTypeContent {
    width: calc(100% - 7% - 39%);
}

.lineUpUnit__title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.022em;
    margin: -0.5rem 0 0;
}

.lineUpUnit__textsWrap {
    padding-top: 3rem;
}

.lineUpUnit__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.lineUpUnit__img {
    width: 39%;
}

.lineUpUnit__linkListArea {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    width: 100%;
    padding-top: 3.1rem;
}

.lineUpUnit__linkList {}

.lineUpUnit__linkItem {}

.lineUpUnit__link {
    position: relative;
    display: flex;
    align-items: start;
    gap: 1rem;
    width: 100%;
    padding-left: 0;
    text-decoration: underline;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
    color: #334a85;
    opacity: 1;
    transition: opacity .3s;
}

main.snsMarketing .lineUpUnit__link {
    text-decoration: unset;
    padding-left: 2rem;
    opacity: unset;
    transition: unset;
}

.lineUpUnit__link::before {
    content: '';
    position: relative;
    display: block;
    flex-grow: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.5rem;
    background-image: url(/img/common/icon-angle-in-circle.png);
    background-size: 20px 20px;
}

.lineUpUnit__link:hover {
    opacity: .5;
}

.lineUpUnit__link span {
    display: inline-block;
    width: calc(100% - 20px - 1rem);
}

main.snsMarketing .lineUpUnit__link::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid #334a85;
    border-radius: 50%;
    background: unset;
}

.lineUpUnit__linkText {
    display: inline-block;
    width: calc(100% - 20px - 1rem);
}

/* lineUpUnit ここまで */
/* ::::: srvChild__lineUp ここまで ::::: */

/* ::::: srvChild__sample ::::: */
.srvChild__sample {
    padding: 23.8rem 0 11.8rem;
    margin-top: -13rem;
}

.srvChild__sampleListWrap {
    padding-top: 4.5rem;
}

.srvChild__samplelist {
    display: flex;
    flex-wrap: wrap;
    gap: 7%;
}

.srvChild__sampleItem {
    width: calc((100% - 7%) / 2);
}

.srvChild__sampleItemImg {}

.srvChild__sampleItemNum {
    padding-top: 4.3rem;
    padding-bottom: 2rem;
    color: #334a85;
}

.srvChild__sampleItemNum--ja {
    display: inline-block;
    padding-top: 0.7rem;
    padding-right: 0.4rem;
    font-size: 2.5rem;
    letter-spacing: 0.022em;
}

.srvChild__sampleItemNum--en {
    font-size: 3.5rem;
    letter-spacing: 0.022em;
}

.srvChild__sampleItemTitle {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: 0.022em;
}

.srvChild__sampleItemSmallSecArea {
    padding-top: 3.5rem;
}

.srvChild__sampleItemSmallSec+.srvChild__sampleItemSmallSec {
    padding-top: 3rem;
}

.srvChild__sampleItemSmallTitle {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.022em;
}

.srvChild__sampleItemSmallText {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.srvChild__sampleItemSmallText>a {
    text-decoration: underline;
    color: #334a85;
    opacity: 1;
    transition: opacity .3s;
}

.srvChild__sampleItemSmallText>a:hover {
    opacity: .6;
}

/* ::::: srvChild__sample ここまで ::::: */

/* ::::: usingCompany ::::: */
.usingCompany {
    padding: 9.8rem 0 0;
}

.usingCompany__title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.022em;
    color: #334a85;
}

.usingCompany__text {
    padding-top: 4.3rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.usingCompany__bannerArea {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 5%;
    width: 68%;
    padding-top: 5rem;
    margin: 0 auto;
}

.usingCompany__banner {
    display: inline-block;
    width: calc((100% - 5% * 2) / 3);
    opacity: 1;
    transition: opacity .2s;
}

/* ::::: usingCompany ここまで ::::: */
.srvChild__c-telSecArea {
    padding: 12.7rem 0 14rem;
}

/* ----- srvChild responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .srvChild__intro {
        padding: 5.2rem 0 6.8rem;
    }

    .srvChild__title {}

    .srvChild__title--en {}

    .srvChild__title--ja {}

    .srvChild__mediumTitleWrap {
        padding-top: 2rem;
    }

    .srvChild__mediumTitle {
        font-size: 2.4rem;
        line-height: 1.875;
    }

    .srvChild__textBoxesWrap {
        gap: 0;
        padding-top: 0;
    }

    .srvChild__textBox {
        width: 100%;
    }

    .srvChild__textBox+.srvChild__textBox {
        padding-top: 2rem;
    }

    .srvChild__text {}

    /* ::::: srvChild__introLower ::::: */
    .srvChild__introLower {
        padding: 0 6%;
        margin-top: 4.2rem;
    }

    .srvChild__introLowerTitle {
        padding-bottom: 3rem;
        font-size: 2rem;
        line-height: 1.75;
    }

    .srvChild__introfiguresWrap {}

    .srvChild__introList {
        gap: 2rem;
    }

    .srvChild__introItem {
        width: calc((100% - 2rem * 2) / 3);
    }

    .srvChild__introImg {
        width: 100%;
        min-width: 8rem;
        max-width: 16rem;
    }

    .srvChild__introItemText {
        text-align: left;
        padding-top: 1.4rem;
    }

    .srvChild__introItemText .display_ib {
        display: inline;
    }

    /* ::::: srvChild__introLower ここまで ::::: */

    /* ::::: srvChild__solution ::::: */
    .srvChild__solution {
        padding: 17.7rem 0 6.4rem;
        margin-top: -12rem;
    }

    .srvChild__solutionListWrap {
        padding-top: 3.4rem;
    }

    .solutionList {}

    .solutionList__item {
        gap: 0;
    }

    .solutionList__item+.solutionList__item {
        padding-top: 4.3rem;
    }

    .solutionList__img {
        width: 100%;
    }

    .solutionList__itemTextTypeContent {
        width: 100%;
        padding-top: 2.9rem;
    }

    .solutionList__title {
        font-size: 1.8rem;
        line-height: 1.77;
    }

    .solutionList__text {
        padding-top: 2.2rem;
        font-size: 1.5rem;
        line-height: 2;
        letter-spacing: 0.022em;
    }

    /* ::::: srvChild__solution ここまで ::::: */

    /* ::::: srvChild__lineUp ::::: */
    .srvChild__lineUp {
        padding: 17.7rem 0 7rem;
        margin-top: -12rem;
    }

    .srvChild__lineUpTextBoxesWrap {
        gap: 0;
        padding: 2.6rem 0 0;
    }

    /* lineUpUnit */
    .lineUpUnit {
        margin-top: 4rem;
    }

    .lineUpUnit+.lineUpUnit {
        margin-top: 4rem;
    }

    .lineUpUnit__unitTitle {
        padding-bottom: 2.9rem;
        font-size: 2rem;
    }

    .lineUpUnit__body {
        flex-direction: column;
        gap: 0;
    }

    .lineUpUnit__textTypeContent {
        order: 2;
        width: 100%;
        padding-top: 3.2rem;
    }

    .lineUpUnit__title {
        font-size: 1.8rem;
        line-height: 1.77;
    }

    .lineUpUnit__textsWrap {
        padding-top: 2rem;
    }

    .lineUpUnit__text {}

    .lineUpUnit__img {
        order: 1;
        width: 100%;
    }

    .lineUpUnit__linkListArea {
        order: 3;
        display: block;
        padding-top: 2.6rem;
    }

    .lineUpUnit__linkList {}

    .lineUpUnit__linkItem {}

    .lineUpUnit__link {}

    main.snsMarketing .lineUpUnit__link {}

    .lineUpUnit__link::before {}

    .lineUpUnit__link:hover {}

    main.snsMarketing .lineUpUnit__link::before {}

    /* lineUpUnit ここまで */
    /* ::::: srvChild__lineUp ここまで ::::: */
    /* ::::: srvChild__sample ::::: */
    .srvChild__sample {
        padding: 17.7rem 0 6.4rem;
        margin-top: -12rem;
    }

    .srvChild__sampleListWrap {
        padding-top: 3.4rem;
    }

    .srvChild__samplelist {
        gap: 5rem;
    }

    .srvChild__sampleItem {
        width: 100%;
    }

    .srvChild__sampleItemImg {}

    .srvChild__sampleItemNum {
        padding-top: 3rem;
        padding-bottom: 1.4rem;
    }

    .srvChild__sampleItemNum--ja {
        padding-top: 0.4rem;
        font-size: 1.7rem;
    }

    .srvChild__sampleItemNum--en {
        font-size: 2.4rem;
    }

    .srvChild__sampleItemTitle {
        font-size: 1.8rem;
        line-height: 1.77;
    }

    .srvChild__sampleItemSmallSecArea {
        padding-top: 2rem;
    }

    .srvChild__sampleItemSmallSec+.srvChild__sampleItemSmallSec {}

    .srvChild__sampleItemSmallTitle {}

    .srvChild__sampleItemSmallText {}

    .srvChild__sampleItemSmallText>a {}

    .srvChild__sampleItemSmallText>a:hover {}

    /* ::::: srvChild__sample ここまで ::::: */

    /* ::::: usingCompany ::::: */
    .usingCompany {
        padding: 4.8rem 0 0;
    }

    .usingCompany__title {
        font-size: 2rem;
    }

    .usingCompany__text {
        padding-top: 1.8rem;
    }

    .usingCompany__bannerArea {
        gap: 2rem 5%;
        width: 100%;
        padding-top: 3.9rem;
    }

    .usingCompany__banner {
        width: calc((100% - 5% * 2) / 3);
    }

    @media screen and (max-width: 750px) {
        .usingCompany__bannerArea {
            gap: 2rem 6%;
        }

        .usingCompany__banner {
            width: calc((100% - 6%) / 2);
        }
    }

    .usingCompany__bannerLink:hover {}

    /* ::::: usingCompany ここまで ::::: */
    .srvChild__c-telSecArea {
        padding: 0;
    }
}

/* :::::::::::::::::::: srvChild ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: contact :::::::::::::::::::: */
.contact__formSec {
    padding: 24rem 0 12rem;
    margin-top: -13rem;
}

.contact__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
}

.contact__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.contact__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

.contact__textWrap {
    padding-top: 4.5rem;
}

.contact__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.contact__hr {
    width: 100%;
    height: 1px;
    background-color: #b7b7b7;
}

/* ::::: c-telSec ::::: */
.contact__c-telSecArea {
    padding: 24rem 0 12.5rem;
    margin-top: -13rem;
}

.c-telSec {}

.c-telSec__title {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #334a85;
    margin-bottom: 4.6rem;
}

.c-telSec__title--en {
    font-size: var(--pageSectionTitleEnFontSize);
}

.c-telSec__title--ja {
    display: var(--pageSectionTitleJaDisplay);
    padding-top: var(--pageSectionTitleJaPaddingTop);
    font-size: var(--pageSectionTitleJaFontSize);
    font-weight: var(--pageSectionTitleJaFontWeight);
    line-height: var(--pageSectionTitleJaLineHeight);
    letter-spacing: var(--pageSectionTitleJaLetterSpacing);
}

.c-telSec__contentWrap {
    padding: 5.7rem 6rem 8rem;
    border-radius: 3rem;
    text-align: center;
    color: #334a85;
    background-color: #f1f3f7;
}

.c-telSec__telText1 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.022em;
}

.c-telSec__telText2 {
    padding-top: 4.3rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.022em;
}

.c-telSec__telText3 {
    padding-top: 1rem;
    font-size: 3rem;
}

.c-telSec__telText3--small {
    display: inline-block;
    margin-top: 2.2rem;
    margin-right: 1.3rem;
}

.c-telSec__telLink {
    font-size: 5.5rem;
    opacity: 1;
    transition: opacity .3s;
}

@media (hover: hover) {
    .c-telSec__telLink:hover {
        opacity: .6;
    }

    /* ::::: c-telSec ここまで ::::: */
}

/* ----- name responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .contact__formSec {
        padding: 17.7rem 0 7.3rem;
        margin-top: -12rem;
    }

    .contact__title {}

    .contact__title--en {}

    .contact__title--ja {}

    .contact__textWrap {
        padding-top: 2.7rem;
    }

    .contact__text {}

    .contact__hr {}

    /* ::::: c-telSec ::::: */
    .contact__c-telSecArea {
        padding: 12rem 0 0;
        margin-top: -12rem;
    }

    .c-telSec {
        padding: 6.5rem 0 7rem;
    }

    .c-telSec__title {
        margin-bottom: 3.4rem;
    }

    .c-telSec__title--en {}

    .c-telSec__title--ja {}

    .c-telSec__contentWrap {
        padding: 4.2rem 1rem 5rem;
        border-radius: 2rem;
    }

    .c-telSec__telText1 {
        font-size: 2rem;
    }

    .c-telSec__telText2 {
        padding-top: 2.4rem;
        font-size: 1.6rem;
    }

    .c-telSec__telText3 {
        font-size: 2.2rem;
    }

    .c-telSec__telText3--small {
        margin-top: 1.1rem;
        margin-right: 0.9rem;
    }

    .c-telSec__telLink {
        font-size: 3.5rem;
    }

    @media (hover: hover) {
        .c-telSec__telLink:hover {}
    }
}

.contact__formUpperSpace {
    padding-top: 7rem;
}

/* form */
#form-target {
    padding: 70px 80px 100px;
    border-radius: 30px;
    background-color: #f1f3f7;
}

.hs-input {
    background-color: #fff !important;
}

/* :::::::::::::::::::: contact ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: confirm :::::::::::::::::::: */
/* :::::::::::::::::::: confirm ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: completed :::::::::::::::::::: */
.completed__content {
    padding: 10.6rem 0 12.5rem;
}

.completed__title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.022em;
    color: #334a85;
}

.comleted__text {
    padding-top: 5.5rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.completed__c-detailLinkWrap {
    padding-top: 5.5rem;
}

/* ----- completed responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .completed__content {
        padding: 6rem 0 7rem;
    }

    .completed__title {
        font-size: 2rem;
        line-height: 1.5;
    }

    .comleted__text {
        padding-top: 3.2rem;
    }

    .completed__c-detailLinkWrap {
        padding-top: 3.7rem;
    }
}

/* :::::::::::::::::::: completed ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: privacy :::::::::::::::::::: */
.privacy__contentSec {
    padding: 11rem 0 12.5rem;
}

.privacyUnit {
    border: 1px solid #111;
}

.privacyUnit.-open {
    border: 1px solid #334a85;
}

.privacyUnit+.privacyUnit {
    margin-top: 7rem;
}

.privacyUnit__accordionButton {
    padding: 0 8rem;
}

.privacyUnit__mark {
    padding-top: 13rem;
    margin-top: -13rem;
}

.privacyUnit__title {
    position: relative;
    padding: 4rem;
    text-align: center;
    font-size: 3rem;
    color: #333333;
    transition: color .3s;
}

.privacyUnit__accordionButton.-open .privacyUnit__title {
    color: #334a85;
}

.privacyUnit__accordionButtonIcon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateX(100%) translateY(-50%);
    width: 4rem;
    height: 4rem;
    border: 2px solid #333;
    border-radius: 50%;
}

.privacyUnit__accordionButton.-open .privacyUnit__accordionButtonIcon {
    border: 2px solid #334a85;
    background-color: #334a85;
}

.privacyUnit__accordionButtonIcon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2px;
    background-color: #333;
}

.privacyUnit__accordionButton.-open .privacyUnit__accordionButtonIcon::before {
    background-color: #FFF;
}

.privacyUnit__accordionButtonIcon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2rem;
    background-color: #333;
    opacity: 1;
}

.privacyUnit__accordionButton.-open .privacyUnit__accordionButtonIcon::after {
    opacity: 0;
}

.privacyUnit__accordionContent {
    padding: 5rem 8rem 7.2rem;
    border-top: 1px solid #334a85;
    margin-top: 0.9rem;
}

.privacyUnit__introTextWrap {
    padding-bottom: 4.2rem;
}

.privacyUnit__largeTitle {
    position: relative;
    padding-bottom: 3rem;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.8;
    color: #334a85;
}

.privacyUnit__text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__text.helper-padding-top {
    /* 【ご送付先】の上マージン */
    padding-top: 3rem;
}

.privacyUnit__text--strong {
    font-weight: 600;
}

.privacyUnit__text--text-align_right {
    text-align: right;
}

.privacyUnit__text+.privacyUnit__text {
    padding-top: 2.5rem;
}

.privacyUnit__smallUnorderList+.privacyUnit__text {
    padding-top: 3rem;
}

.privacyUnit__textLink {
    color: #334a85;
    text-decoration: underline;
    opacity: 1;
    transition: opacity .3s;
}

@media (hover: hover) {
    .privacyUnit__textLink:hover {
        opacity: .7;
    }
}

.privacyUnit__list {}

.privacyUnit__item {}

.privacyUnit__itemTitle {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.022em;
    color: #334a85;
}

.privacyUnit__itemContent {
    padding-top: 2.3rem;
    padding-bottom: 4.2rem;
}

.privacyUnit__item:last-child .privacyUnit__itemContent {
    padding-bottom: 0;
}

.privacyUnit__tableWrap {
    padding-top: 2rem;
}

.privacyUnit__tableWrap+.privacyUnit__tableWrap {
    padding-top: 4rem;
}

/* p-table1  */
.p-table1 {
    width: 100%;
}

.p-table1__tbody {
    display: table-row-group;
}

.p-table1__tr {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #d1d7dc;
}

.p-table1__tableTitle {
    width: 100%;
    padding: 1.5rem 0 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table1__th {
    width: 33%;
    padding: 1.5rem 2.5rem 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table1__td {
    width: 66%;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table1__td a {
    text-decoration: underline;
    color: #324a85;
    opacity: 1;
    transition: opacity .3s;
}

.p-table1__td a:hover {
    opacity: .6;
}

.p-table1__tr:first-child .p-table1__th {}

.p-table1+.privacyUnit__text {
    padding-top: 4rem;
}

/* p-table1 ここまで  */

/* p-table2  */
.p-table2 {
    width: 100%;
}

.p-table2__tbody {
    display: table-row-group;
}

.p-table2__tr {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #d1d7dc;
}

.p-table2__tableTitle {
    width: 100%;
    padding: 1.5rem 0 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table2__table2collums-th:nth-child(1) {
    width: 66%;
    padding: 1.5rem 2.5rem 1.5rem 33%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table2__table2collums-th:nth-child(2) {
    width: 33%;
    padding: 1.5rem 0 1.5rem;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table2__th {
    width: 33%;
    padding: 1.5rem 2.5rem 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table2__td {
    width: 33%;
    padding: 1.5rem 2.5rem 1.5rem 0;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.p-table2__td:last-child {
    padding: 1.5rem 0 1.5rem;
}

.p-table2__td a {
    text-decoration: underline;
    color: #324a85;
    opacity: 1;
    transition: opacity .3s;
}

.p-table2__td a:hover {
    opacity: .6;
}

.p-table2__tr:first-child .p-table2__th {}

.p-table2__tr:first-child .p-table2__th {}

.p-table2+.privacyUnit__text {
    padding-top: 4rem;
}

/* p-table2 ここまで  */

.privacyUnit__text+.privacyUnit__mediumOrderList {
    padding-top: 3rem;
}

.privacyUnit__mediumOrderItem {
    counter-increment: cntMed;
}

.privacyUnit__mediumOrderItem+.privacyUnit__mediumOrderItem {
    padding-top: 3rem;
}

.privacyUnit__mediumOrderItemTitle {
    position: relative;
    padding-left: 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__mediumOrderItemTitle::before {
    content: "(" counter(cntMed)")";
    position: absolute;
    top: 0;
    left: 0;
    display: inline;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__mediumOrderList .privacyUnit__smallUnorderList {
    padding-left: 3rem;
}

.privacyUnit__smallUnorderItem {
    position: relative;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__smallUnorderItem::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 1.2rem;
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #333333;
    border-radius: 50%;
}

.privacyUnit__mediumOrderList .privacyUnit__smallOrderList {
    padding-left: 3rem;
}

.privacyUnit__text+.privacyUnit__smallOrderList {
    padding-top: 2rem;
}

.privacyUnit__smallOrderItem {
    counter-increment: cnt;
    position: relative;
    padding-left: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__smallOrderItem::before {
    content: "" counter(cnt)"";
    position: absolute;
    top: 0;
    left: 0;
    display: inline;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__mediumOrderList+.privacyUnit__text {
    padding-top: 3rem;
}

.privacyUnit__text+.privacyUnit__smallUnorderList {
    padding-top: 3rem;
}

.privacyUnit__smallUnorderList+.privacyUnit__text {
    padding-top: 3rem;
}

.privacyUnit__mediumOrderItem .privacyUnit__text {
    padding-left: 3rem;
}

.privacyUnit__warnTextWrap {
    padding-top: 3rem;
}

.privacyUnit__warnText {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.022em;
}

.privacyUnit__warnText--strongText {
    font-weight: 600;
}

/* ----- privacy responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .privacy__contentSec {
        padding: 6rem 0 7rem;
    }

    .privacyUnit {}

    .privacyUnit.-open {}

    .privacyUnit+.privacyUnit {
        margin-top: 4rem;
    }

    .privacyUnit__accordionButton {
        padding: 0 6%;
    }

    .privacyUnit__title {
        padding: 2.9rem 3rem 3rem 0;
        text-align: left;
        font-size: 2rem;
    }

    .privacyUnit__accordionButton.-open .privacyUnit__title {}

    .privacyUnit__accordionButtonIcon {
        transform: translateX(0) translateY(-50%);
        width: 2rem;
        height: 2rem;
    }

    .privacyUnit__accordionButton.-open .privacyUnit__accordionButtonIcon {}

    .privacyUnit__accordionButtonIcon::before {
        width: 1rem;
    }

    .privacyUnit__accordionButton.-open .privacyUnit__accordionButtonIcon::before {}

    .privacyUnit__accordionButtonIcon::after {
        height: 1rem;
    }

    .privacyUnit__accordionButton.-open .privacyUnit__accordionButtonIcon::after {}

    .privacyUnit__accordionContent {
        padding: 4rem 6% 4.7rem;
        margin-top: 0rem;
    }

    .privacyUnit__introTextWrap {
        padding-bottom: 3.5rem;
    }

    .privacyUnit__largeTitle {
        padding-bottom: 3rem;
        font-size: 1.8rem;
        line-height: 1.8;
    }

    .privacyUnit__text {}

    .privacyUnit__text.helper-padding-top {
        /* 【ご送付先】の上マージン */
        padding-top: 3rem;
    }

    .privacyUnit__text--strong {}

    .privacyUnit__text--text-align_right {}

    .privacyUnit__text+.privacyUnit__text {
        padding-top: 2rem;
    }

    .privacyUnit__smallUnorderList+.privacyUnit__text {
        padding-top: 2.5rem;
    }

    .privacyUnit__textLink {}

    @media (hover: hover) {
        .privacyUnit__textLink:hover {}
    }

    .privacyUnit__tableWrap+.privacyUnit__tableWrap {
        padding-top: 2rem;
    }

    /* p-table1  */
    .p-table1 {}

    .p-table1__tbody {}

    .p-table1__tr {}

    .p-table1__tableTitle {}

    .p-table1__th {
        width: 33%;
        padding: 1.5rem 1.5rem 1.5rem 0;
    }

    .p-table1__td {
        width: 66%;
    }

    .p-table1__td a {}

    .p-table1__td a:hover {}

    .p-table1+.privacyUnit__text {
        padding-top: 2rem;
    }

    .p-table1__tr:first-child .p-table1__th {}

    /* p-table1 ここまで  */

    /* p-table2  */
    .p-table2 {}

    .p-table2__tbody {}

    .p-table2__tr {}

    .p-table2__tableTitle {}

    .p-table2__table2collums-th:nth-child(1) {
        width: calc(8rem + (100% - 8rem) / 2);
        padding: 1.5rem 2.5rem 1.5rem 8rem;
    }

    .p-table2__table2collums-th:nth-child(2) {
        width: 33%;
    }

    .p-table2__th {
        width: 8rem;
        padding: 1.5rem 1.5rem 1.5rem 0;
    }

    .p-table2__td {
        width: calc((100% - 8rem) / 2);
        padding: 1.5rem 1.5rem 1.5rem 0;
    }

    .p-table2__td:last-child {}

    .p-table2__td a {}

    .p-table2__td a:hover {}

    .p-table2__tr:first-child .p-table2__th {}

    /* p-table2 ここまで  */
    .privacyUnit__list {}

    .privacyUnit__item {}

    .privacyUnit__itemTitle {
        font-size: 1.8rem;
        line-height: 1.78;
    }

    .privacyUnit__itemContent {
        padding-top: 1.7rem;
        padding-bottom: 3.6rem;
    }

    .privacyUnit__item:last-child .privacyUnit__itemContent {}

    .privacyUnit__text+.privacyUnit__mediumOrderList {
        padding-top: 2.5rem;
    }

    .privacyUnit__mediumOrderItem {}

    .privacyUnit__mediumOrderItem+.privacyUnit__mediumOrderItem {}

    .privacyUnit__mediumOrderItemTitle {}

    .privacyUnit__mediumOrderItemTitle::before {}

    .privacyUnit__mediumOrderList .privacyUnit__smallUnorderList {}

    .privacyUnit__smallUnorderItem {}

    .privacyUnit__smallUnorderItem::before {}

    .privacyUnit__mediumOrderList .privacyUnit__smallOrderList {}

    .privacyUnit__smallOrderItem {}

    .privacyUnit__smallOrderItem::before {}

    .privacyUnit__mediumOrderList+.privacyUnit__text {}

    .privacyUnit__text+.privacyUnit__smallUnorderList {
        padding-top: 2.5rem;
    }

    .privacyUnit__mediumOrderItem .privacyUnit__text {}

    .privacyUnit__warnTextWrap {}

    .privacyUnit__warnText {}

    .privacyUnit__warnText--strongText {}
}

/* :::::::::::::::::::: privacy ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: news :::::::::::::::::::: */
.newsSec {
    padding: 8.2rem 0 14rem;
}

/* ----- name responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .newsSec {
        padding: 3.6rem 0 7rem;
    }
}

/* ::::: c-newsList ::::: */
.c-newsList {}

.c-newsList__item {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
}

.c-newsList__link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    padding: 3.3rem 0 2.7rem;
}

.c-newsList__subInfoWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.c-newsList__date {
    font-size: 1.9rem;
    color: #334a85;
}

.c-newsList__title {
    font-size: 1.5rem;
    line-height: 2;
    transition: color .3s;
}

.c-newsList__link:hover .c-newsList__title,
.c-newsList__link:focus .c-newsList__title {
    color: #334a85;
}

/* ----- c-newsList responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .c-newsList {}

    .c-newsList__item {}

    .c-newsList__link {
        padding: 2.6rem 0 2.7rem;
    }

    .c-newsList__subInfoWrap {}

    .c-newsList__date {
        font-size: 1.6rem;
    }

    .c-newsList__title {}

    .c-newsList__link:hover .c-newsList__title,
    .c-newsList__link:focus .c-newsList__title {}
}

/* ::::: c-newsList ここまで ::::: */
/* ::::::::::::::::::: news ここまで ::::::::::::::::::: */

/* ::::::::::::::::::: newsSingle ::::::::::::::::::: */
.newsSingle {
    padding-bottom: 13.8rem;
}
.mw-860 {
    max-width: 860px;
    margin-inline: auto;
}

.newsSingle__pageTitleArea {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10.8rem 0 8.7rem;
}

.newsSingle__date {
    font-size: 1.9rem;
    color: #334a85;
}

.newsSingle__mainTitle {
    margin-top: 0.6rem;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.022em;
}

.newsSingle__pageTitleBgi {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newsSingle__contentArea .mw-860 {
    max-width: 860px;
    margin-inline: auto;
}
/* -------------------- newsSingle responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .newsSingle {
        padding-bottom: 6.9rem;
    }

    .newsSingle__pageTitleArea {
        padding: 5.4rem 0 6.5rem;
    }

    .newsSingle__date {
        font-size: 1.6rem;
    }

    .newsSingle__mainTitle {
        margin-top: 1rem;
        font-size: 2.4rem;
        line-height: 1.875;
    }

    .newsSingle__pageTitleBgi {}
}

/* ::::::::::::::::::: newsSingle ここまで ::::::::::::::::::: */


/*  solution > socialrisk, sns-marketing  */
.srvChild__intro__lead {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}
.srvChild__introItem__title {
    font-size: 2rem;
    font-weight: bold;
    color: #334a85;
    padding-top: 2rem;
    line-height: 1.6;
    text-align: center;
}
.socialrisk__reason {
    padding: 23.2rem 0 0;
    margin-top: -13rem;
}
.socialrisk__reason .lineUpUnit__body {
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 40px;
}
.socialrisk__reason .lineUpUnit__body.order-reverse {
    display: flex;
    flex-direction: row-reverse!important;
}

@media screen and (min-width: 1001px) { 
    .socialrisk__reason .lineUpUnit__body {
        flex-direction: row;
        gap: 7%;
    }

}
.socialrisk-solutionList {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.socialrisk-solutionList__item {
    width: 100%;
}
.socialrisk-solutionList .solutionList__img {
    margin-bottom: 2rem;
}
.socialrisk-solutionList .solutionList__img, .socialrisk-solutionList .solutionList__itemTextTypeContent {
    width: 100%;
}

@media screen and (min-width: 1001px) {
    .socialrisk-solutionList {
        flex-direction: row;
        gap: 3%;
    }
    .socialrisk-solutionList__item {
        width: calc(94% / 3);
    }

}
.socialrisk-lineUpUnit {
    padding: 40px 0;
}
.socialrisk-lineUpUnit .lineUpUnit__unitTitle {
    padding-bottom: 3.2rem;
}
.socialrisk-lineUpUnit .lineUpUnit__title {
    margin: 0 0 2rem;
}
.socialrisk-lineUpUnit__body {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.socialrisk-lineUpUnit__img {
    width: 100%;
    max-width: 560px;
}
.socialrisk-lineUpUnit__img img {
    height: auto;
}
.socialrisk-lineUpUnit__linkListArea {
    width: 100%;
    max-width: 600px;
}
.socialrisk-lineUpUnit__linkList {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    justify-content: space-between;
}
.socialrisk-lineUpUnit__linkItem {
    background-color: #f1f3f7;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    transition: all 0.3s ease;
}
.socialrisk-lineUpUnit__linkItem:hover {
    box-shadow: 0px 2px 8px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.socialrisk-lineUpUnit__linkItem img {
    height: 140px;
    width: auto;
    margin: auto;
}
.socialrisk-lineUpUnit__link {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #334a85;
    line-height: 1.2;
    padding: 2rem 0 2.5rem;
}
.socialrisk-lineUp__title {
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    .socialrisk-lineUpUnit__body {
        display: grid;
        gap: 2rem;
    }
}
@media (max-width: 767px) {
    .socialrisk-lineUpUnit__img {
        max-width: none;
    }
    .socialrisk-lineUpUnit__linkListArea {
        max-width: none;
    }
    
}
.srvChild__case-study {
    padding: 12.7rem 0 14rem;
}
.case-study__slider {
  max-width: 1300px;
  margin: 4rem auto 0;
  position: relative;
}

.case-study__slider__viewport {
  overflow: hidden;
}

.case-study__slider__track {
  display: flex;
  transition: transform 0.3s ease;
}
.case-study__slider__card {
  flex: 0 0 calc(100% / 4);
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 999px) {
  .case-study__slider__card {
    flex: 0 0 calc(100% / 3);
  }
}

@media (max-width: 767px) {
  .case-study__slider__card {
    flex: 0 0 100%;
  }
}

/* カード全体リンク */
.case-study__item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* ホバー */
.case-study__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 画像ラッパー（比率固定） */
.case-study__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 509 / 254;
  overflow: hidden;
}

/* 画像 */
.case-study__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* 画像ホバー拡大 */
.case-study__item:hover .case-study__photo img {
  transform: scale(1.05);
}
/* タイトル部分 */
.case-study__title {
    font-size: 18px;
    line-height: 1.8em;
    font-weight: bold;
    margin: 0 0;
    padding: 0 0 0 25px;
    position: relative;
    box-sizing: border-box;
    min-height: 4em;
}
.case-study__title::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 4px;
    background: #334a85;
    display: inline-block;
    top: 11px;
    left: 0;
    margin: 0;
}
/* ナビボタン */
.case-study__slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #334a85;
  color: #fff;
  border: none;
  padding: 10px 10px 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
}

.case-study__slider__nav.prev { left: 0; }
.case-study__slider__nav.next { right: 0; }

.case-study__slider__nav.inactive {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
.srvChild__ctaSecArea {
    padding: 0 0 14rem;
}
.cta__contentWrap {
    padding: 8rem 6rem;
    border-radius: 3rem;
    text-align: center;
    color: #334a85;
    background-color: #f1f3f7;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}
.cta__text {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.022em;
}
.ctalink { 
    min-height: 88px;
    width: 46%;
    display: flex;
}
.ctalink a {
    background-color: white;
    padding: 1.2rem 2rem;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.022em;
    transition: opacity .3s;
}
.ctalink a:hover {
    opacity: 0.6
}
.ctalink.cta__download a {
    background-color: #324a85;
    color: white
}


@media screen and (max-width: 1200px) {
    .srvChild__ctaSecArea {
        padding: 7rem 0 14rem;
    }
}

@media screen and (max-width: 767px) {
    .srvChild__ctaSecArea {
        padding: 2rem 0 14rem;
    }
    .cta__contentWrap {
        flex-direction: column;
        gap: 2rem;
        padding: 3.7rem 4rem 4rem;
    }
    .ctalink {
        width: 100%;
    }
}

.cta2 {
    display: flex;
    justify-content: space-between;
    width: 84%;
    max-width: 130rem;
    margin: 4.8rem auto;
}
.cta2 .srvChild__c-telSecArea, .cta2 .srvChild__ctaSecArea {
    width: 48%;
    padding: 0;
}
.cta2 .srvChild__c-telSecArea .wrapper, .cta2 .srvChild__ctaSecArea .wrapper {
    width: 100%;
}
.cta2 .srvChild__ctaSecArea .cta__contentWrap {
    flex-direction: column;
    gap: 2rem;
    min-height: 351px;
    padding: 6rem 6rem 8rem;
}
.cta2 .srvChild__ctaSecArea .cta__contentWrap .ctalink {
    width: 100%;
}
.cta2 .srvChild__c-telSecArea .c-telSec__telText2 {
    padding-top: 1.3rem;
}

@media screen and (max-width: 1200px) {
    .cta2 {
        flex-direction: column;
        gap: 2rem;
        padding: 8rem 0;
    }
    .cta2 .srvChild__c-telSecArea, .cta2 .srvChild__ctaSecArea {
        width: 100%;
        padding: 0;
    }
    .cta2 .c-telSec__contentWrap {
        padding: 5.7rem 4rem 8rem;
    }
}

.solution-sns-marketing .srvChild__introLower {
    padding: 0 3%;
}

/*  Case Study */
.case .c-pageTitleLargeArea__mainTitle {
    color: #324a85;
}
.case__listWrap {
    width: 84%;
    max-width: 1300px;
    margin: 80px auto 0;
}
.case__listWrap .list {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}
.case__listWrap .list__item {
    display: block;
    background: #fff;
    width: 48%;
    padding: 0 0 34px;
    margin: 0 0 45px;
    box-sizing: border-box;
}
.case__listWrap .list__item a {
    transition: opacity 0.3s ease;
}
.case__listWrap .list__item a:hover {
    opacity: 0.6
}
.case__type {
    background-color: #334a85;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 5px;
    text-align: center;
}
.case__listWrap .list__item__inner {
    box-shadow: 1px 1px 18px 3px rgba(0, 0, 0, 0.05);
}
.case__listWrap .list__item__img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}
.case__listWrap .list__item__img img {
    object-fit: cover;
    width: 100%;
}
.case__listWrap .list__item__title {
    padding: 10px 25px;
    margin-top: 16px;
    box-sizing: border-box;
    width: auto;
    font-size: 15px;
    line-height: 1.8em;
    font-weight: bold;
    position: relative;
    box-sizing: border-box;
}
.case__listWrap .list__item__title::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 4px;
    background: #334a85;
    display: inline-block;
    top: 22px;
    left: 0;
    margin: 0;
}
.case__listWrap .list__item__labels {
    display: flex;
    gap: 5px;
}
.case__listWrap .service-name {
    background-color: #d9e1f5;
    padding: 0 25px 0;
    box-sizing: border-box;
    text-align: left;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.857;
    border-radius: 100px;
    width: fit-content;
}
.case__listWrap .list__item__text {
    text-align: left;
    margin-top: 1rem;
    font-size: 14px;
    line-height: 1.857;
}

/*  トップページkv temporary */
.homeKv__catchcopyWrap {
    top: 25%;
}
.homeKv__catchcopy {
    text-align: center;
    font-size: clamp(17px, 2.8vw, 3.25rem);
}
.homeKv__catchcopy br.tablet { display: none; }
.homeKv__logo {
    display: flex; flex-direction: column; align-items: center; width: 40%; max-width: 480px; margin: 1rem auto;
}
.homeKv__logo img {
    object-fit: contain;width: 100%;height: auto;
}
.logo__copy {
    font-family: 'Century Gothic',Futura, sans-serif;font-size: 4rem;text-align: center;
}
@media screen and (max-width: 1024px) {
    .homeKv__catchcopy br {
        display: none;
    }
    .homeKv__catchcopy br.tablet { display: block; }
}

@media screen and (max-width: 1000px) {
    .homeKv__catchcopy {
        white-space: normal;
    }
    .logo__copy {
        font-size: clamp(14px, 2.5vw, 3rem);
    }
}
@media screen and (max-width: 480px) {
.homeKv__catchcopy br.tablet { display: none; }
}