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

/* ============================
		Reset
 ============================ */

section {
margin: 0 0 50px 0;
padding: 0;
}


/* ============================
		mainVisualSection
 ============================ */

.mainVisualSection {
}

.mainVisualSection .visual {
position: relative;
margin-bottom: 30px;
}

.mainVisualSection .visual img {
width: 100%;
height: auto;
}

.mainVisualSection h2 {
position: absolute;
top: 0;
left: 0;
background-color: #1c4370;
font-size: 14px;
font-weight: bold;
color: #fff;
padding: 0 1em;
line-height: 2em;
}

.visualBottomCatchSection p {
text-align: center;
}


/* for TB & PC */
@media screen and (min-width: 768px) {

	.mainVisualSection h2 {
	top: 0;
	font-size: 30px;
	padding: 0 1.5em;
	}

	.visualBottomCatchSection p {
	font-size: 24px;
	}

}


/* for TB */
@media screen and (max-width: 1400px) and (min-width: 768px){

	.visualBottomCatchSection p {
	font-size: 18px;
	}

}





/*================================================
 *  saisentan
 ================================================*/


.col-15, .col-sm-15, .col-md-15, .col-lg-15 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
}
.red{
  background-color: red;
}
.blue{
  background-color: blue;
}
@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    flex: 0 0 20%;
  }
}
.col-15{
  width: 20%;
  flex: 0 0 20%;
}

#saisentan {
	padding: 60px 0 40px 0 ;
	background-color: #FFFFFF;
}

#saisentan .container-fluid {
	max-width: 1200px;
}

#saisentan a {
	text-decoration: none;
}

#saisentan h3 {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.6;
	font-family: 'NotoSerifJP-Light';
	letter-spacing: 2px;
	color: #fff;
	margin: 0 0 0 0;
	padding: 20px 0 0 0;
}

#saisentan p.check {
	font-size: 8px;
	display: inline-block;
	letter-spacing: 2px;
}

#saisentan table {
	transition: all .6s;
	filter: drop-shadow(7px 7px 7px #bbb);
	width: 100%;
	margin-bottom: 20px;
}

#saisentan table:hover{ 
	transform: translateY(-6px);
  transition-duration: 0.5s;
	opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

#saisentan table tr th, #saisentan table tr td {
	background-color: #1c4370;
	color: #fff;
	padding: 0 0 20px 0;
	text-align: center;
	
}

#saisentan table tr td{
	height: 140px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

#saisentan table tr th {
	height: 160px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	background-color: #fff;
}

#saisentan table#latest01 tr th {
	background-image: url("../images/latest01c_bg.webp");
}

#saisentan table#latest02 tr th {
	background-image: url("../images/latest02_02_bg.png");
}

#saisentan table#latest03 tr th {
	background-image: url("../images/latest03_bg.png");
}

#saisentan table#latest04 tr th {
	background-image: url("../images/latest04_bg.png");
}

#saisentan table#latest05 tr th {
	background-image: url("../images/latest05a_bg.webp");
}

#saisentan table#latest06 tr th {
	background-image: url("../images/latest06_02_bg.png");
}

#saisentan table#latest07 tr th {
	background-image: url("../images/latest07_02_bg.png");
}

#saisentan table#latest08 tr th {
	background-image: url("../images/latest08_bg.png");
}

@media screen and (max-width:992px) {
	
#saisentan h5 {
	margin: 0 0 0 0;
}
	
#saisentan {
	padding: 0 0 40px 0 ;
}
	
#saisentan table tr td{
	height: 100px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 0;
	padding: 10px 0 10px 0;
	
}

#saisentan table tr th {
	height: 100px;
	border-top-left-radius: 10px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 10px;
	background-size: cover;
	width: 50%;
}
	
}

@media print, screen and (min-width: 992px) {
	
#saisentan table tr th, #saisentan table tr td{
		display: block;
}

}



/*================================================
 *  ボタン2
 ================================================*/

.button2{
    display:inline-block;
    background:#fff;
    width: 80%;
    padding:7px 0 7px 0;
    color:#1c4370;
    margin:18px 0 0 0;
    border: 1px solid #1c4370;
    cursor:pointer;
    position: relative;
    text-decoration: none;
	line-height: 1;
	font-size: 10px;
	text-align: center;
	border-radius: 20px;
	letter-spacing: 14px;
}

.button2::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    right: 16px;
    width: 6px;
    height: 6px;
    border: 1px solid;
    border-color: transparent transparent #1c4370 #1c4370;
    transform: rotate(-135deg);
    transition: .5s;
}

.button2:hover::after{
    right: 10px;
}

@media print, screen and (min-width: 767px) {
	
	.button2{
	}
	
}

/*================================================
 *  ボタン3
 ================================================*/

.button3{
    display:inline-block;
    width: 130px;
    padding:5px 0 5px 12px;
    margin:20px 0 0 0;
    border: 1px solid #fff;
    cursor:pointer;
    position: relative;
    text-decoration: none;
	line-height: 1;
	font-size: 10px;
	text-align: center;
	border-radius: 20px;
	letter-spacing: 14px;
	color: #fff;
}

.button3::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    right: 8px;
    width: 6px;
    height: 6px;
    border: 1px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-135deg);
}

@media screen and (max-width:767px) {
	
.button3{
	width: 100px;
    padding:4px 0 4px 12px;
    margin:10px 0 8px 0;
	}
	
}



/* ============================
		other
 ============================ */

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

/* for TB */
@media screen and (max-width: 1200px) and (min-width: 768px){
}

/* for PC */
@media screen and (min-width: 1201px) {
}

