@charset "UTF-8";

/*
Date   : 2023.03
Author : ISMR/h.tabira
*/

/*
font-family: 'Klee One', cursive;
font-family: 'Zen Kaku Gothic New', sans-serif;
font-family: 'Zen Maru Gothic', sans-serif;
*/

/* ---------------------------------------- */
/* pages */

.about{    
    min-width: 1000px;
    max-width: 100%;
}
.facility_index{
    font-family: 'Klee One', cursive;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
}
.facility_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
/* 偶数奇数時の対応*/
.facility_box::after{
    display: block;
    content:"";
    width: 400px;
}
/* 偶数奇数時の対応 END*/
.facility_box dl:hover{
  transform:scale(1.1,1.1);
}
.facility_box dl{
    border:solid 2px #b7b7b7;
    padding: .5em;
}
.facility_box dl dd{
    text-align: center;
    margin-left: 0;
}

.pdf_embed iframe{
    aspect-ratio:1 / 1.4;
    width:100%;
    height:100%
}

.support table{
    box-sizing: content-box;
    width: 100%;
    margin: 1em 0;
    border-collapse:collapse;
}
.support table th,.support table td{
    padding: 1em;
    font-weight: normal;
}
.support table th{
    background-color: pink;
    width:0;
    white-space:nowrap;
    border:solid 1px white;
}
.support table td{
    border:solid 1px pink;
}

a[href*=".pdf"]:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 34px;
	margin-right: 10px;
	background-image: url(../../common/img/icon_pdf.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px auto;
}

@media screen and (max-width: 700px) {
    .about{
        min-width: 90%;
        max-width: 95%;
        }
    .facility_index{
        font-size: 1em;
    }    
    .facility_box{
        display: block;
        justify-content: center;
    }
    .facility_box dl dt{    
        width: 100%;
        }
    .facility_box dl dt img{
        width: 100%;
    }
    .support table th,.support table td{
        display: block;
    }
    .support table th{
        width:100%;
        text-align: left;
        box-sizing: border-box;
    }
}