@charset "euc-jp";
/* トップページ */

.topnews {
	border-bottom: #ccc 1px solid;
	margin-bottom: 50px;
	overflow: hidden;
}
.showmore_list {
	transition: all .3s ease-in;
}
.list_toggle {
 	text-align: center;
	background: #fff;
	position: relative;
	z-index: 1;
	padding-top: 30px;
	padding-bottom: 10px;
 }
.list_toggle a {
  	color: #333;
	position: relative;
	padding-right: 20px;
  }
 .list_toggle a.open_link::before {
    content: "もっと見る";
    display: inline-block;
}
.list_toggle a.close_link::before {
    content: "閉じる";
    display: inline-block;
}
.list_toggle a.open_link::after,.list_toggle a.close_link::after {
 	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border-top: 2px solid #222;
	border-right: 2px solid #222;
}
.list_toggle a.open_link::after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg); 
}
.list_toggle a.close_link::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.topnews h2 {
	font-size: 18px;
	margin-bottom: 30px;
}
.topnews h2 span {
	font-weight: bold;
	position: relative;
}
.topnews h2 span::after {
	content: "";
	width: 72px;
	height: 2px;
	background: #3EA8FF;
	display: block;
	position: absolute;
	bottom: -7px;
	left: 0;
}
.topnews ul li {
  margin-bottom:30px;
  text-indent: -100px;
  margin-left: 100px;
  line-height:1.8;
}

.topnav {
	display: flex;
	justify-content: space-between;
	padding-bottom: 60px;
}
.topnav .box {
	width: 480px;
}
.topnav .box a {
	margin-bottom: 30px;
	display: block;
	background: #000;
	border-radius: 8px;
}
.topnav .box a img {
	display: block;
}
.topnav .box a img:hover {
	opacity: 0.8;
}
.topnav .box h2 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4em;
	padding-bottom: 20px;
	width: 91%;
	margin: auto;
}
.topnav .box p {
	width: 91%;
	margin: auto;
}
.strength {
	background: #EAF4FF;
	padding-top: 40px;
	padding-bottom: 60px;
	margin-bottom: 80px;
}
.strength .inner {
	display: flex;
	justify-content: space-between;
}
.strength .inner .box {
	width: 210px;
	text-align: center;
}
.strength img {
	display: block;
	margin-bottom: 10px;
}
.strength h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: 10px;
}
.strength p {
	line-height: 1.7em;
	text-align: left;
}
.pickup {
	padding-bottom: 77px;
	border-bottom: #ccc 1px solid;
}
.pickup .inner {
	display: flex;
	justify-content: space-between;
}
.pickup .box {
	width: 306px;
}
.pickup img {
	display: block;
	margin-bottom: 20px;
}
.pickup h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: 20px;
}
.btmnav {
	padding: 30px 0;
}
.btmnav ul {
	display: flex;
	/*justify-content: space-between;*/
  justify-content: center;
	width: 1000px;
	margin: auto;
}
.btmnav ul li {
	display: block;
	width: 306px;
}
.btmnav ul li a {
	display: block;
	line-height: 60px;
	text-align: center;
	color: #fff;
	border-radius: 34px;
	font-size: 16px;
	font-weight: bold;
	background: #3EA8FF;
	text-decoration: none;
	position: relative;
	border: #3EA8FF 2px solid;
	transition: .3s;
}
.btmnav ul li a:hover {
	background: #fff;
	color: #3EA8FF;
	transition: .3s;
}
.btmnav ul li a::before,.btmnav ul li a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.btmnav ul li a::before {
	width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}
.btmnav ul li a:hover::before {
	background: #3EA8FF;
}
.btmnav ul li a::after {
	right: 27px;
	width: 4px;
    height: 4px;
    border-top: 2px solid #3EA8FF;
    border-right: 2px solid #3EA8FF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btmnav ul li a:hover::after {
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width:768px) {
	/* トップページ */
.main li img {
	display: block;
	width: 100%;
	height: auto;
}
.main .slick-dots {
	bottom: -35px;
}
.main .slick-dots li button:before,.itemmain .slick-dots li button:before {
	font-family: "";
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: #ccc 1px solid;
	box-sizing: border-box;
	opacity: 1;
}
.main .slick-dots li.slick-active button:before,.itemmain .slick-dots li.slick-active button:before {
	opacity: 1;
	background: #222;
	border: none;
}
.topnews {
	border-bottom: #ccc 1px solid;
	margin-bottom: 40px;
	overflow: hidden;
}
.showmore_list {
	transition: all .3s ease-in;
}
 .list_toggle {
 	text-align: center;
	background: #fff;
	position: relative;
	z-index: 1;
	padding-top: 20px;
	padding-bottom: 10px;
 }
  .list_toggle a {
  	color: #333;
	position: relative;
	padding-right: 20px;
  }
 .list_toggle a.open_link::before {
    content: "もっと見る";
    display: inline-block;
}
.list_toggle a.close_link::before {
    content: "閉じる";
    display: inline-block;
}
.list_toggle a.open_link::after,.list_toggle a.close_link::after {
 	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border-top: 2px solid #222;
	border-right: 2px solid #222;
}
.list_toggle a.open_link::after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg); 
}
.list_toggle a.close_link::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.topnews ul li {
  margin-bottom:30px;
  text-indent: -100px;
  margin-left: 100px;
  line-height:1.8;
}
.topnews h2 {
	font-size: 18px;
	margin-bottom: 20px;
}
.topnews h2 span {
	font-weight: bold;
	position: relative;
}
.topnews h2 span::after {
	content: "";
	width: 72px;
	height: 2px;
	background: #3EA8FF;
	display: block;
	position: absolute;
	bottom: -7px;
	left: 0;
}
.topnews .newstxt {
	height: 80px;
	overflow: hidden;
}
.topnews .newstxt.open {
	height: 100%;
}
.newsmore {
	text-align: center;
	padding-top: 11px;
	font-size: 16px;
}
.newsmore.non {
	display: none;
}
.newsmore span {
	position: relative;
	padding-right: 20px;
}
.newsmore span::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-top: 2px solid #222;
	border-right: 2px solid #222;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.topabout {
	position: relative;
	padding-bottom: 60px;
}
.topabout img {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	height: auto;
	display: block;
}
.topabout .inner {
	padding-top: 45%;
}
.topabout .box {
	background: #EAF4FF;
	border-radius: 10px;
	padding: 60px 20px 40px 20px;
	box-sizing: border-box;
}
.topabout .box h3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: 30px;
}
.topabout .btn {
	margin-top: 25px;
}
.topnav {
	padding-bottom: 20px;
}
.topnav .box {
	width: 100%;
	padding-bottom: 40px;
}
.topnav .box a {
	margin-bottom: 20px;
	display: block;
}
.topnav .box h2 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4em;
	padding-bottom: 20px;
}
.strength {
	background: #EAF4FF;
	padding-top: 40px;
	padding-bottom: 20px;
}
.strength .inner {
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.strength .inner .box {
	width: 158px;
	text-align: center;
	padding-bottom: 40px;
}
.strength img {
	display: block;
	margin-bottom: 10px;
}
.strength h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: 10px;
}
.strength p {
	line-height: 1.7em;
	text-align: left;
}
.pickup {
	border-bottom: #ccc 1px solid;
}
.pickup .inner {
}
.pickup .box {
	width: 100%;
	padding-bottom: 40px;
}
.pickup img {
	display: block;
	margin-bottom: 20px;
}
.pickup h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: 20px;
}
.btmnav {
	padding-top: 40px;
	padding-bottom: 10px;
}
.btmnav ul {
	width: 90%;
	margin: auto;
}
.btmnav ul li {
	display: block;
	margin-bottom: 30px;
}
.btmnav ul li a {
	display: block;
	line-height: 60px;
	text-align: center;
	color: #fff;
	border-radius: 34px;
	font-size: 16px;
	font-weight: bold;
	background: #3EA8FF;
	text-decoration: none;
	position: relative;
	border: #3EA8FF 2px solid;
	transition: .3s;
}
.btmnav ul li a:hover {
	background: #fff;
	color: #3EA8FF;
	transition: .3s;
}
.btmnav ul li a::before,.btmnav ul li a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.btmnav ul li a::before {
	width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}
.btmnav ul li a:hover::before {
	background: #3EA8FF;
}
.btmnav ul li a::after {
	right: 27px;
	width: 4px;
    height: 4px;
    border-top: 2px solid #3EA8FF;
    border-right: 2px solid #3EA8FF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btmnav ul li a:hover::after {
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
}
