@charset "UTF-8";
@font-face {
	font-family: "Montserrat";
	font-weight: 400;
	src: url("../fonts/montserrat-regular.woff2") format("woff2");
}
@font-face {
	font-family: "Montserrat";
	font-weight: 500;
	src: url("../fonts/montserrat-semibold.woff2") format("woff2");
}
@font-face {
	font-family: "Montserrat";
	font-weight: 700;
	src: url("../fonts/montserrat-bold.woff2") format("woff2");
}
@font-face {
	font-family: "Noto Sans JP";
	font-weight: 400;
	src: url("../fonts/notosansjp-regular.woff2") format("woff2");
}
@font-face {
	font-family: "Noto Sans JP";
	font-weight: 500;
	src: url("../fonts/notosansjp-semibold.woff2") format("woff2");
}
@font-face {
	font-family: "Noto Sans JP";
	font-weight: 700;
	src: url("../fonts/notosansjp-bold.woff2") format("woff2");
}
@font-face {
	font-family: "Poppins";
	font-weight: 700;
	src: url("../fonts/poppins-bold.woff2") format("woff2");
}
@font-face {
	font-family: "Poppins";
	font-weight: 500;
	src: url("../fonts/poppins-semibold.woff2") format("woff2");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-size: 16px;
}
main {
    overflow: hidden;
}

ul {
    list-style: none;
}
body a {
    text-decoration: none;
    color: #000;
}
p {
    line-height: 1.6em;
}
figure {
    line-height: 0;
}

body.admin-bar .site-header {
    top: 32px;
}

/* Global Header */
.global-header {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 90px;
    background: linear-gradient(0deg, rgb(255 255 255 / 0),rgb(255 255 255 / 0.5) 30%, rgb(255 255 255 / 1) 70%);
}
.global-header-inner {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}
.global-header-inner .logo > a {
    display: block;
    width: 175px;
    line-height: 0;
}
.global-header-inner .logo > a > img {
    width: 100%;
    height: auto;
}

.global-header-nav {
    display: flex;
    gap: 40px;
}
.global-header-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.global-header-nav ul .nav-en {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #01091B;
}
.global-header-nav ul .nav-jp {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: #01091B;
}
.global-header-nav ul.global-header-nav-cta {
    gap: 15px;
}
.global-nav-btn {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 145px;
    height: 64px;
    padding: 0 10px 0 20px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.global-nav-btn::before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: -100%;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 32px;
    content: '';
    transition: left 0.3s ease;
}
.global-nav-btn:hover::before {
    left: 0;
}
.global-nav-btn::after {
    z-index: 5;
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: #fff;
    background-image: url('../img/btn-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    content: '';
}
.global-nav-btn.gray {
    background-color: #7D7D7D;
    border: 1px solid #7d7d7d;
}
.global-nav-btn.gray:hover {
    color: #666464;
}
.global-nav-btn.gray:hover::after {
    background-color: #7D7D7D;
    background-image: url('../img/btn-arrow-white.png');
}
.global-nav-btn.blue {
    background-color: #124BC0;
    border: 1px solid #124BC0;
}
.global-nav-btn.blue:hover {
    color: #124BC0;
}
.global-nav-btn.blue:hover::after {
    background-color: #124BC0;
    background-image: url('../img/btn-arrow-white.png');
}
.global-nav-btn .label {
    z-index: 5;
    position: relative;
}
#sp_menu_open_btn {
    display: none;
}

body.modal-opened {
    overflow: hidden;
    width: 100%;
}
#sp_menu_modal {
    overflow-y: scroll;
    z-index: 200;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F4F6F9;
    transform: translateX(-100%);
}
#sp_menu_modal.opened {
    animation: openModal 0.3s ease forwards;
}
#sp_menu_modal.closed {
    /* visibility: hidden; */
    animation: closeModal 0.3s ease forwards;
    
}
@keyframes openModal {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes closeModal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
/* #sp_menu_modal::before {
    z-index: 201;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 0.7);
    content: '';
} */
.sp-menu-area {
    z-index: 202;
    width: 100%;
}
.sp-menu-area-head {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 15px 20px;
}
.sp-menu-area-head .logo {
    display: block;
    width: 175px;
    line-height: 0;
}
.sp-menu-area-head .logo img {
    width: 100%;
    height: auto;
}
.sp-menu-area-content {
    padding: 0 20px 20px 20px;
}
.sp-menu-btn {
    position: relative;
    display: block;
    height: 100%;
    aspect-ratio: 1;
}
.sp-menu-btn::before,
.sp-menu-btn::after {
    position: absolute;
    display: inline-block;
    width: 30%;
    height: 3px;
    background-color: #656565;
    border-radius: 10px;
    content: '';
}
.sp-menu-btn.open::before {
    top: 43%;
    left: 35%;
}
.sp-menu-btn.open::after {
    top: 57%;
    left: 35%;
}
.sp-menu-btn.close::before {
    top: calc(43% - 2px);
    left: calc(35% + 2px);
    transform-origin: top left;
    transform: rotate(45deg);
}
.sp-menu-btn.close::after {
    top: calc(57% + 2px);
    left: calc(35% + 2px);
    transform-origin: bottom left;
    transform: rotate(-45deg);
}
.sp-global-nav {
    display: flex;
    flex-direction: column;
}
.sp-global-nav li {
    border-bottom: 1px solid #ddd;
}
.sp-global-nav li > a {
    display: block;
    padding: 20px 0px;
}
.sp-global-nav li > a .nav-en {
    width: 100px;
}
.sp-global-nav-cta {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
}
.sp-global-nav-cta li > a {
    width: 100%;
}

/* top */
.top-view {
    position: relative;
    height: 814px;
}
.top-view::after {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('../img/top-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    clip-path: inset(0% var(--bg-length-right) 0% 0%);
}

.top-catch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1150px;
    height: 100%;
    margin: auto;
}
.catch-title {
    text-shadow: 2px 2px 5px #fff;
    font-family: 'Poppins';
    font-size: 120px;
    font-weight: 700;
    font-style: oblique;
    color: #02296E;
    /* text-indent: -12px; */
    clip-path: inset(0 100% 0 0);
}
.catch-text {
    text-shadow: 2px 2px 5px #fff;
    font-size: 35px;
    font-weight: 500;
    clip-path: inset(0 100% 0 0);
}

.fadein-title {
    clip-path: inset(0 100% 0 0);
}
.top-section-title {
    color: #02296E;
}
.top-section-title.white {
    color: #fff;
}
.top-section-title .en {
    font-size: 65px;
    font-weight: 700;
    letter-spacing: 2%;
    line-height: 1em;
}
.top-section-title .jp {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 12px 0;
    font-size: 16px;
}
.top-section-title .jp::before {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #02296E;
    content: '';
}
.top-section-title.white .jp::before {
    background-color: #fff;
}

/* top about */
.top-section-about {

    padding: 120px 0;
}
.top-section-about .section-inner {
    display: flex;
    flex-direction: row;
    column-gap: 120px;
    max-width: 1032px;
    margin: auto;
}

.top-about-catch {
    font-size: 100px;
    font-weight: 700;
    letter-spacing: -8px;
    line-height: 1.2em;
}
.top-about-catch > span {
    display: block;
}
.top-about-catch .catch1 {
    background: linear-gradient(65deg, #044FD4, #02296E);
    background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top-about-catch .catch2 {
    background: linear-gradient(74deg, #02296E, #044FD4, #02296E);
    background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top-about-catch-scroll-area {
    /* position: relative; */
    width: 100%;
    margin-top: 60px;
}
.top-about-catch-en {
    /* position: relative; */
    /* left: -50%; */
    display: flex;
    flex-direction: row;
    width: max-content;
    font-family: 'Poppins';
    font-size: 100px;
    font-weight: 500;
    font-style: oblique;
    line-height: 1em;
    letter-spacing: -3%;
    white-space: nowrap;
    color: #E6E6E8;
    animation: 22s infinite linear infinity-scroll-right;
}
.top-about-catch-en .text{
    display: block;
    padding-right: 50px;
    white-space: nowrap;
}
@keyframes infinity-scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}
.top-about-text {
    margin-bottom: 20px;
}
.top-about-text p {
    margin-bottom: 22px;
    line-height: 2.2em;
    font-size: 20px;
}
.top-about-text p:last-of-type {
    margin-bottom: 40px;
}

/* top service */
.top-section-service {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 200vw;
    height: 100vh;
    padding: 120px 0;
    background: linear-gradient(40deg, #02296E, #044FD4), url('../img/top-service-bg.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}
.top-section-service .section-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    column-gap: 100px;
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    margin: auto;
    padding-top: 170px;
    color: #fff;
    /* opacity: 0; */
    /* transform: none !important; */
}
.top-section-service .section-inner.current {
    opacity: 1;
}
.top-service-head {
    display: flex;
    justify-content: end;
    width: 100%;
    max-width: 1032px;
    margin: 0 auto 50px auto;
}
.top-service-head::before {
    display: block;
    content: '';
}
.top-service-head .title {
    width: 100%;
    max-width: 483px;
    clip-path: inset(0 100% 0 0);
}
.top-service-content {
    display: flex;
    flex-direction: row;
    max-width: 1032px;
    column-gap: 100px;
    margin: 0 auto;
}
.top-service-content-right {
    max-width: 483px;
}
.top-service-content-left {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    width: 592px;
}
.top-service-left-bg {
    z-index: -1;
    position: absolute;
    left: -150px;
    width: 150%;
    max-width: 506px;
    max-height: 506px;
    aspect-ratio: 1;
    background-image: url('../img/top-service-catch.png');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    /* transform: rotate(var(--top-service-text-rotate)); */
    content: '';
}
.top-service-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 483px;
}
.top-service-content-left img {
    max-width: 450px;
    max-height: 305px;
    margin-left: auto;
    object-fit: contain;
    border-radius: 40px 10px 40px 10px;
}
.top-service-catch-en {
    font-family: 'Poppins';
    font-size: 65px;
    font-weight: 500;
    -webkit-text-stroke: #FFFFFF 0.5px;
    paint-order: stroke fill;
    letter-spacing: 5%;
    line-height: 1em;
    color: transparent;
}
.top-service-subtitle {
    margin: 0 0 40px 0;
}
.top-service-subtitle .jp {
    font-size: 36px;
    font-weight: 700;
}
.top-service-subtitle .en {
    font-size: 16px;
    font-weight: 700;
}
.top-service-headtext {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #6A9BFF;
}
.top-service-text {
    margin-bottom: 50px;
    line-height: 1.5em;
}

/* top case */
.top-section-case {
    padding: 120px 0;
    background-color: #F4F6F9;
}
.top-section-case .section-inner {
    max-width: 1100px;
    margin: auto;
}
.top-section-case .top-section-title .en {
    text-align: center;
}
.top-section-case .top-section-title .jp {
    justify-content: center;
}
.top-case-list {
    display: flex;
    flex-direction: row;
    justify-content: start;
    row-gap: 40px;
    column-gap: 32px;
    margin: 50px 0 50px 0;
}
.top-case-item {
    width: 345px;
}
.top-case-item:nth-child(2) {
    margin-top: 50px;
}
.top-case-item a {
    display: block;
    width: 100%;
    height: 390px;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 5px 5px 0 0;
}
.top-case-item figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 225px;
    background-color: #fafafa;
    border-radius: 5px 5px 0 0;
}
.top-case-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}
.top-case-item-text {
    padding: 20px;
}
.top-case-title {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25em;
}
.top-case-text {
    font-size: 13px;
    line-height: 1.7em;
}

/* top recruit */
.top-section-recruit {
    overflow: hidden;
    position: relative;
    padding: 0 0 120px 0;
    background-color: #F4F6F9;
}
.top-section-recruit .section-inner {
    overflow: hidden;
    width: calc( 648px + (100vw - 1100px) / 2 );
    margin-right: auto;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
}
.top-recruit-box {
    z-index: 20;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    width: 548px;
    margin: 100px 100px 100px auto;
}
.top-recruit-bg-img {
    position: absolute;
    background-size: cover;
    background-position: center;
}
.top-recruit-bg-img.bg-img1 {
    z-index: 5;
    bottom: 40px;
    left: 48%;
    width: 800px;
    height: 534px;
    background-image: url('../img/top-recruit-image1.png');
    border-radius: 5px;
}
.top-recruit-bg-img.bg-img2 {
    z-index: 15;
    top: 50px;
    left: calc( 48% + 80px);
    width: 280px;
    height: 330px;
    background-image: url('../img/top-recruit-image2.png');
    border-radius: 40px 10px 40px 10px;
}
.top-recruit-bg-img.bg-img3 {
    z-index: 15;
    bottom: 0;
    left: calc( 48% - 90px );
    width: 323px;
    height: 217px;
    background-image: url('../img/top-recruit-image3.png');
    border-radius: 40px 10px 40px 10px;
}
.top-recruit-subtitle {
    font-size: 30px;
    font-weight: 700;
}

/* top company */
.top-section-company {
    padding: 120px 0 80px 0;
    background-color: #F4F6F9;
}
.top-company-bg {
    position: relative;
    max-width: 1276px;
    margin: auto;
    background: linear-gradient(180deg, #02296E, #044FD4), url('../img/top-company-bg.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}
.top-section-company .section-inner {
    column-gap: 120px;
    padding: 100px;
    color: #fff;
}
.top-section-company table {
    border-collapse: collapse;
    margin-top: 60px;
}
.top-section-company table th,
.top-section-company table td {
    padding: 0 0 22px 0;
    text-align: left;
    vertical-align: top;
    letter-spacing: 5%;
}
.top-section-company table tr:last-child th,
.top-section-company table tr:last-child td {
    padding-bottom: 0;
}
.top-section-company table th {
    width: 110px;
    font-weight: 700;
}
.top-company-bg-img {
    z-index: 5;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -80px;
    right: 70px;
    width: 433px;
    height: 462px;
    background-image: url('../img/top-company-image1.png');
    border-radius: 40px 10px 40px 10px;
}

/* top blog */
.top-section-blog {
    padding: 120px 0 80px 0;
    background-color: #F4F6F9;
}
.top-section-blog .section-inner {
    max-width: 1100px;
    margin: auto;
}
.top-blog-content {
    display: flex;
    flex-direction: row;
    column-gap: 60px;
    margin-top: 40px;
}
.top-blog-list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.top-blog-list li > a {
    display: flex;
    column-gap: 50px;
    min-height: 200px;
    padding: 15px 30px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.top-blog-list li > a:hover {
    box-shadow: 0px 2px 6px rgb(1 9 27 / 0.25);
}
.top-blog-list .top-blog-item-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-blog-item-thum {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 272px;
    border-radius: 5px;
    background-color: #fafafa;
}
.top-blog-item-thum img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.top-blog-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 103px;
    height: 26px;
    background-color: #e5e5e5;
    border: 1px solid #cccccc;
    font-size: 12px;
}
.top-blog-title {
    margin: 15px 0 0px 0;
    font-weight: 700;
    font-size: 16px;
}
.top-blog-date {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 11px;
    color: #999999;
}
.top-blog-text {
    line-height: 1.6em;
}
.top-blog-arrow-area {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-blog-arrow {
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgb(113 113 113 / 0.3);
    content: '';
    transition: all 0.3s ease;
}
.top-blog-arrow::before {
    position: absolute;
    top: 50%;
    left: calc( 50% - 8px );
    display: inline-block;
    width: 16px;
    height: 1px;
    background-color: #1D4088;
    content: '';
    transition: all 0.3s ease;
}
.top-blog-arrow::after {
    position: absolute;
    top: calc( 50% - 2px );
    left: calc( 50% + 4px );
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1px solid #1D4088;
    border-bottom: 1px solid #1D4088;
    content: '';
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}
.top-blog-list li > a:hover .top-blog-arrow {
    background-color: #D2D9E7;
    border-color: #D2D9E7;
}
.top-blog-list li > a:hover .top-blog-arrow::before {
    background-color: #fff;
}
.top-blog-list li > a:hover .top-blog-arrow::after {
    border-color: #fff;
}

/* top news */
.top-section-news {
    padding: 120px 0 200px 0;
    background-color: #F4F6F9;
}
.top-section-news .section-inner {
    max-width: 1100px;
    margin: auto;
}
.top-news-content {
    display: flex;
    flex-direction: row;
    column-gap: 60px;
    margin-top: 40px;
}
.top-news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.top-news-list li > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 40px;
    padding: 25px 0;
    border-top: 1px solid #dfdfdf;
}
.top-news-list li:last-child > a {
    border-bottom: 1px solid #dfdfdf;
}
.top-news-date {
    font-size: 15px;
    color: #666666;
}
.top-news-tag-area {
    min-width: 100px;
}
.top-news-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 13px; 
    background-color: #02296E;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}
.top-news-title {
    font-weight: 400;
    color: #01091B;
    text-decoration: underline;
}

/* subpage */
.subpage-view {
    display: flex;
    align-items: center;
    height: 400px;
    background-image: url('../img/top-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.subpage-view.white {
    background-image: none;
    background-color: #fff;
}
.subpage-section {
    padding: 120px 0;
    background-color: #F4F6F9;
}
.subpage-section .section-inner {
    max-width: 1032px;
    margin: auto;
}
.subpage-title {
    flex: 1;
    max-width: 1064px;
    margin: auto;
    color: #02296E;
}
.fadein-subpage-title {
    clip-path: inset(0 100% 0 0);
    text-shadow: 1px 1px 3px #fff;
}
.subpage-title .en {
    font-size: 70px;
    font-weight: 700;
    line-height: 1em;
}
.subpage-title .jp {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 10px 0;
    font-size: 16px;
}
.subpage-title .jp::before {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #02296E;
    content: '';
}
.subpage-section .wp-block-heading {
    margin-top: 100px;
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 36px;
    color: #4466AB;
}
.subpage-section .wp-block-heading:first-child {
    margin-top: 0;
}
.subpage-section p {
    margin-bottom: 1.5em;
    line-height: 2em;
}
.subpage-section ul {
    margin-left: 1.5em;
    list-style: disc;
}
.subpage-section a {
    color: #02296E;
}

/* service */
.service-section {
    overflow: hidden;
    padding: 120px 0 0 0;
    background-color: #F4F6F9;
}
.service-introduction-area {
    max-width: 1014px;
    margin: auto;
    margin-bottom: 120px;
}
.service-introduction-area .title {
    margin-bottom: 70px;
    font-weight: 700;
    font-size: 40px;
    color: #124BC0;
}
.service-introduction-area .desc {
    font-size: 24px;
}

.service-business-area {
    max-width: 1154px;
    margin: auto;
    margin-bottom: 120px;
    padding: 80px 70px;
    background-color: #fff;
    border-radius: 30px;
}
.service-business-area .title {
    margin-bottom: 35px;
}
.service-business-area .title .jp {
    font-weight: 700;
    font-size: 36px;
    color: #4466AB;
}
.service-business-area .title .en {
    font-weight: 700;
    font-size: 16px;
    color: #9e9e9e;
}
.service-business-area .desc {
    font-size: 20px;
}
.service-business-area .subtitle {
    margin: 55px 0 15px 0;
    font-weight: 700;
    font-size: 18px;
    color: #4466AB;
}
.service-business-area .item-list {
    display: flex;
    column-gap: 20px;
}
.service-business-area .item-list li {
    padding: 20px 20px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff), linear-gradient(25deg, #044FD4, #02296E);
    border-radius: 5px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    font-size: 18px;
}

.service-reason-area {
    margin-bottom: 200px;
}
.service-reason-area .title {
    margin-bottom: 35px;
    font-size: 36px;
    color: #4466AB;
    text-align: center;
}
.service-reason-area .subtitle {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}
.service-reason-area .desc {
    font-size: 18px;
    text-align: center;
}
.service-reason-area .reason-list {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
    max-width: 1155px;
    margin: 90px auto 45px auto;
}
.service-reason-area .reason-list li {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 20px 40px 20px;
    background-color: #fff;
    box-shadow: 0 0 8px rgb(2, 41, 110, 0.5);
    border-radius: 5px;
    text-align: center;
}
.service-reason-area .reason-list li::before {
    position: absolute;
    top: -40px;
    display: inline-block;
    background-repeat: no-repeat;
    content: '';
}
.service-reason-area .reason-list .no1::before {
    width: 259px;
    height: 162px;
    background-image: url(../img/service-image-1.png);
}
.service-reason-area .reason-list .no2::before {
    width: 196px;
    height: 167px;
    background-image: url(../img/service-image-2.png);
}
.service-reason-area .reason-list .no3::before {
    width: 206px;
    height: 167px;
    background-image: url(../img/service-image-3.png);
}
.service-reason-area .reason-list .list-item-title {
    margin-bottom: 18px;
    font-size: 20px;
}

/* about */
.about-section {
    padding: 120px 0;
    background-color: #F4F6F9;
}
.about-section:last-of-type {
    padding-bottom: 200px;
}
.about-section.blue {
    background: linear-gradient(60deg, #02296E, #044FD4);
}
.about-section .section-inner {
    max-width: 1078px;
    margin: auto;
}
.about-introduction-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #6A9BFF;
}
.about-introduction-title > div {
    overflow: hidden;
}
.about-introduction-title span {
    display: inline-block;
}
.about-introduction-title .en {
    overflow: hidden;
    background: linear-gradient(75deg, #02296E, #044FD4);
    background-clip: text;
	-webkit-text-fill-color: transparent;
    line-height: 1.3em;
    font-size: 55px;
}
.about-introduction-title .jp {
    overflow: hidden;
    font-weight: normal;
    font-size: 20px;
}
.about-introduction-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 175px;
    margin-bottom: 10px;
}
.about-introduction-box .catch {
    line-height: 1.2em;
    font-weight: 700;
    font-size: 32px;
}
.about-introduction-box .desc {
    width: 100%;
    max-width: 420px;
    line-height: 1.9em;
}
.about-introduction-box .desc .head {
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 18px;
}
.about-introduction-box .desc .head::before {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 1px;
    background-color: #a9a9a9;
    content: '';
}
.about-introduction-box .desc .text {
    margin-bottom: 0.6em;
    margin-left: 20px;
    font-size: 18px;
}
.about-principles {
    height: 100vh;
}
.about-principles-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1078px;
    color: #fff;
}
.about-principles-title .en {
    font-weight: 500;
    font-size: 55px;
}
.about-principles-title .jp {
    font-weight: 500;
    font-size: 20px;
}
.about-principles-textarea .catch {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 32px;
}
.about-principles-textarea .desc {
    line-height: 1.9em;
    font-size: 18px;
}
.about-principles-content {
    position: relative;
    max-width: 1078px;
    margin: auto;
}
.about-principles-list {
    position: absolute;
    display: flex;
    gap: 15px;
    margin: auto;
    padding-top: 90px;
}
.about-principles-list .about-principles-list-item {
    flex-shrink: 0;
    width: 240px;
    height: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 40px 10px;
}
.about-principles-list .about-principles-list-item:nth-of-type(2n) {
    margin-top: 30px;
}
.about-principles-list .about-principles-list-item .no {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 30px;
    color: #d9d9d9;
}
.about-principles-list .about-principles-list-item .title {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
}
.about-principles-list .about-principles-list-item .text {
    line-height: 1.7em;
    font-size: 14px;
}

.about-message-title {
    margin-bottom: 65px;
    font-weight: 700;
    font-size: 36px;
    color: #4466AB;
}
.about-message-area {
    display: flex;
    column-gap: 142px;
}
.about-message-image {
    overflow: hidden;
    width: 374px;
    height: 404px;
    border-radius: 40px 10px;
}
.about-message-text {
    flex: 1;
}
.about-message-text .catch {
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 24px;
}
.about-message-text > p {
    margin-bottom: 1.5em;
    line-height: 1.9em;
    font-size: 16px;
}

.about-section .section-inner.company {
    max-width: 845px;
}
.about-company-title {
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #4466AB;
}
.about-company-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto 60px auto;
    border-top: 1px solid #dfdfdf;
}
.about-company-table tr {
    border-bottom: 1px solid #dfdfdf;
}
.about-company-table th,
.about-company-table td {
    padding: 24px;
    font-size: 20px;
}
.about-company-table th {
    width: 200px;
    text-align: left;
    vertical-align: top;
    font-weight: 500;
}
.about-company-accessmap {
    margin: auto;
    padding: 0 24px;
}
.about-company-accessmap iframe {
    width: 100%;
}

/* recruit */
.recruit-section {
    background-color: #fff;
}
.recruit-section.introduction {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    /*background: linear-gradient(0deg, #044FD4, #02296E), url(../img/recruit-main-bg.png);*/
    background-image: url(../img/recruit-main-bg.png);
    /* background-blend-mode: overlay; */
    background-repeat: no-repeat;
    background-size: cover; 
}
.recruit-section .section-inner {
    max-width: 1030px;
    margin: auto;
    padding: 120px 0;
}
.recruit-section .section-inner:last-of-type {
    padding-bottom: 200px;
}
.recruit-section.introduction .section-inner {
    max-width: 1000px;
    margin: 470px auto 100px auto;
    padding: 0;
    text-align: center;
    color: #fff;
}
.recruit-introduction-image {
    overflow: hidden;
    position: absolute;
    top: -50px;
    max-width: 1000px;
    margin: auto;
    border-radius: 10px;
}
.recruit-introduction-image > img {
    width: 100%;
    height: auto;
}
.recruit-section.introduction .section-inner p {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 20px;
}
.recruit-section.introduction .section-inner p.recruit-introduction-catch {
    margin-bottom: 85px;
    font-weight: 700;
    font-size: 36px;
}
.recruit-section-title {
    margin-bottom: 85px;
    font-weight: 700;
    font-size: 36px;
    color: #4466AB;
}
.recruit-env-item {
    display: flex;
    justify-content: space-between;
    column-gap: 115px;
    margin-bottom: 80px;
}
.recruit-env-item:last-of-type {
    margin-bottom: 0;
}
.recruit-env-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 460px;
    height: 280px;
}
.recruit-env-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 10px;
}

.recruit-env-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 45px;
}
.recruit-env-text .title {
    position: relative;
    font-weight: 500;
    font-size: 24px;
}
.recruit-env-text .title::before,
.recruit-env-text .title::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #4466AB;
    content: '';
}
.recruit-env-text .title::after {
    bottom: -21px;
    width: 63px;
    height: 3px;
}
.recruit-env-text > p {
    line-height: 2.2em;
}

.recruit-section.career {
    overflow: hidden;
    position: relative;
}
.recruit-section.career * {
    z-index: 10;
    position: relative;
}
.recruit-section.career .section-inner {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
    max-width: 1600px;
    margin-bottom: 120px;
    padding: 0;
}
.recruit-section.career .career-head {
    z-index: 1;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    height: 910px;
    padding: 0 110px 0 50px;
}
.recruit-section.career .career-head .number {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 162px;
    height: 162px;
    background: linear-gradient(#fff, #fff), linear-gradient(33deg, #02296E, #044FD4);
    border: 3px solid transparent;
    border-radius: 50%;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    content: '';
}
.recruit-section.career .career-head .number > span {
    display: inline-block;
    background: linear-gradient(33deg, #02296E, #044FD4);
    background-clip: text;
	-webkit-text-fill-color: transparent;
    letter-spacing: 5%;
    line-height: 1em;
    font-weight: bold;
    font-size: 70px;
}
.recruit-section.career .career-head .number:nth-of-type(1) {
    top: 60px;
    right: 80px;
}
.recruit-section.career .career-head .number:nth-of-type(2) {
    top: calc( 50% - 81px );
    right: -80px;
}
.recruit-section.career .career-head .number:nth-of-type(3) {
    top: calc( 50% + 230px );
    right: 80px;
}
.recruit-section.career .career-head-main {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 560px;
}
.recruit-section.career .career-head-main::before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: -17%;
    display: block;
    width: 897px;
    height: 897px;
    border: 5px solid transparent;
    background: linear-gradient(#fff, #fff), linear-gradient(33deg, #02296E, #044FD4);
    border-radius: 50%;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    content: '';
}
.recruit-section.career .career-head-main .title {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 36px;
    color: #4466AB;
}
.recruit-section.career .career-head-main p {
    line-height: 1.75em;
    font-size: 20px;
}
.recruit-section.career .career-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 150px;
    padding: 0 50px 0 0;
}
.recruit-section.career .career-text .career-text-item {
    max-width: 530px;
}
.recruit-section.career .career-text .career-text-item:nth-of-type(2) {
    margin-left: 120px;
}
.recruit-section.career .career-text .career-text-item .title {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
}
.recruit-section.career .career-text .career-text-item p {
    line-height: 2.2em;
}

.recruit-benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 85px;
    column-gap: 70px;
    margin: auto;
}
.recruit-benefits-list > li {
    width: 480px;
}
.recruit-benefits-head {
    position: relative;
    margin-bottom: 25px;
    padding-left: 110px;
}
.recruit-benefits-head::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;      
    content: '';
}
.recruit-benefits-head.no1::before {
    background-image: url(../img/recruit-benefits-1.png);
}
.recruit-benefits-head.no2::before {
    background-image: url(../img/recruit-benefits-2.png);
}
.recruit-benefits-head.no3::before {
    background-image: url(../img/recruit-benefits-3.png);
}
.recruit-benefits-head.no4::before {
    background-image: url(../img/recruit-benefits-4.png);
}
.recruit-benefits-head.no5::before {
    background-image: url(../img/recruit-benefits-5.png);
}
.recruit-benefits-head.no6::before {
    background-image: url(../img/recruit-benefits-6.png);
}
.recruit-benefits-head .title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
}
.recruit-benefits-head .desc {
    font-size: 18px;
}

.recruit-flow-list {
    display: flex;
    flex-direction: column;
    max-width: 930px;
    row-gap: 15px;
}
.recruit-flow-list > li {
    display: flex;
    width: 100%;
    column-gap: 185px;
}
.recruit-flow-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 188px;
    font-weight: 700;
    font-size: 30px;
    background: linear-gradient(75deg, #02296E, #044FD4);
    background-clip: text;
	-webkit-text-fill-color: transparent;
}
.recruit-flow-number::after {
    display: inline-block;
    width: 2px;
    height: 130px;
    margin-top: 15px;
    background-color: #4466AB;
    content: '';
}
.recruit-flow-list > li:last-of-type .recruit-flow-number::after {
    display: none;
}
.recruit-flow-list .recruit-flow-text {
    max-width: 556px;
}
.recruit-flow-list .recruit-flow-text .title {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
}
.recruit-flow-list .recruit-flow-text > p {
    font-size: 18px;
}

.recruit-section .section-inner.requirement {
    max-width: 845px;
}
.recruit-requirement-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto 60px auto;
    border-top: 1px solid #dfdfdf;
}
.recruit-requirement-table tr {
    border-bottom: 1px solid #dfdfdf;
}
.recruit-requirement-table th,
.recruit-requirement-table td {
    padding: 24px;
    font-size: 20px;
}
.recruit-requirement-table th {
    width: 200px;
    text-align: left;
    vertical-align: top;
    font-weight: 500;
}
.recruit-requirement-text {
    margin-bottom: 70px;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
.recruit-requirement-btn-area {
    display: flex;
    flex-direction: row;
    column-gap: 55px;
}
.recruit-requirement-btn-area a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 348px;
    height: 127px;
    padding: 0 40px 0 70px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}
.recruit-requirement-btn-area a::before {
    position: absolute;
    top: calc( 50% - 10px );
    left: 40px;
    display: inline-block;
    width: 24px;
    height: 24px;
    content: '';
}
.recruit-requirement-btn-area a.tel {
    background: linear-gradient(105deg, #2F3F5C, #01112D);
}
.recruit-requirement-btn-area a.line {
    background: linear-gradient(105deg, #4466AB, #1D4088);
}
.recruit-requirement-btn-area a.tel::before {
    background-image: url(../img/tel-icon.png);
}
.recruit-requirement-btn-area a.line::before {
    background-image: url(../img/line-icon.png);
}

/* case */
.case-section {
    padding: 120px 0 200px 0;
    background-color: #F4F6F9;
}
.case-section .section-inner {
    max-width: 945px;
    margin: auto;
}
.case-list {
    display: flex;
    flex-direction: column;
    row-gap: 45px;
    margin-bottom: 130px;
}
.case-list .case-list-item a {
    display: flex;
    flex-direction: row;
    column-gap: 35px;
    padding: 42px 50px;
    box-shadow: 0px 0px 10px rgb(1 9 27 / 0.25);
    background-color: #fff;
    border-radius: 5px;
}
.case-list .case-list-item-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 235px;
    border-radius: 40px 10px;
    background-color: #fafafa;
}
.case-list .case-list-item-image > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.case-list .case-list-item-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.case-list .case-list-item-desc .title {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
}
.case-list .case-list-item-desc .client {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    color: #656565;
}
.case-list .case-list-item-desc p {
    line-height: 2.1em;
}
.case-list .case-list-item-desc .btn {
    margin-top: auto;
    text-align: right;
}

.case-section .section-inner.case-detail {
    max-width: 884px;
}
.case-section-title {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 32px;
    color: #01091B;
}
.case-section-title .hyphen {
    margin: 0 0.5em;
}
.case-tags {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}
.case-tags > span {
    display: inline-block;
    min-width: 80px;
    padding: 5px 0;
    background-color: #cccccc;
    text-align: center;
    line-height: 1.5em;
    font-size: 12px;
}
.case-subsection {
    margin-top: 55px;
}
.case-subsection.abstract {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 55px;
    margin-top: 80px;
    padding-bottom: 55px;
}
.case-subsection.abstract::after {
    position: absolute;
    left: calc( 50% - 368px );
    bottom: 0;
    display: inline-block;
    max-width: 735px;
    width: 100%;
    height: 1px;
    background-color: #7d7d7d;
    content: '';
}
.case-abstract-desc {
    flex: 1;
}
.case-abstract-desc .abstract-title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 20px;
}
.case-abstract-desc > p {
    margin-bottom: 1.5em;
    line-height: 1.75em;
}
.case-abstract-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 222px;
    border-radius: 40px 10px;
    background-color: #fafafa;
}
.case-abstract-image > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.case-subsection .title {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 20px;
    background-color: #D2D9E7;
    border-radius: 5px;
    color: #4466AB;
}
.case-subsection .title.color2 {
    background-color: #D2E2FF;
    color: #124BC0;
}
.case-subsection p {
    line-height: 1.75em;
}

/* blog */
.blog-section {
    padding: 0 0 120px 0;
}
.blog-section .section-inner {
    display: flex;
    max-width: 1034px;
    margin: auto;
    column-gap: 90px;
}
.blog-main {
    flex: 1;
}
.blog-sidebar {
    width: 200px;
}
.blog-main .term-title {
    margin-bottom: 30px;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #dddddd;
    font-size: 20px;
}
.blog-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 35px;
    margin-bottom: 130px;
}
.blog-list .blog-list-item {
    flex-basis: calc( (100% - 40px) / 3 );
}
.blog-list .blog-list-item a {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    height: 100%;
}
.blog-list .blog-list-item-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1.96 / 1;
    border-radius: 5px;
    background-color: #fafafa;
}
.blog-list .blog-list-item-image > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.blog-list .blog-list-item-desc {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.blog-list .blog-list-item-desc .title {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}
.blog-list .blog-list-item-desc .tag-list {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}
.blog-list .blog-list-item-desc .tag-list .tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: #e5e5e5;
    border: 1px solid #cccccc;
    font-size: 10px;
}
.blog-list .blog-list-item-desc p {
    font-size: 10px;
    color: #666666;
}
.blog-list .blog-list-item-desc .date {
    margin-top: auto;
    font-size: 10px;
    color: #999999;
}

.blog-sidebar .title {
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 3px;
    border-bottom: 1px solid #000;
    font-weight: 700;
    font-size: 20px;
    color: #1D4088;
}
.blog-sidebar .archive-list {

}
.blog-sidebar .archive-list li {
    display: flex;
    align-items: center;
    row-gap: 5px;
    column-gap: 5px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    color: #333333;
}
.blog-sidebar .title:first-of-type {
    margin-top: 0;
}
.blog-sidebar .archive-list li > a {
    display: block;
    font-size: 14px;
    color: #333333;
}

.blog-main.blog-content .title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
    color: #01091B;
}
.blog-content .tag-list {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    margin-bottom: 10px;
}
.blog-content .tag-list .tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #e5e5e5;
    border: 1px solid #cccccc;
    font-size: 14px;
}
.blog-content .thum {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1.96 / 1;
    margin-top: 20px;
    background-color: #fafafa;
}
.blog-content .thum > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.blog-content .date {
    font-size: 16px;
    color: #999999;
}
.blog-content .content {
    margin-top: 20px;
}
.blog-content .content p {
    margin-bottom: 1.5em;
}

/* news */
.news-section {
    padding: 0 0 200px 0;
}
.news-section .section-inner {
    max-width: 900px;
    margin: auto;
}
.news-cat-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
}
.news-cat-list .label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #02296E;
    border-radius: 5px;
    color: #fff;
}
.news-cat-list > li > a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #02296E;
    border-radius: 5px;
    color: #7d7d7d;
}
.news-list {
    margin: 85px 0 130px 0;
}
.news-list .news-list-item {
    margin-bottom: 100px;
}
.news-list .news-list-item a {
    display: block;
}
.news-list .news-list-item .info {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-list .news-list-item .info .date {
    color: #7d7d7d;
    letter-spacing: 4%;
    font-size: 15px;
}
.news-list .news-list-item .info .tag {
    padding: 3px 10px;
    background-color: #02296E;
    border-radius: 1px;
    color: #fff;
    letter-spacing: 4%;
    font-size: 12px;
}
.news-list .news-list-item .title {
    margin-bottom: 12px;
    color: #01091B;
    font-weight: 700;
    font-size: 20px;
}
.news-list .news-list-item p {
    color: #7d7d7d;
}

.news-main.news-content .title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
    color: #01091B;
}

.news-main.news-content .info {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-main.news-content .info .date {
    color: #7d7d7d;
    letter-spacing: 4%;
    font-size: 15px;
}
.news-main.news-content .info .tag {
    padding: 3px 10px;
    background-color: #02296E;
    border-radius: 1px;
    color: #fff;
    letter-spacing: 4%;
    font-size: 12px;
}
.news-main.news-content .content {
    margin-top: 40px;
}
.news-main.news-content .content p {
    margin-bottom: 1.5em;
}

/* contact */
.contact-section {
    padding: 120px 0 200px 0;
    background-color: #F4F6F9;
}
.contact-section .section-inner {
    max-width: 830px;
    margin: auto;
}
.contact-section .message {
    line-height: 1.75em;
    font-size: 20px;
}
.contact-section .tel-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    max-width: 650px;
    margin: 145px auto 0 auto;
    padding: 40px;
    background: linear-gradient(#fff, #fff), linear-gradient(33deg, #02296E, #044FD4);
    border: 3px solid transparent;
    border-radius: 10px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    font-weight: 500;
    font-size: 20px;
}
.contact-section .tel-area .telnumber {
    position: relative;
    margin-right: 20px;
    padding-left: 45px;
    font-weight: 500;
    font-size: 36px;
}
.contact-section .tel-area .telnumber::before {
    position: absolute;
    top: calc( 50% - 16px );
    left: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../img/tel-icon-black.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
}

.snow-monkey-form {
    margin: 50px 0;
}
.form-area {
    padding: 120px 0 0 0;
}
.form-area a {
    color: #a9a9a9;
    text-decoration: underline;
}
.form-label {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 35px 0 15px 0;
    font-size: 20px;
}
.form-label:first-of-type {
    margin-top: 0;
}
.smf-item__label {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 35px 0 15px 0;
    font-size: 20px;
}
.smf-item__label__text {
    font-size: 20px;
    color: #01091B;
}
.smf-item.require .smf-item__label::before {
    display: inline-block;
    padding: 3px 10px;
    background-color: #02296E;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    content: '必須';
}
.form-label .require {
    display: inline-block;
    padding: 3px 10px;
    background-color: #02296E;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
}
.form-label label {
    font-size: 20px;
    color: #01091B;
}
.form-checklist,
.smf-checkboxes-control__control {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
    font-size: 20px;
}
.form-checklist input[type="checkbox"],
.smf-item__controls .smf-checkboxes-control__control .smf-checkbox-control__control {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    margin-right: 12px;
}
.form-checklist .check-text,
.smf-item__controls .smf-checkboxes-control__control .smf-checkbox-control__label {
    position: relative;
    display: inline-block;
    padding: 5px 0 5px 32px;
    cursor: pointer;
}
.form-checklist .check-text::before,
.smf-item__controls .smf-checkboxes-control__control .smf-checkbox-control__label::before {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    border: 1px solid #a9a9a9;
    background-color: #fff;
    content: '';
}
.form-checklist .check-text::after,
.smf-item__controls .smf-checkboxes-control__control .smf-checkbox-control__label::after {
    position: absolute;
    top: 20px;
    left: 2px;
    display: block;
    width: 5px;
    height: 12px;
    transform: rotate(35deg) skewY(16deg) translateY(-50%);
    transform-origin: center right;
    border-right: 2px solid #02296E;
    border-bottom: 2px solid #02296E;
    content: "";
    opacity: 0;
}
.form-checklist input[type="checkbox"]:checked + .check-text::after,
.smf-item__controls .smf-checkboxes-control__control input[type="checkbox"]:checked + .smf-checkbox-control__label::after {
    opacity: 1;
}
.smf-text-control input[type="text"],
.smf-text-control input[type="email"],
.smf-textarea-control textarea {
    width: 100%;
    padding: 16px 20px !important;
    font-size: 20px !important;
    border: 1px solid #a9a9a9;
    border-radius: 5px;
}
.smf-textarea-control textarea {
    height: 12em;
}
.smf-form .smf-item .smf-item__controls .smf-file-control {
    display: inline-block;
}
input[type="file"]::file-selector-button,
.smf-form .smf-item .smf-item__controls .smf-file-control__label {
    padding: 13px 45px;
    border: 1px solid #02296E;
    border-radius: 50px;
    background-color: #fff;
    color: #02296E;
}
.form-desc {
    margin-top: 12px;
    font-size: 18px;
    color: #c1c1c1;
}
.form-btn-area,
.smf-action {
    margin-top: 145px;
    text-align: center;
}
.form-btn-area input[type="submit"],
.form-btn-area input[type="button"],
.smf-action .smf-button-control .smf-button-control__control {
    overflow: hidden;
    position: relative;
    min-width: 200px;
    height: 58px;
    background-color: #02296E;
    background-image: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.form-btn-area input[type="submit"]:hover,
.form-btn-area input[type="button"]:hover,
.smf-action .smf-button-control .smf-button-control__control:hover {
    color: #02296E;
    background-color: #fff;
}
.form-btn-area input[type="submit"]::before,
.form-btn-area input[type="button"]::before,
.smf-action .smf-button-control .smf-button-control__control::before {
    /* z-index: 1;
    position: absolute;
    top: 0;
    left: -100%;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 32px;
    content: '';
    transition: left 0.3s ease; */
}
.form-btn-area input[type="submit"]:hover::before,
.form-btn-area input[type="button"]:hover::before,
.smf-action .smf-button-control .smf-button-control__control:hover::before {
    /* left: 0; */
}

.global-line-btn {
    z-index: 1000;
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 7px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(45deg, #02296E, #044FD4);
    color: #fff;
    line-height: 1.2em;
    text-align: center;
    font-size: 19px;
}
.global-line-btn:hover {
    opacity: 0.7;
}
.global-line-btn .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../img/line-icon-large.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
}


/* footer */
.footer-btn-area {
    display: flex;
    height: 264px;
}
.footer-btn {
    overflow: hidden;
    width: 50%;
}
.footer-btn > a {
    z-index: 5;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
}
.footer-btn > a::before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    transition: all 0.3s ease;
}
.footer-btn.left > a::before {
    background: linear-gradient(115deg, #2F3F5C, #01112D);
}
.footer-btn.right > a::before {
    background: linear-gradient(115deg, #4466AB, #1D4088);
}
.footer-btn > a::after {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    transition: all 0.3s ease;
}
.footer-btn.left > a::after {
    background: linear-gradient(#01112D, #01112D), url(../img/contact-btn-bg.png);
    background-size: cover;
    background-blend-mode: overlay;
}
.footer-btn.right > a::after {
    background: linear-gradient(#1D4088, #1D4088), url(../img/entry-btn-bg.png);
    background-size: cover;
    background-blend-mode: overlay;
}
.footer-btn > a:hover::before {
    opacity: 0.7;
}
.footer-btn > a:hover::after {
    transform: scale(1.2);
}
.footer-btn-inner {
    z-index: 5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 556px;
    height: 100%;
    margin: auto;
}
.footer-btn > a .en {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2em;
}
.footer-btn > a .jp {
    font-size: 17px;
    font-weight: 500;
}
.footer-btn-arrow {
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #fff;
    content: '';
}
.footer-btn-arrow::before {
    position: absolute;
    top: 50%;
    left: calc( 50% - 9px );
    display: inline-block;
    width: 18px;
    height: 1px;
    background-color: #fff;
    content: '';
}
.footer-btn-arrow::after {
    position: absolute;
    top: calc( 50% - 2px );
    left: calc( 50% + 4px );
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    transform: rotate(-45deg);
}
footer {
    padding: 80px 0 30px 0;
    background-color: #031C49;
}
.footer-inner {
    max-width: 1100px;
    margin: auto;
    color: #fff;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.footer-main-nav ul {
    display: flex;
    column-gap: 20px;
}
.footer-main-nav ul a {
    color: #fff;
}
.footer-sns-nav ul {
    display: flex;
    column-gap: 15px;
}
.footer-sub-nav ul {
    display: flex;
    column-gap: 20px;
    margin-top: 10px;
}
.footer-sub-nav ul a {
    font-size: 10px;
    color: #fff;
}
.copyright {
    margin-top: 100px;
    text-align: center;
    font-size: 11px;
}

/* common */
.al-center {
    text-align: center;
}
.al-right {
    text-align: right;
}
.al-center > * {
    margin: auto;
}
.al-right > * {
    margin-left: auto;
}
.btn-area {
    display: flex;
    justify-content: center;
}
.mt-60 {
    margin-top: 60px;
}
.mt-130 {
    margin-top: 130px;
}
.page-btn {
    overflow: hidden;
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 184px;
    height: 45px;
    padding: 0 6px 0 25px;
    background-color: #fff;
    border: 1px solid #9E9E9E;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #02296E;
}
.page-btn:hover {
    color: #fff;
}
.page-btn::before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: -100%;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #1D4088;
    border-radius: 32px;
    content: '';
    transition: left 0.3s ease;
}
.page-btn:hover::before {
    left: 0;
}
.page-btn::after {
    z-index: 5;
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    background-color: #D2D9E7;
    background-image: url('../img/btn-arrow-white.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    content: '';
}
.page-btn:hover::after {
    background-color: #fff;
    background-image: url('../img/btn-arrow.png');
}
.page-btn.back {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: start;
    column-gap: 20px;
    width: auto;
    padding: 0 25px 0 6px;
}
.page-btn.back::after {
    transform: rotate(180deg);
}
.page-btn.white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.page-btn.white::before {
    background-color: #fff;
}
.page-btn.white:hover {
    color: #1D4088;
}
.page-btn.white:hover::before {
    background-color: #fff;
}
.page-btn.white:hover::after {
    background-color: #1D4088;
    background-image: url('../img/btn-arrow-white.png');
}
.page-btn.top {
    width: 155px;
}
.page-btn.white::after {
    background-color: #fff;
    background-image: url('../img/btn-arrow.png');
}
.page-btn .label {
    z-index: 5;
    position: relative;
    line-height: 1em;
}

.text-btn {
    position: relative;
    margin: auto;
    color: #4466AB;
}
.text-btn::after {
    position: absolute;
    top: calc( 50% - 2.5px );
    right: -15px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #4466AB;
    border-bottom: 1px solid #4466AB;
    content: '';
    transform: rotate(-45deg);
}

.btn-arrow {
    position: relative;
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    content: '';
}
.btn-arrow::before {
    position: absolute;
    top: 50%;
    left: calc( 50% - 5px );
    display: inline-block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    content: '';
}
.btn-arrow::after {
    position: absolute;
    top: calc( 50% - 2px );
    left: 50%;
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    transform: rotate(-45deg);
}

.page-numbers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}
.page-numbers.text {
    column-gap: 30px;
}
.page-numbers:not(.text) > li {
    width: 36px;
    height: 36px;
}
.page-numbers:not(.text) > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #333333;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px;
}
.page-numbers:not(.text) > li .current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #4466AB;
    border-radius: 3px;
    color: #fff;
}
.page-numbers:not(.text) > li .next,
.page-numbers:not(.text) > li .prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: none;
}
.page-numbers:not(.text) > li .next::before,
.page-numbers:not(.text) > li .prev::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    content: '';
}
.page-numbers:not(.text) > li .next::before {
    transform: rotate(-45deg);
}
.page-numbers:not(.text) > li .prev::before {
    transform: rotate(135deg);
}
.page-numbers .prev-text-link a,
.page-numbers .next-text-link a {
    display: flex;
    align-items: center;
    column-gap: 7px;
}
.page-numbers .prev-text-link a::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    content: '';
    transform: rotate(135deg);
}
.page-numbers .next-text-link a::after {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    content: '';
    transform: rotate(-45deg);
}


.bold {
    font-weight: 700;
}
.semibold {
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    .mt-130 {
        margin-top: 60px;
    }
    .btn-area {
        margin-top: 30px;
    }

    .global-header-nav {
        display: none;
    }
    #sp_menu_open_btn {
        display: block;
    }

    .top-view {
        height: 100vh;
    }
    .top-catch .catch-title {
        font-size: 72px;
        line-height: 1em;
        padding-bottom: 0.5em;
    }
    .top-catch .catch-text {
        font-size: 28px;
    }

    .top-section-title-box {
        text-align: center;
    }
    .top-section-title-box .top-section-title {
        display: inline-block;
        margin: auto;
    }

    .global-header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-catch {
        padding: 0 20px 0 20px;
    }

    .top-section-about .section-inner {
        flex-direction: column;
        row-gap: 50px;
        max-width: 500px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-about-catch {
        font-size: 80px;
    }
    .top-about-catch-en {
        font-size: 50px;
    }

    .top-section-service {
        padding: 40px 0;
    }
    .top-section-service .section-inner {
        padding-top: 60px;
    }
    .top-service-head {
        justify-content: center;
    }
    .top-service-head .title {
        width: auto;
        max-width: none;
        text-align: center;
    }
    .top-service-content {
        flex-direction: column;
        row-gap: 40px;
    }
    .top-service-content-left {
        width: auto;
    }
    .top-service-content-left img {
        margin-left: 0;
    }

    .top-section-case {
        padding: 80px 0;
    }
    .top-case-list {
        flex-direction: column;
        align-items: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .top-case-item:nth-child(2) {
        margin-top: 0;
    }

    .top-section-recruit {
        padding-bottom: 300px;
    }
    .top-section-recruit .section-inner {
        width: calc( 500px + (100vw - 500px) / 2 );
    }
    .top-recruit-bg-img.bg-img1 {
        width: 400px;
        height: 267px;
    }
    .top-recruit-bg-img.bg-img2 {
        top: auto;
        bottom: 200px;
        width: 140px;
        height: 165px;
    }
    .top-recruit-bg-img.bg-img3 {
        left: calc( 48% - 50px );
        width: 162px;
        height: 109px;
    }
    .top-recruit-box {
        width: auto;
        max-width: 420px;
        margin: 80px 80px 80px auto;
    }

    .top-company-bg {
        padding: 80px 20px;
        border-radius: 0;
    }
    .top-section-company {
        padding-bottom: 0;
    }
    .top-section-company .section-inner {
        max-width: 500px;
        margin: auto auto 50px auto;
        padding: 0;
    }
    .top-company-bg-img {
        position: static;
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 5 / 3;
        margin: auto;
    }

    .top-section-blog {
        padding: 80px 0 80px 0;
    }
    .top-section-blog .section-inner {

    }
    .top-blog-content {
        flex-direction: column-reverse;
        row-gap: 20px;
        max-width: 500px;
        margin: 30px auto;
    }
    .top-blog-content > div {

    }
    .top-blog-list {
        row-gap: 20px;
    }
    .top-blog-list li > a {
        flex-direction: column;
        row-gap: 20px;
        padding: 20px;
    }
    .top-blog-item-thum {
        width: 100%;
        height: 225px;
    }

    .top-section-news {
        padding: 0 0 80px 0;
    }
    .top-news-content {
        flex-direction: column-reverse;
        row-gap: 20px;
        max-width: 500px;
        margin: 30px auto;
    }
    .top-news-list li > a {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .top-news-title {
        flex-basis: 100%;
    }

    .subpage-view {
        height: 250px;
    }
    .subpage-title {
        width: 100%;
        max-width: none;
        margin: auto 20px 45px 20px;
    }
    .subpage-title .en {
        font-size: 50px;
    }
    .subpage-title .jp {
        padding: 5px 0;
    }

    .about-section {
        padding: 80px 20px 80px 20px;
    }
    .about-section .section-inner {
        max-width: 500px;
    }
    .about-introduction-box {
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 60px;
    }
    .about-introduction-box:last-of-type {
        margin-bottom: 0;
    }
    .about-principles-area {
        flex-direction: column;
        row-gap: 40px;
    }
    .about-message-area {
        flex-direction: column;
        row-gap: 40px;
    }
    .about-message-image {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 3;
    }
    .about-message-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-section:last-of-type {
        padding-bottom: 80px;
    }

    .service-section {
        padding: 80px 20px 0 20px;
    }
    .service-introduction-area {
        margin-bottom: 80px;
    }
    .service-introduction-area .title {
        font-size: 34px;
    }
    .service-introduction-area .desc {
        font-size: 18px;
    }
    .service-business-area {
        margin-bottom: 40px;
        padding: 20px;
    }
    .service-business-area .title .jp {
        font-size: 28px;
    }
    .service-business-area .desc {
        font-size: 18px;
    }
    .service-business-area .item-list {
        flex-direction: column;
        row-gap: 20px;
    }
    .service-reason-area .reason-list {
        flex-direction: column;
        row-gap: 60px;
    }

    .case-section {
        padding: 80px 20px;
    }
    .case-section-title {
        font-size: 28px;
    }
    .case-section-title span {
        display: inline-block;
    }
    .case-list {
        row-gap: 20px;
        max-width: 500px;
        margin: 0 auto 80px auto;
    }
    .case-list .case-list-item a {
        flex-direction: column;
        row-gap: 20px;
        padding: 20px;
    }
    .case-list .case-list-item-image {
        width: 100%;
    }
    .case-subsection.abstract {
        flex-direction: column-reverse;
        margin-top: 40px;
        row-gap: 20px;
    }
    .case-abstract-image {
        width: 100%;
        max-width: 500px;
        aspect-ratio: 4 / 3;
    }

    .recruit-section.introduction {
        flex-direction: column;
    }
    .recruit-section.introduction .section-inner {
        margin: 80px 20px;
    }
    .recruit-introduction-image {
        position: relative;
        top: 0;
        border-radius: 0;
    }
    .recruit-section.introduction .section-inner p.recruit-introduction-catch {
        font-size: 28px;
    }
    .recruit-section.introduction .section-inner p {
        font-size: 18px;
    }
    .recruit-section .section-inner {
        padding: 80px 20px;
    }
    .recruit-section .section-inner:last-of-type {
        padding-bottom: 80px;
    }
    .recruit-env-item {
        flex-direction: column;
        row-gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .recruit-env-item:nth-of-type(2) {
        flex-direction: column-reverse;
    }
    .recruit-env-image {
        width: 100%;
    }
    .recruit-section-title {
        margin-bottom: 80px;
        text-align: center;
        font-size: 32px;
    }
    .recruit-section.career {
        padding: 20px;
    }
    .recruit-section.career .section-inner {
        flex-direction: column;
        row-gap: 80px;
        max-width: 500px;
        margin-bottom: 40px;
        padding-bottom: 0;
    }
    .recruit-section.career::before {
        display: none;
    }
    .recruit-section.career .career-head {
        width: 100%;
        height: auto;
        max-width: none;
        padding: 0;
    }
    .recruit-section.career .career-head .number {
        display: none;
    }
    .recruit-section.career .career-head .number > span {
        font-size: 36px;
    }
    .recruit-section.career .career-head-main .title {
        font-size: 30px;
    }
    .recruit-section.career .career-text .career-text-item .title {
        padding-left: 60px;
    }
    .recruit-section.career .career-text .career-text-item .title::before {
        position: absolute;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(#fff, #fff), linear-gradient(33deg, #02296E, #044FD4);
        border: 3px solid transparent;
        border-radius: 50%;
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
        color: #044FD4;
        font-size: 18px;
        content: '';
    }
    .recruit-section.career .career-text .career-text-item:nth-of-type(1) .title::before {
        content: '01';
    }
    .recruit-section.career .career-text .career-text-item:nth-of-type(2) .title::before {
        content: '02';
    }
    .recruit-section.career .career-text .career-text-item:nth-of-type(3) .title::before {
        content: '03';
    }
    .recruit-section.career .career-text .career-text-item:nth-of-type(2) {
        margin-left: 0;
    }
    .recruit-section.career .career-text {
        row-gap: 40px;
    }
    .recruit-benefits-list {
        max-width: 500px;
    }
    .recruit-benefits-head {
        padding-left: 75px;
    }
    .recruit-benefits-head::before {
        width: 55px;
        height: 55px;
    }
    .recruit-benefits-head .title {
        font-size: 22px;
    }
    .recruit-flow-list {
        row-gap: 60px;
    }
    .recruit-flow-list > li {
        flex-direction: column;
        row-gap: 15px;
    }
    .recruit-flow-number {
        align-items: start;
        width: 100%;
    }
    .recruit-flow-number::after {
        width: 100%;
        height: 2px;
    }
    .recruit-flow-list > li:last-of-type .recruit-flow-number::after {
        display: inline-block;
    }
    .recruit-requirement-table tr {
        display: flex;
        flex-direction: column;
    }
    .recruit-requirement-table th {
        padding-bottom: 0;
    }
    .recruit-requirement-text {
        font-size: 20px;
    }
    .recruit-requirement-btn-area {
        flex-direction: column;
        row-gap: 20px;
    }
    .recruit-requirement-btn-area a {
        width: 100%;
    }

    .news-section {
        padding: 0 20px 80px 20px; 
    }
    .news-cat-list {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .blog-section {
        padding: 0 20px 80px 20px;
    }
    .blog-section .section-inner {
        flex-direction: column;
        row-gap: 80px;
    }
    .blog-list {
        max-width: 500px;
        margin: auto;
        margin-bottom: 80px;
    }
    .blog-list .blog-list-item {
        flex-basis: auto;
    }
    .blog-sidebar {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }

    .contact-section {
        padding: 80px 20px;
    }
    .form-btn-area, .smf-action {
        margin-top: 80px;
    }
    .contact-section .tel-area {
        margin-top: 80px;
        padding: 20px;
        text-align: center;
    }
    .contact-section .tel-area .telnumber,
    .contact-section .tel-area .time {
        display: inline-block;
    }
    .contact-section .tel-area .telnumber {
        font-size: 28px;
    }
    .smf-form .smf-item .smf-file-control > label {
        display: flex;
        flex-wrap: wrap;
        row-gap: 15px;
        margin-bottom: 20px;
    }

    .global-line-btn {
        right: 15px;
        bottom: 15px;
        row-gap: 3px;
        width: 100px;
        height: 100px;
        font-size: 16px;
    }
    .global-line-btn .icon {
        width: 32px;
        height: 32px;
    }

    .footer-btn-area {
        flex-direction: column;
        height: auto;
    }
    .footer-btn {
        width: 100%;
    }
    .footer-btn-inner {
        max-width: 500px;
        padding: 40px 0;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-inner {
        max-width: 500px;
    }
    .footer-top {
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 30px;
    }
    .footer-main-nav ul {
        flex-direction: column;
        row-gap: 20px;
    }
    .footer-sns-nav {
        margin-bottom: 30px;
    }
    .copyright {
        margin-top: 80px;
    }
}

@media screen and (max-width: 550px) {
    .top-section-title .en {
        font-size: 52px;
    }
    .top-section-title .jp {
        padding: 8px 0;
    }

    .top-about-catch {
        font-size: 60px;
    }
    .top-about-text {
        line-height: 1.5em;
        font-size: 16px;
    }
    .top-about-text p {
        font-size: 18px;
    }

    .top-section-service .section-inner {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-service-content {
        max-width: 100%;
    }
    .top-service-content-left img {
        width: 100%;
    }
    .top-service-subtitle .jp {
        font-size: 28px;
    }
    .top-service-headtext {
        font-size: 18px;
    }
    .top-service-subtitle {
        margin-bottom: 30px;
    }

    .top-case-list {
        row-gap: 20px;
        padding: 0 20px;
    }

    .top-section-recruit {
        padding-right: 20px;
    }
    .top-section-recruit .section-inner {
        width: 100%;
        padding-left: 20px;
    }

    .top-blog-content {
        padding: 0 20px;
    }

    .top-news-content {
        padding: 0 20px;
    }
    .top-news-title {
        font-size: 18px;
    }
    .top-news-list li > a {
        row-gap: 10px;
        column-gap: 20px;
    }
    .top-news-tag {
    
        height: auto;
    }

    .about-introduction-title .en {
        font-size: 40px;
    }
    .about-introduction-box .catch {
        font-size: 28px;
    }
    .about-introduction-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .about-principles-title .en {
        font-size: 40px;
    }
    .about-principles-textarea .catch {
        font-size: 28px;
    }
    .about-company-table tr {
        display: flex;
        flex-direction: column;
    }
    .about-company-table td {
        padding-top: 0;
    }

    .footer-btn-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-btn > a .en {
        font-size: 38px;
    }
    .footer-btn-arrow {
        width: 40px;
        height: 40px;
    }
    .footer-btn-arrow::before {
        left: calc( 50% - 5px );
        width: 10px;
    }
    .footer-btn-arrow::after {
        left: calc( 50% - 1% );
    }
}