/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 12 2026 | 12:58:45 */
/* ここにCSSコードを追加

例:
.example {
    color: red;
}

CSS の知識に磨きをかけるためにご覧ください。
http://www.w3schools.com/css/css_syntax.asp

コメント終わり */ 


/* 外観 > カスタマイズ > 追加CSS に記述 */
html {
    font-size: 62.5%; /* 16px × 62.5% = 10px */
}

body {
	color:#1a1a1a;
    font-size: 1.7rem;
    line-height: 1.7;
    letter-spacing: 0.05em; /* 読みやすい字間 */
  font-family:YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt";
	overflow:visible;
}


@media screen and (max-width: 991px) {
body {
    font-size: 1.5rem;
    line-height: 1.5;
}
}

/* PCだけで表示 */
.pc-only { display: block; }
.sp-only { display: none; }

/* スマホサイズになったら切り替え */
@media screen and (max-width: 991px) {
    .pc-only { display: none; }
    .sp-only { display: block; }
}

/* h1からh6までの装飾を一括解除 */
h1, h2, h3, h4, h5, h6,
h1::before, h1::after,
h2::before, h2::after,
h3::before, h3::after {
    background: none !important;
    border: none !important;
    margin: 0 0 1rem 0 !important; /* 下に少しだけ余白を残すのが一般的 */
    content: none !important;      /* Lightningの左線や下線を消す */
    box-shadow: none !important;
    position: static !important;   /* 疑似要素の基準位置をリセット */
}

/* 文字の大きさや太さも標準に戻したい場合（任意） */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #414141;
}

h1 { font-size: 3.6rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2.8rem; }
h4 { font-size: 2.4rem; }
h5 { font-size: 2.0rem; }
h6 { font-size: 1.8rem; }

@media screen and (max-width: 1099px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 3.0rem; }
}

@media screen and (max-width: 767px) {
    h1 { font-size: 3.0rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 2.0rem; }
    h4 { font-size: 1.8rem; }
}

/* 本文の段落 */
p {
    margin-bottom: 1.6em; /* 1文字分強の段落間余白 */
}


:root{
    --orange: #EE7801;
    --navy: #002C5A;
	--lightblue: #F6F9FC;
}

.global-nav-list>li>ul.sub-menu{
	background-color:var(--orange);
    left: 85%;
}

.global-nav-list>li .global-nav-name {
    font-size: 16px;
}

.global-nav-list li {
    font-size: 16px;
}

.global-nav-list>li.menu-item-has-children::after{
	content:none;
}

/* スライダー下部 */
.swiper-pagination-bullet {
    border-radius: 50px;
    width: 11px;
    height: 11px;
    background-color: #ACACAC;
    outline: none;
}

.swiper-pagination-bullet-active {
    background: var(--orange);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
}

.swiper-container{
    overflow: hidden;
    padding-bottom: 20px;
}

.top_banner_area  .vk_slider .swiper-button-next, .vk_slider .swiper-button-prev{
	display:none;
}

.vk_slider_item_container.container {
    padding-right: 7px;
    padding-left: 7px;
}



/* ヘッダー全体を固定 */
.site-header {
    border-radius: 10px;
    position: fixed !important;
    left: 0;
    right: 0;
    top: 15px;
    width: 98%;
    height: 60px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(14px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
}

.site-header-sub{
	display:none;
}

.site-header-container {
    display: grid;
    grid-template-columns: 110px 1fr;
    justify-content: space-between;
    gap: 15px;
    max-width: 100%;
}

.global-nav--layout--penetration {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.global-nav--layout--penetration .global-nav-list {
    width: 100%;
    max-width: 700px;
    margin-right: 0;
    height: 60px;
}

.global-nav--layout--penetration .global-nav-list>li:first-child {
    border-left: none;
}

.global-nav--layout--penetration .global-nav-list>li {
    border-right: none;
}

.global-nav-list>li:before {
    border-bottom: 2px solid var(--orange);
}

.site-header-logo{
    display: flex;
    align-items: center;
}


/* サブメニューを持つ親項目に矢印（疑似要素）を追加 */
@media (min-width: 992px) {
	
    .global-nav--layout--float-right .global-nav-list {
        height: 100%;
    }
	
    /* 親項目のリンクに右余白を作って矢印を置くスペースを確保 */
    .global-nav-list > .menu-item-has-children > a {
        position: relative;
        padding-right: 25px !important; /* 矢印の分だけ右を空ける */
    }

    /* 矢印のデザイン（Font Awesomeを使用） */
    .global-nav-list > .menu-item-has-children > a::after {
        font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
        content: "\f107"; /* 下向き矢印のコード */
        font-weight: 900;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s; /* ホバー時に動かすためのアニメーション */
    }

    /* ホバー時に矢印を回転させる（お好みで） */
    .global-nav-list > .menu-item-has-children:hover > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
	
	.device-mobile .global-nav-list > .menu-item-has-children > a::after {
		display:none
    }
	.device-mobile .global-nav-list>li .acc-btn {
    border-width: 0;
}
	
    .device-mobile .global-nav-list > .menu-item-has-children > a {
        padding-right: 0 !important;
    }
	
	
}



/* 管理バーが表示されている時の位置調整（ログイン中のみ） */
body.admin-bar .site-header {
    top: 45px;
}

/* スマホ閲覧時の管理バー調整 */
@media screen and (max-width: 782px) {
    body .site-header {
        top: 15px;
    }
}


.header-top{
    order: 2;
    background-color: rgb(255, 255, 255, 0);
    border-bottom: none;
    margin-top: 0;
}

.site-header::after{content: none;}
.header-top .header-top-description{display:none;}
.header-top .header-top-contact-btn,
.header-top .header-top-contact-btn a.btn{width: 100%;}
.header-top .header-top-contact-btn {top: 0;}

.header-top .header-top-contact-btn a.btn {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
	border-radius: 50px;
}

.btn-primary {
    background: #EE7801;
    background: linear-gradient(90deg, rgba(238, 120, 1, 1) 0%, rgba(236, 157, 80, 1) 100%);
    border: none;
}

.header-top-contact-btn .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: opacity 0.3s;
}



/* ページトップに戻るボタン */
.page_top_btn{
    right: 1%;
    bottom: 2%;
    background: #fff;
    background-image: url(http://ntv-hr.com/wp-content/uploads/2026/01/to-top-btn-icon_orange.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    box-shadow: none;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}




@media (max-width: 991px) {
	
	    .site-header-logo {
        margin-bottom: .5rem !important;
    }
	
	.site-header {
    width: 95%;
	}
	
	.site-header-container {
            height: 60px;
        }
	
	
	.site-header-logo img {
        max-height: 30px;
    }
	
	.site-header{
    grid-template-columns: 1fr 0;
	}
	
	.site-header-sub{
		display:block !important;
        padding-left: 0;
	}
	
	.site-header-sub .widget_block{
    display: grid;
    grid-template-columns: 1fr 40px;
        gap: 15px;
        align-items: center;
}
	.site-header-sub .widget:after {
    display: none;
}
	
	.vk-mobile-nav-menu-btn{
		display:none;
	}
	
	/* 2. 独自ボタンのデザイン（三本線） */
.my-custom-toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.my-custom-toggle .bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--orange); /* 線の色 */
    transition: all 0.3s ease-in-out;
}

.my-custom-toggle .bar-top { top: 0; }
.my-custom-toggle .bar-mid { top: 11px; }
.my-custom-toggle .bar-bottom { top: 22px; }

/* 3. メニューが開いた時のアニメーション（バツ印） */
.menu-open .bar-top { transform: translateY(11px) rotate(45deg); }
.menu-open .bar-mid { opacity: 0; }
.menu-open .bar-bottom { transform: translateY(-11px) rotate(-45deg); }

/* ヘッダー内での配置調整（スマホ時） */
@media (max-width: 991px) {
    .site-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
	

	.vk-mobile-nav {
		padding: 85px 10px 10px;
	}
	
	.site-header.site-header-open{
    box-shadow:none;
	}
}
	
	


/* 共通ボタン================================================ */
.link-btn{
    display: inline-block;
    border: solid 1px rgb(0, 44, 90, 0.3);
    background: #fff;
    border-radius: 100px;
    padding: 5px 5px 5px 15px;
    max-width: 300px;
    width: 100%;
}

.link-btn a{
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    justify-content: space-between;
    color: #1A1A1A;
}

.link-btn .btn-arrow{
    display: flex;
    align-items: center;
    width: 40px;
}



/* 固定ページお知らせ================================================ */

.custom-post-list{
    position: relative;
    z-index: 1;
    width: 100%;
}

.custom-post-list .post-item a {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 15px;
}

.custom-post-list .post-item img {
    border-radius: 5px;
    border: solid 1px #ddd
}

.custom-post-list .post-item .post-text-box{
    display: grid;
    gap: 5px;
}


.custom-post-list .post-item .post-title{
    font-weight: 500;
    margin-bottom: 0 !important;
    padding-top: 4px;
}

.custom-post-list .post-item .post-cat{
    background: var(--navy);
    color: #fff;
    padding: 2px 30px;
    border-radius: 50px;
    margin-right: 10px;
    font-size: 1.3rem;
}

.custom-post-list .post-item time{
	color:#6FADED;
}

.custom-post-list .post-item{
    border-bottom: solid 1px #c2c4c6;
    padding: 15px 0 14px;
}

.custom-post-list .post-item:last-child{
	border-bottom:none;
}




/* footer============================================================= */
.footer_main_area{
	background:var(--orange);
    border-radius: 40px 40px 0 0;
}

.site-footer{
    background: var(--navy);
    color: #fff;
    border-top: solid 1px #fff;
    content-visibility: visible;
}

.site-footer-copyright{
	padding:0;
}

/* Footer CTA Area */
.footer-cta-area {
	background:var(--orange);
    border-radius: 40px 40px 0 0;
    padding: 80px 0;
    max-width: 100%;
}

.footer-cta-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-title {
    font-family: "Roboto", sans-serif;
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0 !important;
    padding: 0;
}

.cta-sub {
    font-weight: 700;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-cta {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 280px;
    padding: 10px 10px 10px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-weight: 700;
    color: #333;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #f38200;
    color: #fff;
    border-color: #fff;
    /* white border on orange bg */
}

.arrow-c {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #333;
}

.cta-row-2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.small-card {
    width: 50%;
    position: relative;
    justify-content: flex-start;
    /* Title on left */
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 0;
}

.small-card a{
	width:100%;
    padding: 40px;
	
	
}

.arrow-corner {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.small-card:hover .arrow-corner {
    background: #f38200;
    color: #fff;
}



/* Global Footer */
.global-footer {
    border-radius: 40px 40px 0 0;
    background-color: var(--navy);
    color: #fff;
    padding: 60px 0 5px;
    max-width: 100%;
}

.footer-content {
    padding-bottom: 20px;
    margin-bottom: 0;
}

.footer-content01{
    display: grid;
    grid-template-columns: 150px 1fr;
    border-bottom: solid 1px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer-content01 ul{
    font-size: 1.4rem;
	display:flex;
    justify-content: end;
    margin: 0;
    padding: 0;
}

.footer-content01 ul a,
.footer-content02 ul a{
	color:#fff;
}

.footer-content02{
	display:flex;
}

.footer-content02 li{
    line-height: 1;
    color: #fff;
}

.footer-logo {
    width: 150px;
    margin-right: 40px;
}

.footer-logo img {
    width: 100%;
    background: transparent;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.footer-info {
    font-size: 1.4rem;
    margin-right: auto;
    line-height: 1.8;
}

.footer-company-name {
    font-weight: 700;
    margin-bottom: 15px !important;
    border-bottom: solid 1px;
    padding-bottom: 15px;
}

.footer-nav {
    list-style: none;
    font-weight: 700;
    line-height: 2.5;
}

.footer-external-links {
    list-style: none;
    line-height: 2.5;
}


.external-icon {
    margin-left: 5px;
}


.footer-bottom-links {
    font-size: 1.4rem;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin-bottom: 20px;
    opacity: 1.0;
    padding: 0 !important;
}

.footer-bottom-links a{
	color:#fff;
}

.site-footer-copyright p {
    font-size: 1.2rem;
}


.site-body-bottom{
    margin-top: -100px;
}


@media (max-width: 991px) {
	
/* Footer */
	.footer-content01{
		gap:20px;
    align-items: center;
	}
	
	.footer-content01 ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
	
	.footer-nav li {
    line-height: 1;
}
	.footer-bottom-links {
		display: block;
	}
}

@media (max-width: 768px) {
	
	
/* link-btn */
	.link-btn .btn-arrow {
    width: 30px;
}
	.link-btn {
    max-width: 220px;
}
	
	
/* News-list */
	.blog .header-container{
		padding-left:15px;
		padding-right:15px;
	}
	
	.blog .vk_post.media {
    display: block;
	}
	
	.vk_post .media-img {
		width: 100%;
		margin-right: 0 !important;
	}
	
	.vk_post .media-body {
    width: 100%;
    padding-top: 15px;
}
	
	.vk_post .vk_post_date {
    font-size: 1.5rem;
}
	
	.vk_post_imgOuter_singleTermLabel {
    padding: .4em 0.8em;
}
	.vk_post_imgOuter_singleTermLabel{
    font-size: 1.5rem;
	}
	
	
/* Footer */
	.footer-cta-area {
    padding: 50px 0;
}
	
    .cta-title {
        font-size: 4.5rem;
    }
	
	.cta-card {
    flex-wrap: wrap;
        gap: 10px;
    background: #fff;
    padding: 20px;
	}
	
	.cta-sub {
    margin-bottom: 0 !important;
}
	
	.cta-row-2 {
    flex-wrap: wrap;
	}
	
	.small-card {
    height: 100%;
    width: 100%;
}
	
	.small-card a {
    padding: 0px;
}
	
	.cta-right {
    width: 100%;
}
	
	.btn-cta {
    width: 100%;
	}
	
	.footer-content01 {grid-template-columns: 1fr;}
	
	.footer-nav li {
    padding: 10px 0px;
    margin: 0;
}
	
	.footer-logo img {max-width: 120px;}
	.footer-bottom-links {display: block;}	

	
	.footer-content02 {
    display: block;
}
	
	.footer-external-links{
		padding-left:0 !important;
	}
	
	.footer-bottom-links li{
		margin:0;
	}
	
}

