@charset "utf-8";
/* 実践するための商品一覧 */
.flexBox2 {}
.flexBox2 ul {
    flex-wrap: wrap;
    justify-content: center;
}
.Page .flexBox2 ul li {
    width: calc(100% / 2 - 70px);
    border: 1px solid #265280;
    border-bottom: none;
    margin: 0;
    background: #f8f3f1;
    padding: 30px;
}
.Page .flexBox2 ul li:nth-last-child(1), .Page .flexBox2 ul li:nth-last-child(2) {
  border-bottom: 1px solid #265280;
}
.Page .flexBox2 ul li:nth-of-type(2n) {
  border-left: none;
}

.Page .flexBox2 ul li h3 {
    border-bottom: none;
    padding: 0 15px 0;
}
.Page .flexBox2 ul li h3 a {
    font-weight: 600;
}

.Page .flexBox2 ul li h3 a,
.Page .flexBox2 ul li h3 a:link,
.Page .flexBox2 ul li h3 a:visited {font-weight: 600;}

.linkList {}
.linkList strong {
    display: inline-block;
    color: #fff;
    background: #265280;
    padding: 10px;
    margin: 0 10px 0 0;
}

#S03 .linkList:nth-of-type(1) p {
    font-size: 80%;
    padding: 10px 15px 0;
}


/*----------------------------------------------------------- 480px */
@media screen and (max-width: 480px) {
.Page .flexBox2 ul {
    flex-flow: column;
}
.Page .flexBox2 ul li {
    width: auto;
    border-bottom: none;
}
.Page .flexBox2 ul li:nth-of-type(2n) {
    border-left: 1px solid #265280;
}
.Page .flexBox2 ul li:nth-last-child(1), .Page .flexBox2 ul li:nth-last-child(2) {
  border-bottom: none;
}
.Page .flexBox2 ul li:last-child {
border-bottom: 1px solid #265280;
}
.linkList strong {
    display: block;
}
.Page h3 {
 padding-left: 0;
 text-indent: 0;
}	
	
	
}