@charset "UTF-8";

main section:nth-of-type(n+2) {
	margin-top: 60px;
}
@media(max-width: 900px) {
	main section:nth-of-type(n+2) {
		margin-top: 45px;
	}
}
@media(max-width: 500px) {
	main section:nth-of-type(n+2) {
		margin-top: 30px;
	}
}

video {
  width: 100%;
  height: auto;
}
video {
  min-width: 100%;
}

/*main .mainimg {
	height: 630px;
	position: relative;
}
main .mainimg img,
main .mainimg video {
	width: 100%;
	height: 630px;
	object-fit: cover;
}
@media(max-width: 900px) {
	main .mainimg {
		height: 480px;
	}
	main .mainimg img,
	main .mainimg video {
		height: 480px;
	}
}
@media(max-width: 500px) {
	main .mainimg {
		height: 320px;
	}
	main .mainimg img,
	main .mainimg video {
		height: 320px;
	}
}
*/

/*
main .mainimg .copytxt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 640px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
main .mainimg .copytxt p {
	color: #fff;
	font-size: 760%;
	font-weight: 400;
	line-height: 0.9em;
	text-shadow: 3px 3px 6px #333;
	text-align: center;
}
@media(max-width: 900px) {
	main .mainimg .copytxt {
		height: 480px;
	}
	main .mainimg .copytxt p {
		font-size: 560%;
		font-weight: 500;
	}
}
@media(max-width: 500px) {
	main .mainimg .copytxt {
		height: 317px;
	}
	main .mainimg .copytxt p {
		font-size: 260%;
		font-weight: 500;
	}
}
*/

/* Common */
main h2.md {
	position: relative;
	padding-left: 15px;
	font-size: 125%;
	font-weight: 900;
}
main h2.md::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 19px;
	background-color: #001446;
	position: absolute;
	top: 3px;
	left: 0;
}
@media(max-width: 500px) {
	main h2.md {
		padding-left: 12px;
	}
	main h2.md::before {
		height: 16px;
		top: 2px;
	}
}

/* Process 
--------------------------------------------------------------------------------------------- */
main .flow {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
	counter-reset: titlenum;
}
main .flow > li {
	width: 24%;
	position: relative;
	background: repeating-linear-gradient(90deg, #e1dbbe, #e1dbbe 2px, #eae4c7 5px, #eae4c7 5px);
	padding-bottom: 12px;
}
main .flow li:nth-of-type(n+5) {
	margin-top: 20px;
}
@media(max-width: 500px) {
	main .flow {
		/*justify-content: flex-start;*/
	}
	main .flow li {
		width: 48%;
	}
	main .flow li:nth-of-type(n+5) {
		margin-top: 0;
	}
	main .flow li:nth-of-type(n+3) {
		margin-top: 12px;
	}
	main .flow li:nth-of-type(n+7) {
		margin-top: 32px;
	}
}
main .flow li a {
	display: block;
	/*background: repeating-linear-gradient(90deg, #e1dbbe, #e1dbbe 2px, #eae4c7 5px, #eae4c7 5px);*/
	/*padding-bottom: 12px;*/
	transition: all .2s ease;
	position: relative;
	z-index: 2
}
main .flow li:hover {
	background: repeating-linear-gradient(90deg, #eae4c7, #eae4c7 2px, #e1dbbe 5px, #e1dbbe 5px);
}
main .flow li h3 {
	font-size: 105%;
	font-weight: 700;
}
@media(max-width: 1114px) {
	main .flow li h3 span {
		font-size: 65%;
	}
}
@media(max-width: 970px) {
	main .flow li h3 {
		font-size: 100%;
	}
	main .flow li h3 span {
		font-size: 45%;
	}
}
main .flow li .imgs {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}
main .flow li .btn {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	background-color: #001446;
	color: #fff;
	font-size: 90%;
	text-align: center;
	transition: all .3s ease;
	position: relative;
}
main .flow li .btn::after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	display: block;
    width: 8px;
    height: 8px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../common/images/icn-san-white.svg");
}
@media(max-width: 900px) {
	main .flow li .btn {
		width: 80%;
		font-size: 85%;
	}
}
@media(max-width: 500px) {
	main .flow li .btn {
		width: 84%;
		font-size: 85%;
	}
}
/* 並び替え */
main .flow li:nth-child(5) {
	order: 8;
}
main .flow li:nth-child(6) {
	order: 7;
}
main .flow li:nth-child(7) {
	order: 6;
}
main .flow li:nth-child(8) {
	order: 5;
}
@media(max-width: 500px) {
	main .flow li:nth-child(3) {
		order: 4;
	}
	main .flow li:nth-child(5) {
		order: 5;
	}
	main .flow li:nth-child(6) {
		order: 6;
	}
	main .flow li:nth-child(7) {
		order: 8;
	}
	main .flow li:nth-child(8) {
		order: 7;
	}
}
/* ナンバーリング */
main .flow li h3::before {
	counter-increment: titlenum;
	content: "" counter(titlenum);
	margin-right: 10px;
	padding: 5px 10px;
	display: inline-block;
	color: #fff;
	font-size: 120%;
	background: #001446;
	transition: all .3s ease;
}
main .flow li a:hover .btn {
	background-color: #006ea8;
}
main .flow li a:hover h3::before {
	background: #006ea8;
}
@media(max-width: 900px) {
	main .flow li h3::before {
		margin-right: 5px;
		padding: 1px 6px;
		font-size: 100%;
	}
}
/* 矢印 */
main .flow > li:nth-of-type(1)::after,
main .flow > li:nth-of-type(2)::after,
main .flow > li:nth-of-type(3)::after,
main .flow > li:nth-of-type(6)::after,
main .flow > li:nth-of-type(7)::after,
main .flow > li:nth-of-type(8)::after {
	position: absolute;
	z-index: 10;
	content: '';
	display: block;
    width: 37px;
    height: 40px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/fimg-parts03.svg");
}
@media(max-width: 500px) {
	main .flow > li:nth-of-type(1)::after,
	main .flow > li:nth-of-type(2)::after,
	main .flow > li:nth-of-type(3)::after,
	main .flow > li:nth-of-type(6)::after,
	main .flow > li:nth-of-type(7)::after,
	main .flow > li:nth-of-type(8)::after {
		background-image: none;
	}
}
main .flow > li:nth-of-type(1)::after,
main .flow > li:nth-of-type(2)::after,
main .flow > li:nth-of-type(3)::after {
	top: 50%;
	transform: translateY(-50%);
	right: -25px;
}
main .flow > li:nth-of-type(6)::after,
main .flow > li:nth-of-type(7)::after,
main .flow > li:nth-of-type(8)::after {
	top: 40%;
	transform: rotate(180deg);
	right: -25px;
}
main .flow > li:nth-of-type(4)::after {
	position: absolute;
	z-index: 1;
	content: '';
	bottom: -30px;
	left: 42%;
	/*transform: translateX(-50%);*/
	transform: rotate(90deg);
	display: block;
    width: 37px;
    height: 40px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/fimg-parts03.svg");
}
main .flow > li:nth-of-type(5)::after {
	position: absolute;
	z-index: 1;
	content: '';
	bottom: -54px;
	right: 42%;
	display: block;
    /*width: 543px;*/
	width: 187%;
    height: 81px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/fimg-parts01.png");
}
@media(max-width: 900px) {
	main .flow li:nth-of-type(5)::after {
		bottom: -60px;
		right: 35%;
	}
}
@media(max-width: 500px) {
	main .flow li:nth-of-type(1)::after,
	main .flow li:nth-of-type(2)::after,
	main .flow li:nth-of-type(3)::after,
	main .flow li:nth-of-type(6)::after,
	main .flow li:nth-of-type(7)::after,
	main .flow li:nth-of-type(8)::after,
	main .flow li:nth-of-type(4)::after {
		background-image: none;
	}
	main .flow > li::after {
		position: absolute;
		z-index: 1;
		content: '';
		display: block;
		width: 23px !important;
		height: 24px !important;
		background-size: contain;
		background-repeat: no-repeat;
	}
	main .flow > li:nth-child(1)::after,
	main .flow > li:nth-child(5)::after {
		background-image: url("../images/fimg-parts03.svg");
		top: 50%;
		transform: translateY(-50%);
		right: -18px;
	}
	main .flow > li:nth-child(2)::after,
	main .flow > li:nth-child(4)::after,
	main .flow > li:nth-child(6)::after {
		background-image: url("../images/fimg-parts03.svg");
		top: inherit;
		bottom: -15px;
		left: 45%;
		/*left: -17px; 回転時*/
		right: inherit;
		transform: rotate(90deg);
		/*transform: rotate(135deg); 回転時*/
	}
	main .flow > li:nth-child(3)::after,
	main .flow > li:nth-child(7)::after {
		background-image: url("../images/fimg-parts03.svg");
		top: 45%;
		right: inherit;
		left: -18px;
		transform: rotate(180deg);
	}
	main .flow > li:nth-child(8)::before {
		position: absolute;
		z-index: 1;
		content: '';
		display: block;
		width: 100%;
		height: 44px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: top center;
		background-image: url("../images/fimg-parts04.svg");
		top: -36px;
	}
}

/* Process -menu 
--------------------------------------------------------------------------------------------- */
main .products-wrap {
	background-color: #001446;
	padding: 30px 40px;
	margin-top: 70px;
}
@media(max-width: 900px) {
	main .products-wrap {
		margin-top: 40px;
	}
}
@media(max-width: 500px) {
	main .products-wrap {
		padding: 20px 20px;
		margin-top: 20px;
	}
}
main .products-wrap .inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
main .products-wrap .inner .products-box {
	width: 32%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
@media(max-width: 500px) {
	main .products-wrap .inner .products-box {
		/*width: auto;*/
		width: 48.5%;
	}
	main .products-wrap .inner .products-box:nth-of-type(3) {
		width: 100%;
		margin-top: 10px;
	}
}
main .products-wrap .inner .products-box h3,
main .products-wrap .inner .products-box button {
	width: 100%;
	display: flex;
	align-items: center;
	background-color: #006ea8;
	color: #fff;
	padding: 0px 20px;
	height: 90px;
	font-size: 150%;
	font-weight: 600;
	line-height: 1.05em;
	text-align: left;
}
main .products-wrap .inner .products-box:nth-of-type(3) h3,
main .products-wrap .inner .products-box:nth-of-type(3) button {
	font-size: 200%;
}
@media(max-width: 900px) {
	main .products-wrap .inner .products-box h3,
	main .products-wrap .inner .products-box button {
		padding: 10px 15px;
		font-size: 130%;
	}
	main .products-wrap .inner .products-box:nth-of-type(3) h3,
	main .products-wrap .inner .products-box:nth-of-type(3) button {
		font-size: 180%;
	}
}
@media(max-width: 500px) {
	main .products-wrap .inner .products-box h3,
	main .products-wrap .inner .products-box button {
		padding: 0px 12px;
		height: auto;
		font-size: 115%;
	}
	main .products-wrap .inner .products-box:nth-of-type(1) h3,
	main .products-wrap .inner .products-box:nth-of-type(2) h3,
	main .products-wrap .inner .products-box:nth-of-type(1) button,
	main .products-wrap .inner .products-box:nth-of-type(2) button {
		height: 80px;
	}
	main .products-wrap .inner .products-box:nth-of-type(3) h3,
	main .products-wrap .inner .products-box:nth-of-type(3) button {
		font-size: 150%;
		justify-content: center;
		padding: 6px 12px;
	}
}
main .products-wrap .inner .products-box h3 span > span:nth-of-type(1),
main .products-wrap .inner .products-box button span > span:nth-of-type(1){
	font-size: 105%;
	font-weight: 900;
}
main .products-wrap .inner .products-box h3 span span:nth-of-type(2),
main .products-wrap .inner .products-box button span span:nth-of-type(2){
	display: table;
	font-size: 80%;
	font-weight: 500;
	line-height: 1.2em;
}
@media(max-width: 900px) {
	main .products-wrap .inner .products-box:nth-of-type(1) button span > span {
		display: block;
	}
}
@media(max-width: 500px) {
	main .products-wrap .inner .products-box h3 span span:nth-of-type(2),
	main .products-wrap .inner .products-box button span span:nth-of-type(2){
		font-size: 70%;
		padding-top: 4px;
	}
}
main .products-wrap .inner .products-box .imgbox {
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1
}
main .products-wrap .inner .products-box:nth-of-type(1) .imgbox p img {
	width: 135px;
}
main .products-wrap .inner .products-box:nth-of-type(2) .imgbox p img {
	width: 320px;
}
main .products-wrap .inner .products-box:nth-of-type(3) .imgbox p img {
	width: 250px;
}
@media(max-width: 500px) {
	main .products-wrap .inner .products-box:nth-of-type(1) .imgbox p {
		width: 50%;
	}
	main .products-wrap .inner .products-box:nth-of-type(2) .imgbox p {
		width: 90%;
	}
	main .products-wrap .inner .products-box:nth-of-type(3) .imgbox p {
		width: 42%;
	}
}
.dropdown-menu {
	width: 100%;
	position: relative;
	display: inline-block;
	cursor: pointer;
	/*padding: 1px 26px 1px 10px;*/
	transition: all .2s ease;
}

.dropdown-menu::after {
	position: absolute;
	content: '';
	/*top: 45%;*/
	top: calc(50% - 10px);
	/*left: 50%;*/
	transform: translateY(-50%);
	right: 12px;
	display: block;
    width: 10px;
    height: 10px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../common/images/icn-san-white.svg");
	transform: rotate(-30deg);
}
@media(max-width: 500px) {
	.dropdown-menu::after {
		right: 4px;
		width: 8px;
    	height: 8px;
	}
}
.dropdown-content {
	white-space: nowrap;
	display: block;
	position: absolute;
	background-color: #001446;
	/*min-width: 160px;*/
	width: 80%;
	/*box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);*/
	/*padding: 15px 20px;*/
	z-index: 1;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	top: 85px;
	left: 10%;
	visibility: hidden;
	opacity: 0;
	text-align: center;
}
@media(max-width: 900px) {
	.dropdown-content {
		width: 94%;
		left: 3%;
		white-space: normal;
	}
}
@media(max-width: 500px) {
	.dropdown-content {
		width: 94%;
		left: 3%;
		white-space: normal;
	}
	main .products-wrap .inner .products-box:nth-of-type(1) .dropdown-content,
	main .products-wrap .inner .products-box:nth-of-type(2) .dropdown-content {
		top: 80px;
	}
	main .products-wrap .inner .products-box:nth-of-type(3) .dropdown-content {
		top: 37px;
	}
}
.dropdown-menu:hover .dropdown-content {
	top: 90px;
	visibility: visible;
	opacity: 1;
}
.dropdown-menu .dropdown-content li:nth-of-type(1) {
	border-bottom: #fff solid 1px;
}
.dropdown-menu .dropdown-content li a {
	display: block;
	/*background-color: #001446;*/
	color: #fff;
	padding: 8px;
	text-align: center;
	font-size: 120%;
	font-weight: 600;
	position: relative;
}
@media(max-width: 900px) {
	.dropdown-menu .dropdown-content li a {
		font-size: 90%;
		line-height: 1.1em;
	}
}
@media(max-width: 500px) {
	.dropdown-menu .dropdown-content li a {
		font-size: 80%;
		line-height: 1.1em;
    padding: 8px 8px 8px 0px;
	}
}
.dropdown-menu .dropdown-content li a:hover {
	color: #009cee;
}
.dropdown-menu .dropdown-content li a::after {
	position: absolute;
	content: '';
	top: 50%;
	/*left: 50%;*/
	transform: translateY(-50%);
	right: 12px;
	display: block;
    width: 10px;
    height: 10px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../common/images/icn-san-white.svg");
}
@media(max-width: 900px) {
	.dropdown-menu .dropdown-content li a::after {
		right: 4px;
		width: 6px;
    	height: 6px;
	}
}
.dropdown-menu .dropdown-content li a span {
  font-size: 70%;	
  padding-left: 8px;
  position: relative;
  color: #1a93d3;
}
.dropdown-menu .dropdown-content li a span::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("../images/icn-blank-b.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 5px;
  right: -14px;
}
@media(max-width: 500px) {
  .dropdown-menu .dropdown-content li a span {
    font-size: 65%;	
    padding-left: 2px;
  }
  .dropdown-menu .dropdown-content li a span::after {
    width: 8px;
    height: 8px;
    top: 2px;
    right: -9px;
  }
}

/* WHY MASE 
--------------------------------------------------------------------------------------------- */
main .why-wrap {
	padding: 30px;
	border: #001446 solid 15px;
	display: flex;
	background-image: url("../images/bg-why.webp");
	background-repeat: no-repeat;
	background-position: left bottom -3px;
	background-size: 350px auto;
}
@media(max-width: 900px) {
	main .why-wrap {
		padding: 15px;
		border: #001446 solid 10px;
		display: block;
		padding-bottom: 200px;
		background-position: left bottom -130px;
		background-size: 300px auto;
	}
}
@media(max-width: 500px) {
	main .why-wrap {
		padding: 15px;
		border: #001446 solid 8px;
		display: block;
		padding-bottom: 200px;
		background-position: left bottom -130px;
		background-size: 300px auto;
	}
}
main .why-wrap h2 {
	color: #001446;
	font-size: 530%;
	font-weight: 900;
	line-height: 0.9em;
}
main .why-wrap h2 span {
	display: block;
}
@media(max-width: 1100px) {
	main .why-wrap h2 {
		font-size: 430%;
	}
}
@media(max-width: 900px) {
	main .why-wrap h2 {
		font-size: 360%;
		text-align: center;
		padding-bottom: 12px;
	}
	main .why-wrap h2 span {
		display: inline;
	}	
}
@media(max-width: 500px) {
	main .why-wrap h2 {
		font-size: 260%;
		padding-bottom: 8px;
	}	
}
main .why-wrap .about-box {
	flex: 1;
	margin-left: 90px;
}
@media(max-width: 1100px) {
	main .why-wrap .about-box {
		margin-left: 50px;
	}
}
@media(max-width: 900px) {
	main .why-wrap .about-box {
		margin-left: 0px;
	}
}
main .why-wrap .about-box .box {
	padding: 20px 20px 20px 70px;
	color: #fff;
	position: relative;
}
@media(max-width: 900px) {
	main .why-wrap .about-box .box {
		padding: 15px 10px 15px 37px;
	}
}
@media(max-width: 500px) {
	main .why-wrap .about-box .box {
		padding: 15px 10px 15px 27px;
	}
}
main .why-wrap .about-box .box:nth-child(odd) {
	background-color: #006ea8;
}
main .why-wrap .about-box .box:nth-child(even) {
	background-color: #8d3b3b;
}
main .why-wrap .about-box .box:nth-of-type(n+2) {
	margin-top: 20px;
}
@media(max-width: 900px) {
	main .why-wrap .about-box .box:nth-of-type(n+2) {
		margin-top: 10px;
	}
}
main .why-wrap .about-box .box h3 {
	font-size: 160%;
	font-weight: 700;
	padding-bottom: 6px;
}
main .why-wrap .about-box .box::before {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	left: -35px;
	display: block;
    width: 76px;
    height: 76px;
    background-size: contain;
	background-repeat: no-repeat;
}
@media(max-width: 900px) {
	main .why-wrap .about-box .box::before {
		width: 80px;
    	height: 80px;
	}
}
@media(max-width: 900px) {
	main .why-wrap .about-box .box::before {
		width: 60px;
    	height: 60px;
	}
}
main .why-wrap .about-box .box:nth-child(1)::before {
	background-image: url("../images/icn01.png");
}
main .why-wrap .about-box .box:nth-child(2)::before {
	background-image: url("../images/icn02.png");
}
main .why-wrap .about-box .box:nth-child(3)::before {
	background-image: url("../images/icn03.png");
}
main .why-wrap .about-box .box:nth-child(4)::before {
	background-image: url("../images/icn04.png");
}

/* map 
--------------------------------------------------------------------------------------------- */
main .mapimg {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
}
@media(max-width: 900px) {
	main .mapimg {
		width: 100%;
		padding-top: 10px;
	}
}
@media(max-width: 500px) {
	main .mapimg {
		/*width: 100%;*/
		padding-top: 10px;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}
}
/* btn 
--------------------------------------------------------------------------------------------- */
main .btn-wrap {
	background-color: #001446;
	padding: 30px 40px;
	margin-top: 20px;
}
@media(max-width: 500px) {
	main .btn-wrap {
		padding: 20px 20px;
	}
}
main .btn-wrap ul {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media(max-width: 500px) {
	main .btn-wrap ul {
		display: block;
	}
}
main .btn-wrap ul li {
	position: relative;
}
main .btn-wrap ul li::after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	display: block;
    width: 15px;
    height: 17px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../common/images/icn-san-white.svg");
	transition: 0.5s;
}
@media(max-width: 500px) {
	main .btn-wrap ul li::after {
		width: 11px;
    	height: 12px;
		right: 12px;
	}
}
main .btn-wrap ul li:hover::after {
	right: 14px;
}
main .btn-wrap ul li a {
	width: auto;
	border: #fff solid 4px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	padding-right: 50px;
}
main .btn-wrap ul li a:hover {
	background-color: #006ea8;
}
main .btn-wrap ul li:nth-child(1) {
	width: 100%;
	margin-bottom: 15px;
}
main .btn-wrap ul li:nth-child(1) a {
	height: 220px;
	background-image: url("../images/bg-btn01.webp");
}
@media(max-width: 500px) {
	main .btn-wrap ul li a {
		border: #fff solid 3px;
		padding-right: 40px;
	}
	main .btn-wrap ul li:nth-child(1) a {
		padding-right: 10px;
	}
	main .btn-wrap ul li:nth-child(1),
	main .btn-wrap ul li:nth-child(2) {
		margin-bottom: 10px;
	}
	main .btn-wrap ul li:nth-child(1) a {
		height: auto;
	}
}
main .btn-wrap ul li:nth-child(1) a .box {
	width: 48%;
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(1) a .box {
		width: 100%;
		padding: 15px;
	}
}
main .btn-wrap ul li:nth-child(1) a .box h3 {
	font-size: 280%;
	font-weight: 700;
}
main .btn-wrap ul li:nth-child(1) a .box .cap {
	padding-top: 13px;
	padding-bottom: 10px;
	font-size: 150%;
	font-weight: 700;
	line-height: 1.2em;
}
@media(max-width: 1100px) {
	main .btn-wrap ul li:nth-child(1) a .box h3 {
		font-size: 230%;
		font-weight: 700;
	}
}
@media(max-width: 900px) {
	main .btn-wrap ul li:nth-child(1) a .box h3 {
		font-size: 200%;
		font-weight: 700;
	}
	main .btn-wrap ul li:nth-child(1) a .box .cap {
		font-size: 130%;
	}
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(1) a .box h3 {
		font-size: 180%;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	}
	main .btn-wrap ul li:nth-child(1) a .box .cap {
		font-size: 110%;
		font-weight: 500;
		padding-top: 6px;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	}
}
main .btn-wrap ul li:nth-child(1) a .box .btn {
	display: table;
	border: #fff solid 1px;
	/*margin-left: auto;*/
	padding: 0 28px 0 14px;
	position: relative;
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(1) a .box .btn {
		/*background-color: rgba(254,254,254,0.8);
		color: #001446;*/
		margin-left: auto;
		margin-right: -15px;
	}
}
main .btn-wrap ul li:nth-child(1) a .box .btn::after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	right: 8px;
	display: block;
    width: 10px;
    height: 10px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../common/images/icn-san-white.svg");
}
main .btn-wrap ul li:nth-child(2),
main .btn-wrap ul li:nth-child(3) {
	width: 49.5%;
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(2),
	main .btn-wrap ul li:nth-child(3) {
		width: auto;
	}
}
main .btn-wrap ul li:nth-child(2) a {
	height: 190px;
	background-image: url("../images/bg-btn02.webp");
	font-size: 280%;
	font-weight: 700;
	line-height: 0.9em;
}
@media(max-width: 1100px) {
	main .btn-wrap ul li:nth-child(2) a {
		font-size: 230%;
	}
}
@media(max-width: 900px) {
	main .btn-wrap ul li:nth-child(2) a {
		height: 140px;
		font-size: 220%;
	}
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(2) a {
		height: 100px;
		font-size: 180%;
	}
}
main .btn-wrap ul li:nth-child(3) a {
	height: 190px;
	background-image: url("../images/bg-btn03.webp");
	font-size: 280%;
	font-weight: 700;
	line-height: 0.9em;
}
@media(max-width: 900px) {
	main .btn-wrap ul li:nth-child(3) a {
		height: 140px;
		font-size: 220%;
	}
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(3) a {
		height: 100px;
		font-size: 180%;
	}
}
main .btn-wrap ul li:nth-child(2) span {
	position: relative;
}
main .btn-wrap ul li:nth-child(2) span::before {
	position: absolute;
	content: '';
	top: 55%;
	transform: translateY(-50%);
	left: -130px;
	display: block;
    width: 132px;
    height: 132px;
    background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/icn-check.webp");
}
@media(max-width: 900px) {
	main .btn-wrap ul li:nth-child(2) span::before {
		width: 102px;
    	height: 102px;
		left: -100px;
	}
}
@media(max-width: 500px) {
	main .btn-wrap ul li:nth-child(2) span::before {
		width: 82px;
    	height: 82px;
		left: -80px;
	}
}