<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*===========================================
	tabswitch.css
=============================================*/


/*===========================================
	tab
=============================================*/
#contents *{
    font-size: 1rem;
}

#show_hide{
    padding: 0 1em;
    margin: 0 auto;
}

#contents div.tabArea {
	margin-left: 0;
	margin-top: 3em;
}

#contents div.tabArea ul{
	list-style:none;
	display: flex;
}

#contents .tabArea ul &gt; li{
	flex: 1;
	border-radius: 8px 8px 0 0;
	background-color: rgba(204, 204, 204, 0.16);
    border: #d63f2e 2px solid;
    border-right: none;
    font-size: 0.875rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#contents .tabArea ul &gt; li:last-child{
    border-right: #d63f2e 2px solid;
}

#contents .tabArea ul &gt; li.active{
    background-color: #fff;
	border-bottom: none;
}

#contents .tabArea ul &gt; li span {
    font-size: 1.25rem;
	cursor: pointer;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0.5em;
}
/* 
#contents .tabArea ul &gt; li :focus-visible{
    outline:thin dotted;
}
#contents .tabArea ul &gt; li &gt; span :focus-visible{
}

#contents .tabArea ul &gt; li :focus,
#contents .tabArea ul &gt; li :hover{
	opacity: 0.7;
} */

#contents div.openArea {
	margin-left: 0;
	display: block;
	height: auto;
	padding: 15px;
	opacity: 1;
	transition: opacity 0.5s ease 0s;
	background-color: rgba(204, 204, 204, 0.16);
	border: 1px solid #ccc;
	border-top: none;
}

#contents .tabArea ul &gt; li span [aria-presse=false]{
	background-color: #b9b2a785;
}

#contents .opencloseArea{
    border-left: 2px solid #d63f2e;
    border-bottom: 2px solid #d63f2e;
    border-right: 2px solid #d63f2e;
    padding: 2em 2em 3em 2em;
}
/* 
#contents .opencloseArea section{
    margin-bottom: 1em;
} */

#contents .opencloseArea section h2{
    padding: 1em 0 1em 1em;
    border: #d63f2e 1px solid;
    background-color: rgba(204, 204, 204, 0.16);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

#contents .opencloseArea section h2:focus-visible{
	outline: thin dotted;
}
#contents .opencloseArea section h2:hover{
    opacity: 0.7;
}

#contents .opencloseArea section.active h2{
    background-color: #fff;
}

#contents .opencloseArea section h2 p{
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0;
    margin-left: 1em;
    flex-grow: 2;
}

#contents .opencloseArea section h2 p &gt; span{
    font-weight: normal;
}

/*2022/04/19追記*/
#contents .opencloseArea section h2 span img.pct_img {
    width: 80px;
    height: auto;
    max-width: none;
}

#contents .opencloseArea section h2 span.kaihei-icon {
    font-size: 240%;
    color: #d63f2e;
    transition: all 0.5s;
    margin-right: 0.5em;
}

#contents .opencloseArea section.active h2 span.kaihei-icon{
    transform: rotate( 45deg );
}

#contents .opencloseArea section .detailArea{
    border-left: 1px solid #d63f2e;
    border-right: 1px solid #d63f2e;
    border-bottom: 1px solid #d63f2e;
    margin-top: 0 !important;
    padding: 1.5em;
    padding-left: calc(40px + 1em);
}

#contents .opencloseArea section .detailArea{
    display: none;
}

#contents .opencloseArea section .detailArea ul.linkList,
#contents .opencloseArea section .detailArea ul.linkList li p{
    margin: 0;
}

#contents .opencloseArea section .detailArea ul.linkList li p{
    font-weight: bold;
}

#contents .opencloseArea section .detailArea ul.linkList li:not(:last-child){
    margin-bottom: 1em;
    padding-bottom: 10px;
    width: 98%;
    border-bottom: 1px dotted #e2796d;
}

#contents .opencloseArea section .detailArea ul.linkList li a.textLink{
    display: inline-block;
    margin-left: 0.5em;
    background-position: 0 8px;
}

@media (max-width: 640px){
    #contents * {
        font-size: 0.875rem;
    }
    
    #show_hide{
        padding: 0;
        margin: 0;
    }
    
    #contents .opencloseArea{
        padding: 2em 1em;
    }
    #contents .tabArea ul &gt; li span {
        font-size: 1.1rem;
        padding: 0.2em 0 0;
    }

    #contents .opencloseArea section h2 {
        align-items: flex-start;
        padding: 1em 0 1em 0.5em;
    }

    #contents .opencloseArea section h2 p{
        font-size: 1rem;
        margin: 0 0.5em;
    }
    
    #contents .opencloseArea section h2 span img.pct_img {
        max-width: 50px;
    }
    
    #contents .opencloseArea section h2 span.kaihei-icon {
        margin-right: 0.3em;
    }
    
    #contents .opencloseArea section .detailArea{
        padding-left: 1.5em;
    }
}

/* 
@media (max-width: 480px){
	#contents .tabArea ul &gt; li{
		text-align: center;
	}
}

@media (max-width: 400px){
    #contents .tabArea ul &gt; li {
        line-height: 1.2;
        padding: 10px 5px;
    }
} */


/* --------------------------------------
		20221229 accessibility
--------------------------------------- */
/* tabswitch */
#contents .tabArea ul &gt; li {
	border-radius: none; 
    border: none;
}

#contents .tabArea ul &gt; li.active button {
    background-color: #fff;
    border-bottom: none;
}

#contents .tabArea ul &gt; li:last-child {
    border-right: none;
}

#contents .tabArea ul &gt; li button {
    background-color: #f0f0f0;
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    border: #d63f2e 2px solid;
}

#contents .tabArea ul &gt; li button :focus {
    opacity: 0.7;
    outline: auto;
    outline-color: black;
}

#contents .tabArea ul &gt; li button :hover {
    opacity: 0.7;
}

#contents .tabArea ul &gt; li button :focus-visible {
    opacity: 0.7;
    outline: auto;
    outline-color: black;
}


/* accordion */
#contents .opencloseArea section span img.pct_img {
    width: 80px;
    height: auto;
    max-width: none;
}

#contents button .openclose {
    padding: 1em 0 1em 1em;
}

#contents .openclose p {
    font-weight: bold;
	text-align: left;
}


#contents .opencloseArea section.active .openclose {
    background-color: #fff;
}

#contents .opencloseArea section.active .openclose::after {
	transform: rotate( 45deg );
}


@media (max-width: 640px){
	#contents .opencloseArea section button span img.pct_img {
		max-width: 50px;
	}
}
</pre></body></html>