@charset "UTF-8";
/* CSS Document */

@keyframes slideranim{
0%{
filter: blur(30px);
transform: scale(1.6);
opacity: 0;
}
100%{
filter: blur(0);
transform: scale(1);
opacity: 1;
}
}

@keyframes txtloop {
0% {
transform: translateX(100%);
}
to {
transform: translateX(-100%);
}
}

@keyframes txtloop2 {
0% {
transform: translateX(0);
}
to {
transform: translateX(-200%);
}
}


@keyframes svg {
0% {
fill: transparent;
stroke-dashoffset: 1600px;
}
80% {
fill: transparent;
}
100%{
stroke-dashoffset: 0;
fill: #FFF;
}
}


/*PC*/
@media print, screen and (min-width: 768px) {

/*index
-----------------------------------------------*/
#emergency .idx_list{
display: flex;
flex-wrap: wrap;
}

#emergency .idx_list li{
width: 31.333%;
margin-right: 2%;
margin-bottom: 2%;
}

#emergency .idx_list li:nth-child(3n){
margin-right: 0;
}


/*staffing
-----------------------------------------------*/
#emergency .staffing_list{
display:flex;
flex-wrap: wrap;
justify-content:space-between;
margin: 0 0 50px;
}

#emergency .staffing_list li{
width: 31%;
}

#emergency .staffing_list li img{
border-radius: 10px;
overflow: hidden;
}


/*flow
-------------------------------------*/
.flow_design08 {
display: flex;
justify-content: center;
align-items: center;
}

.flow08 {
padding-left: 0;
}

.flow08 > li {
list-style-type: none;
border-radius: .6rem;
background: #F4F6FA;
position: relative;
padding: 10px 20px;
}

.flow08 > li:not(:last-child) {
margin-bottom: 20px;
}

.flow08 > li dl {
gap: 20px;
}

.flow08 > li dl dt {
font-size: 1.2em;
font-weight: 700;
}

.flow08 > li .icon08 {
color: #008dcf;
font-size: 2rem;
margin-right: 0.5em;
}

.flow08 > li dl dd {
}

#emergency .fl_box {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 4%;
}

#emergency .fl_box .box2{
width: 48%;
}

#emergency .fl_box img{
border-radius: 10px;
overflow: hidden;
}


}
/*sp*/
@media only screen and (max-width: 767px) {

/*index
-----------------------------------------------*/
#emergency .idx_list{
}

#emergency .idx_list li{
width:100%;
margin-bottom:15px;
}

#emergency .idx_list li:last-child{
margin-bottom: 0;
}


/*staffing
-----------------------------------------------*/
#emergency .staffing_list{
display:flex;
flex-wrap: wrap;
justify-content:space-between;
margin: 0 0 50px;
}

#emergency .staffing_list li{
width: 32%;
}

#emergency .staffing_list li img{
border-radius: .6rem;
overflow: hidden;
}


/*flow
-------------------------------------*/
.flow_design08 {
display: flex;
justify-content: center;
align-items: center;
}

.flow08 {
padding-left: 0;
}

.flow08 > li {
list-style-type: none;
border-radius: .6rem;
background: #F4F6FA;
position: relative;
padding: 15px;
}

.flow08 > li:not(:last-child) {
margin-bottom: 20px;
}

.flow08 > li dl {
gap: 20px;
}

.flow08 > li dl dt {
font-size: 1em;
font-weight: 700;
}

.flow08 > li .icon08 {
color: #008dcf;
font-size: 1.8rem;
margin-right: 0.5em;
}

.flow08 > li dl dd {
font-size: 14px;
}

#emergency .fl_box {
width: 100%;
margin-bottom: 30px;
}

#emergency .fl_box .box2{
width: 100%;
margin-bottom:20px;
}

#emergency .fl_box img{
border-radius: 10px;
overflow: hidden;
}


}