@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap');
@import url("https://use.typekit.net/vxt0gvy.css");
/*
Theme Name: human_solution
Theme URI: null
Description: Description
Author: 81bridge - SGX
Version: 1.0
*/

/* ====================================================================================
root　色の指定を統括
==================================================================================== */
:root {
/* color */
--white: #ffffff;
--gray: #c0c0c0;
--black: #404040;
--blue: #016ec2;
--darkblue: #015ea6;
--lightblue: #2ba5e0;
--lightblue-bg: #a2e0ff;
--turquoise: #00bccc;
--white-translucent: #ffffffe0;
--blue-translucent: #016ec2e0;
--darkblue-translucent: #015ea6f0;
--lightblue-translucent: #2ba5e0e0;
--turquoise-translucent: #00bccce0;
--pink: #ea0081;
--purple: #714fad;
--gd-pink-purple: linear-gradient(90deg,rgba(0, 210, 255, 1) 0%, rgba(113, 79, 173, 1) 100%);
/* --gd-pink-purple: linear-gradient(135deg,rgba(234, 0, 129, 1) 0%, rgba(113, 79, 173, 1) 100%); */
}



.aligncenter {
	display: block;
	margin: 0 auto;
}
.alignright {
	float: right;
}
.alignleft {
	float: left;
}
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
	max-width: 100%;
}
.wp-block-image figure,
.wp-block-image figcaption {
	display: block;
}
a.nolink,
a.nolink:hover {
	opacity: 1;
	cursor: default;
	pointer-events: none;
}
/*====================================================================================
	デフォルトスタイル
====================================================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: var(--black);
	text-decoration: none;
    transition: .3s;
	-webkit-transition: .3s;
}
a:visited {
	color: var(--black);
}
a:hover {
	color: var(--black);
}
a:active {
	color: var(--black);
}

p {
    line-height: 2;
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 400;
}

/* SP版 デフォルトスタイル */
@media all and (max-width: 896px) {
    p {
        font-size: 1.8rem;
        letter-spacing: 0.05rem;
    }
}

/* PC専用改行（768px以上で表示） */
.break_pc {
    display: none; /* デフォルトで非表示（SP時） */
}

/* SP専用改行（767px以下で表示） */
.break_sp {
    display: block; /* デフォルトで表示（SP時） */
}

/* メディアクエリ：PC用 */
@media screen and (min-width: 768px) {
    .break_pc {
        display: block; /* PC時に表示 */
    }
    .break_sp {
        display: none; /* PC時に非表示 */
    }
}
/*====================================================================================
	汎用スタイル
====================================================================================*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*====================================================================================
	レイアウト
====================================================================================*/
body {
	color: var(--black);
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: var(--white);
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	padding-top: 80px;
	overflow: hidden;
	text-align: left;
}
.special #container {
	padding: 0;
}
#main {
    display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}


@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
    #main {

    }
	#container {
		padding-top: 80px;
	}
	.special #container {
		padding-top: 80px;
	}
}


/*====================================================================================
	ヘッダー　Header
====================================================================================*/
#gHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 0 3px 3px rgba(0,0,0,.05);
    background: var(--white);
}
#gHeader .rBox {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-direction: row;
}
#gHeader .hInner {
    position: relative;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
#gHeader h1 {
    padding: 0px 0 0 0px;
    width: 240px;
    left: 0;
    top: 0;
}
#gHeader h1:hover {
    opacity: 0.4;
    transition: all .4s ease;
}

#gHeader .link {
    position: absolute;
    top: 34px;
    right: 77px;
    width: 186px;
}
#gHeader .link a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    width: 186px;
    height: 50px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    border-radius: 30px;
}
#gHeader .link a:hover {
    opacity: 0.7;
}

#gHeader .naviUl-list {
    padding: 0px 10px;
    border-radius: 880px;
}

#gHeader .naviUl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0px 40px;
    padding: 0 20px;
    justify-content: center;
    
}
#gHeader .naviUl > li {
    margin: 0 0px;
    z-index: 1;
}
#gHeader .naviUl > li .link-6 {
    font-size: 1.8rem;
}
#gHeader .naviUl > li > a {
    margin: 7px;
    color: var(--black);
    font-weight: 700;
    position: relative;
    letter-spacing: 0.06em;
    display: block;
    background-repeat: repeat-y;
    background-size: 2px 6px;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    opacity: 1;
}
#gHeader .naviUl > li > a:last-of-type{
    background: none;
}
#gHeader .naviUl > li > a:before {
    position: absolute;
    content: "";
    display: inline-block;
    content: "";
    margin-top: -4px;
    top: 50%;
    left: -10px;
    width: 10px;
    height: 10px;
    vertical-align: top;
    border-radius: 5px;
    background-color: var(--blue);
}
#gHeader .naviUl > li > a:after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background:var(--turquoise);
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/* コンテナ <div> - ドロップダウン コンテンツを配置するために必要 */
.dropdown {
    position: relative;
    display: inline-block;
}

/* ドロップダウン コンテンツ (デフォルトでは非表示) */
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/* ドロップダウン内のリンク */
.dropdown-content a {
    color: var(--black);
    border-bottom: 1px solid var(--lightblue);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1.4rem;
}
/* ホバー時のドロップダウンリンクの色を変更する */
.dropdown-content a:hover {
    color: var(--white);
    background: var(--turquoise);
}
/* ホバー時にドロップダウンメニューを表示する */
.dropdown:hover .dropdown-content {
    display: block;
}

/* ドロップダウンのコンテンツが表示されているときのドロップダウンボタンの背景色を変更 */
.dropdown:hover .dropbtn {
    background-color: var(--turquoise);
}

@media all and (min-width: 897px) {
    #gHeader .naviUl > li > a:hover {
        color: var(--turquoise);
        /* transform: scale(1.05); */
    }

    #gHeader .naviUl > li > a:hover::after {
        transform: scale(1, 1);
    }

    #gHeader .naviUl > li.on a {
        color: var(--turquoise);
    }
    #gHeader .naviUl > li.on > a:after {
        opacity: 1;
    }

    li.lin_lists:hover {
        transform: scale(1.2);
    }


    li.lin_lists:hover {
        transform: scale(1.2);
    }
}

.menuBox .naviUl > li > a[target="_blank"] {
    background-image: url("img/common/icon12.png");
    background-size: 17px auto;
}

#gHeader .contactLink {
    float: right;
}
#gHeader .contactLink a {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    width: 240px;
    text-align: center;
    color: var(--white);
    background: var(--lightblue);
    letter-spacing: 0.06em;
    box-sizing: border-box;
    margin-left: 20px;
    transition: .3s;
    -webkit-transition: .3s;
}
#gHeader .contactLink a img{
    margin: -2px 0px 0 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}


#gHeader .menu {
    display: none;
}
.menu span {
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: calc(50% - 14px);
    width: 28px;
    height: 1px;
    background: var(--lightblue);
}
.menu span:nth-of-type(1) {
    top: 24px;
}
.menu span:nth-of-type(2) {
    top: 35px;
}
.menu span:nth-of-type(3) {
    top: 46px;
}
.menu.on span {
    top: 35px !important;
    opacity: 0;
}
.menu.on span:nth-of-type(1) {
    transform: rotate(45deg);
    opacity: 1;
}
.menu.on span:nth-of-type(3) {
    transform: rotate(-45deg);
    opacity: 1;
}

.menu.active span:nth-of-type(1) {
    top: 8px !important;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.menu.active span:nth-of-type(2) {
	opacity: 0;
}

.menu.active span:nth-of-type(3){
    top: 18px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

.menuBox {
    display: none;
    position: fixed;
    right: 50px;
    top: 149px;
    width: 550px;
    background: #fff;
    z-index: 1000;
    height: calc(100% - 149px);
    overflow-y: auto;
    box-sizing: border-box;
}
.menuBox::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: calc(100% - 60px);
    height: calc(100% - 80px);
    /* background: #ffffffe8; */
    border: 1px solid #555;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.3s;
}
/* #g-nav:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: calc(100% - 80px);
    height: calc(100% - 160px);
    border: 1px solid var(--turquoise);
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
} */

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}

/*ナビゲーション*/
#g-nav ul {
    padding: 11rem 3rem 3rem;
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 999;
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left;
}
#g-nav li a{
    position: relative;
    display: flex;
    padding: 2rem 0 1rem 3rem;
    font-size: 2rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.06em;
    opacity: 1;
    color: var(--black);
    border-bottom: 1px solid var(--lightblue);
    justify-content: space-between;
}
#g-nav li a::before{
    position: absolute;
    content: "";
    display: inline-block;
    content: "";
    top: 50%;
    left: 0px;
    width: 10px;
    height: 10px;
    vertical-align: top;
    border-radius: 5px;
    background-color: var(--blue);
}


@media all and (min-width: 897px) {
    #gHeader .menu:hover {
        background: #EFEFEF;
	    transition: .3s;
		-webkit-transition: .3s;
    }
    #gHeader .menu:hover span {
        background-color: var(--turquoise);
    }
    #gHeader .menu.on:before {
        display: none;
    }
    #gHeader .contactLink a:hover {
        color: var(--white);
        background: var(--turquoise);
    }
    .menuBox .naviUl li a:hover:before {
        right: -4px;
    }
}
@media all and (max-width: 896px) {
	#gHeader {
        box-shadow: none;
        background: none;
	}
    #gHeader .hInner {
        flex-wrap: wrap;
        align-items: center;
        box-sizing: border-box;
        flex-direction: row;
        justify-content: space-between;
        align-content: center;
        background: var(--white);
    }
    #gHeader .hInner .link {
        display: none;
    }
    #gHeader .hInner .naviUl {
        display: none;
    }
    #gHeader .naviUl-list {
        display: none;
    }
	#gHeader h1 {
        width: 160px;
        padding: 10px 0 10px 0px;
    }
    #gHeader .menu {
        float: right;
        width: 60px;
        height: 60px;
        position: absolute;
        top: 24px;
        right: 0px;
        display: flex;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    #gHeader ul.naviUl {
        display: none;
    }
    #gHeader .contactLink  {
        display: none;
    }
    .menu span {
        left: calc(50% - 15px);
        width: 30px;
        height: 1px;
    }
    .menu span:nth-of-type(1) {
        top: 10px;
    }
    .menu span:nth-of-type(2) {
        top: 20px;
    }
    .menu span:nth-of-type(3) {
        top: 30px;
    }
    .menu p {
        color: #fff;
        font-size: 1.2rem;
        margin: 30px 0 0 0;
    }
    .menu.on span {
        top: 20px !important;
    }
    .menuBox {
        right: 0;
        top: 60px;
        width: 100%;
        height: calc(100% - 60px);
    }
    .menuBox .sp_naviUl {
        padding: 80px 40px 40px;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .menuBox .sp_naviUl .link-7 {
        display: block;
        font-size: 1.5rem;
        color: #e3692c;
        padding: 0px 0 20px;
        /* text-align: center; */
    }
    .menuBox .sp_naviUl >li {
        /* border-bottom: 1px solid #555; */
        margin: 10px 0;
    }
    .menuBox .sp_naviUl > li > a {
        position: relative;
        padding-bottom: 16px;
        display: block;
        text-align: center;
        font-size: 1.5rem;
        letter-spacing: 0.06em;
        color: var(--turquoise);
        /* background: url(img/common/next.png) no-repeat right center;
        background-size: 24px auto; */
    }
    .menuBox .naviUl > li:first-child > a {
        border-top: none;
    }
    .menuBox .subUl {
        margin: -3px 0 23px 15px;
        font-family: 'Noto Sans JP', sans-serif;
    }
    .menuBox .subUl li {
        margin-bottom: 12px;
    }
    .menuBox .subUl a {
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: #e8845d;
    }
    .menuBox .link {
        margin: 0 auto 50px;
        width: 186px;
    }
    .menuBox .link a {
        display: block;
        font-size: 1.6rem;
        color: white;
        text-align: center;
        padding: 10px;
        letter-spacing: 0.06em;
		border-radius: 30px;
        background-color: #e8845d;
    }


}

/*====================================================================================
	フッター　Footer
====================================================================================*/
#gFooter  {
    padding: 80px 100px;
    background: var(--white);
    position: relative;
}
#gFooter .content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px;
}
#gFooter .fInner {
    margin: 0 auto 80px;
    padding: 0px 0;
    gap: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#gFooter .fInner-button {
    padding: 40px;
}
#gFooter .fLogo {
    position: relative;
    padding: 20px;
}
#gFooter .fLogo img {
    width: 240px;
}



#gFooter .rBox-01,
#gFooter .rBox-02 {
    position: relative;
    padding: 40px;
}

#gFooter .naviUL {
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
}
#gFooter .naviUL li {
    padding: 10px;
    line-height: 2.5;
}
#gFooter .naviUL li .list {
    padding-left: 24px;
    font-size: 1.4rem;
}
#gFooter .naviUL li a {
    position: relative;
    padding: 8px 0;
    font-weight: 700;
}
#gFooter .naviUL li a::before {
    position: absolute;
    content: "";
    display: inline-block;
    content: "";
    margin-top: -4px;
    top: 50%;
    left: -30px;
    width: 10px;
    height: 10px;
    vertical-align: top;
    border-radius: 5px;
    background-color: var(--blue);
}
#gFooter .naviUL li .list a::before {
    position: absolute;
    content: "";
    margin-top: 0px;
    width: 16px;
    height: 1px;
    background: var(--black);
}
#gFooter .naviUL li a:after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0%;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background:var(--lightblue);
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}
#gFooter .naviUL li .link-6 {
    font-size: 1.8rem;
}


#gFooter address {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    font-style: normal;
    text-align: center;
}
.pageTop {
    position: fixed;
    right: 46px;
    bottom: 25px;
	z-index: 600;
}

/* ホバー */
@media all and (min-width: 897px) {
    #gFooter .fLogo:hover {
        opacity: 0.4;
        transition: all .4s ease;
    }
    #gFooter .naviUL li a:hover {
        color: var(--turquoise);
        /* transform: scale(1.05); */
    }

    #gFooter .naviUL li a:hover::after {
        transform: scale(1, 1);
    }

    #gFooter .naviUl > li.on a {
        color: var(--turquoise);
    }
    #gFooter .naviUl > li.on > a:after {
        opacity: 1;
    }

    li.lin_lists:hover {
        transform: scale(1.2);
    }


    li.lin_lists:hover {
        transform: scale(1.2);
    }

    .pageTop a:hover {
        opacity: 0.7;
    }
}

/* SP */
@media all and (max-width: 896px) {
    #gFooter  {
        padding: 22px 0;
        border-top: 1px solid #efeded;
    }
    .special #gFooter {
        border-top: none;
    }

    #gFooter .fInner {
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
    }

    #gFooter .rBox-01,
    #gFooter .rBox-02 {
        width: 100%;
        padding: 0px;
    }
    #gFooter .rBox-01,
    #gFooter .rBox-02 {
        border-left: none;
        border-right: none;
    }
    #gFooter .naviUL {
        margin-left: auto;
        margin-right: auto;
        background-color: transparent;
        align-items: flex-start;
    }
    #gFooter .naviUL li {
        padding: 10px;
        width: 200px;
        line-height: 2.5;
    }

    #gFooter address {
        font-size: 1.2rem;
        text-align: center;
    }
    .pageTop {
        display: none;
    }
}

/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(60px);
	transform: translateY(60px);
	transition: transform 1s, opacity 1s;
}
.fadeInUp.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/*====================================================================================
	各ページ共通のパーツ
====================================================================================*/
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    max-width: 1280px;
	margin: 0 auto;
	padding: 2.5rem;
}
@media all and (max-width: 896px) {
    .content {
        max-width: inherit;
        padding: 0 24px;
    }
}

/*------------------------------------------------------------
	comVisual
------------------------------------------------------------*/
.comVisual {
    position: relative;
    height: 560px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url("img/common/page_fv_2.jpg") no-repeat center center;
    background-size: cover;
}
.comVisual:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
    transition: 0.3s ease;
}
@media all and (max-width: 896px) {
    .comVisual {
        height: 240px;
        background-size: cover;
    }
}

/*------------------------------------------------------------
	comVisual2
------------------------------------------------------------*/
.comVisual_2 {
    position: relative;
    height: 560px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: var(--blue);
    background-size: cover;
}
@media all and (max-width: 896px) {
    .comVisual_2 {
        background-size: cover;
    }
}

/*------------------------------------------------------------
    topBgWrap
------------------------------------------------------------*/
.topBgWrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.topBgText {
    color: var(--blue);
}
.topBgPhotoBox {
    width: 50%;
}

@media all and (max-width: 896px) {
    .topBgWrap {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .topBgText {
        margin-bottom: 40px;
    }
    .topBgPhotoBox {
        width: auto;
    }
}

/*------------------------------------------------------------
    パンくずリスト.topBg pagePath
------------------------------------------------------------*/
.topBg {
    position: relative;
    margin: 0px 120px;
    z-index: 2;
}
#pagePath {
    padding: 30px 0;
    color: var(--white);
}
#pagePath li {
    padding-right: 20px;
	display: inline;
	letter-spacing: 0.08em;
}
#pagePath li a {
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid;
    color: var(--white);
}
#pagePath li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
    .topBg {
        margin: 0px 20px;
    }
    #pagePath {
        max-width: inherit;
        padding: 8px 0;
    }
    #pagePath li {
        margin-right: 4px;
        padding-right: 8px;
    }
}

/*------------------------------------------------------------
	ページタイトル　maintitle
------------------------------------------------------------*/
.maintitle {
    position: relative;
    margin: 0px 120px;
    font-size: 6.5rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.1em;
    z-index: 5;
    color: var(--white);
}
.maintitle span {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}
/* タブレット */
@media all and (max-width: 896px) {
    .maintitle {
        margin: 0px 20px;
        font-size: 2.5rem;
    }
    .maintitle span {
        margin-top: 4px;
        font-size: 1.4rem;
    }
}


/*------------------------------------------------------------
	FVの見出し　headLine01
------------------------------------------------------------*/
.headLine01 {
    padding: 20px 40px;
    display: block;
    font-size: 5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
    background: var(--white);
    z-index: 2;
}

/* タブレット */
@media all and (max-width: 896px) {
    .headLine01 {
        padding: 20px;
        font-size: 2.4rem;
    }
}

/*------------------------------------------------------------
	各見出し　headLine02
------------------------------------------------------------*/
.headLine02 {
    position: relative;
    margin-bottom: 40px;
    text-align: left;
    color: var(--blue);
    border-bottom: 1px solid var(--gray);
    z-index: 2;
}
.headLineWhite02 {
    position: relative;
    margin-bottom: 40px;
    text-align: left;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    z-index: 2;
}
.headLine02 .sub, .headLineWhite02 .sub {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.headLine02 .sub::before {
    content: '';
    width: 80px;
    height: 1px;
    background-color: var(--blue);
    margin-right: 20px;
}
.headLineWhite02 .sub::before {
    content: '';
    width: 80px;
    height: 1px;
    background-color: var(--white);
    margin-right: 20px;
}
.headLine02 .main, .headLineWhite02 .main {
    margin-bottom: 20px;
    display: block;
    font-size: 4rem;
    letter-spacing: 0.1em;
}

@media all and (max-width: 896px) {
    .headLine02, .headLineWhite02 {
        margin-bottom: 20px;
    }
    .headLine02 .sub, .headLineWhite02 .sub {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
    }
    .headLine02 .sub::before, .headLineWhite02 .sub::before  {
        width: 40px;
        height: 1px;
        margin-right: 10px;
    }
    .headLine02 .main, .headLineWhite02 .main {
        margin-bottom: 10px;
        display: block;
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }
}

/*------------------------------------------------------------
	小見出し　headLine03
------------------------------------------------------------*/
.headLine03 {
    position: relative;
    margin-bottom: 32px;
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
    z-index: 2;
}
.headLineWhite03 {
    position: relative;
    margin-bottom: 32px;
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--white);
    z-index: 2;
}
.headLine03 .sub {
    margin-bottom: 8px;
    display: block;
    font-size: 1.5rem;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    z-index: 2;
}

/* タブレット */
@media all and (max-width: 896px) {
    .headLine03, .headLineWhite03 {
        margin-bottom: 16px;
        font-size: 2.3rem;
    }
    .headLine03 .sub {
        font-size: 1.6rem;
    }
}

/*------------------------------------------------------------
	小見出し　headLine04
------------------------------------------------------------*/
.headLine04 {
    margin-bottom: 20px;
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
}
.headLineWhite04 {
    margin-bottom: 20px;
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--white);
}


/* タブレット */
@media all and (max-width: 896px) {
    .headLine04, .headLineWhite04 {
        font-size: 2rem;
    }
}

/*------------------------------------------------------------
	ポイント見出し　pointTitle
------------------------------------------------------------*/
.pointTitle {
    padding: 12px;
    border-radius: 100px;
    display: block;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--blue);
}
/* タブレット */
@media all and (max-width: 896px) {
    .pointTitle {
        padding: 12px;
        font-size: 1.8rem;
    }
}


/*------------------------------------------------------------
	comBox
------------------------------------------------------------*/
.comBox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 361px;
    background: url("img/common/com_box_bg.jpg") no-repeat center center;
    background-size: cover;
}
@media all and (max-width: 896px) {
    .comBox {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 182px;
        background: url("img/common/sp_com_box_bg.jpg") no-repeat center center;
        background-size: cover;
    }
}

/*------------------------------------------------------------
	comMore
------------------------------------------------------------*/
.comMore {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.comMore01 {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.comMore a,
.comMore01 a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 60px;
    color: var(--white);
    background: var(--lightblue);
    border: 1px solid var(--white);
    letter-spacing: 0.08em;
    overflow: hidden;
}
.comMore a:before,
.comMore01 a:before  {
    margin-top: -16px;
    position: absolute;
    right: 30px;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url("img/icon/icon_link01_white.png") no-repeat right center;
    background-size: 32px auto;
    content: "";
    transition: .3s;
    -webkit-transition: .3s;
    z-index: 2;
}
.comMore a:after,
.comMore01 a:after {
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    left: auto;
    right: 0;
    background: var(--gd-pink-purple);
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition-duration: 0.5s;
    -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition-duration: 0.5s;
    -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.comMore .info,
.comMore01 .info  {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    z-index: 2;
}

@media all and (min-width: 897px) {
    .comMore a:hover,
    .comMore01 a:hover {
        background-color: var(--gd-pink-purple);
    }
    .comMore a:hover:after,
    .comMore01 a:hover:after {
        width: 100%;
        right: auto;
        left: 0;
    }
	.comMore a:hover:before,
    .comMore01 a:hover:before {
		right: 16px;
    	background: url("img/icon/icon_link01_white.png") no-repeat right center;
        background-size: 24px auto;
	}
}
@media all and (max-width: 896px) {
    .comMore {
        margin-top: 20px;
    }
    .comMore a,
    .comMore01 a {
        margin: 0 auto;
        height: 70px;
        border-width: 1px;
        font-size: 1.8rem;
    }
    .comMore a:before,
    .comMore01 a:before {
        margin-top: -14px;
        width: 28px;
        height: 28px;
        background-size: 28px auto;
    }
}


/* ==========================================
	各ページ下部　お問い合わせセクション　リンク
========================================== */
.contactSec {
    position: relative;
    background: var(--blue);
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}
.contactSec .contactBox {
    position: relative;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: url("img/common/contact_img.jpg") no-repeat center;
    background-size: cover;
    border: 1px solid var(--white);

}
.contactSec .contactBox:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
    transition: 0.3s ease; /* スムーズなトランジション追加 */
}
.contactSec .contactBox::after {
    margin-top: -10px;
    position: absolute;
    right: 100px;
    top: 40%;
    width: 80px;
    height: 80px;
    background: url("img/icon/icon_link01_white.png") no-repeat right center;
    background-size: 80px;
    content: "";
    transition: .3s;
    -webkit-transition: .3s;
    z-index: 2;
}
.contactSec .contactBox .title {
    width: 48%;
    position: relative;
    z-index: 100;
}
.contactSec .contactBox .text {
    width: 48%;
    position: relative;
    z-index: 100;
}
.contactSec .contactBox .text p {
    font-weight: 800;
    color: var(--white);
}

@media all and (min-width: 897px) {
    /* ホバー時にbeforeの背景色を変更 */
    .contactSec .contactBox:hover:before {
        background: var(--lightblue-translucent);
    }
    /* もしaタグで囲まれている場合はこちらも追加 */
    .contactSec a:hover .contactBox:before {
        background: var(--lightblue-translucent);
    }
    .contactSec a:hover .contactBox::after {
        right: 90px;
    }
}
/* タブレット  */
@media all and (max-width: 896px) {
    .contactSec {
        /* padding: 48px 24px; */
    }
    .contactSec .contactBox {
        padding: 32px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }
    .contactSec .contactBox::after {
        position: absolute;
        right: 20px;
        top: 50%;
        width: 40px;
        height: 40px;
        background-size: 40px;
    }
    .contactSec .contactBox .title {
        width: 80%;
    }
    .contactSec .contactBox .text {
        width: 80%;
    }
    .contactSec .contactBox .text p {

    }

}

/*------------------------------------------------------------
	各ページ共通のセクション
------------------------------------------------------------*/
/* KV動画 */
.mainVisual .topBox {
    position: relative;
}
.mainVisual .mainImg {
    position: relative;
    margin: 0 auto;
}


/*====================================================================================
	トップページ　TopPage
====================================================================================*/
.indexPage {

}
.indexPage .MainVisual {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url("img/common/contact_img.png") no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover
}
.indexPage .MainVisual:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--blue-translucent);
}
.indexPage .MainVisual .fvWrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    z-index: 2;
}
.indexPage .MainVisual .fvWrap .copyText {
    margin: 20px 0;
    padding: 0 20px 20px;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: var(--white);
}
.indexPage .MainVisual .fvWrap .comMore a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 60px;
    color: var(--white);
    background: var(--lightblue);
    border: 1px solid var(--white);
    letter-spacing: 0.08em;
    overflow: hidden;
}

/* SP版 index */
@media all and (max-width: 896px) {
    .indexPage {

    }
    .indexPage .MainVisual {
        height: 500px;
    }
    .indexPage .MainVisual .fvWrap .copyText {
        margin: 20px;
        padding: 0 0px 20px;
        font-size: 2rem;
    }
    .indexPage .MainVisual .fvWrap .comMore a {
        margin: 0 auto;
        width: 100%;
        height: 70px;
        border-width: 1px;
    }
    .indexPage .MainVisual .fvWrap .comMore .info {
        font-size: 1.6rem;
    }
}

/* -----------------------------------------------
    indexPage indexNewsSec お知らせ
----------------------------------------------- */
.indexPage .indexNewsSec {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--turquoise) 100%);
}
.indexPage .indexNewsSec .index-news-ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.indexPage .indexNewsSec .index-news-li {
    width: 32%;
    background: var(--white);
}
.indexPage .indexNewsSec .index-news-li a {
    padding: 30px;
    display: block;
    position: relative;
    line-height: 1.875;
    letter-spacing: 0.08em;
    text-align: start;
}
.indexPage .indexNewsSec .index-news-li a .textBox {

}
.indexPage .indexNewsSec .index-news-li a .textBox .date {
    position: relative;
    font-size: 1.6rem;
    letter-spacing: 0.3px;
    color: var(--turquoise);
    z-index: 5;
}
.indexPage .indexNewsSec .index-news-li a .textBox .newsTitle {
    position: relative;
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--black);
    z-index: 5;
}

/* ホバー */
@media all and (min-width: 897px) {
    .indexPage .indexNewsSec .index-news-li a:hover {
        color: var(--white);
        background: var(--turquoise-translucent);
        transition: all 0.5s ease;
    }
    .indexPage .indexNewsSec .index-news-li a:hover .date {
        color: var(--white);
        transition: all 0.5s ease;
    }
    .indexPage .indexNewsSec .index-news-li a:hover .newsTitle {
        color: var(--white);
        transition: all 0.5s ease;
    }

    /*hoverした際の線の形状*/
    .indexPage .indexNewsSec .index-news-li:hover::before,
    .indexPage .indexNewsSec .index-news-li:hover::after{
        width:calc(100% - 2px);
        height:calc(100% - 2px);
        border-color:var(--turquoise);
    }
}
/* SP版 index */
@media all and (max-width: 896px) {
    /* index news一覧 */
    .indexPage .indexNewsSec {
        margin: 0px;
    }
    .indexPage .indexNewsSec .index-news-ul {
        display: flex;
        gap: 20px 3%;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .indexPage .indexNewsSec .index-news-li {
        width: 100%;
    }
}

/* -----------------------------------------------
    indexPage IndexAboutSec our-business
----------------------------------------------- */
.indexPage .IndexAboutSec {
    position: relative;
    padding: 80px 0;
    margin: 80px 0;
}
.indexPage .IndexAboutSec .Wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.indexPage .IndexAboutSec .Wrap .textBox {
    width: 48%;
}
.indexPage .IndexAboutSec .Wrap .textBox p {
    margin-bottom: 40px;
    padding-right: 20px;
}
.indexPage .IndexAboutSec .Wrap .photoBox {
    width: 48%;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .indexPage .IndexAboutSec {
        padding: 40px 0;
        margin: 40px 0;
    }
    .indexPage .IndexAboutSec .Wrap {
        flex-direction: column-reverse;
    }
    .indexPage .IndexAboutSec .Wrap .textBox {
        width: auto;
    }
    .indexPage .IndexAboutSec .Wrap .textBox p {
        margin-bottom: 40px;
        padding-right: 0px;
    }
    .indexPage .IndexAboutSec .Wrap .photoBox {
        margin-bottom: 20px;
        width: auto;
    }
}


/* -----------------------------------------------
    indexPage IndexServiceSec 講師紹介
----------------------------------------------- */
.indexPage .IndexServiceSec {
    position: relative;
    padding: 80px 0;
    background: var(--blue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.indexPage .IndexServiceSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
}
.indexPage .IndexServiceSec .Wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    z-index: 2;
}
.indexPage .IndexServiceSec .Wrap a {
    position: relative;
}
.indexPage .IndexServiceSec .Wrap a::before {
    margin-top: -10px;
    position: absolute;
    right: 100px;
    top: 40%;
    width: 80px;
    height: 80px;
    background: url(img/icon/icon_link01_white.png) no-repeat right center;
    background-size: 80px;
    content: "";
    transition: .3s;
    -webkit-transition: .3s;
    z-index: 2;
}
.indexPage .IndexServiceSec .Wrap a:hover {
    color: var(--white);
    background: var(--turquoise);
}
.indexPage .IndexServiceSec .Wrap a:hover::before {
    right: 90px;
}
.indexPage .IndexServiceSec .Wrap .Box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all .3s;
}
.indexPage .IndexServiceSec .Wrap .Box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--blue-translucent);
}
.indexPage .IndexServiceSec .Wrap .Box .textBox {
    position: relative;
    padding: 20px;
    width: 60%;
}
.indexPage .IndexServiceSec .Wrap .Box .textBox p {
    color: var(--white);
}
.indexPage .IndexServiceSec .Wrap .Box .photoBox {
    position: relative;
    width: 30%;
}
.indexPage .IndexServiceSec .Wrap .Box .photoBox img {
    height: 240px;
    width: auto;
    object-fit: cover;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .indexPage .IndexServiceSec .Wrap a::before {
        margin-top: -10px;
        right: 0px;
        top: 80%;
        width: 40px;
        height: 40px;
        background-size: 40px;
    }
    .indexPage .IndexServiceSec .Wrap .Box {
        flex-direction: column;
        padding: 0;
    }
    .indexPage .IndexServiceSec .Wrap .Box .photoBox {
        width: auto;
        padding-top: 20px;
    }
    .indexPage .IndexServiceSec .Wrap .Box .textBox {
        padding: 20px;
        width: auto;
    }
}

/* -----------------------------------------------
    indexPage IndexCompanySec 会社概要
----------------------------------------------- */
.indexPage .IndexCompanySec {
    background: var(--darkblue);
    padding: 80px 0;
}
.indexPage .IndexCompanySec .Wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.indexPage .IndexCompanySec .Wrap .textBox {
    width: 48%;
}
.indexPage .IndexCompanySec .Wrap .textBox p {
    color: var(--white);
}
.indexPage .IndexCompanySec .Wrap .photoBox {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .indexPage .IndexCompanySec .Wrap {
        flex-direction: column-reverse;
    }
    .indexPage .IndexCompanySec .Wrap .textBox {
        width: auto;
    }
    .indexPage .IndexCompanySec .Wrap .photoBox {
        margin-bottom: 30px;
        width: auto;
        align-items: center;
        justify-content: center;
    }
}


/*====================================================================================
	ヒューマンソリューションとは　AboutPage
====================================================================================*/
.aboutPage {
    position: relative;
    padding: 80px 0;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage {
        padding: 40px 0;
    }
}
.aboutPage .sectionLink {
    padding: 40px 0;
}
.aboutPage .sectionLink ul {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.aboutPage .sectionLink ul li {
    width: 30%;
}
.aboutPage .sectionLink ul li a {
    padding: 0 15px;
    display: flex;
    height: 60px;
    position: relative;
    letter-spacing: 0.06em;
    font-weight: 500;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    color: var(--lightblue);
    border-bottom: 1px solid var(--lightblue);
}
.aboutPage .sectionLink ul li a:before {
	content:'';
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	height: 1px;
	transition:all 0.3s ease-in-out;
    z-index: -1;
    border-radius: 20px 20px 0 0;
}
.aboutPage .sectionLink ul li a:after {
    margin-top: 2px;
    position: absolute;
    right: 5px;
    top: 25%;
    width: 30px;
    height: 30px;
    background: url("img/icon/icon_link04_blue.png") no-repeat right center;
    background-size: 30px auto;
    content: "";
}
/* ホバー */
@media all and (min-width: 897px) {
.aboutPage .sectionLink ul li a:hover {
    color: var(--white);
    background: var(--turquoise);
    border-bottom: 1px solid var(--turquoise);
}
.aboutPage .sectionLink ul li a:hover:after {
    margin-top: 2px;
    position: absolute;
    right: 5px;
    top: 25%;
    width: 30px;
    height: 30px;
    background: url("img/icon/icon_link04_white.png") no-repeat right center;
    background-size: 30px auto;
    content: "";
}
}
/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .sectionLink {
        padding: 0 0 40px;
    }
    .aboutPage .sectionLink ul {
        flex-direction: column;
    }
    .aboutPage .sectionLink ul li {
        width: auto;
        margin-bottom: 20px;
    }
}

/* -----------------------------------------------
	aboutPage　About 代表挨拶
----------------------------------------------- */
.aboutPage .aboutSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.aboutPage .aboutSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
}
.aboutPage .aboutSec p {
    position: relative;
    margin-bottom: 40px;
    color: var(--white);
    z-index: 2;
}
/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .aboutSec {
        padding-bottom: 40px;
    }
}

/* -----------------------------------------------
    aboutPage trainingSec 花のある研修会
----------------------------------------------- */
.aboutPage .trainingSec {
    padding: 80px 0;
}
/* 五感活用でウェルビーングを高め効果を増幅 */
.aboutPage .trainingSec .wrap01 {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.aboutPage .trainingSec .wrap01 .photoBox {
    width: 48%;
}
.aboutPage .trainingSec .wrap01 .photoBox img {
    width: 100%;
	object-fit: cover;
}
.aboutPage .trainingSec .wrap01 .textBox {
    width: 48%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.aboutPage .trainingSec .wrap01 .textBox p {
    margin-bottom: 40px;
}
/* 研修実施方法 */
.aboutPage .trainingSec .wrap02 {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.aboutPage .trainingSec .wrap02 .textBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.aboutPage .trainingSec .wrap02 .textBox p {
    margin-bottom: 40px;
}
/* 画像と写真による紹介 */
.aboutPage .trainingSec .wrap03 {
    padding-bottom: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.aboutPage .trainingSec .wrap03 .Box {
    position: relative;
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid var(--gray);
}
.aboutPage .trainingSec .wrap03 .Box .photoBox {
    width: 30%;
}
.aboutPage .trainingSec .wrap03 .Box .photoBox img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.aboutPage .trainingSec .wrap03 .Box .textBox {
    padding: 20px;
    width: 60%;
    background: var(--blue);
}
.aboutPage .trainingSec .wrap03 .Box .textBox p {
    height: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

/* 対象となるプログラム */
.aboutPage .trainingSec .point {
    padding: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    border: 1px solid var(--gray);
}
.aboutPage .trainingSec .point .titleBox {
    margin-right: 30px;
    width: 30%;
}
.aboutPage .trainingSec .point .textBox {

}
.aboutPage .trainingSec .point .textBox p {
    position: relative;
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
}
.aboutPage .trainingSec .point .textBox p::before {
    content: '';
    flex-shrink: 0; /* 重要：縮小を防ぐ */
    margin-right: 20px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--blue);
}

/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .trainingSec {
        padding-bottom: 40px;
    }
    .aboutPage .trainingSec .wrap01 {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .aboutPage .trainingSec .wrap01 .photoBox {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .aboutPage .trainingSec .wrap01 .textBox {
        width: 100%;
        margin: 0;
    }
    .aboutPage .trainingSec .wrap01 .textBox p {
        margin-bottom: 20px;
    }

    /* 画像と写真による紹介 */
    .aboutPage .trainingSec .wrap03 {
        padding-bottom: 40px;
        flex-direction: column;
    }
    .aboutPage .trainingSec .wrap03 .Box {
        margin-bottom: 20px;
        width: 100%;
    }
    .aboutPage .trainingSec .wrap03 .Box .photoBox {
        width: auto;
    }
    .aboutPage .trainingSec .wrap03 .Box .textBox {
        width: 100%;
    }
    .aboutPage .trainingSec .wrap03 .Box .textBox p {
        padding: 12px;
        font-size: 1.5rem;
    }

    /* 対象となるプログラム */
    .aboutPage .trainingSec .point {
        padding: 40px;
        flex-direction: column;
    }
    .aboutPage .trainingSec .point .titleBox {
        margin: 0 0 20px 0;
        width: 100%;
    }
    .aboutPage .trainingSec .point .textBox {

    }
    .aboutPage .trainingSec .point .textBox p {
        position: relative;
        margin: 10px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 1.6rem;
        font-weight: 800;
    }
    .aboutPage .trainingSec .point .textBox p::before {
        margin-right: 20px;
        width: 16px;
        height: 16px;
        border-radius: 100%;
        background-color: var(--blue);
    }
}

/* -----------------------------------------------
    aboutPage solutionSec HRソリューション -人事代行-
----------------------------------------------- */
.aboutPage .solutionSec {
    padding: 80px 0;
}
/* 対象となるプログラム */
.aboutPage .solutionSec .point {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border: 1px solid var(--gray);
}
.aboutPage .solutionSec .point .titleBox {
    padding: 20px;
    background: var(--blue);
}
.aboutPage .solutionSec .point .titleBox .boxTitle {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--white);
}
.aboutPage .solutionSec .point .wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}
.aboutPage .solutionSec .point .photoBox {
    width: 48%;
}
.aboutPage .solutionSec .point .textBox {
    padding: 20px;
    margin: 0 auto;
    width: 48%;
}
.aboutPage .solutionSec .point .textBox p {
    position: relative;
    margin: 16px;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    border-bottom: 1px solid var(--gray);
}
.aboutPage .solutionSec .point .textBox p::before {
    content: '';
    flex-shrink: 0; /* 重要：縮小を防ぐ */
    margin-right: 20px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--blue);
}
/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .solutionSec .point .photoBox {
        width: auto;
    }
    .aboutPage .solutionSec .point .textBox {
        width: auto;
    }
}


/* 私たちが解決する課題 */
.aboutPage .solutionSec .issueWrap {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.aboutPage .solutionSec .issueWrap .photoBox {
    width: 48%;
}
.aboutPage .solutionSec .issueWrap .photoBox img {
    width: 100%;
	object-fit: cover;
}
.aboutPage .solutionSec .issueWrap .textBox {
    width: 48%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.aboutPage .solutionSec .issueWrap .textBox p {
    margin-bottom: 40px;
}

/* 具体例 */
.aboutPage .solutionSec .caseWrap {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 20px;
}
.aboutPage .solutionSec .caseWrap .Box {
    width: 44%;
    border: 1px solid var(--gray);
    border-left: 10px solid var(--lightblue);
}
.aboutPage .solutionSec .caseWrap .Box p {
    margin: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--darkblue);
}



/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .solutionSec .point .titleBox .boxTitle {
        font-size: 2rem;
    }
    .aboutPage .solutionSec .point .textBox p {
        margin: 16px;
        padding-bottom: 10px;
        font-size: 1.6rem;
    }

    /* 私たちが解決する課題 */
    .aboutPage .solutionSec .issueWrap {
        padding: 40px 0;
        flex-direction: column;
    }
    .aboutPage .solutionSec .issueWrap .photoBox {
        margin-bottom: 20px;
        width: 100%;
    }
    .aboutPage .solutionSec .issueWrap .textBox {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .aboutPage .solutionSec .issueWrap .textBox p {
        margin-bottom: 20px;
    }

    /* 具体例 */
    .aboutPage .solutionSec .caseWrap {
        padding: 20px 0;
        flex-direction: column;
    }
    .aboutPage .solutionSec .caseWrap .Box {
        width: 100%;
    }
    .aboutPage .solutionSec .caseWrap .Box p {
        margin: 20px;
        font-size: 1.6rem;
    }

}


/* -----------------------------------------------
	aboutPage　strengths 私たちの強み
----------------------------------------------- */
.aboutPage .strengthsSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.aboutPage .strengthsSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--lightblue-translucent);
}
.aboutPage .strengthsSec p {
    position: relative;
    margin-bottom: 40px;
    color: var(--white);
    z-index: 2;
}

.aboutPage .strengthsSec .caseWrap {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    z-index: 2;
}
.aboutPage .strengthsSec .caseWrap .photoBox {
    width: 30%;
}
.aboutPage .strengthsSec .caseWrap .photoBox img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.aboutPage .strengthsSec .caseWrap .textBox {
    padding: 20px;
    width: 60%;
}
.aboutPage .strengthsSec .caseWrap .textBox p {
    margin-bottom: 0px;
    color: var(--black);
}

/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .strengthsSec {
        padding-bottom: 40px;
    }
    .aboutPage .strengthsSec .caseWrap {
        margin-bottom: 40px;
        flex-direction: column;
    }
    .aboutPage .strengthsSec .caseWrap .photoBox {
        width: 100%;
    }
    .aboutPage .strengthsSec .caseWrap .photoBox img {
        width: 100%;
        object-fit: cover;
        aspect-ratio: 3 / 2;
    }
    .aboutPage .strengthsSec .caseWrap .textBox {
        padding: 20px;
        width: auto;
    }
    .aboutPage .strengthsSec .caseWrap .textBox p {
        margin-bottom: 0px;
        color: var(--black);
    }
}

/* -----------------------------------------------
	aboutPage　approach 解決へのアプローチ
----------------------------------------------- */
.aboutPage .approachSec {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}
.aboutPage .approachSec p {
    position: relative;
    margin-bottom: 40px;
    color: var(--black);
    z-index: 2;
}

.aboutPage .approachSec .caseWrap {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}
.aboutPage .approachSec .caseWrap .Box {
    margin-bottom: 40px;
    width: 30%;
    border: 1px solid var(--gray);
}
.aboutPage .approachSec .caseWrap .Box .titleBox {
    padding: 20px;
    background: var(--blue);
}
.aboutPage .approachSec .caseWrap .Box .titleBox h4 {
    margin-bottom: 0;
    text-align: center;
}
.aboutPage .approachSec .caseWrap .Box img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.aboutPage .approachSec .caseWrap .Box p {
    margin-bottom: 0px;
    padding: 20px;
    text-align: center;
    color: var(--black);
}

/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .approachSec {
        padding-bottom: 40px;
    }
    .aboutPage .approachSec .caseWrap {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
    }
    .aboutPage .approachSec .caseWrap .Box {
        margin-bottom: 40px;
        width: 100%;
    }
    .aboutPage .approachSec .caseWrap .Box .titleBox {
        padding: 20px;
    }
    .aboutPage .approachSec .caseWrap .Box .titleBox h4 {
        margin-bottom: 0;
        text-align: center;
    }
    .aboutPage .approachSec .caseWrap .Box img {
        width: 100%;
        object-fit: cover;
        aspect-ratio: 3 / 2;
    }
    .aboutPage .approachSec .caseWrap .Box p {
        margin-bottom: 0px;
        padding: 20px;
        text-align: center;
        color: var(--black);
    }
}

/* -----------------------------------------------
	aboutPage　partner お取引先の企業さま
----------------------------------------------- */
.aboutPage .partnerSec {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}
/* 企業一覧 */
.aboutPage .partnerSec .caseWrap {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}
.aboutPage .partnerSec .caseWrap .Box {
    width: 22%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    border: 1px solid var(--gray);
    border-left: 10px solid var(--lightblue);
}
.aboutPage .partnerSec .caseWrap .Box p {
    margin: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--darkblue);
}

/* テキスト */
.aboutPage .partnerSec .titleBox {
    padding: 20px 0;
    text-align: center;
}

/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .aboutPage .partnerSec {
        padding: 40px 0;
    }
    /* 企業一覧 */
    .aboutPage .partnerSec .caseWrap {
        padding: 20px 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;
    }
    .aboutPage .partnerSec .caseWrap .Box {
        width: auto;
    }
    .aboutPage .partnerSec .caseWrap .Box p {
        margin: 10px;
        font-size: 1.3rem;
    }
}

/* -----------------------------------------------
	aboutPage Contact お問い合わせ遷移
----------------------------------------------- */
.TransitionSec {
    background: linear-gradient(135deg, var(--darkblue) 0%, var(--blue) 100%);
    color: white;
    padding: 60px 0;
}
.TransitionSec .contactContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.TransitionSec .contactContainer h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: white;
}
.TransitionSec .contactContainer p {
    margin-bottom: 30px;
    line-height: 2;
    font-size: 2rem;
    color: white;
}


/* タブレット  */
@media all and (max-width: 896px) {
    .contact h2 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    .contact p {
        font-size: 1.5rem;
    }

}

/*====================================================================================
	Our Business　businessPage
====================================================================================*/
.businessPage {
    position: relative;
    padding: 0;
}

/* -----------------------------------------------
	.businessPage　About 代表挨拶
----------------------------------------------- */
.businessPage .aboutSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .aboutSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
}
.businessPage .aboutSec p {
    position: relative;
    margin-bottom: 40px;
    color: var(--white);
    z-index: 2;
}
/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .businessPage .aboutSec {
        padding-bottom: 40px;
    }
}


/* -----------------------------------------------
	businessPage　worriesSec よくある「ヒト」の悩み
----------------------------------------------- */
.businessPage .worriesSec {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}
.businessPage .worriesSec h3 {
    text-align: center;
}
.businessPage .worriesSec .bgWrap {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--gray);
}
.businessPage .worriesSec .caseWrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}
.businessPage .worriesSec .caseWrap .Box {
    margin-bottom: 40px;
    width: 48%;
    border: 1px solid var(--gray);
}
.businessPage .worriesSec .caseWrap .Box .titleBox {
    padding: 20px;
    background: var(--blue);
}
.businessPage .worriesSec .caseWrap .Box .titleBox h4 {
    margin-bottom: 0;
    text-align: center;
}
.businessPage .worriesSec .caseWrap .Box p {
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    color: var(--black);
}

@media all and (max-width: 896px) {
    .businessPage .worriesSec .bgWrap {
        padding: 20px;
    }
    .businessPage .worriesSec .caseWrap .Box {
        margin-bottom: 40px;
        width: auto;
    }
}

/* -----------------------------------------------
	businessPage　riskSec 人事問題を放置すると起こるリスク
----------------------------------------------- */
.businessPage .riskSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
}
.businessPage .riskSec h2 {
    text-align: center;
}
.businessPage .riskSec .caseWrap {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
.businessPage .riskSec .caseWrap .Box {
    width: 22%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    background: var(--white);
    border: 1px solid var(--gray);
    border-left: 10px solid var(--lightblue);
}
.businessPage .riskSec .caseWrap .Box p {
    margin-bottom: 0px;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--black);
}
.businessPage .riskSec .titleBox h3 {
    position: relative;
    text-align: center;
}
.businessPage .riskSec .titleBox h3::before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateY(0%) translateX(-50%); 
    width: 80px;
    height: 80px;
    background: url("img/icon/icon_link04_white.png") no-repeat center;
    background-size: 80px;
    content: "";
    transition: .3s;
    -webkit-transition: .3s;
    z-index: 2;
}

@media all and (max-width: 896px) {
    .businessPage .riskSec .caseWrap .Box {
        width: 100%;
    }
}

/* -----------------------------------------------
	businessPage　numbersSec よくある「ヒト」の悩み ～社員規模別～
----------------------------------------------- */
.businessPage .numbersSec {
    position: relative;
    padding: 80px 0;
    background: var(--blue);
}
.businessPage .numbersSec h3 {
    text-align: center;
}
.businessPage .numbersSec .bgWrap {
    position: relative;
    margin-bottom: 40px;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    z-index: 2;
}
.businessPage .numbersSec .caseWrap {
    position: relative;
    padding-bottom: 40px;
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    background: var(--white);
    z-index: 2;
}
.businessPage .numbersSec .caseWrap .photoBox {

}
.businessPage .numbersSec .caseWrap .textBox {
    padding: 20px;
}
.businessPage .numbersSec .caseWrap .textBox p {
    margin-bottom: 0px;
    color: var(--black);
}

@media all and (max-width: 896px) {
.businessPage .numbersSec .caseWrap {
    margin-bottom: 40px;
    padding-bottom: 20px;
    width: auto;
    }
}

/* -----------------------------------------------
	businessPage　introduceSec 人事専任を配属して社内がこう変わったら...
----------------------------------------------- */
.businessPage .introduceSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .introduceSec .caseWrap {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    z-index: 2;
}
.businessPage .introduceSec .caseWrap .photoBox {
    width: 30%;
}
.businessPage .introduceSec .caseWrap .textBox {
    padding: 20px;
    width: 60%;
}
.businessPage .introduceSec .caseWrap .textBox p {
    margin-bottom: 0px;
    color: var(--black);
}

@media all and (max-width: 896px) {
    .businessPage .introduceSec .caseWrap .photoBox {
        width: auto;
    }
    .businessPage .introduceSec .caseWrap .textBox {
        padding: 20px;
        width: auto;
    }
}

/* -----------------------------------------------
	businessPage　costSec 料金表
----------------------------------------------- */
.businessPage .costSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .costSec .caseIntro {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}
.businessPage .costSec .costBox {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: var(--white);
}
.businessPage .costSec .costIntro .costTitle {
    position: relative;
    display: block;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
}
.businessPage .costSec .costWrap {
    position: relative;
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    z-index: 2;
}
.businessPage .costSec .costWrap .costSubTitle {
    position: relative;
    width: 42%;
    display: block;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
}
.businessPage .costSec .costText {
    position: relative;
    margin: 20px 0 12px;
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
}
.businessPage .costSec .costWrap .textBox {
    width: 56%;
}
.businessPage .costSec .costWrap .textBox p {
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--black);
}
.businessPage .costSec .costWrap .textBox .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lightblue);
}

@media all and (max-width: 896px) {
    .businessPage .costSec .costIntro .costTitle {
        font-size: 2.4rem;
    }
    .businessPage .costSec .costText {
        margin: 32px 0;
        font-size: 2rem;
    }
    .businessPage .costSec .costBox {
        padding: 20px;
    }
    .businessPage .costSec .costWrap {
        margin: 20px 0;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .businessPage .costSec .costWrap .costSubTitle {
        width: auto;
        margin-bottom: 20px;
        font-size: 2rem;
    }
    .businessPage .costSec .costWrap .textBox {
        width: auto;
        margin-bottom: 20px;
        text-align: center;
    }
}

.businessPage .costSec .conclusionWrap {
    position: relative;
    margin: 80px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--white);
    z-index: 2;
}
.businessPage .costSec .conclusionWrap .conclusionBox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--white);
    z-index: 2;
}
.businessPage .costSec .conclusionWrap .conclusionBox .photoBox {
    width: 50%;
}
.businessPage .costSec .conclusionWrap .conclusionBox .textBox {
    padding: 20px;
}
.businessPage .costSec .conclusionWrap .conclusionBox .textBox p {
    margin-bottom: 0px;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
}
@media all and (max-width: 896px) {
    .businessPage .costSec .conclusionWrap {
        margin: 80px 0;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .businessPage .costSec .conclusionWrap .conclusionBox .photoBox {
        margin-bottom: 20px;
        width: 100%;
    }
    .businessPage .costSec .conclusionWrap .conclusionBox .textBox {
        padding: 0px;
    }
    .businessPage .costSec .conclusionWrap .conclusionBox .textBox p {
        font-size: 1.8rem;
    }
}

/* -----------------------------------------------
	businessPage　contractSec 人事専任を配属して社内がこう変わったら...
----------------------------------------------- */
.businessPage .contractSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .contractSec .caseWrap {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}
.businessPage .contractSec .caseWrap .Box {
    width: 32%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--gray);
    align-items: center;
}
.businessPage .contractSec .caseWrap .Box .titleBox {
    margin: 16px;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--darkblue);
}
.businessPage .contractSec .caseWrap .Box .numberBox {
    margin: 16px;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--darkblue);
}

@media all and (max-width: 896px) {
.businessPage .contractSec .caseWrap .Box {
        width: 100%;
    }
}


/* -----------------------------------------------
	.businessPage .priceListSec 料金表
----------------------------------------------- */
.businessPage .priceListSec {
    position: relative;
    padding: 60px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .priceListSec h3 {
    text-align: center;
}
.businessPage .priceListSec .photoBox {
    max-width: 800px;
    margin: 0 auto;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .businessPage .priceListSec {
        padding: 40px 0;
    }
}

/* -----------------------------------------------
	businessPage　conceptSec サービスのコンセプト
----------------------------------------------- */
.businessPage .conceptSec {
    position: relative;
    background: linear-gradient(135deg, var(--darkblue) 0%, var(--blue) 100%);
    color: white;
    padding: 60px 0;
}
.businessPage .conceptSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--blue-translucent);
}
.businessPage .conceptSec .contactContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.businessPage .conceptSec .contactContainer h3 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: white;
}
.businessPage .conceptSec .contactContainer p {
    position: relative;
    margin: 40px 0;
    font-size: 2.5rem;
    line-height: 2;
    color: white;
}


/* タブレット  */
@media all and (max-width: 896px) {
    .contact h2 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    .contact p {
        font-size: 1.5rem;
    }
    .businessPage .conceptSec .contactContainer h3 {
        font-size: 2rem;
        margin: 20px;
    }
    .businessPage .conceptSec .contactContainer p {
        margin: 40px 20px;
        font-size: 2rem;
    }

}


/* -----------------------------------------------
	businessPage　summarySec サービスの概要
----------------------------------------------- */
.businessPage .summarySec {
    position: relative;
    padding: 60px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .summarySec h3 {
    text-align: center;
}
.businessPage .summarySec .photoBox {
    max-width: 800px;
    margin: 0 auto;
}

/* タブレット  */
@media all and (max-width: 896px) {
    .businessPage .summarySec {
        padding: 40px 0;
    }
}


/* -----------------------------------------------
	businessPage　solutionSec 解決の仕組み４つ
----------------------------------------------- */
.businessPage .solutionSec {
    position: relative;
    padding: 80px 0;
    background: var(--white);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .solutionSec h3 {
    text-align: center;
}
.businessPage .solutionSec .caseWrap {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    z-index: 2;
}
.businessPage .solutionSec .caseWrap .Box {
    margin-bottom: 40px;
    width: 48%;
    border: 1px solid var(--gray);
}
.businessPage .solutionSec .caseWrap .Box .titleBox {
    padding: 20px;
    background: var(--blue);
}
.businessPage .solutionSec .caseWrap .Box .titleBox h4 {
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
}
.businessPage .solutionSec .caseWrap .Box .photoBox {

}
.businessPage .solutionSec .caseWrap .Box .photoBox img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

@media all and (max-width: 896px) {
    .businessPage .solutionSec .caseWrap .Box {
        margin-bottom: 40px;
        width: auto;
    }
}


/* -----------------------------------------------
	businessPage　voicesSec お客様の声
----------------------------------------------- */
.businessPage .voicesSec {
    position: relative;
    padding: 80px 0;
    background: var(--blue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .voicesSec h3 {
    text-align: center;
}
.businessPage .voicesSec .caseWrap {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    z-index: 2;
}
.businessPage .voicesSec .caseWrap .caseBox {
    margin-bottom: 40px;
    background: var(--white);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.businessPage .voicesSec .caseWrap .caseBox .photoBox {
    width: 30%;
}
.businessPage .voicesSec .caseWrap .caseBox .photoBox img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.businessPage .voicesSec .caseWrap .caseBox .textBox {
    padding: 20px;
    width: 50%;
}
.businessPage .voicesSec .caseWrap .caseBox .textBox p {
    margin-bottom: 0px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
}

@media all and (max-width: 896px) {
    .businessPage .voicesSec {
        padding: 60px 0;
    }
    .businessPage .voicesSec .caseWrap .caseBox {
        margin-bottom: 40px;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .businessPage .voicesSec .caseWrap .caseBox .photoBox {
        width: auto;
    }
    .businessPage .voicesSec .caseWrap .caseBox .textBox {
        padding: 20px;
        width: auto;
    }
}



/* -----------------------------------------------
	businessPage　questionSec よくある質問（Q&A）
----------------------------------------------- */
.businessPage .questionSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.businessPage .questionSec .caseWrap {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    z-index: 2;
}
.businessPage .questionSec .caseWrap .questionBox {
    padding: 20px 40px;
    width: 100%;
    color: var(--white);
    background: var(--lightblue);
}
.businessPage .questionSec .caseWrap .questionBox p {
    margin-bottom: 0px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
}
.businessPage .questionSec .caseWrap .questionBox p span.Q {
    margin-right: 16px;
    font-size: 3rem;
    font-weight: 600;
}
.businessPage .questionSec .caseWrap .answerBox {
    padding: 20px 40px;
    width: 100%;
    background: var(--white);
}
.businessPage .questionSec .caseWrap .answerBox p {
    margin-bottom: 0px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
}
.businessPage .questionSec .caseWrap .answerBox p span.A {
    margin-right: 16px;
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: var(--pink);
}

@media all and (max-width: 896px) {
    .businessPage .questionSec {
        padding: 60px 0;
    }
    .businessPage .questionSec .caseWrap .questionBox p span.Q {
        display: block;
    }
    .businessPage .questionSec .caseWrap .answerBox {
        padding: 20px;
    }
}


/* -----------------------------------------------
	businessPage　questionSec 全額返金保証制度
----------------------------------------------- */
.businessPage .guaranteeSec {
    position: relative;
    background: linear-gradient(135deg, var(--darkblue) 0%, var(--blue) 100%);
    color: white;
    padding: 60px 0;
}
.businessPage .guaranteeSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--blue-translucent);
}
.businessPage .guaranteeSec .contactContainer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
}
.businessPage .guaranteeSec .contactContainer .mainText {
    position: relative;
    margin-bottom: 32px;
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--white);
    z-index: 2;
}
.businessPage .guaranteeSec .contactContainer .subText {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2;
    color: white;
}
.businessPage .guaranteeSec .contactContainer p span {
    margin-top: 8px;
    display: block;
}

/* タブレット  */
@media all and (max-width: 896px) {
    .businessPage .guaranteeSec .contactContainer {
        max-width: 320px;
        margin: 0 auto;
    }
    .businessPage .guaranteeSec .contactContainer .mainText {
        margin-bottom: 32px;
        font-size: 2.2rem;
    }
    .businessPage .guaranteeSec .contactContainer .subText {
        margin-bottom: 30px;
        font-size: 1.8rem;
    }

}


/*====================================================================================
	講師紹介　InstructorPage
====================================================================================*/
.instructorPage {
    position: relative;
    padding: 80px 0;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .instructorPage {
        padding: 40px 0;
    }
}

/* -----------------------------------------------
	instructorPage　Intro はじめに
----------------------------------------------- */
.instructorPage .introSec {
    position: relative;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray);
}
.instructorPage .introSec p {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .instructorPage .introSec {
        padding: 20px 0;
    }
    .instructorPage .introSec p {
        font-size: 1.5rem;
    }
}

/* -----------------------------------------------
	instructorPage Instructor 講師一覧
----------------------------------------------- */
.instructorPage .instructorSec {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}

/* 画像と写真による紹介 */
.instructorPage .instructorSec .wrap {
    padding-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.instructorPage .instructorSec .wrap .Box {
    margin-bottom: 30px;
    width: 24%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border: 1px solid var(--gray);
}
.instructorPage .instructorSec .wrap .Box img {
    height: 330px;
    object-fit: cover;
    vertical-align: bottom;
}
.instructorPage .instructorSec .wrap .Box .textBox {
    position: relative;
    padding: 20px;
}
.instructorPage .instructorSec .wrap .Box .textBox .EngName {
    padding-top: 10px;
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue-translucent);
}
.instructorPage .instructorSec .wrap .Box .textBox .JpnName {
    margin-bottom: 20px;
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    color: var(--blue);
}
.instructorPage .instructorSec .wrap .Box .textBox .JpnName span.work {
    margin-bottom: 8px;
    display: block;
    font-size: 1.6rem;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}
.instructorPage .instructorSec .wrap .Box .textBox .JpnName span.sub {
    font-size: 1.6rem;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}
.instructorPage .instructorSec .wrap .Box .textBox .description {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.1rem;
    color: var(--black);
}
/* タブレット  */
@media all and (max-width: 896px) {
    .instructorPage .instructorSec {
        padding: 40px 0;
    }
    .instructorPage .instructorSec .wrap {
        padding-bottom: 80px;
        flex-direction: column;
    }
    .instructorPage .instructorSec .wrap .Box {
        margin-bottom: 30px;
        width: auto;
    }
}

/* -----------------------------------------------
	instructorPage　About 代表挨拶
----------------------------------------------- */
.instructorPage .aboutSec {
    position: relative;
    padding: 80px 0;
    background: var(--darkblue);
}
.instructorPage .aboutSec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
}
.instructorPage .aboutSec p {
    position: relative;
    margin-bottom: 40px;
    color: var(--white);
    z-index: 2;
}
/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .instructorPage .aboutSec {
        padding-bottom: 40px;
    }
}



/*====================================================================================
	会社概要　companyPage
====================================================================================*/
.companyPage {
    position: relative;
    /* padding: 80px 0; */
}
/* タブレット  */
@media all and (max-width: 896px) {
    .companyPage {
        /* padding: 40px 0; */
    }
}
/* -----------------------------------------------
	companyPage　Message 代表挨拶
----------------------------------------------- */
.companyPage .messageSec {
    padding: 120px 0;
    background: var(--white);
}

/* 代表プロフィール */
.companyPage .messageSec .profileWrap {
    margin-bottom: 40px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--gray);
}
.companyPage .messageSec .profileWrap .photoBox {
    width: 48%;
}
.companyPage .messageSec .profileWrap .textBox {
    width: 48%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.companyPage .messageSec .profileWrap .textBox .nameBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.companyPage .messageSec .profileWrap .nameBox span.title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--darkblue);
}
.companyPage .messageSec .profileWrap .textBox .nameBox p {
    font-weight: 600;
}
.companyPage .messageSec .profileWrap .textBox .nameBox img {
    height: auto;
    width: 50%;
}
.companyPage .messageSec .profileWrap .nameBox img {
    width: 100%;
	object-fit: cover;
}
.companyPage .messageSec .profileWrap .textBox p {
    margin-bottom: 40px;
}

/* 代表メッセージ */
.companyPage .messageSec .wrap {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--white);
}
.companyPage .messageSec .wrap:nth-of-type(2) {
    flex-direction: row-reverse;
}

.companyPage .messageSec .wrap .textBox {
    width: 48%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.companyPage .messageSec .wrap .textBox p {
    margin-bottom: 40px;
}
.companyPage .messageSec .wrap .textBox .nameBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.companyPage .messageSec .wrap .textBox .nameBox p {
    font-weight: 600;
}
.companyPage .messageSec .wrap .textBox .nameBox img {
    height: auto;
    width: 50%;
}
.companyPage .messageSec .wrap .photoBox {
    width: 48%;
}
.companyPage .messageSec .wrap .photoBox img {
    width: 100%;
    object-fit: cover;
}

/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .companyPage .messageSec {
        padding: 60px 0;
    }

    /* 代表プロフィール */
    .companyPage .messageSec .profileWrap {
        padding: 20px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .companyPage .messageSec .profileWrap .photoBox {
        margin-bottom: 20px;
        width: 100%;
    }
    .companyPage .messageSec .profileWrap .nameBox {
        margin-bottom: 32px;
        width: auto;
    }
    .companyPage .messageSec .profileWrap .nameBox span.title {
        font-size: 1.8rem;
    }
    .companyPage .messageSec .profileWrap .textBox {
        width: 100%;
        margin: 0;
    }
    .companyPage .messageSec .profileWrap .textBox p {
        margin-bottom: 20px;
    }
    .companyPage .messageSec .profileWrap .textBox .nameBox {
        margin-bottom: 20px;
        flex-direction: column;
        align-content: flex-end;
        align-items: flex-end;
    }
    .companyPage .messageSec .profileWrap .textBox .nameBox p {
        font-weight: 600;
    }
    .companyPage .messageSec .profileWrap .textBox .nameBox img {
        height: auto;
        width: 200px;
    }
    .companyPage .messageSec .wrap .photoWrap {
        flex-direction: column;
        justify-content: space-between;
    }

    /* 代表メッセージ */
    .companyPage .messageSec .wrap,
    .companyPage .messageSec .wrap:nth-of-type(2) {
        padding: 20px 0;
        flex-direction: column;
        justify-content: space-between;
    }
    .companyPage .messageSec .wrap .photoBox {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .companyPage .messageSec .wrap .textBox {
        width: 100%;
        margin: 0;
    }
    .companyPage .messageSec .wrap .textBox p {
        margin-bottom: 20px;
    }
    .companyPage .messageSec .wrap .textBox .nameBox {
        margin-bottom: 20px;
        flex-direction: column;
        align-content: flex-end;
        align-items: flex-end;
    }
    .companyPage .messageSec .wrap .textBox .nameBox p {
        font-weight: 600;
    }
    .companyPage .messageSec .wrap .textBox .nameBox img {
        height: auto;
        width: 200px;
    }
}

/* -----------------------------------------------
	companyPage　Company 会社概要
----------------------------------------------- */
.companyPage .informationSec {
    position: relative;
    padding: 120px 0;
    background: var(--darkblue);
}
.companyPage .informationSec .table_design {
    border-collapse: collapse;
    width: 100%;
}
.companyPage .informationSec .table_design th, .table_design td {
    border-bottom: 1px solid var(--white);
    padding: 1em;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    color: var(--white);
}
.companyPage .informationSec .table_design th {
    border-bottom: 1px solid var(--white);
    font-weight: 600;
    width: 30%;
    min-width: 4em;
}
.companyPage .informationSec .table_design td {
    font-weight: 400;
    width: 70%;
}
/* タブレット  */
@media all and (max-width: 896px) {
    .companyPage .informationSec .table_design tr {
        margin-bottom: 16px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
    }
    .companyPage .informationSec .table_design th, .table_design td {
        padding: 1em 0.5em;
        font-size: 1.6rem;
    }
    .companyPage .informationSec .table_design th {
        text-align: left;
        width: 100%;
    }
    .companyPage .informationSec .table_design td {
        font-weight: 400;
        width: 100%;
    }
}

/* -----------------------------------------------
	companyPage　Business ヒューマンソリューションの事業
----------------------------------------------- */
.companyPage .logoSec {
    padding: 80px 0;
}
.companyPage .logoSec .wrap {
    padding: 40px 0 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.companyPage .logoSec .wrap .Box {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.companyPage .logoSec .wrap .Box .photoBox {
    margin: 0 40px;
    width: 50%;
}
.companyPage .logoSec .wrap .Box .photoBox img {
    width: 100%;
}
.companyPage .logoSec .wrap .Box .textBox {
    width: 100%;
}
.companyPage .logoSec .wrap .Box .textBox p {

}
/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .companyPage .logoSec {
        padding: 40px 0;
    }
    .companyPage .logoSec .wrap,
    .companyPage .logoSec .wrap:nth-of-type(2) {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .companyPage .logoSec .wrap .Box {
        margin-bottom: 20px;
        padding-bottom: 20px;
        flex-direction: column;
    }
    .companyPage .logoSec .wrap .Box .photoBox {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .companyPage .logoSec .wrap .Box .textBox {
        width: 100%;
        margin: 0;
    }
    .companyPage .logoSec .wrap .Box .textBox p {
        margin-bottom: 20px;
    }
}


/* -----------------------------------------------
	companyPage　Business ヒューマンソリューションの事業
----------------------------------------------- */
.companyPage .businessSec {
    padding: 80px 0;
}
.companyPage .businessSec .wrap {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--darkblue);
    border: 1px solid var(--gray);
}
.companyPage .businessSec .wrap:nth-of-type(2) {
    flex-direction: row-reverse;
}
.companyPage .businessSec .wrap .photoBox {
    width: 48%;
}
.companyPage .businessSec .wrap .photoBox img {
    width: 100%;
	object-fit: cover;
}
.companyPage .businessSec .wrap .textBox {
    padding-left: 40px;
    width: 48%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.companyPage .businessSec .wrap .textBox p {
    color: var(--white);
}
/* ホバー */
@media all and (min-width: 897px) {

}

/* タブレット  */
@media all and (max-width: 896px) {
    .companyPage .businessSec {
        padding: 40px 0;
    }
    .companyPage .businessSec .wrap,
    .companyPage .businessSec .wrap:nth-of-type(2) {
        padding:  0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .companyPage .businessSec .wrap .photoBox {
        width: 100%;
        margin: 0;
    }
    .companyPage .businessSec .wrap .textBox {
        width: auto;
        margin: 0;
        padding: 20px;
    }
    .companyPage .businessSec .wrap .textBox p {
        margin-bottom: 20px;
    }
}

/* -----------------------------------------------
	companyPage　History 沿革
----------------------------------------------- */
.companyPage .historySec {
    position: relative;
    padding: 120px 0;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.companyPage .historySec:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--darkblue-translucent);
    transition: 0.3s ease;
}
.companyPage .historySec .table_design {
    position: relative;
    border-collapse: collapse;
    width: 100%;
    z-index: 3;
}
.companyPage .historySec .table_design th, .table_design td {
    border-bottom: 1px solid var(--white);
    padding: 1em;
    text-align: left;
}
.companyPage .historySec .table_design th {
    border-bottom: 1px solid var(--white);
    font-size: 5rem;
    font-weight: 600;
    width: 30%;
    min-width: 4em;
    color: var(--white);
}
.companyPage .historySec .table_design td {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.8;
    width: 70%;
    color: var(--white);
}
.companyPage .historySec .table_design td span.year {
    margin-bottom: 10px;
    display: block;
    font-size: 1.8rem;
}
.companyPage .historySec .table_design td span.urlLink a {
    margin-top: 20px;
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
}
/* タブレット  */
@media all and (max-width: 896px) {
    .companyPage .historySec .table_design tr {
        margin-bottom: 16px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
    }
    .companyPage .historySec .table_design th, .table_design td {
        padding: 1em 0.5em;
    }
    .companyPage .historySec .table_design th {
        padding: 16px 0;
        font-size: 3rem;
        text-align: left;
        width: 100%;
    }
    .companyPage .historySec .table_design td {
        font-size: 1.6rem;
        font-weight: 400;
        width: 100%;
    }
}

/*------------------------------------------------------------
	news-archivepage お知らせ一覧
------------------------------------------------------------*/
.news-archivePage {
    position: relative;
    padding: 80px 0;
}
.newsPage_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
/* 投稿記事一覧 */
.newsPage_item {
    width: 80%;
}
.newsUl {
    /* margin-bottom: 120px; */
}
.news_li {
    background: var(--white);
    margin-bottom: 20px;
}
.newsUl a {
    padding: 30px 60px 30px 30px;
    display: block;
    position: relative;
    line-height: 1.875;
    letter-spacing: 0.08em;
    border: 1px solid var(--gray);
    text-align: start;
}
.newsUl a:before {
    position: absolute;
    margin-top: -16px;
    right: 5px;
    top: 50%;
    width: 40px;
    height: 40px;
    background: url("img/icon/icon_link01_blue.png") no-repeat right center;
    background-size: 40px auto;
    content: "";
    z-index: 1;
    transition: all ease 0.3s;
}

.new_recent {
    margin-left: 12px;
    padding: 2px 10px;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    background: var(--lightblue);
}
.news_date {
    margin-bottom: 16px;
    font-size: 1.6rem;
    color: var(--turquoise);
}
.news_title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
}

@media all and (min-width: 897px) {
    .newsUl a:hover {
        color: var(--white);
        background: var(--turquoise-translucent);
        transition: all 0.5s ease;
    }
    .newsUl a:hover:before {
        right: 0px;
        width: 40px;
        height: 40px;
        background: url("img/icon/icon_link01_white.png") no-repeat right center;
        background-size: 40px auto;
        content: "";
        z-index: 1;
        transition: all ease 0.3s;
    }
    .newsUl a:hover .news_date {
        color: var(--white);
        transition: all 0.5s ease;
    }
}

@media all and (max-width: 896px) {
    .newsPage_inner {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        /* align-content: center; */
    }
    .newsPage_item {
        width: 100%;
    }
    .newsUl a {
        padding: 20px;
    }
    .newsUl a:before {
        right: 10px;
        width: 10px;
        height: 10px;
        background-size: 8px auto;
    }
    .newsUl a:hover:before {
        right: 5px;
    }
    .new_recent {
        font-size: 1.4rem;
    }
    .news_date {
        font-size: 1.4rem;
    }
    .news_title {
        font-size: 1.6rem;
    }


}

@media all and (max-width: 600px) {
    .newsPage_inner .newsPage_item {
        width: 100%;
    }
}

/*------------------------------------------------------------
	news-singlePage お知らせの投稿記事
------------------------------------------------------------*/

.news-singlePage .news {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px 3%;
}
.news-singlePage .about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-singlePage .singleBox {
    padding: 30px;
    margin-bottom: 80px;
    background: var(--white);
}
.news-singlePage .singleBox h3 {
    margin-bottom: 40px;
    padding-bottom: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--gray);
}
.news-singlePage .singleBox p {
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    text-align: justify;
}

.news-singlePage .pageNavi {
    padding-top: 60px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.news-singlePage .pageNavi .prev,
.news-singlePage .pageNavi .next {
    margin: 0 auto;
}
.news-singlePage .pageNavi .prev a,
.news-singlePage .pageNavi .next a {
    padding: 10px 20px;
    color: var(--white);
    background: var(--lightblue);
    font-size: 1.6rem;
    font-weight: 600;
}
@media all and (min-width: 897px) {
    .news-singlePage .pageNavi .prev a:hover,
    .news-singlePage .pageNavi .next a:hover {
        padding: 10px 20px;
        color: var(--white);
        background: var(--turquoise);
    }
}
@media all and (max-width: 896px) {
    .singlePage .singleBox {
        width: calc( 97% - 150px );
    }
    .news-singlePage .about {
        justify-content: space-between;
    }
    .news-singlePage .singleBox {
        padding: 0px;
        margin-bottom: 80px;
        width: auto;
    }
    .news-singlePage .singleBox h3 {
        margin-bottom: 40px;
        padding-bottom: 20px;
        font-size: 2rem;
    }
}

@media all and (max-width: 600px) {
    .singlePage .singleBox {
        width: 100%;
    }
}

/*------------------------------------------------------------
	widget 投稿月別アーカイブ
------------------------------------------------------------*/
.widget {
    width: 16%;
}
.widget ul {
    background: var(--white);
}
.widget-title {
    margin-bottom: 20px;
    padding: 20px 0;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    background: var(--blue);
}
.widget ul li {
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--lightblue);
    border-bottom: 1px solid var(--gray);
}
.widget ul li a {
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
}

@media all and (min-width: 897px) {
    .widget ul li a:hover {
        color: var(--turquoise);
        border-bottom: 1px solid var(--turquoise);
        transition: all 0.5s ease;
    }
}

@media all and (max-width: 896px) {
    .widget {
        width: 100%;
    }
    .widget-title {
        text-align: center;
        font-size: 1.6rem;
    }
    .widget ul {
        padding: 20px 20px;
        margin-bottom: 40px;
    }
    .widget ul li {
        font-size: 1.6rem;
    }
}


/*------------------------------------------------------------
	contactPage
------------------------------------------------------------*/
#formw {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/*------------------------------------------------------------
	formw / contactPage
------------------------------------------------------------*/
.contactPage {
    position: relative;
    padding: 80px 0;
}
#formw .topTxt,
.contactPage .topTxt {
	margin-bottom: 40px;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--gray);
}
#formw .topTxt,
.contactPage .topTxt span {
    margin-bottom: 40px;
    display: block;
	letter-spacing: 0.06em;
    font-size: 1.8rem;
    font-weight: 500;
}

#formw table,
.contactPage table {
    margin-bottom: 158px;
	width: 100%;
	border-collapse: collapse;
	word-break: break-all;
}

#formw th,
#formw td,
.contactPage th,
.contactPage td {
	padding: 28px 0 28px 58px;
	text-align: left;
	vertical-align: middle;
	border-bottom: 1px solid #D1CFCF;
}

#formw th,
.contactPage th {
	padding: 20px 50px 20px 0;
	width: 29%;
	font-weight: 800;
}

#formw td,
.contactPage td {
    font-size: 1.3rem;
	position: relative;
}

#formw th .must,
.contactPage th .must {
    float: right;
    width: 56px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    background: var(--turquoise);
    text-align: center;
}

#formw th .any,
#formw th .optional,
.contactPage th .any,
.contactPage th .optional {
	float: right;
    width: 56px;
    height: 32px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 500;
    text-align: center;
    color: var(--turquoise);
    background: var(--white);
	border: 1px solid var(--turquoise);
}

#formw td:before,
.contactPage td:before {
	position: absolute;
	left: 0;
	top: 27px;
	width: 1px;
	bottom: 27px;
	background: #D1CFCF;
	content: "";	
}

#formw td input[type="text"],
#formw td input[type="email"],
#formw td input[type="number"],
#formw td input[type="tel"],
#formw td select,
#formw td textarea,
.contactPage td input[type="text"],
.contactPage td input[type="email"],
.contactPage td input[type="number"],
.contactPage td input[type="tel"],
.contactPage td select,
.contactPage td textarea {
	width: 100%;
	height: 58px;
	color: var(--black);
	font-size: 1.3rem;
	padding: 5px 10px 5px 23px;
	-webkit-appearance: none;
	box-sizing: border-box;
	background: #F4F4F4;
    border: 1px solid #F4F4F4;
	border-radius: 4px;
}

#formw td .wid01,
#formw td .a3,
.contactPage td .wid01 {
    width: 98px !important;
}

#formw td .ico,
.contactPage td .ico {
    display: inline-block;
    margin-right: 10px;
	font-size: 1.6rem;
}

#formw td .add,
.contactPage td .add {
    margin-bottom: 20px;
}

#formw td textarea,
.contactPage td textarea {
    height: 265px;
    resize: vertical;
    padding: 20px 10px 20px 23px;
}

#formw .txtP,
.contactPage .txtP {
    margin-bottom: 45px;
    line-height: 1.9;
    text-align: center;
}

#formw .txtP a,
.contactPage .txtP a {
    text-decoration: underline;
}

#formw .txtP a:hover,
.contactPage .txtP a:hover {
    opacity: 0.7;
}

#formw .agreeTxt,
.contactPage .agreeTxt {
    width: 460px;
    margin: 0 auto 100px;
    padding: 12px 10px 16px 20px;
    box-sizing: border-box;
    border: 1px solid #CCC;
}

#formw .agreeTxt input[type="checkbox"],
.contactPage .agreeTxt input[type="checkbox"] {
    display: none;
}

#formw .agreeTxt span.wpcf7-list-item,
.contactPage .agreeTxt span.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 72px;
}

#formw .agreeTxt input[type="checkbox"] ~ span,
.contactPage .agreeTxt input[type="checkbox"] ~ span {
    background: url("img/common/check_box_bg02.png") no-repeat left top 12px;
    background-size: 16px 16px;
    display: block;
    min-height: 16px;
    padding: 4px 0 6px 26px;
    cursor: pointer;
}

#formw .agreeTxt input[type="checkbox"]:checked ~ span,
.contactPage .agreeTxt input[type="checkbox"]:checked ~ span {
    background: url("img/common/check_box_bg01.png") no-repeat left top 9px;
    background-size: 16px 16px;
}

/* カスタムチェックボックススタイル（画像がない場合の代替） */
#formw .agreeTxt input[type="checkbox"] ~ span:before,
.contactPage .agreeTxt input[type="checkbox"] ~ span:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--turquoise);
    background: #fff;
    margin-right: 10px;
    vertical-align: middle;
    margin-top: -2px;
}

#formw .agreeTxt input[type="checkbox"]:checked ~ span:before,
.contactPage .agreeTxt input[type="checkbox"]:checked ~ span:before {
    background: var(--turquoise);
    border-color: var(--turquoise);
}



#formw .submit,
#formw ul.submit,
.contactPage .submit {
    text-align: center;
}

#formw .submit li,
#formw ul.submit li,
.contactPage .submit li {
    margin: 0 6px;
    display: inline-block;
    vertical-align: top;
}

.ajax-loader {
	display: none !important;
}

#formw .submit li .info01,
#formw ul.submit li .info01,
.contactPage .submit li .info01 {
    display: block;
    position: relative;
    background: var(--turquoise);
	border: 1px solid var(--turquoise);
}

#formw .submit li .info02,
#formw ul.submit li .info02,
.contactPage .submit li .info02 {
	position: relative;
	z-index: 2;
}
.wpcf7-spinner {
    margin: 0 !important;
}

#formw .submit li .info01:before,
#formw ul.submit li .info01:before,
.contactPage .submit li .info01:before {
    position: absolute;
    content: "";
    margin-top: -14px;
    right: 10px;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url("img/icon/icon_link01_white.png") no-repeat left center;
    background-size: 32px;
    z-index: 3;
    transition: .3s;
    -webkit-transition: .3s;
}

#formw .submit li .info01:after,
#formw ul.submit li .info01:after,
.contactPage .submit li .info01:after {
	content: " ";
	position: absolute;
	top: 0;
	height: 100%;
	width: 0;
	left: auto;
	right: 0;
	background-color: #fff;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-ms-transition-duration: 0.5s;
	-ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

#formw .submit li .info01:hover:after,
#formw ul.submit li .info01:hover:after,
.contactPage .submit li .info01:hover:after {
    width: 100%;
    left: 0;
}

#formw .submit li .info01:hover input,
#formw ul.submit li .info01:hover input,
.contactPage .submit li .info01:hover input {
    color: var(--turquoise);
    width: 258px;
    height: 48px;
    font-size: 1.6rem;
    border: 0;
    background: none;
}

#formw .submit .back .info01:before,
#formw ul.submit .back .info01:before,
.contactPage .submit .back .info01:before {
    margin-top: -5px;
    position: absolute;
    right: auto;
    left: 10px;
    top: 50%;
    width: 21px;
    height: 11px;
    background: url("img/common/icon07.png") no-repeat left center;
    background-size: 21px 11px; 
    content: "";
}

#formw .submit li input,
#formw ul.submit li input,
.contactPage .submit li input {
    color: #fff;
    width: 258px;
    height: 48px;
    font-size: 1.6rem;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
	background: none;
    transition: color 0.3s ease;
}

#formw .submit li input:disabled,
#formw ul.submit li input:disabled,
.contactPage .submit li input:disabled {
	cursor: default;
	pointer-events: none;
}

#formw .submit .back .info01,
#formw ul.submit .back .info01,
.contactPage .submit .back .info01 {
    background: #919191;
	border-color: #919191;
}

#formw .submit li.disabled .info01,
#formw ul.submit li.disabled .info01,
.contactPage .submit li.disabled .info01 {
	background: #CECECE;
	border-color: #CECECE;
}

#formw .submit li.disabled .info01:after,
#formw ul.submit li.disabled .info01:after,
.contactPage .submit li.disabled .info01:after {
	display: none;
}

#formw .errTop,
.contactPage .errTop {
    margin-bottom: 16px;
    padding: 18px 10px;
    color: #C1272D;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 3px solid #C1272D;
    background: #FCDEDD;
    text-align: center;
}

#formw .errTop img,
.contactPage .errTop img {
    margin: -3px 10px 0 0;
    display: inline-block;
    vertical-align: middle;
}

#formw .error td input,
#formw .error td select,
#formw .error td textarea,
.contactPage .error td input,
.contactPage .error td select,
.contactPage .error td textarea {
    background: #FCDEDD;
    border: 1px solid #C1272D;
}

#formw .error td .errorTxt,
.contactPage .error td .errorTxt {
    margin: 2px 0 -22px;
    display: block;
    color: #DE2B2B;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 1.4rem;
}

#formw .confirmTab th,
#formw .confirmTab td,
.contactPage .confirmTab th,
.contactPage .confirmTab td {
    height: 60px;
}

#formw .confirmTab td .add,
.contactPage .confirmTab td .add {
    margin-bottom: 4px;
}

/* アドレス入力のスタイル調整 */
.address-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.zip-inputs {
    display: flex;
    align-items: center;
    gap: 5px;
}

.zip-separator {
    font-size: 1.3rem;
    color: #666;
}

/* レスポンシブ対応 */
.sp {
    display: none;
}

.pc {
    display: inline-block;
}

@media screen and (max-width: 896px) {
    .sp {
        display: inline-block;
    }
    
    .pc {
        display: none;
    }
    
    #formw {
        padding: 20px;
    }
    
    #formw th,
    .contactPage th {
        width: 100%;
        display: block;
        padding: 10px 0;
        border-bottom: none;
    }
    
    #formw td,
    .contactPage td {
        display: block;
        padding: 10px 0 20px;
        border-bottom: 1px solid #D1CFCF;
    }
    
    #formw td:before,
    .contactPage td:before {
        display: none;
    }
}

/* アニメーション */
.fadeInUp {
    opacity: 1;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ステップ表示制御 */
.wpcf7c-elm-step1 {
    display: block;
}

.wpcf7c-elm-step2 {
    display: none;
}

.contactPage .headLine03 {
    text-align: center;
}
.thanksWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;
}

.thanks .title {
    margin-bottom: 32px;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
}
.thanks .thanksTxt {
    margin-bottom: 180px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.06em;
    text-align: center;
}
.thanks .linkBtn a {
    margin: 0 auto;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    width: 256px;
    color: #fff;
    text-align: center;
    position: relative;
    background: var(--black);
	border: 1px solid var(--black);
	box-sizing: border-box;
}
.thanks .linkBtn a:before {
    margin-top: -4px;
    position: absolute;
    left: 11px;
    top: 50%;
    width: 21px;
    height: 11px;
    background: url("img/common/icon07.png") no-repeat left center;
    background-size: 21px auto;
    content: "";
	z-index: 3;
    transition: .3s;
	-webkit-transition: .3s;
}
.thanks .linkBtn .info {
	position: relative;
	z-index: 2;
}
.thanks .linkBtn a:after {
	content: " ";
	position: absolute;
	top: 0;
	height: 100%;
	width: 0;
	left: auto;
	right: 0;
	background-color: #fff;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-ms-transition-duration: 0.5s;
	-ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media all and (min-width: 897px) {
	.contactPage .submit li:hover .info01:after {
        width: 100%;
        right: auto;
        left: 0;
	}
	.contactPage .submit li:hover .info01:before {
		right: -5px;
		background-image: url("img/icon/icon_link01_blue.png");
	}
	.contactPage .submit li.disabled:hover .info01:before {
		right: 10px;
		background-image: url("img/common/icon05.png");
	}
	.contactPage .submit li:hover input {
		color: var(--turquoise);
	}
	.contactPage .submit li.disabled:hover input {
		color: #fff;
	}
	.contactPage .submit li.back:hover .info01:before {
		left: -21px;
		background-image: url("img/common/icon14.png");
	}
    .contactPage .submit li.back:hover .info02 {
		color: var(--turquoise);
	}
	.thanks .linkBtn a:hover {
		color: var(--black);
	}
	.thanks .linkBtn a:hover:before {
		background-image: url("img/common/icon14.png");
		left: -21px;
	}
    .thanks .linkBtn a:hover:after {
        width: 100%;
        right: auto;
        left: 0;
    }
}
@media all and (max-width: 896px) {
    .contactPage .topTxt {
        margin: 0 0 17px;
        line-height: 1.9;
        text-align: center;
    }
    .contactPage table {
        margin-bottom: 48px;
    }
    .contactPage th,
    .contactPage td {
        float: left;
        width: 100%;
        padding: 0 0 25px;
        box-sizing: border-box;
    }
    .contactPage th {
        padding: 22px 0 10px;
        width: auto;
        border: none;
    }
	.contactPage th .must,
	.contactPage th .optional {
		margin-left: 10px;
	}
    .contactPage td:before {
        display: none;
    }
    .contactPage td input[type="text"],
    .contactPage td input[type="email"],
    .contactPage td input[type="tel"],
    .contactPage td textarea {
        height: 58px;
        font-size: 1.2rem;
        padding: 5px 10px 5px 25px;
    }
    .contactPage td {
        font-size: 1.4rem;
    }
    .contactPage td .wid01 {
        width: 124px !important;
    }
    .contactPage td .ico {
        margin-right: 7px;
    }
    .contactPage td .add {
        margin-bottom: 20px;
    }
    .contactPage td textarea {
        height: 180px;
        padding: 20px 10px 20px 25px;
    }
    .contactPage .txtP {
        margin-bottom: 23px;
        line-height: 1.85;
    }
    .contactPage .agreeTxt {
        width: auto;
        margin: 0 auto 51px;
        padding: 14px 10px 14px 30px;
		text-align: center;
    }
	.contactPage .agreeTxt span.wpcf7-list-item {
		margin: 0 !important;
	}
    .contactPage .submit li {
        margin: 0 0 15px;
        display: block;
    }
    .contactPage .submit li:last-child {
        margin-bottom: 0;
    }
    .contactPage .submit li span:before {
        right: 17px;
    }
    .contactPage .submit li input {
        height: 60px;
    }
    .contactPage .errTop {
        margin-bottom: 18px;
        padding: 23px 10px 20px;
        font-size: 1.6rem;
        border-width: 2px;
        line-height: 1.9;
    }
    .contactPage .errTop img {
        margin: 0 auto 5px;
        display: block;
    }
    .contactPage .error td .errorTxt {
        margin: 3px 0 -19px;
        font-size: 1.1rem;
    }
    .contactPage .confirmTab th,
    .contactPage .confirmTab td {
        padding: 21px 0 7px;
        height: auto;
        line-height: 2;
    }
    .contactPage .confirmTab td {
        padding: 0 0 20px;
    }
    .contactPage .confirmTab td .add {
        margin-bottom: 4px;
    }
    .thanksWrap {
        justify-content: space-evenly;
        flex-direction: column;
    }
    .thanks .title {
        margin-bottom: 22px;
        font-size: 2.4rem;
    }
    .thanks .thanksTxt {
        margin-bottom: 37px;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.9; 
    }
    .thanks .linkBtn a {
        margin: 0 auto;
        height: 60px;
        width: 100%;
        font-size: 1.6rem;
        max-width: 450px;
        letter-spacing: 0.06em;
    }
    .thanks .linkBtn a:before {
        left: 16px;
    }
}
@media all and (max-width: 374px) {
    .contactPage .txtP {
        margin: 0 -17px 23px;
    }
    .contactPage .agreeTxt {
        padding: 14px 5px 14px 10px;
        font-size: 1.3rem;
    }
}
/*====================================================================================
	プライバシーポリシー　PrivacyPage
====================================================================================*/
.privacyPage {
    position: relative;
    padding: 80px 0;
}
.privacyPage .privacySec {

}
.privacyPage .privacySec .wrap {
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.privacyPage .privacySec .wrap .textBox {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid var(--gray);
}
.privacyPage .privacySec .wrap .textBox p {
    padding-bottom: 40px;
}
@media all and (max-width: 896px) {
    .privacy {
        margin-bottom: 110px;
    }
	.privacy .pageTitle {
		padding: 28px 0 30px;
	}
	.privacy .pageTitle .headLine01 .en {
		margin-bottom: 8px;
		font-size: 3.2rem;
	}
	.privacy .pageTitle .headLine01 .jp {
		font-size: 2rem;
	}
	.privacy #pagePath {
		margin-bottom: 56px;
	}
    .privacy p {
        margin-bottom: 3px;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    .privacy h5 {
        margin-bottom: 3px;
        letter-spacing: 0.01em;
    }
    .privacy .txt01 {
        margin-bottom: 57px;
    }
    .privacy .txt02 {
        margin-bottom: 60px;
    }
    .privacy .txt03 {
        margin-bottom: 27px;
    }
    .privacy .txt04 {
        margin-bottom: 0;
    }
}


.wpcf7-response-output {
    display: none !important;
}