@charset "UTF-8";


/***************************************************

	policy

***************************************************/


#page_head::before{
	background-image: url('../images/policy/page_header_bg.webp');
}


.tab-menu{
	width: 100%;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
}

.tab-menu .tab-btn{
	width: 50%;
	height: 69px;
	background: #f2f2f2;
	position: relative;
	cursor: pointer;
	/*transition: all 0.1s linear;*/
}

.tab-menu .tab-btn.active{
	height: 77px;
	background: var(--color1);
}

.tab-menu .tab-btn strong{
	font-size: 16px;
	font-weight: 700;
	color: #bbb;
	line-height: 1;
	letter-spacing: 0.04em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.tab-menu .tab-btn.active strong{
	color: #fff;
}

.tab-menu .tab-btn.active::before{
	content: '';
	display: inline-block;
	width: 320px;
	height: 6px;
	background: #29b8e3;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;	
}

.tab-menu .tab-btn:nth-child(2).active::before{
	background: #c431f8;	
}

.tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

.tab-content-wrapper{
	padding: 80px 75px;
	border: 2px solid #000000;
}

.tab-content-wrapper .title{
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: center;
	line-height: 1;
	margin-bottom: 60px;
}

.tab-content-wrapper .caption{
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin-bottom: 50px;
}

.tab-content-wrapper p{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
	margin-top: 1em;
}

.tab-content-wrapper dl dt{
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.04em;
	margin-bottom: 1em;
}

.tab-content-wrapper dl dd{
	margin-bottom: 2em;
}

.tab-content-wrapper dl dd:last-of-type{
	margin-bottom: 0;
}

.tab-content-wrapper dl dd p:first-of-type{
	margin-top: 0;
}

.tab-content-wrapper .num01{
	margin-top: 1em;
	counter-reset: num01 0; 
}

.tab-content-wrapper .num01 li{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
	padding-left: 22px;
	position: relative;
}

.tab-content-wrapper .num01 li::before{
	counter-increment: num01 1;
	content: counter(num01) '.';
	display: inline-block;
	position: absolute;
    top: 0;
    left: 0;
}

.tab-content-wrapper .num02{
	counter-reset: num02 0; 
}

.tab-content-wrapper .num02 li{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
	padding-left: 28px;
	position: relative;
}

.tab-content-wrapper .num02 li::before{
	counter-increment: num02 1;
	content: '('counter(num02) ')';
	display: inline-block;
	position: absolute;
    top: 0;
    left: 0;
}

.tab-content-wrapper .num03{
	counter-reset: num03 0; 
}

.tab-content-wrapper .num03 li{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
	padding-left: 22px;
	position: relative;
}

.tab-content-wrapper .num03 li::before{
	counter-increment: num03 1;
	content: counter(num03, lower-alpha) ')';
	display: inline-block;
	position: absolute;
    top: 0;
    left: 0;
}

.tab-content-wrapper ul.li_m > li{
	margin-bottom: 28px;
}

.tab-content-wrapper ul.li_m li:last-child{
	margin-bottom: 0;
}

.tab-content-wrapper table{
	margin-top: 1em;
	border: 1px solid #000;
}

.tab-content-wrapper table tr .t01{
	width: 240px;
}

.tab-content-wrapper table tr td,
.tab-content-wrapper table tr th{
	padding: 16px;
	box-sizing: border-box;
}

.tab-content-wrapper table tr td.t01,
.tab-content-wrapper table tr th.t01{
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.tab-content-wrapper table tr td.t02,
.tab-content-wrapper table tr th.t02{;
	border-bottom: 1px solid #ddd;
}

.tab-content-wrapper table tr:last-of-type td.t02,
.tab-content-wrapper table tr:last-of-type td.t01{;
	border-bottom: none;
}

.tab-content-wrapper .info{
	margin-top: 50px;
	text-align: right;
}

.tab-content-wrapper .info p{
	margin: 0;
}




/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1440px){

.tab-menu .tab-btn{
	height: 4.791667vw;
}

.tab-menu .tab-btn.active{
	height: 5.347222vw;
}

.tab-menu .tab-btn strong{
	font-size: 1.111111vw;
}

.tab-menu .tab-btn.active::before{
	width: 22.222222vw;
	height: 0.416667vw;	
}

.tab-content-wrapper{
	padding: 5.555556vw 5.208333vw;
}

.tab-content-wrapper .title{
	font-size: 1.527778vw;
	margin-bottom: 4.166667vw;
}

.tab-content-wrapper .caption{
	font-size: 1.111111vw;
	margin-bottom: 3.472222vw;
}

.tab-content-wrapper p{
	font-size: 1.111111vw;
}

.tab-content-wrapper dl dt{
	font-size: 1.111111vw;
}

.tab-content-wrapper .num01 li{
	font-size: 1.111111vw;
	padding-left: 1.527778vw;
}

.tab-content-wrapper .num02 li{
	font-size: 1.111111vw;
	padding-left: 1.944444vw;
}

.tab-content-wrapper .num03 li{
	font-size: 1.111111vw;
	padding-left: 1.527778vw;
}

.tab-content-wrapper ul.li_m > li{
	margin-bottom: 1.944444vw;
}

.tab-content-wrapper table tr .t01{
	width: 16.666667vw;
}

.tab-content-wrapper table tr td,
.tab-content-wrapper table tr th{
	padding: 1.111111vw;
}

.tab-content-wrapper .info{
	margin-top: 3.472222vw;
}






}


/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:750px){

#page_head::before{
	background-image: url('../images/policy/page_header_bg_sp.webp');
}


.tab-menu{

}

.tab-menu .tab-btn{
	height: 19.733333vw;
}

.tab-menu .tab-btn.active{
	height: 21.866667vw;
}

.tab-menu .tab-btn strong{
	font-size: 3.733333vw;
	line-height: 1.8;
	text-align: center;
}

.tab-menu .tab-btn.active::before{
	width: 36vw;
	height: 1.6vw;	
}

.tab-content-wrapper{
	padding: 10.666667vw 5.333333vw;
}

.tab-content-wrapper .title{
	font-size: 4.8vw;
	margin-bottom: 8vw;
}

.tab-content-wrapper .caption{
	font-size: 3.733333vw;
	margin-bottom: 6.666667vw;
}

.tab-content-wrapper p{
	font-size: 3.733333vw;
}

.tab-content-wrapper dl dt{
	font-size: 3.733333vw;
}

.tab-content-wrapper .num01 li{
	font-size: 3.733333vw;
	padding-left: 5.333333vw;
}

.tab-content-wrapper .num02 li{
	font-size: 3.733333vw;
	padding-left: 5.866667vw;
}

.tab-content-wrapper .num03 li{
	font-size: 3.733333vw;
	padding-left: 5.333333vw;
}

.tab-content-wrapper ul.li_m > li{
	margin-bottom: 7.466667vw;
}

.tab-content-wrapper table tr .t01{
	width: 26.666667vw;
}

.tab-content-wrapper table tr td,
.tab-content-wrapper table tr th{
	padding: 4.266667vw;
}

.tab-content-wrapper .info{
	margin-top: 6.666667vw;
}






}

