@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

:root{
    --sub-color: #454545;
    --pane-padding: 5px 42px;  
}

/* Light 300
Regular 400
Medium 500
Bold 700
Black 900 */
/* font-family: 'Noto Serif JP', serif; */

/* ========
  common
======== */
html {
    font-size: 16px;
    line-height: 150%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
    letter-spacing: .1em;
    color: #000;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
}
a{
    color: #1b598c;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
.sow-image-container a[target="_blank"]::after{
    display: none;
}
a[target="_blank"]::after {
    display: inline-block;
    content: "\f33b";
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}
.inner {
    max-width: 1000px;
    margin-inline: auto;
}
input[readonly="readonly"]{
    background: #fafafa;
}
.hide {
    display: none !important;
}

/* ========
  Button
======== */
.more-btn {
    position: relative;
    display: block;
    text-align: center;
    background: var(--main-color-bg);
    color: #fff;
    width: 100%;
    padding: 15px 10px;
}
.more-btn::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 3px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    right: 10px;
    top: 40%;
}

/* ========
  MV
======== */
#mv {
    position: relative;
    /* background: url(../../img/mv.jpg) no-repeat right top / 87%; */
    aspect-ratio: 2000 / 610;
    display: grid;
    align-items: center;
}   
.mv-bg {
    position: absolute;
    /* opacity: 0.5; */
    right: 0;
    top: 0;
    width: 100vw;
    /* z-index: -1; */
}
.mv-text-box{
    position: relative;
    top: 100px;
}
.mv-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 0 6%;
    color: #fff;
    /* text-shadow: 0px 0px 13.44px rgba(50, 58, 75, 0.8); */
    text-shadow: 0px 0px 15px #000, 2px 2px 0px #000;
}

.mv-scroll {
    font-family: 'Noto Serif JP', serif;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 14px;
    opacity: .6;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 1%;
    bottom: 0;
}
.mv-scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background: rgb(255 255 255 / 60%);
}
@media (600px <= width < 1000px) {
    .mv-text {
        font-size: 4vw;
    }
}
@media (max-width:599px) {
    #mv {
        align-items: end;
    }
    .mv-scroll {
        font-size: 10px;
    }
    .mv-scroll::after {
        height: 20px;
    }
    .mv-text {
        font-size: 5.2vw;
        margin-bottom: -60px;
    }
    .mv-text br {
        display: none;
    }
    .sp-br {
        display: block;
    }
}

/* top news */
#top-news {
    position: relative;
    padding: 90px 0 0 0;
}
#top-news::after {
    content: "";
    background: var(--base-color-bg);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    z-index: -1;
}
.news-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding: 0.5rem 0 ;
}
.news-title__ja {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}
.news-title__ja::before {
    content: "|";
    display: inline-block;
    margin-right: 20px;
}
.news-box {
    background: #fff;
    margin: 25px 0 0 0;
    padding: 30px 20px;
}
.top-news-list__item {
    font-size: 14px;
    margin-bottom: 25px;
}
.top-news-list__link {
    display: flex;
    gap: 5px 50px;
}
.j-mainvisual__news__data__date {
    color: #979797;
}
.j-mainvisual__news__data__title {
    color: #000;
}
.j-mainvisual__news__more {
    max-width: 250px;
    margin: 0 auto;
}
@media (max-width:599px) {
    #top-news {
        padding: 120px 0 0 0;
    }
    .news-title {
        font-size: 28px;
    }
    .news-title__ja {
        font-size: 14px;
    }
    .top-news-list__link {
        flex-direction: column;
    }
}

.section {
    background: var(--base-color-bg);
    padding: 80px 0;
}
.section-title,
.section-title .sow-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: max(24px, min(4vw,34px) );
    font-weight: 400;
    margin: 0;
    color: var(--main-color);
    text-align: center;
    line-height: 1.4;
}
.section-text {
    font-size: 14px;
    text-align: center;
    margin: 30px 0 0 0;
}
.section-box {
    padding: 40px 0 0 0;
}
@media (max-width:599px) {
    .section {
        padding: 60px 0;
    }
}

/* JMTグループ 一覧 */
.group-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.group-list__item {
    background: #fff;
    padding: 40px 15px 15px 15px;
}
.group-list__link {
    color: #000;
}
.group-list__link:hover {
    text-decoration: none;
    opacity: .8;
}
.group-list__name {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
    line-height: 1.2;
}
.group-list__name .group-condition {
    font-size: 16px;
    display: block;
}
.group-list__field {
    width: min(100% - 10px, 230px);
    margin: 0 auto;
}
.group-list__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
}
.group-list__description {
    font-size: 14px;
    margin: 0 0 1em 0;
}
@media (max-width:767px) {
    .group-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:599px) {
    .group-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* 当社の強み */
#merit {
    background: url(../../img/merit-bg.jpg) no-repeat center / cover;
    background-attachment: fixed;
    padding: 50px 0;
}
.merit-wrap {
    background: #fff;
    padding: 50px 15px;
}
.merit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.merit-list__item {
    padding: 15px 30px;
}
.merit-list__figure {
    max-width: 120px;
    margin-inline: auto;
}
.merit-list__text {
    font-family: 'Noto Serif JP', serif;
    font-size: max(16px, min(3vw,20px) );
    line-height: 1.6;
}
.merit-more {
    max-width: 360px;
    margin: 40px auto 0 auto;
}
.merit-more__btn {
    position: relative;
    display: block;
    text-align: center;
    color: var(--main-color);
    border: solid 1px var(--main-color);
    width: 100%;
    padding: 15px 10px;
}
.merit-more__btn::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 3px solid var(--main-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    right: 10px;
    top: 40%;
}
@media (max-width:599px) {
    .merit-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (min-width:600px) {
    .merit-list__item {
        display: grid;
        grid-row: span 3;
        grid-template-rows: subgrid;
        border-right: solid 2px #f1f1f1;
    }
    .merit-list__item:first-of-type {
        border-left: solid 2px #f1f1f1;
    }
}

/* サービス・サポート */
.service-box {
    background: #fff;
    padding: 46px 15px;
}
.service-tbl {
    width: 100%;
}
.service-tbl__horizontal,
.service-tbl__vertical {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
}
.service-tbl__horizontal {
    padding-bottom: 20px;
}
.service-tag__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.service-tbl__vertical {
    padding: 20px 0;
}
.service-tag__item {
    font-weight: 500;
    background: #fff;
    box-shadow: 0px 0px 10.56px 1.44px rgba(170, 170, 170, 0.4);
}
.service-tag__link {
    display: block;
    padding: 12px;
}
.service-tag__link.color-group-jmtz-1 {
    border-bottom: solid 3px var(--color-group-jmtz-1);
}
.service-tag__link.color-group-jmtz-2 {
    border-bottom: solid 3px var(--color-group-jmtz-2);
}
.service-tag__link.color-group-jmty {
    border-bottom: solid 3px var(--color-group-jmty);
}
.service-tag__link.color-group-jmtr {
    border-bottom: solid 3px var(--color-group-jmtr);
}
.service-tag__link.color-group-jmtk {
    border-bottom: solid 3px var(--color-group-jmtk);
}
.service-tag__link.color-group-jmts {
    border-bottom: solid 3px var(--color-group-jmts);
}
.service-tag__link.color-group-jmtt {
    border-bottom: solid 3px var(--color-group-jmtt);
}
@media (max-width:599px) {
    .service-tbl__header,
    .service-tbl__vertical {
        display: none;
    }
    .service-tbl__body {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .service-tbl__body:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .service-tbl__vertical--content {
        width: 100%;
    }
    .service-tbl__vertical--content::before {
        font-family: 'Noto Serif JP', serif;
        content: attr(data-label);
        display: block;
        padding: 0 0 15px 0;
        color: var(--main-color);
        font-weight: 600;
    }
}
@media (min-width:600px) {
    .service-tbl tr {
        display: grid;
        grid-template-columns: 130px 1fr 1fr;
    }
    .service-tbl__vertical--content:nth-of-type(even) {
        padding: 10px 15px 10px 0;
        border-right: solid 1px #d3d3d3;
    }
    .service-tbl__vertical--content:nth-of-type(odd) {
        padding: 10px 0 10px 15px;
    }
}

/* top banner */
#banner {
    background: #fff;
}
.banner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.banner-item__text {
    font-family: 'Noto Serif JP', serif;
    font-size: max(16px, min(3vw,20px) );
    font-weight: 700;
    color: var(--main-color);
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.banner-item__text::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 12px;
    height: 12px;
    border: 3px solid var(--main-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    margin: 0 8px 0 auto;
}
@media (max-width:599px) {
    .banner-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

/* お客様事例 */
#case {
    background: url(../../img/voice-bg.jpg) no-repeat center / cover;
    background-attachment: fixed;
}
.case-box {
    background: #fff;
    padding: 50px 15px;
}
.case-list__item {
    display: flex;
    gap: 0 30px;
}
.case-list__item:not(:last-of-type) {
    margin: 0 0 40px 0;
}
.case-list__thumbnail {
    width: 38%;
}
.case-list__thumbnail--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.case-list__content {
    flex: 1;
}
.case-list__title {
    font-size: max(18px, min(3vw,22px) );
    line-height: 1.4;
    margin: 10px 0 15px 0;
}
.case-list__link {
    color: #333;
}
.j-singular ul.case-list__tag,
.case-list__tag {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.case-list__tag--item {
    border: solid 1px #ccc;
    background: #fff;
    font-size: 14px;
    padding: 5px 10px;
    white-space: nowrap;
}
.case-list__tag--item.color-group-jmtz-1 {
    border: solid 1px var(--color-group-jmtz-1);
}
.case-list__tag--item.color-group-jmtz-2 {
    border: solid 1px var(--color-group-jmtz-2);
}
.case-list__tag--item.color-group-jmty {
    border: solid 1px var(--color-group-jmty);
}
.case-list__tag--item.color-group-jmtr {
    border: solid 1px var(--color-group-jmtr);
}
.case-list__tag--item.color-group-jmtk {
    border: solid 1px var(--color-group-jmtk);
}
.case-list__tag--item.color-group-jmts {
    border: solid 1px var(--color-group-jmts);
}
.case-list__tag--item.color-group-jmtt {
    border: solid 1px var(--color-group-jmtt);
}
#case .j-mainvisual__news__more {
    padding-top: 30px;
}
@media (max-width:599px) {
    .case-list__item {
        flex-direction: column;
    }
    .case-list__thumbnail {
        width: 100%;
    }
}

/* アクセス */
#access {
    background: #fff;
}
.access-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.access-map__container {
    width: 100%;
    aspect-ratio: 450/400;
    padding-right: 45px;
}
.access-map__iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.access-map__title {
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 8px;
}
.access-map__description {
    font-size: 14px;
    margin: 0 0 1em 0;
}
.access-map__link-container {
    max-width: 330px;
}
@media (max-width:740px) {
    .access-map {
        grid-template-columns: repeat(1, 1fr);
    }
    .access-map__container {
        padding: 0;
    }
    .access-map__link-container {
        margin: 0 auto;
    }
}

/* top お問い合わせ */
.contact-header {
    background: url(../../img/contact-bg.jpg) no-repeat center / cover;
    background-attachment: fixed;
    padding: 80px 0;
}
.contact-header .section-title {
    color: #fff;
}
@media (max-width:599px) {
    .contact-header {
        padding: 40px 0;
    }
}
.contact-body {
    padding: 50px 0;
    background: var(--base-color-bg);
}
.contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 30px;
}
.contact-list__item {
    background: #fff;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
}
.contact-list__title {
    font-size: 18px;
    margin: 0 0 20px 0;
    text-align: center;
}
.contact-list__link-container {
    margin-top: auto;
}
.contact-list__link {
    position: relative;
    display: block;
    color: var(--main-color);
    border: solid 2px var(--main-color);
    padding: 15px 12px;
    font-weight: 700;
    text-align: center;
}
.contact-list__link::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 3px solid var(--main-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    right: 10px;
    top: 42%;
}
@media (max-width:859px) {
    .contact-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:599px) {
    .contact-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ========
  下層ページ
======== */
/* ページネーション */
.j-breadcrumb {
    position: relative;
    background: #e9edf3;
    padding: 6px 1%;
    z-index: 1;
}
.j-breadcrumb-ul {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.j-breadcrumb-ul li {
    font-size: 12px;
}
.j-breadcrumb-ul li:last-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
}
.j-breadcrumb-ul li a {
    color: var(--main-color);
}
.jmt_breadcrumb__sep {
    color: var(--main-color);
    font-weight: 600;
    margin: 0 4px 4px 4px;
}

/* ページタイトル */
.j-single-group-title-bg {
    background: var(--main-color-bg);
    padding: 70px 0 50px 0;
}
@media (max-width:599px) {
    .j-single-group-title-bg {
        padding: 40px 0 25px 0;
    }
}
.j-single-group-title-txt{
    font-family: 'Noto Serif JP', serif;
    /* font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; */
    font-weight: 500;
    text-align: center;
    color: #fff;
}
.j-single-group-title__maintxt {
    position: relative;
    font-size: max(24px, min(8vw,36px) );
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    text-align: center;
    color: #fff;
    word-break: auto-phrase;
    margin: 0;
    line-height: 1.4;
    z-index: 1;
}
.section-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: max(20px, min(3vw,26px) );
    font-weight: 500;
    color: var(--main-color);
    margin: 0 0 20px 0;
}
.j-single-post-title {
    font-family: 'Noto Serif JP', serif;
    font-size: max(24px, min(3vw,36px) );
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}
.j-singular__paging {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.j-singular__paging:has(.j-singular__paging--nav)  {
    border-top: solid 1px #e9edf3;
    padding: 40px 0 0 0;
    margin: 40px 0 0 0;
}
.j-singular__paging--prev,
.j-singular__paging--next {
    display: block;
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
    margin: 0 0 12px 0;
}
.j-singular__paging--next {
    text-align: right;
}
.j-singular__paging--nav a {
    color: #000;
    font-weight: 500;
}
.j-singular__paging--next {
    margin-left: auto;
}

/* メインコンテンツ */
#page-content {
    background: var(--base-color-bg);
    padding-bottom: 80px;
}
.j-page-section {
    position: relative;
}
.j-page-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 3em;
    background: var(--main-color-bg);
    position: absolute;
    top: 0;
    left: 0;
}
.j-singular {
    background: #fff;
    padding: 20px 20px 40px 20px;
    position: relative;
    z-index: 1;
}
.j-singular__content {
    line-height: 200%;
}

.j-singular table {
    border-top: 1px solid;
    border-left: 1px solid;
    border-spacing: 0;
}

.j-singular table td,
.j-singular table th {
    border-right: 1px solid;
    border-bottom: 1px solid;
    padding: 1em;
}

.j-singular table th {
    background: whitesmoke;
}

.j-singular ul{
    margin-left: 1em;
    margin-right: 1em;
    padding-left: 1em;
    list-style: disc;
}

.group-page__nav--box {
    background: #fff;
    padding: 46px 15px;
}
.group-page__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.group-page__list--item,
.group-page__list .menu-item{
    background: var(--main-color);
    border: solid 3px var(--main-color);
    font-size: max(14px, min(3vw,18px) );
}
.group-page__list--link,
.group-page__list .menu-item a {
    color: #fff;
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 20px 10px;
}
.group-page__list--item.is-active,
.group-page__list .menu-item.current_page_item {
    background: #fff;
}

.group-page__list--item.is-active .group-page__list--link,
.group-page__list .menu-item.current_page_item a {
    color: var(--main-color);
}
.group-page__list .menu-item.current_page_item a{
    pointer-events: none;
}

@media (max-width:767px) {
    #page-content {
        padding-bottom: 50px;
    }
    .group-page__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:599px) {
    .group-page__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .group-page__list--link {
        padding: 10px 10px;
    }
}

#page-group {
    margin: -3% 0;
    padding: 100px 0;
}
.section-bgcolor {
    background: var(--main-color-bg);
}
.section-bgcolor .section-title {
    color: #fff;
}
.page-box {
    margin: 1.5px 0;
}
@media (max-width:599px) {
    #page-group {
        padding: 50px 0;
    }
}

/* ニュース一覧 */
.j-archive__lists {
    border-top: solid 1px #e9edf3;
    margin: 30px 0;
}
.j-archive__lists__list {
    padding: 12px 0;
    border-bottom: solid 1px #e9edf3;
    display: grid;
    grid-template-columns: 6em 1fr; 
    gap: 10px 30px;
}
.j-archive__lists__list__date {
    color: #848484;
}
@media (max-width:599px) {
    .j-archive__lists {
        margin: 10px 0 30px 0;
    }
    .j-archive__lists__list {
        grid-template-columns: 1fr; 
    }
}
/* ニュース 詳細 */
.j-single-post-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}
.j-section__date {
    font-size: 14px;
    color: #fff;
    display: block;
    margin-left: auto;
}
/* お客様の声 一覧 */
.archive-text {
    font-size: 14px;
    text-align: center;
    margin: 1.5em 0 0 0;
}
/* お客様の声 詳細 */
.j-single-case-title {
    margin: 0 0 20px 0;
}
.j-singular__thumbnail {
    text-align: center;
    padding: 30px 0 0 0;
}
@media (max-width:599px) {
    .j-singular__thumbnail {
        padding: 10px 0 0 0;
    }
}
/* ページネーション */
.j-pagenation {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}
.j-pagenation a,
.j-pagenation span {
    border: 1px solid;
    padding: 0 10px;
    height: 2em;
    display: block;
    line-height: 1.9em;
}

.page-numbers.current {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
}

/* 求人情報 */
.recruit-page-title{
    padding: 0.5em 0;
}
.recruit-search {
    display: flex;
    padding: 20px 0 40px 0;
}
.filter-title {
    display: grid;
    place-items: center;
    font-size: 18px;
    max-width: 220px;
    width: 100%;
    color: var(--main-color);
    border-right: solid 1px #d1d1d1;
}
.filter-options {
    padding: 0 0 0 30px;
    width: 100%;
}
.company-list {
    /* margin-bottom: 10px; */
}
.search-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.search-list li {
    font-size: 14px;
    background: #f8f8f8;
    padding: 1em;
    display: grid;
    place-items: center;
    line-height: 1.4;
    color: #5a5a5a;
    cursor: pointer;
    border: 2px solid transparent;
}
.search-list li.active {
    background: #fff;
    color: var(--main-color);
    border: solid 2px var(--main-color);
}
@media (max-width:999px) {
    .search-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:767px) {
    .recruit-search {
        flex-direction: column;
    }
    .filter-title {
       border: 0;
       padding: 0 0 20px 0;
       max-width: 100%;
    }
    .filter-options {
        padding: 0;
    }
}
@media (max-width:599px) {
    .j-singular ul {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
    }
    .search-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-accordion {
        position: relative;
        flex-direction: column;
    }
    .search-accordion::after {
        position: absolute;
        top: 50%;
        right: 5px;
    }
}

.search-box{
    border-bottom: 2px solid #e9edf3;
}
.search-accordion {
    cursor: pointer;
    width: 100%;
    appearance: none;
    border: none;
    border-top: 2px solid #e9edf3;
    background: #fff;
    padding: 1.5em;
    color: var(--main-color);
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px 15px;
    line-height: 1.4;
}
.position-label {
    font-size: 14px;
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 4px 8px;
    white-space: nowrap;
}

.search-accordion::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: var(--main-color) transparent transparent transparent;
    margin-left: auto;
}
.active .search-accordion::after{
    border-width: 0 6px 10px 6px;
    border-color: transparent transparent var(--main-color) transparent;
}
.search-accordion.active::after {
    transform: rotate(180deg);
}
@media (max-width:599px) {
    .position-label {
        font-size: 12px;
    }
}

.search-panel {
    display: none;
    width: 100%;
}
.search-panel__box {
    background: #fcfcfc;
    padding: 30px 20px;
}
.j-singular .search-panel__box table {
    border-top: 0;
    border-left: 0;
}
  
  .j-singular .search-panel__box table td,
  .j-singular .search-panel__box table th {
    border-right: 0;
    border-bottom: 0;
    /* padding: 1em 0 2em; */
  }
  
  .j-singular .search-panel__box table td:first-child {
    min-width: 12em;
    font-weight: bold;
    color: var(--main-color);
}

  .job-description {
    display: grid;
    grid-template-columns: 8em 1fr;
    gap: 30px 80px;
    margin: 0;
}
.job-description__title {
    color: var(--main-color);
    font-weight: 500;
}
.job-description__details {
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}
.apply-job {
    min-width: 250px;
    margin: 20px auto 0 auto;
    -webkit-appearance: initial;
    background: var(--main-color);
    border: none;
    position: relative;
    display: block;
    padding: 15px 12px;
    font-weight: 700;
    text-align: center;
    color: white;
    cursor: pointer;
}
@media (max-width: 767px) {
    .j-singular .search-panel__box table td{
        width: 100%;
        display: block;
    }
    .job-description {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px 0;
    }
    .j-singular .search-panel__box table td{
        width: 100%;
        display: block;
    }
}

/* スタッフ紹介 */
.panel-has-style:nth-child( 2n + 0 ) > .staff-box{
    flex-direction: row-reverse !important;
}
.staff-box .textwidget p {
    margin: 0;
}
.profile-discription p {
    font-size: 14px;
    line-height: 1.6;
}
.profile-discription dl {
    display: grid;
    grid-template-columns: 5em 1fr;
    font-size: 14px;
    line-height: 1.6;
    gap: 5px;
}
.profile-discription dl,
.profile-discription dd {
    margin: 0;
}
.profile-discription dt {
    font-weight: 500;
    color: #1b598c;
}
@media (max-width: 600px) {
    .profile-discription dl {
        grid-template-columns: 1fr;
    }
    .profile-discription dd:not(:last-of-type) {
        margin-bottom: 15px;
    }
}

/* グループの強み */
#strength-navbox .widget_sow-image {
    position: relative;
    padding: 10px 30px;
    height: 100%;
}
.strength-nav::after {
    content: "";
    display: block;
    line-height: 1;
    width: 20px;
    height: 20px;
    border: 3px solid var(--main-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    margin: 0 auto;
}
.strength-nav .sow-image-container {
    max-width: 112px;
    width: 100%;
    margin: 0 auto 20px auto;
}
.strength-nav .widget-title a {
    font-family: 'Noto Serif JP', serif;
    font-size: max(16px, min(3vw,20px) );
    font-weight: 500;
    line-height: 1.6;
    color: #000;
}
.strength-nav .widget-title a:hover {
    text-decoration: none;
    opacity: .8;
}
@media (max-width:799px) {
    #strength-navbox .widget_sow-image {
        padding: 10px 0px;
    }
    #strength-navbox .so-widget-sow-image {
        display: grid;
        grid-template-columns: 80px 1fr; 
        align-items: center;
        gap: 15px;
    }
}
@media (min-width:780px) {
    #strength-navbox .panel-grid-cell {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
    }
    #strength-navbox .widget_sow-image:not(:last-of-type) {
        border-right: solid 1px #e2e2e2;
    }
    .strength-nav::after {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 10px;
    }
}
.strength-name {
    font-family: 'Noto Serif JP', serif;
    font-size: max(18px, min(3vw,24px) );
    color: var(--main-color);
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.strength-num {
    font-size: 74px;
}

@media (max-width: 839px) {
    .strength-name br {
        display: none;
    }
}
/* グループ代表挨拶 */
.greeting-headline p.sow-headline {
    font-size: max(16px, min(3vw,18px) ) !important;
}
.greeting-headline h3.sow-headline,
.greeting-headline h2.sow-headline {
    font-size: max(20px, min(3vw,26px) );
}
/* アクセス */
.access-list {
    margin: 0;
    display: grid;
    grid-template-columns: 8em 1fr;
    border-top: solid 1px #e2e2e2;
}
.access-list dt,
.access-list dd {
    border-bottom: solid 1px #e2e2e2;
    padding: 10px 0;
}
.access-label {
    color: var(--main-color);
    font-weight: 500;
}
.access-item {
    margin: 0;
}
.map-box {
    width: 100%;
    aspect-ratio: 10/8;
}
.map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.map-link {
    display: block;
    text-align: right;
    margin: 1em 0 0 0;
}
@media (max-width: 599px) {
    .access-list {
        grid-template-columns: repeat(1, 1fr); 
    }
    .access-list dt {
        border-bottom: 0;
        padding-bottom: 0;
    }
    .access-list dd {
        padding-top: 5px;
    }
}
#thumbnails .thumb .sow-image-container {
    width: 100%;
    aspect-ratio: 3/2;
}
#thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#thumbnails .thumb img.selected {
    border: solid 5px #4ec2f1;
}

/* ========
  jmtz Topページ
======== */
.grouppage-box {
    padding: 70px 0;
}
@media (max-width: 599px) {
    .grouppage-box {
        padding: 40px 0;
    }
}
#group-mv {
    position: relative;
    background: var(--main-color-bg);
    padding-bottom: 60px;
}
.group-mv__inner {
    background: #fff;
    max-width: 42vw;
    padding: 32px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.group-mv__title {
    font-family: 'Noto Serif JP', serif;
    font-size: max(26px, min(3vw,42px) );
    font-weight: 500;
    margin: 0;
    color: var(--main-color);
    line-height: 1.2;
}
.group-mv__title::after {
    content: "";
    display: block;
    width: 118px;
    height: 2px;
    background: var(--main-color);
    margin: 15px 0;
}
.group-mv__description {
    margin: 0;
    line-height: 1.6;
}
.group-mv__picture {
    max-width: 100vw;
    margin-left: auto;
}
.group-mv__img {
    display: block;
    width: 100%;
    height: 32vw;
    object-fit: cover;
}
@media (max-width: 1399px) {
    #group-mv {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 30px;
    }
    .group-mv__picture {
        max-width: 100%;
        width: 100%;
    }
    .group-mv__img {
        object-fit: contain;
        object-position: top;
        height: auto;
    }
    .group-mv__box {
        width: 100%;
        left: 0;
        right: 0;
        top: auto;
        padding: 0;
        justify-content: center;
    }
    .group-mv__inner {
        max-width: 90vw;
        padding: 40px 20px;
        margin: 20px auto 0 auto;
    }
}
@media (min-width: 1400px) {
    .group-mv__box {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 3.6vw;
        display: grid;
        align-items: center;
        padding-bottom: 30px;
        z-index: 1;
    }
}
/* サービス内容 */
.group-support__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin: 30px 0 0 0;
}
.group-support__list__item {
    background: #fff;
}
.group-support__list__link {
    display: grid;
    grid-template-columns: 43% 1fr;
    height: 100%;
}
.group-support__list__link:hover {
    opacity: .8;
    text-decoration: none;
}
.group-support__list__img {
    position: relative;
    display: grid;
    place-items: center;
    padding: 30px;
    background-size: cover;
    background-position: center;
    min-height: 215px;
}
.group-support__list__img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(34 68 129 / 40%);
    position: absolute;
    top: 0;
    left: 0;
}
.group-support__list__title {
    font-family: 'Noto Serif JP', serif;
    position: relative;
    font-size: max(18px, min(3vw,24px) );
    font-weight: 400;
    margin: 0;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    z-index: 1;
    text-shadow: 0 0 16px rgb(0 0 0 / 50%);
}
.group-support__list__desc {
    padding: 20px;
}
.group-support__list__tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.group-support__item__tag {
    font-size: 12px;
    background-image: var(--main-color-bg);
    color: #fff;
    padding: 0 5px;
}
.group-support__list__desc > p {
    margin: 0;
    font-size: 14px;
    color: #000;
    /* display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical; */
}
@media (max-width: 767px) {
    .group-support__list {
        grid-template-columns: repeat(1, 1fr);
    }
    .group-support__list__img {
        padding: 15px;
    }
}
@media (max-width: 499px) {
    .group-support__list__desc > p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
    }
}
/* 当社の強み */
.group-merit-list__figure {
    width: 94px;
    height: 75px;
    margin: 0 auto;
}
.group-merit-list__title {
    font-family: 'Noto Serif JP', serif;
    font-size: max(18px, min(3vw,20px) );
    font-weight: 500;
    text-align: center;
    margin: 10px 0 1em;
    line-height: 1.4;
}
.group-merit-list__text {
    font-size: max(14px, min(3vw,16px) );
    margin: 0;
    line-height: 1.6;
    color: var(--sub-color);
}
/* 企業概要 */
#group-outline {
    background: var(--main-color-bg);
    padding: 60px 0;
}
.outline-box {
    background: #fff;
    padding: 50px 20px;
}
.outline-details {
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
}
.outline-detail-list {
    margin: 0;
}
.detail-item-title {
    font-weight: 500;
    color: var(--main-color);
    padding: 15px 0 0 0;
}
.detail-item-description {
    margin: 5px 0 0 0;
    padding: 0 0 15px 0;
    border-bottom: solid 1px #dcdcdc;
    color: var(--sub-color);
}
.detail-item-description-table td {
    vertical-align: text-top;
}
.detail-item-description-table td:nth-child(1){
    width: 9em;
}
.underline {
    text-decoration: underline;
}
.group-philosophy-box {
    margin-top: 35px;
}
.philosophy-details {
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.philosophy-title .sow-headline-container {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 0 15px;
}
.philosophy-title .sow-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: max(22px, min(3vw,26px) );
    font-weight: 500;
    color: var(--main-color);
    margin: 0;
}
.philosophy-title .sow-sub-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: max(14px, min(3vw,16px) );
    font-weight: 400;
    color: var(--main-color);
    margin: 0;
}
.philosophy-description p {
    line-height: 1.6;
    margin: 0;
    color: var(--sub-color);
}
@media (max-width: 780px) {
    .outline-box {
        padding: 30px 20px;
    }
    .outline-details,
    .philosophy-details {
        grid-template-columns: repeat(1, 1fr);
    }
    .outline-detail__values {
        margin-top: 40px;
    }
}
@media (min-width:781px) {
    .outline-detail__mission {
        border-right: solid 1px #dcdcdc;
        padding-right: 30px;
    }
    .outline-detail__values {
        padding-left: 30px;
    }
}
.mainImage .sow-image-container img {
    aspect-ratio: 1/1;
    object-fit: contain;
}
/* 提携先 */
.group-otherbox {
    padding: 40px 0 0 0;
}
.group-otherbox-title {
    color: #fff;
}
.partner-title,
.partner-title .sow-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: max(20px, min(3vw,26px) );
    font-weight: 500;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 20px 0;
}
.partner-title::before,
.partner-title::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
    background: #fff;
}
.partner-list {
    display: flex;
    gap: 5px;
}
.partner-list-item {
    flex: 1;
    background: #fff;
    padding: 25px;
}
.partner-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.partner-address,
.partner-contact {
    margin: 1em 0 0 0;
    font-size: 14px;
}
.window-icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url(../../img/window-icon.svg) no-repeat center / contain;
    vertical-align: middle;
    margin-left: 6px;
}
@media (max-width:740px) {
    .partner-list {
        flex-direction: column;
    }
}
/* 経営理念 */
.philosophy-description ul {
    margin-left: 5px;
}
.philosophy-description ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.philosophy-description ul li:not(:last-of-type) {
    margin-bottom: 1em;
}
.philosophy-description ul li::before {
    content: "";
    display: inline-block;
    min-width: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: var(--main-color);
    transform: translateY(-2px);
}
/*  */
.j-group.html-area {
    margin: 0 0 20px 0;
}
.j-html-section {
    background: #fff;
    padding: 40px 20px;
}
.group-section__title,
.group-section__subtitle {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
    color: var(--main-color);
}
.group-section__title {
    font-size: max(22px, min(4vw,26px) );
    margin: 0;
}
.group-section__subtitle {
    font-size: max(18px, min(4vw,20px) );
    margin: 10px 0 25px 0;
}
.j-group__box p {
    font-size: max(14px, min(4vw,16px) );
}
ol.j-group_list {
    counter-reset: number 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
ol.j-group_list .j-group_item {
    color: var(--main-color);
    font-size: max(18px, min(3vw,20px) );
    text-indent: -1.2em;
    margin-left: 1.2em;
}
ol.j-group_list .j-group_item:not(:last-of-type) {
    margin-bottom: 10px;
}
ol.j-group_list .j-group_item:before {
    counter-increment: number 1;
    content: counter(number) "";
    margin: 0 0.5em 0 0;
}
.j-group_item_span {
    color: #000;
    font-size: max(14px, min(4vw,16px) );
}
/* グループお問い合わせ */
.group-contact-box {
    background: #fff;
    padding: 50px 20px;
    margin: 40px 0 0 0;
}
.group-contact-details {
    display: flex;
    gap: 40px 20px; 
}
.contact-title {
    font-family: 'Noto Serif JP', serif;
    font-size: max(24px, min(3vw,34px) );
    font-weight: 500;
    text-align: center;
    margin: 0 0 15px 0;
    line-height: 1.2;
    color: var(--main-color);
}
.contact-detail.contact {
    flex: 1.5;
}
.contact-detail.recruite {
    flex: 1;
}
.contact-detail .contact-btn,
.contact-detail .recruite-btn {
    font-size: max(16px, min(3vw,20px) );
    font-weight: 400;
    padding: 20px 12px;
}
.contact-detail .contact-btn {
    background: var(--main-color-bg);
    border: solid 2px var(--main-color);
}
@media (max-width: 599px) {
    .group-contact-details {
       flex-direction: column;
    }
}

/* サービスページ */
.j-service-section {
    margin: -160px 0 50px 0;
}
.j-single-service-title {
    position: relative;
}
.j-single-service-title::after {
    content: "";
    background: var(--main-color-bg);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .7;
}
.j-single-service-title__maintxt {
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: max(24px, min(3vw,36px) );
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}
.j-single-service-title-bg {
    padding: 60px 0 30px 0;
}
@media (max-width:599px) {
    .j-single-service-title-bg {
        padding: 40px 0 20px 0;
    }
}
.j-singular-box {
    background: #fff;
    padding: 20px;
    position: relative;
    z-index: 1;
}
@media (max-width:767px) {
    .about-support-title .sow-headline {
        font-size: 18px !important;
    }
    .about-support-title .sow-headline br {
        display: none;
    }
}
.trouble-box h5 {
    margin: 0 !important;
}
.trouble-box .sow-features-list .sow-features-feature {
    margin-bottom: 20px !important;
}
.trouble-box .sow-features-list .sow-features-feature .textwidget {
    margin-left: 20px;
}
.group-link .widget-title {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}
.group-link .widget-title::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
    background: var(--main-color-bg);
}
.group-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.group-link-item {
    font-size: 12px;
    color: var(--main-color);
    border: solid 1px var(--main-color);
    padding: 2px 10px;
}
.group-link-item.tag-jmtz-1 {
    color: var(--color-group-jmtz-1);
    border: solid 1px var(--color-group-jmtz-1);
}
.group-link-item.tag-jmtz-2 {
    color: var(--color-group-jmtz-2);
    border: solid 1px var(--color-group-jmtz-2);
}
.group-link-item.tag-jmts {
    color: var(--color-group-jmts);
    border: solid 1px var(--color-group-jmts);
}
.group-link-item.tag-jmtr {
    color: var(--color-group-jmtr);
    border: solid 1px var(--color-group-jmtr);
}
.group-link-item.tag-jmtk {
    color: var(--color-group-jmtk);
    border: solid 1px var(--color-group-jmtk);
}
.group-link-item.tag-jmty {
    color: var(--color-group-jmty);
    border: solid 1px var(--color-group-jmty);
}
.group-link-item.tag-jmtt {
    color: var(--color-group-jmtt);
    border: solid 1px var(--color-group-jmtt);
}
.service-flow-box .widget-title ,.service-flow-box_2 .widget-title{
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    gap: 15px;
    margin: 0 0 10px 0;
}

.service-flow-box .widget-title .num,.service-flow-box_2 .widget-title .num {
    font-family: Noto Serif JP;
    font-weight: 700;
    color: #999;
}
.service-flow-box .panel-grid-cell {
    display: grid;
    grid-template-columns: 20% 1fr;
    background: #fff;
}
.service-flow-box .widget_sow-editor {
    align-self: center;
}
.service-flow-text {
    padding: 10px 30px;
}
.service-flow-img,
.service-flow-img .so-widget-sow-image,
.service-flow-img .sow-image-container {
    height: 100%;
}
.service-flow-img img {
    width: 100%;
    object-fit: cover;
}
.service-flow-text p {
    margin: 0;
}
@media (max-width:599px) {
    .service-flow-box .panel-grid-cell {
        grid-template-columns: 1fr;
    }
}
@media (min-width:600px) {
    .service-flow-img img {
        height: 100% !important;
    }
}
#faq-box .sow-accordion-title {
    font-family: Noto Serif JP;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    gap: 15px;
}
#faq-box .sow-accordion-panel-content p {
    margin: 0;
    word-break: break-all;
}
#faq-box .q-icon {
    font-family: Noto Serif JP;
    font-weight: 700;
    font-size: 26px;
    color: var(--main-color);
}
#faq-box .sow-accordion-panel:not(:last-of-type) {
    border-bottom: solid 1px #e2e2e2;
}
.sow-icon-ionicons[data-sow-icon]:before {
    color: var(--main-color);
}
#group-service {
    background: url(../../img/service-bg.jpg) no-repeat center / cover;
    padding: 50px 0;
}
.group-service-title {
    font-size: 26px;
    font-family: Noto Serif JP;
    font-weight: 500;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.group-service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.group-service-item {
    position: relative;
    aspect-ratio: 16/10;
}
.group-service-link::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(34 68 129 / 40%);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    box-shadow: 0 0 0 0px white inset;
}
.is-active .group-service-link::before,
.group-service-link:hover::before {
    box-shadow: 0 0 0 3px white inset;
}
.group-service-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-service-name {
    font-family: 'Noto Serif JP', serif;
    font-size: max(18px, min(3vw,24px) );
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    margin: 0 auto;
    line-height: 1.2;
    z-index: 1;
    padding: 30px;
}
@media (max-width:740px) {
    .group-service-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.choose-item {
    position: relative;
}
.choose-item::before {
    content: "";
    background: rgb(0 0 0 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}
.choose-box {
    position: relative;
    z-index: 1;
}
.choose-box h3 {
    color: #fff;
    font-size: max(20px, min(3vw,24px) );
    text-align: center;
    line-height: 1.4;
}
.choose-box p {
    color: #fff;
    font-size: max(14px, min(3vw,16px) );
}

/* ========
  contact
======== */
.j-contact-box {
    display: flex;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}
.j-contact-box__form {
    width: 100%;
}
.j-contact-box__tel {
    width: 335px;
    text-align: center;
}
.j-contact-box__form a ,
.j-contact-box__tel a {
    color: white;
    background: #1b598c;
    display: block;
    height: 100%;
    padding: 15px;
}
.j-contact-box__form a:hover ,
.j-contact-box__tel a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.j-contact-box br,
.j-contact-box p {
    display: none;
}
.j-contact-box__tel .text {
    display: block;
}
.j-contact-box__tel .tel {
    display: block;
    font-size: 2rem;
    line-height: 100%;
}
.j-contact-box__tel .business-hours {
    display: block;
}
.j-readtext__main {
    font-family: 'Noto Serif JP', serif;
    font-size: max(18px, min(3vw,24px) );
    font-weight: 500;
    line-height: 1.6;
    word-break: auto-phrase;
}
.j-readtext__main small {
    font-size: max(14px, min(3vw,16px) );
    line-height: 1.4;
    display: block;
    margin: 1em 0 0 0;
}
.j-contact-box__form__text {
    text-align: center;
    font-size: max(14px, min(3vw,16px) );
    margin: 0;
    padding: 1em 0 0 0;
}
.j-contact-box__form__ttl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 10px;
    font-size: max(20px, min(4vw,28px) );
}
.j-contact-box__form__ttl .label {
    background: white;
    color: #1b598c;
    padding: 10px 22px;
}
.j-wpcf7__block__submit input[type="submit"] {
    background-image: var(--main-color-bg);
}
/* 採用情報 form */
.recruit-excerpt {
    padding: 0 0 40px 0;
}
.j-readtext__sub {
    font-size: max(14px, min(3vw,16px) );
    line-height: 1.7;
}
.j-single-recruit .accordion-btn{
    background-color: #eee;
    padding: 20px;
}
.j-single-recruit .accordion-btn::after {
    content: '▼';
    float: right;
}
.j-single-recruit .accordion-btn.active::after {
    content: '▲';
}

.j-single-recruit .accordion-btn:hover{
    background-color: #dadada;
    cursor: pointer;
}
.j-single-recruit .accordion-wrap{
    display: block
}
.j-single-recruit .accordion-wrap{
    display: none;
}
@media screen and (max-width: 740px){
    .j-single-recruit .j-singular__content table,
    .j-single-recruit .j-singular__content tbody,
    .j-single-recruit .j-singular__content tr,
    .j-single-recruit .j-singular__content th,
    .j-single-recruit .j-singular__content td{
      display: block;
      height: auto !important;
    }
}
  
.j-single-recruit .j-recruit-content table{
    border: none;
    border-top: 1px solid #eee;
}
.j-single-recruit .j-recruit-content tr{
    border: none;
    border-bottom: 1px solid #eee;
    height: auto !important;
}
.j-single-recruit .j-recruit-content td {
    font-size: max(14px, min(3vw,16px) );
}
@media screen and (max-width: 740px){
    .j-single-recruit .j-recruit-content tr{
      display: flex;
      flex-direction: column;
      padding: 10px 0;
    }
}
.j-single-recruit .j-recruit-content td:nth-child(1){
    width: 20% !important;
    font-weight: 700;
    padding-left: 50px;
}
@media screen and (max-width: 740px){
    .j-single-recruit .j-recruit-content td:nth-child(1){
      width: 100% !important;
      padding-left: 0;
    }
}
  
.j-single-recruit .j-recruit-content td:nth-child(2){
    width: 80% !important;
}
@media screen and (max-width: 740px){
    .j-single-recruit .j-recruit-content td:nth-child(2){
      width: 100% !important;
    }
}
  
.j-single-recruit .j-recruit-content td{
    border: none;
    padding: 30px;
    height: auto !important;
}
@media screen and (max-width: 740px){
    .j-single-recruit .j-recruit-content td{
      padding: 0;
    }
}

/* form */
.j-contact-section {
    margin: -160px 0 0 0;
}
.contact-form {
    padding: 60px 0 0 0;
}
.wpcf7-form {
    max-width: 750px;
    margin: 0 auto;
    padding: 25px 0 0 0;
}
.wpcf7-text,
.wpcf7-tel,
.wpcf7-textarea {
    width: 100%;
    -webkit-appearance: none;
    font-size: 16px;
    border: solid 1px #ddd;
    padding: 15px;
}
.wpcf7-number {
    max-width: 100px;
    width: 100%;
    -webkit-appearance: none;
    font-size: 16px;
    border: solid 1px #ddd;
    padding: 15px;
}
.wpcf7-file {
    margin: 0 0 8px 0;
}
.wpcf7-form-control-wrap[data-name="your-career"] {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.wpcf7-form-control-wrap[data-name="your-career"]::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}
.wpcf7-form-control-wrap[data-name="your-career"] .wpcf7-select  {
    -webkit-appearance: none;
    font-size: 16px;
    max-width: 600px;
    width: 100%;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}
.j-wpcf7__block__label__text {
    font-weight: 600;
}
.j-wpcf7__block__label__text .require {
    font-size: 12px;
    background: #ca3b3b;
    color: #fff;
    padding: 0 0.5em;
    margin: 0 0 0 5px;
    display: inline-block;
}
.wpcf7-list-item {
    margin: 0 1em 0 0;
}
.j-wpcf7__block {
    padding-bottom: 10px;
}
.j-wpcf7__block__submit p {
    margin: 0;
}
.wpcf7-submit {
    display: block;
    max-width: 300px;
    width: 100%;
    -webkit-appearance: none;
    border: 0;
    font-size: 24px;
    color: #fff;
    padding: 15px;
    margin: 0 auto;
}
.wpcf7-submit:hover {
    opacity: .8;
    cursor: pointer;
}
.wpcf7-spinner {
    display: block;
    margin: 0 auto;
}

.property-examples .so-widget-sow-image {
    /* min-height: 235px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.property-examples img {
    max-height: 235px !important;
    width: auto;
}

.list-style-a li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}
.list-style-a li::before {
    content: "";
    display: block;
    color: #fff;
    line-height: 1;
    min-width: 10px;
    height: 10px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: translateX(-25%) rotate(45deg) translateY(-2px);
}
.list-style-a li:not(:last-of-type) {
    margin-bottom: 12px;
}
.list-style-a li a {
    color: #fff;
}

.financial-licensing-info-text p {
    line-height: 1.6;
    margin-top: 0;
}

.service-grid-item:empty {
    display: none;
}

.table-wrap {
    overflow-x: scroll;
}
.table-design {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    white-space: nowrap;
}
.table-design th {
    padding: 10px;
    background: #d3d9e3;
    border-top: solid 2px #163c6e;
    border-right: solid 1px #163c6e;
    color: #163c6e;
}
.table-design th:last-child {
    border-right: none;
}
.table-design tr {
    border-bottom: solid 1px #163c6e;
}
.table-design td {
    padding: 10px;
    border-right: solid 1px #163c6e; 
}
.table-design td:last-child {
    border-right: none;
}
.table-design td ul {
    list-style: disc;
    margin-left: 1.5em;
}

.course-schedule {
    background-color: #f1f1f1;
    padding: 20px;
    margin: 20px auto;
}
.course-schedule ul {
    list-style-type: none;
    padding: 0;
}
.course-schedule li {
    margin-bottom: 5px;
    font-size: 16px;
}
.course-schedule .course-fee {
    margin-top: 20px;
    font-weight: bold;
}
.course-schedule .course-fee span {
    color: #d9534f;
}
.course-schedule .note {
    margin: 10px 0 0 0;
}

#support-list .widget-title {
    margin: 0;
}

.arrow-box {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 40px solid #1f4078;
    border-right: 0;
}
@media screen and (max-width: 780px){
    .arrow-box {
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 50px solid transparent;
        border-left: 50px solid transparent;
        border-top: 40px solid #1f4078;
        border-bottom: 0;
    }
}

#time-series {
    margin: 15px 0 0 0;
}
.time-series-box {
    max-width: 1000px;
    margin: 0 auto;
}
.time-series-image {
    display: block;
}

.wpcf7-list-item label {
    border: 1px solid #ccc;
    padding: 16px;
    display: inline-block;
    line-height: 100%;
}

@media ( max-width: 767px ) {
    .wpcf7-list-item {
        margin: 0 1em 1em 0;
        display: block;
    }
    .wpcf7-list-item label {
        display: block;
        width: 100%;
    }
}

.recruit-top {
    background-image: var(--main-color-bg);
    z-index: 1;
}
#mv .mv-text-box {
    z-index: 2;
}
.recruit-merit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.recruit-merit-list .group-merit-list__text {
    text-align: center;
}
.recruit-merit-list .merit-list__item:first-of-type {
    border-left: 0;
}
.recruit-merit-list .merit-list__item:last-of-type {
    border-right: 0;
}
@media ( max-width: 767px ) {
    .recruit-merit-list {
        grid-template-columns: 1fr;
    }
}

.secondary-btn {
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    border: solid 3px #fff;
    width: 100%;
    padding: 15px 30px;
}
.secondary-btn::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 3px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    right: 10px;
    top: 40%;
}

/* 物件情報 */
.j-property-nav{
    margin-bottom: 30px;
}
.j-property-nav-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    padding: 20px 0 0 0;
}
.j-property-nav-link {
    /* flex: 1; */
    text-align: center;
    background: #f8f8f8;
    padding: 1em;
    place-items: center;
    line-height: 1.4;
    color: #5a5a5a;
    cursor: pointer;
    border: 2px solid transparent;
}
.j-property-nav-link:hover {
    color: rgb(32 64 121);
}
.j-property-nav-link:not(.undecided) {
    border: solid 1px rgb(32 64 121);
    color: rgb(32 64 121);
    background: #fff;
}
.j-property-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.j-property-item {
    display: grid;
    grid-template-columns: 45% 1fr;
    background: #fff;
}
.jpd-summary {
    padding: 16px;
}
.jpd-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jpd-summary-raw {
    display: grid;
    grid-template-columns: 5em 1fr;
    align-items: flex-start;
    gap: .5em .6em;
}
.jpd-label {
    font-size: 12px;
    color: #888;
    background: #f1f1f1;
    padding: .2em 1em;
    text-align: center;
}
.jpd-value {
    font-size: 14px;
    margin: 0;
}
.jpd-summary-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    margin-top: 16px;
}
.jpd-summary-card {
    background: linear-gradient(320deg, rgb(23 49 95) 0%, rgb(42 94 184 / 90%) 100%);
    color: #fff;
    padding: .5em;
}
.jpd-card-label {
    font-size: 12px;
    display: block;
    text-align: center;
}
.jpd-card-value {
    font-weight: 600;
    display: block;
    text-align: center;
    letter-spacing: 0;
}
@media ( max-width: 1023px ) {
    .j-property-lists {
        grid-template-columns: repeat(1, 1fr);
    } 
}
@media ( max-width: 599px ) {
    .j-property-nav-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .j-property-item {
        grid-template-columns: 1fr;
    }
    .j-property-nav-link {
        font-size: 14px;
    }
    .jpd-image {
        aspect-ratio: 16 / 9;
    }
}

.jmtr-more-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    font-size: max(16px, min(4vw, 44px));
    color: #fff;
    background: linear-gradient(99deg, rgba(0, 0, 0, 0.00) 49.43%, rgba(0, 0, 0, 0.05) 49.43%), #BCB600;
    padding: 0.5em 1em;
    margin-top: 1em;
    position: absolute;
    bottom: 30px;
    left: 103%;
    font-family: 'Noto Serif JP', serif;
    animation: btn-blink 1.2s infinite ease-in-out;
}

@media (max-width:1399px) {
    .jmtr-more-btn {
        position: static;
    }
}
@media (max-width:599px) {
    .jmtr-more-btn {
        width: 100%;
    }
}
@keyframes btn-blink {
    0% {
            box-shadow: 0em 0px 50px 0em rgb(255 251 136 / 30%) inset;
    }
    25% { 
            box-shadow: -20em 0px 50px 0em rgb(255 251 136 / 30%) inset;
    }
    100% { 
            box-shadow: -40em 0px 50px 0em rgb(255 251 136 / 0%) inset;
    }
}

.jmtr-more-btn::before {
    content: "";
    display: block;
    min-width: 32px;
    height: 32px;
    background: url(../../img/jmtr/icon-property.svg) no-repeat center / contain;
}
.jmtr-more-btn::after {
    content: " ▶ ";
    display: block;
    min-width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: white;
    color: #b2ad00;
    border-radius: 50px;
    font-weight: 900;
    font-size: 12px;
    text-indent: 6px;
}

.header-btn-container {
    padding: 15px 24px;
}
.jmtr-header-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(99deg, rgba(0, 0, 0, 0.00) 49.43%, rgba(0, 0, 0, 0.05) 49.43%), #BCB600;
    padding: 0.5em 1em;
    filter: drop-shadow(0 10px 15px rgba(84, 81, 0, 0.30));
}
.jmtr-header-btn::before {
    content: "";
    display: block;
    min-width: 32px;
    height: 32px;
    background: url(../../img/jmtr/icon-property.svg) no-repeat center / contain;
}

@media (max-width:767px) {
    .header-btn-text {
        display: none;
    }
}