@charset "utf-8";
/*opening*/
.op {
    justify-content: center;
    align-items: center;
    /*display: relative;*/
    background: #0059b3;
    background-image: radial-gradient(#19237D 5%,transparent 20%),radial-gradient(#19237D 5%,transparent 20%);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
    position: relative;
    color: #fff;
    padding-bottom: 40px;
	padding-top: 320px;	/*20230206 add*/
}
.op .titleArea {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin: auto;
    height: 200px;
    width: 200px;
}
.op .drop {
    position: absolute;
    top: -25px;
    width: 100%;
    height: 100%;
    border-radius: 100% 5% 100% 100%;
    transform: rotate(-45deg);
    margin: 0px;
    background:#39B7DD;
    animation: drops 1.5s forwards;
}
@keyframes drops {
    45% {
        top: 0;
        border-radius: 100% 5% 100% 100%;
        transform: rotate(-45deg);
    }
    100% {
        top: 0;
        transform: rotate(5deg);
        border-radius: 100%;
    }
}
.op h1 {
    color: white;
    position: absolute;
    font-size: 2.5em;
    height: 1em;
    top: 135px;
    left: 0;
    right: 0; 
    z-index: 2;
    margin: auto;
    text-align: center;
    opacity: 0;
    animation: chapter 0.5s 1s forwards;
}
@keyframes chapter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.op .inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 50px 10px 10px;	/*20230206 edit*/
}
.animationBoder {
    position: relative;
    text-align: center;
    font-size:18px;
    margin: 80px auto;
    max-width: 60%;
}
.animationBoder:before {
    content: "";
    position: absolute;
    left:50%;
    bottom:40px;
    width:0;
    border-bottom: solid 2px #fff;
    transform: translateX(-50%);
    animation: border 1s linear forwards;
}
@keyframes border {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
.tpBox{
    width: 47.5%;
    padding: 20px;
    margin: 0 1.5% 18px 1%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 10px;
    box-sizing:border-box;
}

@media screen and (max-width: 460px) {
    .tpBox{
        width: 97.5%;
    }
}

/*common*/
.flexArea {
    display: flex;
    flex-wrap: wrap;
}
.flipLeft {
    animation-name:fadeLeftAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.flipUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#content button { /*250219修正*/
    color:#454545;
    background:transparent;
    border-width:2px;
    border-style: solid;
    border-color: #454545;
    position:relative;
    margin:1em;
    display:inline-block;
    padding:1.5em 2em;
    transition:all 0.3s ease-in-out;
    text-align:center;
    font-family:comfortaa;
    font-weight:bold;
    cursor: pointer;
}
#content button:before,
#content button:after{ /*250219修正*/
    content:'';
    display:block;
    position:absolute;
    border-color:#454545;
    box-sizing:border-box;
    border-style:solid;
    width:1em;height:1em;
    transition:all 0.3s ease-in-out;
}
#content button:before { /*250219修正*/
    top:-6px;
    left:-6px;
    border-width:2px 0 0 2px;
    z-index:5;
    }button:after {
    bottom:-6px;
    right:-6px;
    border-width:0 2px 2px 0;
}
#content button:hover:before,
#content button:hover:after { /*250219修正*/
    width:calc(100% + 12px);
    height:calc(100% + 12px);
    border-color:#19237D;
}
#content button:hover { /*250219修正*/
    color:#fff;
    background-color:#19237D;
    border-color:#19237D;
}
#content .panel { /*250219修正*/
    max-width:960px;
    text-align:center;
    position:relative;
    margin:auto;
}
.mHeading01 {
    position: relative;
    padding-bottom: 0.75em;
    border-bottom: 1px solid #ccc;
    font-weight:  bold;
    margin-bottom: 2em;
}
.mHeading01::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 3px;
    background-color: #333;
}
.sHeading01 {
    position: relative;
    display: inline-block;
    padding: 0 45px;
    font-weight: bold;
    margin-bottom: 1em;
}
.sHeading01:before,
.sHeading01:after {
    position: absolute;
    top: 40%;
    display: inline-block;
    content: '';
    width: 22px;
    height: 3px;
    background-color: #ccc;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}
.sHeading01:before {
    left: 0;
}
.sHeading01:after {
    right: 0;
}
.paddingLeft15 {
    padding-left: 1.5em;
}
.tableSet01 {
    border-collapse: collapse;
    margin: 0 auto 15px;
    padding: 0;
    width:100%;
}
.tableSet01 tr {
    background-color:#fff;
    border-bottom: 2px solid #fff;
}
.tableSet01 tr:nth-child(even) {
    background-color:#ECECEC;
}
.tableSet01 tr,
.tableSet01 th {
    padding: 1em;
}
.tableSet01 thead tr {
    background-color:#2A5283;
    color: #fff;
}
.tableSet01 tbody th {
    text-align: center;
}
.tableSet01 tbody td {
    padding: 0.5em;
}
.boxSet01 {
    border: 3px solid #666;
    border-radius: 8px;
    position: relative;
    margin-top: 1em;
    width: 100%;
}
.boxSet01 > .caption {
    text-align: center;
    position: absolute;
    right: 0;
    left:0;
    top: -3em;
}
.boxSet01 > .caption > span {
    padding: 0 0.7em;
    background: #fff;
    font-weight: bold;
    font-size: 24px;
}
.boxSet01 .bs01inner {
    padding: 2.5em;
}
.boxSet02 {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.boxSet02 > button {
    width:47%;
    margin: 1.5%;
}

@media screen and (max-width: 640px) {
    .tableSet01 {
        width:100%;
    }
    .boxSet02 > button {
        width:100%;
    }
}


/*parallax*/
.parallax .titleArea {
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.parallax .contents {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.parallax .titleArea.bg01 {
    background-image: url(/company/responsibleinvestor/img/esg_bg02.jpg);
}
.parallax .titleArea.bg02 {
    background-image: url(/company/responsibleinvestor/img/esg_bg04.jpg);
}
.parallax .titleArea.bg03 {
    background-image: url(/company/responsibleinvestor/img/esg_bg01.jpg);
}
.parallax .titleArea .inner,
.parallax .contents .inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 10px;
}
.parallax .title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.parallax .titleArea .text {
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
}
@media print {
    .parallax .titleArea {
        background: #384F7D;
    }
}
.parallax .contents .text {
    color: #555555;
    font-size: 14px;
    text-align: left;
    padding: 0 20px;
    margin-bottom: 20px;
}
.parallax a {
    background: rgba(255, 255, 255, 0.9);
    display: block;
    width: 200px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 3px 0;
    margin: 0 auto;
}
.flipBox {
    width: 100%;
    margin-bottom: 30px;
}
.flipBox .title {
    position:relative;
    padding: 0 1rem 0;
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
    color: #555;
    margin-bottom: 40px !important;
}
.flipBox .title:before {
    position: absolute;
    content: '';
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    border-radius: 3px;
    background: #005885;
}
.delay-time03{  
  animation-delay: 0.3s;
}
.delay-time06{  
  animation-delay: 0.6s;
}
.delay-time09{  
  animation-delay: 0.9s;
}
.delay-time12{  
  animation-delay: 1.2s;
}
@media screen and (min-width: 768px) {
  .parallax .title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .parallax .text{
    font-size: 18px;
  }
  .parallax a{
    width: 220px;
    padding: 6px 0;
  }
}
@media screen and (max-width: 640px) {
    .parallax .titleArea{
        height: 35vh;
    }
    .parallax .titleArea .inner,
    .parallax .contents .inner {
        max-width: 640px;
        margin: 0 auto;
        padding: 10px;
    }
}

/*localNavi02*/
.slide-toggle{
    display: none;
}
.localNavi02 {
    position: relative;
    max-width: 1024px;
    margin: 50px auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.localNavi02 label{
    width: 16.6%;
    margin-top: 20px;
    text-align: center;
    display: block;
    float: left;
    color: #333;
}
.localNavi02 label:hover{
    cursor: pointer;
    color: #666;
}
.localNavi02 label span{
    display: block;
    padding: 10px;
    font-size:12px;
}
.localNavi02 label .icon{
    font-size: 14px;
    font-weight: bold;
    border: solid 2px #333;
    text-align: center;
    height: 50px;
    width: 50px;
    display: block;
    margin: 0 auto;
    line-height: 50px;
    border-radius: 50%;
}
.localNavi02 label .icon:hover {
    font-size: 14px;
    border: solid 2px #19237D;
    background: linear-gradient(-225deg, #368CCC 0%, #1D8FE1 48%, #625EB1 100%);
}
/*slider*/
.slider{
    width: 100%;
    height: 5px;
    display: block;
    background: #ccc;
    margin-bottom: 10px;
    border-radius: 5px;
    position: absolute;
    top:0;
}
.slider .bar{
    width: 16.6%;
    height: 5px;
    background: #333;
    border-radius: 5px;
}
.localNavi02 label,
.slider .bar {
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.localNavi02 .slide-toggle:checked + label{
      opacity: 0.2;
}
.localNavi02 #slide-item-1:checked ~ .slider .bar{ margin-left: 0%; }
.localNavi02 #slide-item-2:checked ~ .slider .bar{ margin-left: 16.6%; }
.localNavi02 #slide-item-3:checked ~ .slider .bar{ margin-left: 33.2%; }
.localNavi02 #slide-item-4:checked ~ .slider .bar{ margin-left: 49.8%; }
.localNavi02 #slide-item-5:checked ~ .slider .bar{ margin-left: 66.4%; }
.localNavi02 #slide-item-6:checked ~ .slider .bar{ margin-left: 83.4%; }

@media screen and (max-width: 640px) {
    .localNavi02 label{
        width: 100%;
        margin-top: 10px;
    }
    .localNavi02 {
        padding-top:20px;
    }
    .localNavi02 label {
        display: flex;
    }
    .localNavi02 label .icon{
        height: 35px;
        width: 35px !important;
        line-height: 35px;
        margin-left: 10px;
    }
    .localNavi02 label .icon:hover {
        color: #fff;
    }
    .localNavi02 label span{
        flex: 1;
        text-align: left;
    }
    .localNavi02 label span:hover{
        text-decoration: underline;
    }
}
/*20220712 add (250219修正)
-------------------*/
#content .panel1,
#content .panel2,
#content .panel3 {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
#content .panel > * ,
#content .panel1 > * {
	width: 50%!important;
}
#content .panel2 > * {
	width: 45%!important;
}
#content .panel3 > * {
	width: 30%!important;
}
#content button.linkBtn001,
#content button.linkBtn002 {
    color:#454545;
    background:transparent;
    border:2px solid #454545;
}
#content button.linkBtn001 span,
#content button.linkBtn002 span,
#content button.linkBtn003 span{
    padding:1.5em 2em;
    display: block;
}
#content button.linkBtn001:before,
#content button.linkBtn001:after,
#content button.linkBtn002:before,
#content button.linkBtn002:after{
    content:'';
    display:block;
    position:absolute;
    border-color:#454545;
    box-sizing:border-box;
    border-style:solid;
    width:1em;height:1em;
    transition:all 0.3s ease-in-out;
}
#content button.linkBtn001:before,
#content button.linkBtn002:before{
    top:-6px;
    left:-6px;
    border-width:2px 0 0 2px;
    z-index:5;
    }
#content button.linkBtn001:after,
#content button.linkBtn002:after {
    bottom:-6px;
    right:-6px;
    border-width:0 2px 2px 0;
}
#content button.linkBtn001:hover:before,
#content button.linkBtn001:hover:after {
    width:calc(100% + 12px);
    height:calc(100% + 12px);
    border-color:#19237D;
}
#content button.linkBtn001:hover {
    color:#fff;
    background-color:#19237D;
    border-color:#19237D;
}
#content span.rightArrow,
#content span.downArrow {
    position: relative;
    display: inline-block;
	font-weight: bold;
	margin: -1.5em -2em -1.5em -2em;
}
#content span.rightArrow::after {
    content:'';
    position: absolute;
    margin: auto;
    top:0;
    bottom: 0;
    right: 1em;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#content span.downArrow::after {
    content:'';
    position: absolute;
    margin: auto;
    bottom: 0.5em;
    right: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: inherit;
}
#content button.linkBtn001:hover .rightArrow::after {
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
}
#content .buttonPdf {
	position: relative;
    background:transparent;
    border:2px solid #454545;
	display: table!important;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	font-weight: bold;
	font-family: comfortaa;
	font-size: 82%!important;
	text-align: center!important;
	color: #454545;
	padding: 1.5em 3em 1.5em 2em!important;
	margin: 1em!important;
}
#content .buttonPdf span {
	font-weight: bold;
}
#content .buttonPdf:visited {
    color:#454545;
}
#content .buttonPdf:hover {
    color:#fff;
    background-color:#19237D;
    border-color:#19237D;
}
#content .buttonPdf::before,
#content .buttonPdf::after {
	content: '';
	position: absolute;
	border: solid #19237D;
	width: 15px;
	height: 15px;
	transition: all 0.3s ease-in-out;
}
#content .buttonPdf::before {
	top: -6px;
	left: -6px;
	border-width: 2px 0 0 2px;
}
#content .buttonPdf::after {
	bottom: -6px;
	right: -6px;
	border-width: 0 2px 2px 0;
}
#content .buttonPdf:hover::before,
#content .buttonPdf:hover::after {
	width: calc(100% + 12px);
	height: calc(100% + 12px);
}
#content .buttonPdf .iconPdf {
	display: table-cell;
	vertical-align: middle;
}
#content .buttonPdf .iconPdf::after {
	content: url(/common/img/com_ic01.png);
	display: inline-block;
	width: 16px;
	height: 16px;
	border: none;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
/*-----230802追加-----*/
#content .buttonPdf.typeF {
    border-color: #6B9FE1;
    color: #FFF;
}
#content .buttonPdf.typeF::before,
#content .buttonPdf.typeF::after {
	content: '';
	position: absolute;
	border: solid #6B9FE1;
	width: 15px;
	height: 15px;
	transition: all 0.3s ease-in-out;
}
#content .buttonPdf.typeF::before {
	top: -6px;
	left: -6px;
	border-width: 2px 0 0 2px;
}
#content .buttonPdf.typeF::after {
	bottom: -6px;
	right: -6px;
	border-width: 0 2px 2px 0;
}
#content .buttonPdf.typeF:hover {
    color:#fff;
    background-color:#19237D;
    border-color:#19237D;
}
#content .buttonPdf.typeF:hover::before,
#content .buttonPdf.typeF:hover::after {
	width: calc(100% + 12px);
	height: calc(100% + 12px);
    border-color:#19237D;
}
/*-----230802ここまで-----*/

@media only screen and (max-width:640px){
	#content .panel2,
	#content .panel3 {
		flex-direction: column;
	}
	#content .panel1 > *,
	#content .panel2 > *,
	#content .panel3 > * {
		width: 100%!important;
		margin: 0.5em 0!important;
	}
	#content button.linkBtn001,
	#content button.linkBtn002 {
		min-width: 100%;
		margin: 0.5em 0;
	}
	#content .panel > * ,
	#content .panel1 > * {	/*221216*/
		width: 100%!important;
	}

}
/*----------------------------
 ESG INDEX 20230226
----------------------------*/
.indexBox {width: 100%;	text-align: center;	background: rgba(225,225,225, 0.1);	padding: 15px 20px 25px;}
.indexBox .indexBoxHead {font-size: 2.0rem;	font-weight: bold;	margin-bottom: 20px;	padding-bottom: 0.5em;	border-bottom: 1px solid #4886D3;}
.indexBox > ol li {font-size: 1.5rem;	line-height: 1.8;}
.indexBox > ol li a {color: #FFFFFF;	text-decoration: none;	transition: 0.75s;}
.indexBox > ol li a:hover {color: #FF5A5D;	text-decoration: underline;}
.indexBox > ol li a::before {content: url(/common/img/com_ic02.png);	display: inline-block;	margin-right: 10px;}
.indexBox > ol li a:hover::before {transform: rotate(90deg);	transition: 0.5s;}
.indexBox > ol li:first-child {display: none;}
.indexBox > ol li:nth-child(2) {display: block;}
a.anchor {padding-top: 30px;	margin-top: -30px;	height: 0;}
/*ESGページ以外*/
.indexBoxWrap {padding: 0 !important;	margin: 10px auto 50px;}
.indexBoxWrap .indexBox {background: none; }
.indexBoxWrap .indexBox .indexBoxHead {color: #AAA;	border-bottom: 1px solid #AAAAAA;}
.indexBoxWrap .indexBox > ol li a {color: #5E5E5E;}
.indexBoxWrap .indexBox > ol li a:hover {color: #FF0004;	text-decoration: underline;}
.indexBoxWrap .indexBox > ol li a::before {content: url(/common/img/com_ic07.png);	display: inline-block;	margin-right: 10px;}

@media only screen and (max-width: 640px){
.indexBox .indexBoxHead {border-bottom: none;	padding-bottom: 0;}
.indexBox > ol li {font-size: 1.4rem;	line-height: 1.4;	width:100%;	background: rgba(255,255,255,0.2);	border-radius: 0.5em;	margin-bottom: 0.5em !important;}
.indexBox > ol li:first-child {display: block;}
.indexBox > ol li:nth-child(2) {display: none;}
.indexBox > ol li a {display: block;	padding: 15px;}
.indexBox > ol li a:hover {color: #FFF;	text-decoration: none;}
.indexBox > ol li a:hover::before {transform: rotate(0deg);}
.indexBox > ol li a::before {content: url(/common/img/com_ic11.png);}
.indexBox > ol li a:active {color: #FFF;	background: rgba(255,255,255,0.5);	text-decoration: none;	border-radius: 0.5em;}
.indexBox > ol li a:active::before {transform: rotate(0deg);}
/*ESGページ以外*/
.indexBoxWrap .indexBox {padding: 0;}
.indexBoxWrap .indexBox .indexBoxHead {border-bottom: none;	padding-bottom: 0; margin-bottom: 10px;}
.indexBoxWrap .indexBox > ol li {font-size: 1.4rem;	line-height: 1.4;	background: #999;	width:100%;	border-radius: 0.5em;	margin-bottom: 0.5em !important;}
.indexBoxWrap .indexBox > ol li a {display: block;	padding: 15px;	color: #FFF;}
.indexBoxWrap .indexBox > ol li a::before {content: url(/common/img/com_ic16.png);}
.indexBoxWrap .indexBox > ol li a:hover {color: #333;	text-decoration: none;}
.indexBoxWrap .indexBox > ol li a:active {	background: #F5F5F5;	text-decoration: none;	border-radius: 0.5em;}
}
