@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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;}
/*------------------------------------------------------------
	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);
}   
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
    margin-bottom: 93px;
    height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("../../img/common/common_bg_main.jpg") no-repeat center center;
	background-size: cover;
}
.pageTitle h2 {
	font-size: 3.8rem;
	font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}
@media all and (max-width: 896px) {
    .pageTitle {
        margin-bottom: 25px;
        height: 160px;
        background: url("../../img/common/common_bg_main_sp.jpg") no-repeat center center;
        background-size: cover;
    }
    .pageTitle h2 {
        font-size: 2rem;
    }
}
/*------------------------------------------------------------
	comVisual
------------------------------------------------------------*/
.comVisual {
	margin-bottom: 100px;
    height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
	background: url("../../img/corp/about_bg_main.jpg") no-repeat center center;
	background-size: cover;
}
.comVisual h2 {
    text-align: center;
    color: #fff;
	width: 100%;
}
.comVisual h2 .en {
    margin: 15px 0 0;
    padding: 3px 15px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
	font-weight: 600;
    letter-spacing: 0.15em;
    background-color: #e60012;
}
.comVisual h2 .jp {
    display: block;
	font-size: 4.6rem;
	font-weight: 700;
    letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
    .comVisual {
        margin-bottom: 30px;
        height: 250px;
        background: url("../../img/corp/about_bg_main_sp.jpg") no-repeat center center;
        background-size: cover;
    }
    .comVisual h2 .en {
        margin: 4px 0 2px;
        padding: 2px 10px;
        font-size: 1rem;
    }
    .comVisual h2 .jp {
        font-size: 3rem;
    }
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 980px;
}
@media all and (max-width: 896px) {
    .content {
        width: auto;
        margin: 0 15px;
    }
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 12px;
    padding-bottom: 14px;
    color: #e60012;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 5px solid #f2f2f2;
}
@media all and (max-width: 896px) {
    .headLine01 {
        margin-bottom: 13px;
        padding-bottom: 19px;
        font-size: 1.6rem;
        line-height: 1.4;
    }
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
    margin-bottom: 32px;
    position: relative;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.headLine02::before {
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #e60012;
    content: "";
}
@media all and (max-width: 896px) {
    .headLine02 {
        margin-bottom: 25px;
        font-size: 1.4rem;
        line-height: 1.45;
        letter-spacing: 0;
    }
    .headLine02:before {
        bottom: -9px;
    }
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 24px;
}
.headLine03 .en {
	margin-bottom: 9px;
	display: block;
	font-size: 1.6rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	letter-spacing: 0.15em;
}
.headLine03 .jp {
	display: block;
	color: #e60012;
	font-size: 4.6rem;
	letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
    .headLine03 {
        margin-bottom: 9px;
        text-align: center;
    }
    .headLine03 .en {
        margin-bottom: -7px;
        font-size: 1.2rem;
    }
    .headLine03 .jp {
        font-size: 2.8rem;
    }
}
/*------------------------------------------------------------
	comTable
------------------------------------------------------------*/
.comTable {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #ddd;
}
.comTable th, 
.comTable td {
    padding: 34px 0 31px;
    width: 16.5%;
    letter-spacing: 0.05em;
    line-height: 2;
    text-align: left;
    vertical-align: top;
    word-break: break-all;
    border-top: 1px solid #ddd;
}
.comTable td {
    width: 83.5%;
}
.comTable td p {
    margin-bottom: 32px;
}
.comTable td p:last-child {
    margin-bottom: 0;
}
.comTable01 {
    margin-bottom: 56px;
}
.comTable01 tr:first-child th,
.comTable01 tr:first-child td {
    border-top: none;
}
.comTable01 th,
.comTable01 td {
    padding: 22px 0;
}
.comTable01 td dt {
    margin-top: 7px;
    float: left;
    width: 62px;
    color: #fff;
    padding: 0 0 2px;
    line-height: 1.3;
    font-weight: 700;
    font-size: 1.4rem;
    border-radius: 30px;
    text-align: center;
    background: #000;
}
.comTable01 td dd {
    padding: 0 0 20px 4.7em;
}
.comTable01 td dd:last-child {
    padding-bottom: 0;
}
.comTable01 td p {
    margin-bottom: 16px;
}
.comTable01 td .txtDl01 {
    margin-bottom: 36px;
}
.comTable01 td .ttl {
    font-weight: 700;
    margin-bottom: 3px;
}
.comTable02 {
    border-top: 1px solid #f2f2f2;
}
@media all and (max-width: 896px) {
    .comTable {
        width: 100%;
        border-collapse: collapse;
        border-bottom: 1px solid #f2f2f2;
    }
    .comTable th, 
    .comTable td {
        padding: 15px 0 5px;
        width: 100%;
        float: left;
        box-sizing: border-box;
        line-height: 1.65;
        border-top: 1px solid #f2f2f2;
    }
    .comTable td {
        padding: 0 0 18px;
        width: 100%;
        border: none;
    }
    .comTable td p {
        margin-bottom: 18px;
    }
    .comTable td p:last-child {
        margin-bottom: 0;
    }
    .comTable01 td dt {
        float: none;
        font-size: 1rem;
        width: 50px;
    }
    .comTable01 td dd {
        padding: 3px 0 10px;
    }
    .comTable01 td dd:last-child {
        padding-bottom: 0;
    }
    .comTable01 td .txtDl01 {
        margin-bottom: 22px;
    }
    .comTable01 td .ttl {
        margin-bottom: 10px;
    }
    .comTable01 td .spTxt {
        padding-left: 2.7em;
        text-indent: -2.7em;
    }
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn a {
	padding: 13px 20px 13px 18px;
	display: block;
	width: 230px;
	font-weight: 600;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	border: 1px dotted #000;
	background: url("../../img/common/arrow_btn_black.svg") no-repeat right 18px center;
	background-size: 18px 9px; 
}
.comBtn01 a {
	margin: 0 auto;
}
@media all and (min-width: 897px) {
    .comBtn a:hover {
        color: #fff;
        background: #000 url("../../img/common/arrow_btn_white.svg") no-repeat right 10px center;
        background-size: 18px 9px; 
    }
}
@media all and (max-width: 896px) {
    .comBtn a {
        padding: 14px 20px 14px 18px;
        width: 100%;
        margin: 0 auto;
        max-width: 250px;
        font-size: 1.2rem;
        letter-spacing: 0.15em;
    }
}
/*------------------------------------------------------------
	comBox
------------------------------------------------------------*/
.comBox .content {
	max-width: inherit;
	width: 980px !important;
}
.comBox .comBtn {
	margin-bottom: 36px;
	float: right;
}
.comBox .comBtn a {
	letter-spacing: 0.05em;
	background: url("../../img/common/icon_blank_black.svg") no-repeat right 18px center;
	background-size: 16px 10px; 
}
.comBox .subBox {
	clear: both;
}
.comBox .textBox {
	width: 470px;
}
.comBox .textBox .title {
	margin-bottom: 30px;
	padding: 0 0 18px 20px;
	font-weight: 700;
	background: url("../../img/common/icon_map.svg") no-repeat left top 4px;
	background-size: 11px 18px; 
	border-bottom: 1px dotted #000;
    letter-spacing: 0.05em;
}
.comBox .textBox .txtDl {
    font-size: 1.3rem;
}
.comBox .textBox .txtDl dt {
	float: left;
	width: 88px;
    padding: 1px 0;
    font-weight: 700;
    border-radius: 30px;
	text-align: center;
	background: #eee;
    letter-spacing: 0.1em;
}
.comBox .textBox .txtDl dd {
    font-size: 1.4rem;
    padding: 0 0 34px 7.8em;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.comBox .textBox .txtDl dd:last-child {
    padding-bottom: 0;
}
.comBox .textBox .txtDl dd ul {
    padding: 6px 0 0;
}
.comBox .textBox .txtDl dd ul li {
    position: relative;
    line-height: 1.65;
    padding-left: 15px;
}
.comBox .textBox .txtDl dd ul li:before {
    margin-top: -1px;
    position: absolute;
    left: 2px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    content: "";
}
@media all and (min-width: 897px) {
    .comBox .comBtn a:hover {
        background: #000 url("../../img/common/icon_blank_white.svg") no-repeat right 18px center;
        background-size: 16px 10px; 
    }
}
@media all and (max-width: 896px) {
    .comBox .content {
        max-width: inherit;
        width: inherit !important;
    }
    .comBox .map {
        margin-bottom: 20px;
        text-align: center;
    }
    .comBox .comBtn {
        margin-bottom: 26px;
        float: none;
    }
    .comBox .comBtn a {
        letter-spacing: 0;
    }
    .comBox .subBox {
        display: block;
    }
    .comBox .textBox {
        width: 100%;
        margin-bottom: 30px;
    }
    .comBox .textBox:last-child {
        margin-bottom: 0;
    }
    .comBox .textBox .title {
        margin-bottom: 15px;
        padding: 4px 0 7px 20px;
        font-size: 1.3rem;
        line-height: 1.4;
    }
    .comBox .textBox .txtDl {
        font-size: 1rem;
    }
    .comBox .textBox .txtDl dt {
        float: none;
        width: 60px;
    }
    .comBox .textBox .txtDl dd {
        font-size: 1.2rem;
        padding: 8px 0 16px;
        letter-spacing: 0.05em;
        line-height: 1.35;
    }
    .comBox .textBox .txtDl dd ul {
        padding: 3px 0 0;
    }
    .comBox .textBox .txtDl dd ul li {
        padding-left: 12px;
    }
    .comBox .textBox .txtDl dd ul li:before {
        width: 4px;
        height: 4px;
    }   
}
/*------------------------------------------------------------
	comSec
------------------------------------------------------------*/
.comSec {
    padding: 88px 0 70px;
    color: #fff;
    background: #555;
}
.comSec a {
    color: #fff;
}
.comSec a:hover {
    text-decoration: underline;
}
.comSec .content {
    width: 1240px;
}
.comSec .logo {
    margin-bottom: 52px;
    width: 415px;
}
.comSec .suBox {
    letter-spacing: 0.05em;
}
.comSec .naviBox {
    width: 430px;
}
.comSec .naviBox:nth-child(3) {
    width: 380px;
}
.comSec .naviBox .top {
    margin-bottom: 11px;
    font-weight: 700;
    font-size: 1.8rem;
}
.comSec .naviBox .top01 {
    margin-bottom: 47px;
}
.comSec .naviBox .naviUl li {
    padding-bottom: 21px;
    font-size: 1.4rem;
    letter-spacing: 0;
}
.comSec .naviBox .naviUl li a {
    display: inline-block;
}
.comSec .naviBox .border01 {
    margin-bottom: 27px;
}
.comSec .naviBox .naviUl li embed {
    width: 14px;
    height: 13px;
    margin: 0 0 0 10px;
}
.comSec .naviBox .border02 {
    padding-bottom: 28px;
    margin-bottom: 45px;
    border-bottom: 1px dotted #fff;
}
@media all and (max-width: 896px) {
    .comSec {
        padding: 28px 0 25px;
    }
    .comSec a:hover {
        text-decoration: none;
    }
    .comSec .content {
        width: auto;
        margin: 0;
    }
    .comSec .logo {
        margin-bottom: 33px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        max-width: 320px;
    }
    .comSec .subBox {
        display: block;
    }
    .comSec .naviBox {
        width: 100%;
    }
    .comSec .naviBox:nth-child(3) {
        width: 100%;
    }
    .comSec .naviBox .top {
        margin-bottom: 7px;
        font-size: 1.4rem;
    }
    .comSec .naviBox .top a {
        display: block;
        padding: 0 15px;
    }
    .comSec .naviBox .top01 {
        margin-bottom: 17px;
    }
    .comSec .naviBox .top01 a {
        display: block;
        padding: 16px 10px 19px;
        border-top: 1px solid #777;
        border-bottom: 1px solid #777;
    }
    .comSec .naviBox .ulBox {
        display: flex;
        justify-content: space-between;
    }
    .comSec .naviBox .naviUl {
        width: 49.5%;
    }
    .comSec .naviBox .naviUl:nth-child(2n) {
        width: 51%;
    }
    .comSec .naviBox .naviUl li {
        padding-bottom: 0;
        font-size: 1.2rem;
        letter-spacing: 0;
    }
    .comSec .naviBox .naviUl li a {
        display: block;
        line-height: 1.3;
        padding: 7px 15px;
    }
    .comSec .naviBox .naviUl01 {
        width: 100% !important;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .comSec .naviBox .naviUl01 li {
        width: 50%;
    }
    .comSec .naviBox .border {
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid #777;
    }
    .comSec .naviBox .border01 {
        margin-bottom: 18px;
    }
    .comSec .naviBox .naviUl li embed {
        width: 14px;
        height: 13px;
        margin: 0 0 0 10px;
    }
    .comSec .naviBox .border02 {
        padding-bottom: 14px;
        margin-bottom: 18px;
        border-bottom: 1px solid #777;
    }
    .comSec .naviBox .naviUl02 {
        width: 100% !important;
    }
    .comSec .naviBox .naviUl02 li a {
        padding: 6px 15px;
    }
}
/*------------------------------------------------------------
	comLinkList
------------------------------------------------------------*/
.comLinkList {
    margin-top: -90px;
}
.comLinkList li {
    width: 280px;
    margin: 90px 40px 0 0;
}
.comLinkList li:nth-child(4n) {
    margin-right: 0;
}
.comLinkList li a {
    display: block;
}
.comLinkList li .pho {
    margin-bottom: 16px;
    display: block;
    overflow: hidden;
}
.comLinkList li .linkSpan {
    display: block;
    padding: 0 9px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    background: url("../../img/common/arrow_btn_red.svg") no-repeat right 10px center;
    background-size: 17px 9px; 
    transition: .3s;
	-webkit-transition: .3s;
}
.comLinkList li .linkSpan01 {
    background: url("../../img/common/icon_blank_red.svg") no-repeat right 10px center;
    background-size: 16px 10px; 
}
@media all and (min-width: 897px) {
    .comLinkList li img {
        display: block;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .comLinkList li a:hover img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    .comLinkList li a:hover .linkSpan {
        background: url("../../img/common/arrow_btn_red.svg") no-repeat right center;
        background-size: 17px 9px;
        transition: .3s;
        -webkit-transition: .3s;
    }
    .comLinkList li a:hover .linkSpan01 {
        background: url("../../img/common/icon_blank_red.svg") no-repeat right 10px center;
        background-size: 16px 10px; 
    }
}
@media all and (max-width: 896px) {
    .comLinkList {
        margin: -20px 0 0;
        justify-content: space-between;
    }
    .comLinkList li {
        margin: 20px 0 0;
        width: 48.2%;
    }
    .comLinkList li .pho {
        margin-bottom: 1px;
    }
    .comLinkList li .linkSpan {
        padding: 0 25px 0 0;
        font-size: 1.2rem;
        line-height: 1.4;
        background-position: right 4px top 6px;
    }
}
/*------------------------------------------------------------
	comInner
------------------------------------------------------------*/
.comInner {
    margin-bottom: 60px;
}
.comInner .photoBox {
    margin-top: 11px;
    padding: 46px 0;
    float: right;
    width: 290px;
    text-align: center;
    border: 5px solid #f1f1f1;
}
.comInner .textBox {
    float: left;
    width: 640px;
}
.comInner .textBox p {
    margin-bottom: 40px !important;
}
.comInner .textBox .notes {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 2.3 !important;
}
@media all and (max-width: 896px) {
    .comInner {
        margin-bottom: 34px;
    }
    .comInner .photoBox {
        margin: 11px auto 0;
        padding: 25px 25px;
        float: none;
        width: 150px;
        box-sizing: border-box;
        border: 5px solid #f1f1f1;
    }
    .comInner .photoBox img {
        width: 100% !important;
    }
    .comInner .textBox {
        float: none;
        width: 100%;
    }
    .comInner .textBox p {
        margin-bottom: 22px !important;
    }
    .comInner .textBox .notes {
        margin-bottom: 0;
        font-size: 1rem;
        line-height: 1.75 !important;
    }
}
/*------------------------------------------------------------
	comUl
------------------------------------------------------------*/
.comUl {
    margin-bottom: -80px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.comUl li {
    width: 25%;
}
.comUl li a {
    padding: 40px 0 37px;
    display: block;
    position: relative;
    text-align: center;
    background: #fff;
    border-right: 1px dotted #000;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	transition-duration: 0.3s;
}
.comUl li a:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.comUl li a:before {
    margin-left: -10px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 19px;
    height: 40px;
    background: url("../../img/business/arrow_pagelink_down.svg") no-repeat center bottom;
    background-size: 19px 40px; 
    content: "";
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.comUl li a:hover:before {
	-webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
    animation-name: hvr-icon-hang-sink, hvr-icon-hang;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}
.comUl li:nth-child(4n) a {
    border-right: none;
}
.comUl li .imgSpan {
    margin-bottom: 8px;
    display: flex;
    height: 50px;
	text-align: center;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}
.comUl li .imgSpan embed {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: block;
}
.comUl li .imgSpan03 embed {
    width: 54px;
    height: 54px;
}
.comUl li .imgSpan02 embed {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: block;
}
.comUl li .txtSpan {
    display: block;
    letter-spacing: 0.05em;
    font-weight: 700;
}
@-webkit-keyframes hvr-icon-hang {
	0% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	}
	50% {
		-webkit-transform: translateY(2px);
		transform: translateY(2px);
	}
	100% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	}
}
@keyframes hvr-icon-hang {
	0% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	}
	50% {
		-webkit-transform: translateY(2px);
		transform: translateY(2px);
	}
	100% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	}
}
@-webkit-keyframes hvr-icon-hang-sink {
	100% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	}
}
@keyframes hvr-icon-hang-sink {
	100% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	}
}		
@media all and (max-width: 896px) {
    .comUl {
        display: block;
        margin-bottom: -100px;
        border: 1px dotted #000;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    }
    .comUl li {
        width: 100%;
    }
    .comUl li a {
        padding: 0 10px;
        height: 50px;
        display: flex;
        box-sizing: border-box;
        align-items: center;
        text-align: left;
        justify-content: space-between;
        border-right: none;
        border-bottom: 1px dotted #000;
		animation: none !important;
    }
	.comUl li a:hover:before {
		animation: none !important;
	}
    .comUl li:last-child a {
        border-bottom: none;
    }
    .comUl li a:before {
        margin: -10px 0 0;
        position: absolute;
        left: auto;
        right: 20px;
        bottom: auto;
        top: 50%;
        width: 12px;
        height: 20px;
        background: url("../../img/business/arrow_pagelink_down.svg") no-repeat center bottom;
        background-size: 12px 20px; 
        content: "";
    }
    .comUl li:nth-child(4n) a {
        border-right: none;
    }
    .comUl li .imgSpan {
        margin: 0;
        display: block;
        height: auto;
    }
    .comUl li .imgSpan embed {
        width: 27px;
        height: 27px;
    }
    .comUl li .imgSpan03 embed {
        width: 27px;
        height: 27px;
    }
    .comUl li .imgSpan02 embed {
        width: 27px;
        height: 27px;
    }
    .comUl li .txtSpan {
        width: calc(100% - 36px);
    }
}
.comBgBox {
    margin-bottom: -100px;
    padding: 180px 0 100px;
    background: #f2f2f2;
}
.comBgBox .content {
    width: 1280px;
}
.comPhoBox {
    position: relative;
}
.comPhoBox .txtBox {
    padding: 28px 0 0;
    position: absolute;
    left: 0;
    top: 50%;
    font-weight: 700;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}
.comPhoBox .txtBox .jp {
    margin-bottom: 10px;
    color: #fff;
    display: block;
    font-size: 3rem;
    letter-spacing: 0.05em;
}
.comPhoBox .txtBox .en {
    display: block;
    color: rgba(230,0,18,0.25);
    font-size: 8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.15em;
}
.comBgBox .whiteBox {
    width: 1080px;
    padding: 90px 100px 99px;
    box-sizing: border-box;
    margin: -100px auto 100px;
    background: #fff;
    position: relative;
}
.comBgBox .whiteBox01 {
    margin-bottom: 0;
}
.comBgBox .whiteBox .headLine01 {
    margin-bottom: 11px;
    padding-bottom: 15px;
}
.comBgBox .whiteBox p {
    margin-bottom: 57px;
    line-height: 2;
    letter-spacing: 0.05em;
}
.comBgBox .whiteBox .headLine02 {
    margin-bottom: 29px;
}
.comBgBox .whiteBox .headLine02:before {
    bottom: -17px;
}
.comBgBox .whiteBox .detailBox {
    padding: 37px 70px 60px;
    background: url("../../img/business/bg.png") repeat left top;
}
.comBgBox .whiteBox .detailBox01 {
    padding: 37px 70px 30px;
}
.comBgBox .whiteBox .detailBox .ttl {
    margin-bottom: 7px;
    color: #e60012;
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.comBgBox .whiteBox .detailBox .txt01 {
    margin-bottom: 29px;
    text-align: center;
    line-height: 1.8;
}
.comBgBox .whiteBox .subBox .lBox {
    width: 230px;
}
.comBgBox .whiteBox .subBox .lBox .txtBox {
    margin-bottom: 10px;
    padding: 22px 22px 32px;
    background: #fff;
    box-sizing: border-box;
}
.comBgBox .whiteBox .subBox .lBox .txtBox:last-child {
    margin-bottom: 0;
}
.comBgBox .whiteBox .subBox .lBox .top {
    margin-bottom: 2px;
    color: #e60012;
    font-weight: 700;
}
.comBgBox .whiteBox .subBox .lBox li {
    padding-left: 19px;
    font-size: 1.4rem;
    line-height: 1.7;
    position: relative;
}
.comBgBox .whiteBox .subBox .lBox li:before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #000;
    content: "";
    border-radius: 50%;
}
.comBgBox .whiteBox .subBox .rBox {
    width: 500px;
    padding: 65px 30px 40px;
    box-sizing: border-box;
    background: #fff;
}
.comBgBox .whiteBox .subBox .rBox li {
    width: 100px;
    margin: 0 55px 0 0;
    position: relative;
}
.comBgBox .whiteBox .subBox .rBox li:before {
    position: absolute;
    right: -40px;
    top: 54%;
    width: 40px;
    height: 30px;
    background: url("../../img/business/arrow_balancesheet.svg") no-repeat right center;
    background-size: 38px 30px; 
    content: "";
}
.comBgBox .whiteBox .subBox .rBox li:nth-child(3n) {
    margin-right: 0;
}
.comBgBox .whiteBox .subBox .rBox li:nth-child(3n):before {
    display: none;
}
.comBgBox .whiteBox .subBox .rBox .topSpan {
    margin-bottom: 10px;
    height: 65px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
    letter-spacing: 0.05em;
}
.comBgBox .whiteBox .subBox .rBox .imgSpan {
    display: flex;
    height: 75px;
    align-items: center;
    justify-content: center;
}
.comBgBox .whiteBox .subBox .rBox .imgSpan embed {
    width: 65px;
    height: 65px;
    display: block;
    margin: 0 auto;
}
.comBgBox .whiteBox .subBox .rBox .imgSpan02 embed {
    width: 70px;
    height: 70px;
}
.comBgBox .whiteBox .subBox .rBox .topSpan01 {
    margin: 0 -20px 10px;
}
.comBgBox .whiteBox .detailBox .ulList {
    margin-top: -20px;
}
.comBgBox .whiteBox .detailBox .ulList li {
    width: 312px;
    display: flex;
    height: 130px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 20px 10px 0;
    text-align: center;
    box-sizing: border-box;
}
.comBgBox .whiteBox .detailBox .ulList li .topImg {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.comBgBox .whiteBox .detailBox .ulList li .topImg embed {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}
.comBgBox .whiteBox .detailBox .ulList li .topImg02 embed {
    width: 47px;
    height: 47px;
}
.comBgBox .whiteBox .detailBox .ulList li .topImg04 embed {
    width: 52px;
    height: 52px;
}
.comBgBox .whiteBox .detailBox .ulList li .txtSpan {
    display: block;
    font-size: 1.4rem;
    line-height: 1.65;
}
.comBgBox .whiteBox .detailBox .ulList li .color {
    color: #e60012;
    font-weight: 700;
}
.comBgBox .whiteBox .detailBox .imgBox {
    text-align: center;
}
@media all and (max-width: 896px) {
    .comBgBox {
        margin-bottom: -50px;
        padding: 118px 0 20px;
    }
    .comBgBox .content {
        width: auto;
    }
    .comPhoBox {
        margin: 0 -15px;
        position: relative;
    }
    .comPhoBox img {
        width: 100%;
    }
    .comPhoBox .txtBox {
        padding: 0 0 20px;
    }
    .comPhoBox .txtBox .jp {
        margin-bottom: -2px;
        font-size: 2.4rem;
        line-height: 1.3;
    }
    .comPhoBox .txtBox .en {
        font-size: 2rem;
    }
    .comBgBox .whiteBox {
        width: auto;
        padding: 22px 10px 10px;
        box-sizing: border-box;
        margin: -30px auto 20px;
    }
    .comBgBox .whiteBox01 {
        margin-bottom: 0;
    }
    .comBgBox .whiteBox .headLine01 {
        margin-bottom: 15px;
        padding-bottom: 18px;
    }
    .comBgBox .whiteBox p {
        margin-bottom: 33px;
        line-height: 1.65;
    }
    .comBgBox .whiteBox .headLine02 {
        margin-bottom: 25px;
    }
    .comBgBox .whiteBox .headLine02:before {
        bottom: -11px;
    }
    .comBgBox .whiteBox .detailBox {
        padding: 17px 10px 10px;
        background: url("../../img/business/bg.png") repeat left top;
    }
    .comBgBox .whiteBox .detailBox01 {
        padding: 13px 10px 16px;
    }
    .comBgBox .whiteBox .detailBox .ttl {
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .comBgBox .whiteBox .detailBox .txt01 {
        margin-bottom: 14px;
        text-align: left;
        line-height: 1.65;
    }
    .comBgBox .whiteBox .subBox {
        display: block;
    }
    .comBgBox .whiteBox .subBox .lBox {
        width: auto;
        margin-bottom: 10px;
    }
    .comBgBox .whiteBox .subBox .lBox .txtBox {
        margin-bottom: 10px;
        padding: 7px 8px;
    }
    .comBgBox .whiteBox .subBox .lBox .txtBox:last-child {
        margin-bottom: 0;
    }
    .comBgBox .whiteBox .subBox .lBox .top {
        margin-bottom: 2px;
    }
    .comBgBox .whiteBox .subBox .lBox li {
        padding-left: 12px;
        font-size: 1.2rem;
        line-height: 2;
    }
    .comBgBox .whiteBox .subBox .lBox li:before {
        top: 10px;
        left: 2px;
        width: 4px;
        height: 4px;
    }
    .comBgBox .whiteBox .subBox .rBox {
        width: auto;
        padding: 13px 2px;
    }
    .comBgBox .whiteBox .subBox .rBox li {
        width: 32%;
        margin: 0 2% 0 0;
        position: relative;
    }
    .comBgBox .whiteBox .subBox .rBox li:before {
        margin-top: -15px;
        position: absolute;
        right: -10px;
        top: 86%;
        width: 19px;
        height: 10px;
        background: url("../../img/business/arrow_balancesheet.svg") no-repeat right center;
        background-size: 20px auto; 
        content: "";
    }
    .comBgBox .whiteBox .subBox .rBox li:nth-child(3n) {
        margin-right: 0;
    }
    .comBgBox .whiteBox .subBox .rBox li:nth-child(3n):before {
        display: none;
    }
    .comBgBox .whiteBox .subBox .rBox .topSpan {
        margin-bottom: 10px;
        height: 40px;
        font-size: 1rem;
        line-height: 1.2;
    }
    .comBgBox .whiteBox .subBox .rBox .imgSpan {
        height: 40px;
    }
    .comBgBox .whiteBox .subBox .rBox .imgSpan embed {
        width: 30px;
        height: 30px;
    }
    .comBgBox .whiteBox .subBox .rBox .imgSpan02 embed {
        width: 38px;
        height: 38px;
    }
    .comBgBox .whiteBox .subBox .rBox .imgSpan03 embed {
        width: 35px;
        height: 35px;
    }
    .comBgBox .whiteBox .subBox .rBox .topSpan01 {
        margin: 0 0 10px;
    }
    .comBgBox .whiteBox .detailBox .ulList {
        margin: 0;
        display: block;
    }
    .comBgBox .whiteBox .detailBox .ulList li {
        width: 100%;
        padding: 10px 10px;
        box-sizing: border-box;
        display: flex;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto 6px;
        text-align: left;
    }
    .comBgBox .whiteBox .detailBox .ulList li:last-child {
        margin-bottom: 0;
    }
    .comBgBox .whiteBox .detailBox .ulList li .topImg {
        height: auto;
        width: 47px;
        text-align: center;
        display: block;
    }
    .comBgBox .whiteBox .detailBox .ulList li .topImg embed {
        width: 39px;
        height: 39px;
    }
    .comBgBox .whiteBox .detailBox .ulList li .topImg02 embed {
        width: 32px;
        height: 32px;
    }
    .comBgBox .whiteBox .detailBox .ulList li .topImg04 embed {
        width: 33px;
        height: 33px;
    }
    .comBgBox .whiteBox .detailBox .ulList li .txtSpan {
        font-size: 1.2rem;
        width: calc(100% - 64px);
        line-height: 1.65;
    }
    .comBgBox .whiteBox .detailBox .ulList li .color {
        color: #e60012;
        font-weight: 700;
    }
    .comBgBox .whiteBox .detailBox .imgBox {
        text-align: center;
    }
}
/*------------------------------------------------------------
	print
------------------------------------------------------------*/
@media print{
    #gHeader{
        display: none;
    }
    .menu{
        display: none;
    }
}
.page_break{
    page-break-before: always;
}