@charset "utf-8";


/* ----------------------------------------------------------------------
	selection
---------------------------------------------------------------------- */

::selection { background: var(--color-blue); color: var(--color-white); }
::-moz-selection { background: var(--color-blue); color: var(--color-white); }


/* ----------------------------------------------------------------------
	root
---------------------------------------------------------------------- */

:root {
    --font-gothic: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    --font-mincho: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    --font-en: "Lato", sans-serif;
    
    --color-white: #fff;
    --color-black: #333;
    --color-blue: #1365a1;
    --color-light-blue: #edf5f9;

    --color-white-gray: #f8f8f8;
    --color-light-gray: #ddd;
    --color-gray: #999;
    --color-red: #c00;
    
    --color-font: var(--color-black);
    --color-bg: var(--color-white);
    --color-border: var(--color-light-gray);
}


/* ----------------------------------------------------------------------
	html,body
---------------------------------------------------------------------- */

html { font-size: 62.5%; }

body {
    background: var(--color-bg);
	font-family: var(--font-gothic);
	color: var(--color-black);
	font-size: 1.6rem;
    text-align: left;
	line-height: 1.6;
    letter-spacing: .05em;
    font-optical-sizing: auto;
    font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: none;
}

* { box-sizing: border-box; }

@media screen and (max-width: 990px) {
	body { min-width: inherit; }
}


/* ----------------------------------------------------------------------
	anchor
---------------------------------------------------------------------- */

a { -webkit-tap-highlight-color: rgba(0,0,0,0.3); transition: 0.3s; }
a:link { color: var(--color-black); text-decoration: underline; }
a:visited { color: var(--color-black); text-decoration: underline; }
a:hover { color: var(--color-blue); text-decoration: none; }
a:active { color: var(--color-blue); text-decoration: none; }
a:focus { outline: none; }
a img { transition: 0.3s; }
a:hover img { opacity: 0.8; }
a.link-tel {
    color: var(--color-black);
    text-decoration: none;
}

@media screen and (max-width: 990px) {
    a.link-tel { text-decoration: underline; }
}


/* ----------------------------------------------------------------------
	img
---------------------------------------------------------------------- */

img {
    max-width: 100%;
    height: auto;
}

.fix-img { width: 100%; }

.no-img { border: 1px solid #ddd; }

.shadow-img { filter: drop-shadow(0 0 10px rgba(0,0,0,0.1)); }


/* ----------------------------------------------------------------------
	btn
---------------------------------------------------------------------- */

/* btn-default */
.btn-default a {
    position: relative;
    color: var(--color-blue);
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    padding: 0 110px 6px 0;
    display: inline-block;
}

.btn-default a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--color-blue);
    width: 100%;
    height: 1px;
}

.btn-default a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 4px;
    background: var(--color-blue);
    width: 10px;
    height: 1px;
    transform: rotate(45deg);
}

.btn-default--white a { color: var(--color-white); }
.btn-default--white a::before,
.btn-default--white a::after { background: var(--color-white); }

.btn-default a:hover { padding: 0 160px 6px 10px; }

@media screen and (max-width: 990px) {
    .btn-default a:hover {  padding: 0 110px 6px 0; }
}

/* link-blank */
.link-blank {
	background: url("../img/icon_blank.svg") right center no-repeat;
	background-size: 14px 12px;
	padding-right: 18px;
}


/* ----------------------------------------------------------------------
	background
---------------------------------------------------------------------- */

.bg-white { background: var(--color-white); }

.bg-blue { background: var(--color-blue); }

.bg-black { background: var(--color-black);  }

.bg-skew-white { position:  relative; }

.bg-skew-white::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 201px;
    background: var(--color-white);
    clip-path: polygon(0 200px, 100% 0, 100% 100%, 0 100%);
    display: block;
}

@media screen and (max-width: 990px) {
    .bg-skew-white::after {
        height: calc(16vw + 1px);
        clip-path: polygon(0 16vw, 100% 0, 100% 100%, 0 100%);
    }
}


/* ----------------------------------------------------------------------
	txt
---------------------------------------------------------------------- */

.font-en {
    font-family: var(--font-en);
    font-weight: bold;
    letter-spacing: .08em;
}

.font-ja {
    font-family: var(--font-mincho);
    letter-spacing: .1em;
}

.left { text-align: left !important; }
.center { text-align: center !important; }
.right { text-align: right !important; }

.bold { font-weight: bold; }

.br { display: block; }

.color-red { color: var(--color-red); }
.color-blue { color: var(--color-blue); }

.marker {
    background: linear-gradient(transparent 50%, var(--color-light-blue)  50%);
    padding: 0 0 0.3em;
}

.fs14 { font-size: 1.4rem; }

@media screen and (max-width: 990px) {
    .sp-none { display: none; }
    
    .sp-block { display: block; }
    
    .sp-inlineblock { display: inline-block; }
}


/* ----------------------------------------------------------------------
	tel
---------------------------------------------------------------------- */

.tel-num { font-size: 2rem; }

.tel-num span,
.tel-num a {
    font-size: 2.8rem;
    letter-spacing: .02em;
    text-decoration: none;
}

@media screen and (max-width: 990px) {
    .tel-num a { text-decoration: underline; }
}


/* ----------------------------------------------------------------------
	wrapper
---------------------------------------------------------------------- */

#wrapper {
    padding: 120px 0 0;
    width: 100%;
    
}

.home #wrapper { padding: 0; }

@media screen and (max-width: 990px) {
    #wrapper { padding: 80px 0 0; }
}


/* ----------------------------------------------------------------------
	header
---------------------------------------------------------------------- */

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: var(--color-white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: .4s;
}

.home .l-header {
    background: none;
    box-shadow: none;
}

.l-header.fixed {
    background: var(--color-white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.l-header:hover { background: var(--color-blue); }

.l-header-inner {
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1410px;
    height: 120px;
    display: flex;
    align-items: center;
    transition: .4s;
}

.home .l-header-inner { height: 160px; }
.l-header.fixed .l-header-inner { height: 120px; }

.l-header-logo {
    line-height: 1;
    max-width: 30%;
    flex: 0 1 30%;
}

.l-header-logo svg {
    width: 200px;
    height: auto;
    transition: .4s;
}

.l-header.fixed .l-header-logo svg .logo-base-1 { fill: #3e3a39; }
.l-header.fixed .l-header-logo svg .logo-base-2 { fill: #156098; }

.home .l-header-logo svg .logo-base-1,
.home .l-header-logo svg .logo-base-2,
.l-header:hover .l-header-logo svg .logo-base-1,
.l-header:hover .l-header-logo svg .logo-base-2{ fill: var(--color-white); }

.l-heade-inner-block {
    max-width: 70%;
    display: flex;
    flex: 0 1 70%;
    align-items: center;
    justify-content: flex-end;
    gap: 0 20px;
}

@media screen and (max-width: 990px) {
    .l-header:hover { background: none; }

    .l-header-inner,
    .home .l-header-inner,
    .l-header.fixed .l-header-inner { height: 80px; }
    
     .l-header-inner {
         padding: 0 80px 0 25px;
         justify-content: space-between;
     }
    
    .l-header-logo {
        line-height: 1;
        max-width: inherit;
        flex: none;
    }

    .l-header-logo svg {
        width: auto;
        height: 50px;
        transition: .4s;
    }
    
    .l-heade-inner-block {
        max-width: inherit;
        flex: none;
    }
}

.l-header-nav > ul { display: flex; }

.l-header-nav > ul > li > a {
    text-decoration: none;
    display: block;
}

.l-header-nav-dorpmenu-btn {
    color: var(--color-black);
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 48px 0 0;
    height: 120px;
    display: block;
    transition: .4s;
}

.home .l-header-nav-dorpmenu-btn {
    padding: 68px 0 0;
    height: 160px;
}
.l-header.fixed .l-header-nav-dorpmenu-btn {
    padding: 48px 0 0;
    height: 120px;
}

.l-header.fixed .l-header-nav > ul > li > a,
.l-header.fixed .l-header-nav-dorpmenu-btn { color: var(--color-black); }

.home .l-header-nav > ul > li > a,
.home .l-header-nav-dorpmenu-btn,
.l-header:hover .l-header-nav > ul > li > a,
.l-header:hover .l-header-nav-dorpmenu-btn{ color: var(--color-white); }

.l-header-nav-dorpmenu-btn { cursor: pointer; }

.l-header-nav-dorpmenu-btn__en {
    position: relative;
    font-family: var(--font-en);
}
.l-header-nav-dorpmenu-btn__ja {
    position: relative;
    opacity: 0;
    display: inline-block;
}

.l-header-nav-dorpmenu .l-header-nav-dorpmenu-btn__en::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 3px 0 3px;
    border-color: var(--color-blue) transparent transparent transparent;
}

.home .l-header-nav-dorpmenu .l-header-nav-dorpmenu-btn__en::before { border-color: currentColor transparent transparent transparent; }
.l-header.fixed .l-header-nav-dorpmenu .l-header-nav-dorpmenu-btn__en::before { border-color: var(--color-blue) transparent transparent transparent; }
.l-header:hover .l-header-nav-dorpmenu .l-header-nav-dorpmenu-btn__en::before { border-color: currentColor transparent transparent transparent; }

.l-header-nav-dorpmenu-btn__ja::before,
.l-header-nav-dorpmenu-btn__ja::after {
    content: '';
    position: absolute;
    bottom: -6px;
    background-color: currentColor;
    width: 0;
    height: 1px;
    transition: 0.3s ease-in-out;
}

.l-header-nav-dorpmenu-btn__ja::before { left: 50%; }
.l-header-nav-dorpmenu-btn__ja::after { right: 50%; }

.l-header-nav > ul > li:hover .l-header-nav-dorpmenu-btn__en { display: none; }
.l-header-nav > ul > li:hover .l-header-nav-dorpmenu-btn__ja { opacity: 1; }
.l-header-nav > ul > li:hover .l-header-nav-dorpmenu-btn__ja::before,
.l-header-nav > ul > li:hover .l-header-nav-dorpmenu-btn__ja::after { width: 50%; }

.l-header-nav-about { width: 122px; }
.l-header-nav-bussiness { width: 134px; }
.l-header-nav-recruit { width: 108px; }

.l-header-nav-dorpmenu-mega {
    position: absolute;
    left: 0;
    top: 120px;
    background: var(--color-white);
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

.home .l-header-nav-dorpmenu-mega { top: 160px; }
.l-header.fixed .l-header-nav-dorpmenu-mega { top: 120px; }

.l-header-nav-dorpmenu-mega__inner {
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1410px;
}

.l-header-nav-dorpmenu-mega ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0 85px;
}

.l-header-nav-dorpmenu-mega ul li { width: calc((100% - 120px) / 4); }

.l-header-nav-bussiness .l-header-nav-dorpmenu-mega ul li { width: calc((100% - 120px) / 3); }

.l-header-nav-dorpmenu-mega ul li a {
    position: relative;
    font-weight: bold;
    text-decoration: none;
    text-align: left;
    padding: 15px 0 8px;
    border-bottom: 1px solid var(--color-black);
    display: block;
}

.l-header-nav-dorpmenu-mega ul li a:hover { opacity: 0.6; }

.l-header-nav-dorpmenu-mega ul li a::before {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent currentColor;
}

.l-header-nav-dorpmenu-mega ul li a span {
    color: var(--color-blue);
    font-size: 2.4rem;
    display: block;
}

@media screen and (max-width: 990px) {
    .l-header-nav { display: none; }
}


.l-header-tel {
    color: var(--color-blue);
    padding-bottom: 8px;
}

.l-header.fixed .l-header-tel { color: var(--color-blue); }
.home .l-header-tel,
.l-header:hover .l-header-tel { color: var(--color-white); }

.l-header-tel--sp { display: none }

@media screen and (max-width: 990px) {
    .l-header-tel { padding-bottom: 0; }
    
    .l-header-tel--pc { display: none }
    .l-header-tel--sp { display: block}
    
    .l-header-tel--sp { display: flex; }
    .l-header-tel--sp a {
        text-align: center;
        width: 50px;
        height: 80px;
        padding-top: 29px;
        display: block;
    }
    
    .l-header-tel--sp svg {
        width: 17px;
        height: 22px;
        fill: var(--color-blue);
    }
    
    .home .l-header-tel--sp svg { fill: var(--color-white); }
    .l-header.fixed .l-header-tel--sp svg { fill: var(--color-blue); }
}


/* ----------------------------------------------------------------------
	l-container
---------------------------------------------------------------------- */

.l-container {
    background: var(--color-white);
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1410px;
}


/* ----------------------------------------------------------------------
	l-content
---------------------------------------------------------------------- */

.l-content { background: var(--color-white); }

.l-content__inner {
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1150px;
}

.l-content__inner--small { max-width: 850px; }

@media screen and (max-width: 990px) {
    .l-content {}
}


/* ----------------------------------------------------------------------
	l-f-contact
---------------------------------------------------------------------- */

.l-f-contact {
    position: relative;
    color: var(--color-white); 
    text-align: center;
}

.l-f-contact::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    display: block;
    width: 100%;
    height: 210px;
    background: var(--color-white);
    clip-path: polygon(0 0, 100% 0, 100% 10px, 0 100%);
}

.l-f-contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}

.l-f-contact-inner { 
    position: relative;
    padding: 250px 0 300px;
}

.l-f-contact-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url("../img/f_contact_bg.webp") center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;    
}

.home .l-f-contact::before { background-color: var(--color-blue); }

.l-f-contact-ttl { margin: 0 0 1em; }

.l-f-contact-column {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.l-f-contact-tel a { color: var(--color-white); }

@media screen and (max-width: 990px) {
    .l-f-contact::before { height: 16vw; }

    .l-f-contact-inner { padding: 24vw 0 30vw; }
    
    .l-f-contact-inner::before { background-image: url("../img/f_contact_bg_sp.webp"); }
    
    .l-f-contact-column { display: block; }
    
    .l-f-contact-txt { margin: 0 0 0.4em; }
}


/* ----------------------------------------------------------------------
	footer
---------------------------------------------------------------------- */

/* footer */
.l-footer {
    position: relative;
    background: var(--color-blue);
    clip-path: polygon(0 200px, 100% 0, 100% 100%, 0 100%);
    color: var(--color-white); 
    padding: 150px 0 30px;
    margin: -200px 0 0;
}

.l-footer-inner {
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1410px;
}

.l-footer-logo { text-align: right; }

@media screen and (max-width: 990px) {
    .l-footer {
        clip-path: polygon(0 16vw, 100% 0, 100% 100%, 0 100%);
        padding: 16vw 0 30px;
        margin: -16vw 0 0;
    }
    
    .l-footer-inner { padding: 20px 25px 0; }
    
    .l-footer-logo { text-align: center; }
    
    .l-footer-logo img { width: 200px; }
}


.l-footer-nav {
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l-footer-nav-link { width: calc((100% - 120px) / 3); }

.l-footer-nav-link-ttl {
    position: relative;
    color: var(--color-white);
    font-weight: bold;
    text-decoration: none;
    text-align: left;
    padding: 15px 0 8px;
    margin: 0 0 1.4em;
    border-bottom: 1px solid var(--color-white);
}

.l-footer-nav-link-ttl a {
    position: relative;
    color: var(--color-white);
    text-decoration: none;
    display: block;
}

.l-footer-nav-link-ttl a::before {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent currentColor;
}

.l-footer-nav-link-ttl a:hover { opacity: 0.8; }

.l-footer-nav-link-ttl  span {
    font-size: 2.4rem;
    display: block;
}

.l-footer-nav-link-sub li { margin: 0 0 0.6em; }
.l-footer-nav-link-sub li:last-child { margin: 0; }

.l-footer-nav-link-sub li a {
    position: relative;
    color: var(--color-white);
    text-decoration: none;
}

.l-footer-nav-link-sub li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: currentColor;
    width: 0;
    height: 1px;
    transition: 0.3s ease-in-out;
}

.l-footer-nav-link-sub li a:hover::after { width: 100%; }

@media screen and (max-width: 990px) {
    .l-footer-nav {
        padding: 20px 0 30px;
        gap: 30px 0;
    }
    
    .l-footer-nav-link { width: 100%; }
    
    .l-footer-nav-link-ttl { margin: 0 0 0.8em; }
    
    .l-footer-nav-link-sub li { margin: 0; }
    
    .l-footer-nav-link-sub li a {
        padding: 0.4em 0;
        display: block;
    }
    
    .l-footer-nav-link-sub li a:hover::after { width: 0; }
}


.l-footer-column {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.l-footer-catch { font-size: 2rem; }

.l-footer-copyright {
    text-align: right;
    font-size: 1.2rem;
    letter-spacing: .05em;
}

@media screen and (max-width: 990px) {
    .l-footer-column { display: block; }
    
    .l-footer-catch { margin: 0 0 2em; }
    
    .l-footer-copyright {
        text-align: left;
        font-size: 1rem;
    }
}


/* pagetop */
.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
    display: none;
}

.pagetop:hover img { opacity: 0.8; }

@media screen and (max-width: 990px) {
    .pagetop {
        right: 25px;
        bottom: 25px;
    }
}


/* ----------------------------------------------------------------------
	heading
---------------------------------------------------------------------- */

/* page-ttl */
.page-ttl {
    line-height: 1.5;
    text-align: center;
    margin: 0 0 1.6em;
}

.page-ttl--home { color: var(--color-blue); }

.page-ttl--under {
    padding: 80px 0 60px;
    margin: 0;
}

.page-ttl--bg-blue {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 80px 0;
    margin: 0 0 100px;
}

.page-ttl__en { font-size: 5rem; }
.page-ttl__ja { font-size: 1.8rem; }

.home .page-ttl__ja { font-weight: normal; }

@media screen and (max-width: 990px) {
    .page-ttl__en { font-size: 3rem; }
    .page-ttl__ja { font-size: 1.6rem; }
    
    .page-ttl--under {
        padding: 50px 0 30px;
        margin: 0;
    }
    
    .page-ttl--bg-blue {
        padding: 40px 0;
        margin: 0 0 60px;
    }
}


/* page-s-ttl */
.page-s-ttl {
    color: var(--color-blue);
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 0.8em;
}

@media screen and (max-width: 990px) {
    .page-s-ttl { font-size: 2rem; }
}


/* lower-page-ttl */
.lower-page-ttl {
    position: relative;
    margin: 0 0 100px;
}

.lower-page-ttl__box {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%);
    color: var(--color-white); 
    text-align: center;
    padding: 0 25px;
    width: 100%;
}

.lower-page-ttl__ph { position: relative; }

.lower-page-ttl__ph::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(19,101,161,0.6);
    display: block;
}

.lower-page-ttl__ph img { width: 100%; }

@media screen and (max-width: 990px) {
    .lower-page-ttl { margin: 0 0 60px; }
}


/* company-name */
.company-name { margin: 0 0 1.4em; }

.company-name__en {
    color: var(--color-blue);
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 0.2em;
}

.company-name__ja { color: var(--color-gray); }

@media screen and (max-width: 990px) {
    .company-name__en {
        font-size: 1.6rem;
        margin: 0 0 0.2em;
    }

    .company-name__ja {
         font-size: 1.4rem;

    }
}

/* ----------------------------------------------------------------------
	icon
---------------------------------------------------------------------- */

/* icon-plus */
.icon-plus {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
}

.icon-plus:before,
.icon-plus:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    background: var(--color-blue);
    width: 18px;
    height: 2px;
    display: block;
    transition: 0.2s;
}

.icon-plus--white:before,
.icon-plus--white:after { background: var(--color-white);}

.icon-plus:before { transform: rotate(90deg);  }

.on .icon-plus:before { transform: rotate(0); }

/* icon-square */
.icon-square {
    background: #e2c144;
    font-size: 2.8rem;
    font-style: normal;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0;
    width: 50px;
    height: 50px;
    display: block;
}


/* ----------------------------------------------------------------------
	modal
---------------------------------------------------------------------- */

.l-modal-box {
    position: relative;
    text-align: left;
}

.l-modal-box__close {
	position: absolute;
	top: 20px;
	right: 20px;
    width: 30px;
    height: 30px;
    display: block;
    transition: 0.7s;
    cursor: pointer;
}

.l-modal-box__close:hover { opacity: 0.6; }

.l-modal-box__close:before,
.l-modal-box__close:after {
	content: "";
	position: absolute;
	top: 50%; 
	right: 0;
    background: #000;
	width: 30px;
	height: 2px;
    display: block;
    transform: rotate(-45deg);
}

.l-modal-box__close:before { transform: rotate(45deg); }

.l-modal-bg {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	display: block;
}

@media screen and (max-width: 990px) {
    .l-modal-box__close {
        top: 15px;
        right: 15px;
    }
}


/* ----------------------------------------------------------------------
	table
---------------------------------------------------------------------- */

.tbl {
    position: relative;
    width: 100%;
}

.tbl tr { position: relative; }

.tbl th,
.tbl td {
	text-align: left;
	padding: 25px 0;
}

.tbl th {
    color: var(--color-blue);
    width: 25%;
}

.tbl::before,
.tbl tr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
    display: block;
}

.tbl::after,
.tbl tr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    border-top: 1px solid var(--color-blue);
    display: block;
}

.tbl::before,
.tbl::after  {
    top: inherit;
    bottom: 0;
}

.tbl td { padding-left: 25px; }

@media screen and (max-width: 990px) {
	.tbl { display: block; }

    .tbl tbody,
    .tbl tr {
        width: 100%;
        display: block;
    }

	.tbl th,
	.tbl td {
        padding: 20px 0;
        display: block;
        width: 100%;
    }

    .tbl th { padding-bottom: 0.6em; }
    .tbl td { padding-top: 0; }
}


/* ----------------------------------------------------------------------
	list
---------------------------------------------------------------------- */

/* icon-list */
.icon-list li,
.icon-list dl dt {
    position: relative;
    padding-left: 18px;
}

.icon-list li::before,
.icon-list dl dt::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background: var(--color-blue);
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.icon-list dl { margin: 0 0 0.8em; }
.icon-list li { margin: 0 0 0.2em; }

.icon-list dl:last-child,
.icon-list li:last-child { margin: 0; }

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

}


/* list-style */
.list-style { margin-bottom: 0.8em; }
.list-style:last-child { margin-bottom: 0; }
.list-style > li {
	margin-left: 2em;
	margin-bottom: 0.6em;
	list-style: decimal;
}

.list-style li:last-child { margin-bottom: 0; }

.list-style--latin > li { list-style: lower-latin; }
.list-style--katakana > li {
    padding-left: 5px;
    list-style: katakana;
}

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


/* ----------------------------------------------------------------------
	target
---------------------------------------------------------------------- */

.target-block {
    margin-top: -120px;
    padding-top: 120px;
}

@media screen and (max-width: 990px) {
    .target-block {
        margin-top: -80px;
        padding-top: 80px;
    }
}


/* ----------------------------------------------------------------------
	column
---------------------------------------------------------------------- */

.l-column02,
.l-column03 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px 0;
}

.l-column02__inner { width: calc((100% - 40px) / 2); }

.l-column03__inner { width: calc((100% - 80px) / 3); }

@media screen and (max-width: 990px) {    
    .l-column02__inner,
    .l-column03__inner { width: 100%; }
}


/* ----------------------------------------------------------------------
    l-sticky
---------------------------------------------------------------------- */

.l-sticky {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.l-sticky-sideber {
    position: sticky;
    top: 160px;
    left: 0;
    width: 200px;
}

.l-sticky-content { width: 800px; }

@media screen and (max-width: 1150px) {
    .l-sticky { display: block; }

    .l-sticky-sideber {
        position: static;
        width: auto;
    }

    .l-sticky-content { width: auto; }
}


.l-sticky-local-ttl {
    position: relative;
    font-weight: bold;
    padding: 0 0 0.8em;
}

.l-sticky-local-nav { margin: 0 0 60px; }

.l-sticky-local-nav:last-child{ margin: 0 0 120px; }

.l-sticky-local-nav li { position: relative; }

.l-sticky-local-nav li a {
    position: relative;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 40px 15px 0;
    display: block;
}

.l-sticky-local-nav li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    background: url("../img/local_nav.svg") center center no-repeat;
    background-size: 12px 10px;
    width: 12px;
    height: 10px
}

.l-sticky-local-ttl::before,
.l-sticky-local-nav li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
    display: block;
}

.l-sticky-local-ttl::after,
.l-sticky-local-nav li::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    border-top: 1px solid var(--color-blue);
    display: block;
}

@media screen and (max-width: 1150px) {
    .l-sticky-local-ttl { text-align: center; }
    
    .l-sticky-local-ttl::after { display: none; }
    
    .l-sticky-local-nav {
        margin: 0 0 60px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .l-sticky-local-nav:last-child{ margin: 0 0 60px; }
    
    /*.l-sticky-local-nav li { width: calc((100% - 10px) / 2); }*/
    
    .l-sticky-local-nav li { width: 100%; }
    
    .l-sticky-local-nav li a { padding: 15px 30px 15px 0; }
    
    .l-sticky-local-nav--sp-fs15 li a { font-size: 1.5rem; }
    
    .l-sticky-local-nav li a::before {
        right: 4px;
        transform: rotate(90deg);
    }
    
    .l-sticky-local-nav li::after { width: 20px; }
}

/* ----------------------------------------------------------------------
	separator
---------------------------------------------------------------------- */

.separator { position: relative; }

.separator::before,
.separator-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--color-border);
    display: block;
}

.separator::after,
.separator-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    border-top: 1px solid var(--color-blue);
    display: block;
}

.separator::before,
.separator::after {
    top: inherit;
    bottom: 0;
}

.separator-box {
    position: relative;
    padding: 25px 0;
    display: flex;   
}

.separator-box--center { align-items: center; }

.separator-box__heading {
    color: var(--color-blue);
    font-weight: bold;
    width: 25%;
}

.separator-box__body {
    padding-left: 25px;
    width: 75%;
}

@media screen and (max-width: 990px) {
    .separator-box { display: block; }
    
    .separator-box__heading {
        padding: 0 0 25px;
        width: 100%;
    }
    
    .separator-box__body {
        padding-left: 0;
        width: 100%;
    }
}


/* ----------------------------------------------------------------------
	breadclumb
---------------------------------------------------------------------- */

.breadclumb {
    font-size: 1.4rem;
    padding: 0 25px 30px;
    margin: 0 auto;
    max-width: 1150px;
}

@media screen and (max-width: 990px) {
	.breadclumb {
		font-size: 1.2rem;
		overflow-x: auto;
		white-space: nowrap;
	}
}


/* ----------------------------------------------------------------------
	message
---------------------------------------------------------------------- */

.l-message-catch {
    font-size: 4rem;
    text-align: center;
    letter-spacing: .2em;
    padding-left: 4px;
    margin: 0 0 1em;
}

.l-message-president { margin: 0 auto 120px; }

/*.l-message-president {
    margin: 0 auto 120px;
    max-width: 930px;
    display: flex;
    justify-content: space-between;
}

.l-message-president-txt { width: 520px; }*/

.l-message-president-txt p {
    line-height: 1.8;
    margin: 0 0 1.3em;
}

p.l-message-president-name {
    text-align: right;
    line-height: 1.6;
}

.l-message-president-name span { font-size: 2.6rem; }

@media screen and (max-width: 990px) {
    .l-message-catch { font-size: 2rem; }
    
    .l-message-president {
        margin: 0 0 80px;
        display: block;
    }
    
    .l-message-president-ph {
        height: 90vw;
        margin:  0 0 25px;
        overflow: hidden;
    }
    
    .l-message-president-ph img { width: 100%; }
    
    .l-message-president-txt { width: auto; }
    
    p.l-message-president-name { font-size: 1.4rem; }
    
    .l-message-president-name span { font-size: 2.4rem; }
}


/* ----------------------------------------------------------------------
	philosophy
---------------------------------------------------------------------- */

.l-philosophy-catch {
    font-size: 4rem;
    text-align: center;
    letter-spacing: .2em;
    padding-left: 4px;
    margin: 0 0 1em;
}

.l-philosophy-articles { margin: 0 0 120px; }

.l-philosophy-articles__ttl {
    color: var(--color-blue);
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 1.4em;
}

.l-philosophy-articles__box-ttl {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: .2em;
    padding-left: 2px;
}

.l-philosophy-articles__box-ttl span { font-size: 3.2rem; }

.l-philosophy-articles__box-txt dt {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 0.4em;
}

@media screen and (max-width: 990px) {
    .l-philosophy-catch { font-size: 2rem; }
    
    .l-philosophy-articles__ttl {  font-size: 2rem; }
    
    .l-philosophy-articles__box {
        padding: 10px 0 20px;
        display: block;
    }
        
    .l-philosophy-articles__box-ttl {
        font-size: 1.8rem;
        text-align: left;
        padding-bottom: 10px;
    }
        
    .l-philosophy-articles__box-ttl span { font-size: 3rem; }
    
    .l-philosophy-articles__box-txt dt { font-size: 1.8rem; }
}


/* ----------------------------------------------------------------------
	profile
---------------------------------------------------------------------- */

.l-profile-lead {
    position: relative;
    text-align: center;
    margin: 0 0 4em;
}

.l-profile-box { margin: 0 0 120px; }

.l-profile-tbl_address dl { margin: 0 0 0.8em; }
.l-profile-tbl_address dl:last-child { margin: 0; }

@media screen and (max-width: 990px) {
    .l-profile-lead {
        text-align: left;
        margin: 0 0 1em;
    }

    .l-profile-box { margin: 0 0 80px; }
}


/* ----------------------------------------------------------------------
	access
---------------------------------------------------------------------- */

.l-access,
.l-access-inner { margin: 0 0 120px; }

.l-access-box__ttl span {
    color: var(--color-gray);
    font-weight: normal;
    letter-spacing: .05em;
}

.l-access-box__address { margin: 0 0 1em; }

.l-access-box__nearest dl {
    background-position: left center;
    background-repeat: no-repeat;
    padding: 0 0 0 50px;
    margin: 0 0 1em;
}

.l-access-box__nearest-train {
    background-image: url("../img/icon_train.svg");
    background-size: 40px 52px;
}

.l-access-box__nearest-bus {
    background-image: url("../img/icon_bus.svg");
    background-size: 40px;
}

.l-access-box__nearest dl dt { font-weight: bold; }

.l-access-box__map iframe {
    width: 100%;
    vertical-align: bottom;
}

.l-access-box__map-link { margin-top: 1em; }

@media screen and (max-width: 990px) {
    .l-access,
	.l-access-inner { margin: 0 0 80px; }
}


/* ----------------------------------------------------------------------
	businesses
---------------------------------------------------------------------- */

/* l-businesses-lead */
.l-businesses-lead {
    text-align: center;
    margin: 0 0 3em;
}

.l-businesses-lead__catch {
    font-size: 2.6rem;
    font-weight: bold;
    margin: 0 0 0.4em;
}

@media screen and (max-width: 990px) {
    .l-businesses-lead { text-align: left; }
    
    .l-businesses-lead__catch {
        font-size: 2rem;
        margin: 0 0 0.6em;
    }
}


/* l-businesses-service */
.l-businesses-service { margin: 0 0 120px; }

.l-businesses-service__ttl-icon {
    position: relative;
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 2rem;
    text-align: center;
    line-height: 46px;
    width: 46px;
    height: 46px;
    padding-left: 2px;
    margin: -23px auto 10px;
    border-radius: 50%;
}

.l-businesses-service__ttl-txt {
    color: var(--color-blue);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 0.4em;
}

@media screen and (max-width: 990px) {
    .l-businesses-service { margin: 0 0 80px; }
    
    .l-businesses-service__ph img { width: 100%; }
    
    .l-businesses-service__ttl-txt { font-size: 1.8rem; }
}


/* ----------------------------------------------------------------------
	lease-back
---------------------------------------------------------------------- */

.l-lease-back-about { margin: 0 0 120px; }

.l-lease-back-about-step__ttl {
    font-weight: bold;
    margin: 0 0 1em;
}

.l-lease-back-about-step__ttl dt {
    color: var(--color-blue);
    font-size: 2.4rem;  
}

.l-lease-back-about-step__ttl dd { font-size: 2.2rem; }

.l-lease-back-about-step__box {
    text-align: center;
    padding: 26px 0 30px;
    border-bottom: 1px solid var(--color-black);
}

.l-lease-back-about-step__box:first-child { border-top: 1px solid var(--color-black); }

.l-lease-back-about-step__arrow { text-align: center; }

@media screen and (max-width: 990px) {
    .l-lease-back-about { margin: 0 0 80px; }
    
    .l-lease-back-about-step__illust img { width: 284px; }
    
    .l-lease-back-about-step__ttl dt { font-size: 2rem; }
    
    .l-lease-back-about-step__ttl dd { font-size: 1.8rem; }
}


/* ----------------------------------------------------------------------
	recruit
---------------------------------------------------------------------- */

/* l-recruit-lead */
.l-recruit-lead {
    position: relative;
    text-align: center;
    padding:  0 0 45px;
    margin: 0 0 100px;
}

.l-recruit-lead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--color-blue); 
    width: 100%;
    height: 100%;
    display: block;
    clip-path: polygon(0 420px, 100% 200px, 100% 100%, 0 100%);
}

.l-recruit-lead::after {
    content: "";
    position: absolute;
    top: 250px;
    left: 0;
    z-index: 1;
    display: block;
    background: var(--color-white-gray);
    width: 100%;
    height: 200px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.l-recruit-lead__inner {
    position: relative;
    z-index: 3;
}

.l-recruit-lead__catch { margin: 0 0 0.4em; }

.l-recruit-lead__name {
    color: var(--color-blue);
    font-size: 5.2rem;
    font-weight: bold;
    letter-spacing: .02em;
    opacity: 0.2;
}

.l-recruit-lead__ph { margin: -35px 0 30px; }

.l-recruit-lead__txt {
    color: var(--color-white);
    line-height: 2;
}

@media screen and (max-width: 990px) {
    .l-recruit-lead {
        padding:  0 25px 9.33vw;
        margin: 0 0 60px;
    }
    
    .l-recruit-lead__catch { margin: 0 0 0.8em; }
    
    .l-recruit-lead__catch img { width: 74.66vw; }
    
    .l-recruit-lead__name {
        color: var(--color-blue);
        font-size: 6.4vw;
        font-weight: bold;
        letter-spacing: .02em;
        opacity: 0.2;
    }
    
    .l-recruit-lead__ph { margin: -4vw 0 25px; }
    
    .l-recruit-lead__ph img { width: 100%; }
    
    .l-recruit-lead__txt { text-align: left; }
    
    .l-recruit-lead::before {
        clip-path: polygon(0 64vw, 100% 44vw, 100% 100%, 0 100%);
    }

    .l-recruit-lead::after {
        top: 48vw;
        height: 16vw;
    }
}


/* l-recruit-description */
.l-recruit-description { margin: 0 0 120px; }

@media screen and (max-width: 990px) {
    .l-recruit-description { margin: 0 0 80px; }
}


/* l-recruit-flow */
.l-recruit-flow { margin: 0 0 120px; }

.l-recruit-flow-step {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
}

.l-recruit-flow-step__ttl {
    text-align: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-recruit-flow-step__ttl dl dt {
    color: var(--color-blue);
    font-size: 2rem;
}

.l-recruit-flow-step__ttl dl dd {
    font-size: 2rem;
    font-weight: bold;
}

 .l-recruit-flow-step-arrow {line-height: 1; }

@media screen and (max-width: 990px) {
    .l-recruit-flow { margin: 0 0 80px; }
    
    .l-recruit-flow-step { display: block; }
    
    .l-recruit-flow-step__ttl { margin: 0 auto; }
    
    .l-recruit-flow-step-arrow {
        text-align: center;
        margin: 15px 0;
    }
    
    .l-recruit-flow-step-arrow img { transform: rotate(90deg)}
}


/* l-recruit-contact */
.l-recruit-contact { margin: 0 0 120px; }

.l-recruit-contact-box {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--color-border);
}

.l-recruit-contact-txt { margin: 0 0 0.4em; }

.l-recruit-contact-tel,
.l-recruit-contact-tel a { color: var(--color-blue); }

@media screen and (max-width: 990px) {
    .l-recruit-contact { margin: 0 0 80px; }
    
    .l-recruit-contact-box { padding: 30px 20px; }
}













