@charset "utf-8";

/* -----------------------------
	intro-area
-------------------------------- */
.intro-area{
	margin: 20px 0 0;
}
.intro-area .intro-catch{
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.6;
	margin: 0 0 30px;
}
.intro-area .basic-txt{
}
.logo-all{
	margin: 30px auto 0;
	display: block;
}
.logo-all.sp-display-b{
	display: none;
}
@media screen and (max-width: 768px){
	.intro-area{
		margin: 30px 0 0;
	}
	.intro-area .intro-catch{
		font-size: 2.2rem;
		line-height: 1.5;
		text-align: left;
		margin: 0 0 15px;
	}
	.intro-area .basic-txt{
		margin: 0;
	}
	.logo-all.pc-display-b{
		display: none;
	}
	.logo-all.sp-display-b{
		display: block;
	}
	.logo-all{
		width: 100%;
		margin: 20px auto 0;
	}
}

/* -----------------------------
	詳細
-------------------------------- */
.detail-area{
	margin: 50px 0 0;
	position: relative;
}
.detail-area::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	top: 95px;
	right: 0;
	background: #004D94;
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 0;
  background-color: #fff;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
	width: calc((100% / 3) - 5px);
	height: 95px;
	/*border-bottom: 1px solid #004D94;*/
	background-color: #E5EBEC;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	cursor: pointer;
	font-size: 2.2rem;
	border-radius: 5px 5px 0 0;
	padding: 25px 0 0;
	margin: 0 5px 0 0;
}
.tab_item:last-of-type{
	margin: 0;
}
.tab_item .s{
	font-size: 1.8rem;
	display: block;
	padding: 5px 0 0;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 0 0;
  clear: both;
  /*overflow: hidden;*/
}

.tab_content table{
	margin: 30px 0 0;
 border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    background: #fff;
    border: none;
}
.tab_content table ,
.tab_content td,
.tab_content th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
.tab_content td,
.tab_content th {
	padding: 10px;
	text-align: center;
	line-height: 1.5;
    background: #fff;
    border: 1px solid #ccc;
    vertical-align: middle;
    box-sizing: border-box;
}
.tab_content th {
	/*background: #004D94;
	background: #F2F4F5;*/
	color: #fff;
    font-weight: 700;
    text-align: center;
}
.tab_content th.rank{
	position: relative;
}
.tab_content th.rank::before{
	content: '';
	display: block;
	width: 30px;
	height: auto;
	aspect-ratio: 48 / 48;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.tab_content tr:nth-child(1) th.rank::before{
	background: url("../img/rank01.png") no-repeat center / contain;
}
.tab_content tr:nth-child(2) th.rank::before{
	background: url("../img/rank02.png") no-repeat center / contain;
}
.tab_content tr:nth-child(3) th.rank::before{
	background: url("../img/rank03.png") no-repeat center / contain;
}
.tab_content tr:nth-child(4) th.rank::before{
	background: url("../img/rank04.png") no-repeat center / contain;
}
.tab_content tr:nth-child(5) th.rank::before{
	background: url("../img/rank05.png") no-repeat center / contain;
}
.tab_content tr:nth-child(6) th.rank::before{
	background: url("../img/rank06.png") no-repeat center / contain;
}
.tab_content tr:nth-child(7) th.rank::before{
	background: url("../img/rank07.png") no-repeat center / contain;
}
.tab_content tr:nth-child(8) th.rank::before{
	background: url("../img/rank08.png") no-repeat center / contain;
}
.tab_content tr:nth-child(9) th.rank::before{
	background: url("../img/rank09.png") no-repeat center / contain;
}
.tab_content tr:nth-child(10) th.rank::before{
	background: url("../img/rank10.png") no-repeat center / contain;
}


.tab_content thead th {
    color: #fff;
    background: #004D94;
}
.tab_content tbody td:last-child {
}
.tab_content thead th:first-child{
  width: 90px;
}
.tab_content thead th:last-child {
  width: 20%;
}

.tab_content td:first-of-type{
	font-weight: bold;
	font-size: 2rem;
}

.tab_content td .logo{
	max-width: 170px;
	max-height: 40px;
	object-fit: contain;
	vertical-align: middle;
}
.tab_content td .price-txt{
	font-size: 4.4rem;
	font-weight: 500;
	font-family: var(--bebasneue);
	line-height: 1;
}



/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #004D94;
  color: #fff;
}


/* modal */
.modal-checkbox {
  display: none;
}

.modal-open-button {
	cursor: pointer;
	border-bottom: solid 1px #333;
	font-size: 1.4rem;
	display: table;
	margin: 0 auto;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 60%);
}

.close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 2.4rem;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background: #8FA8B9;
	border-radius: 50%;
	line-height: 1;
	color: #fff;
}

.modal-wrapper {
	position: relative;
	width: 90%;
	max-width: 700px;
	max-height: 70%;
	padding: 50px;
	margin: auto;
	overflow: auto;
	background-color: #FEFEFE;
	text-align: left;
}

.modal-checkbox:checked + .modal {
	display: flex;
}

.modal-content p{
	font-size: 1.5rem;
}

/* note-block */
.note-block{
	border: solid 1px #333;
	padding: 30px;
	margin: 30px 0 0;
}
.note-block li{
	line-height: 1.6;
	position: relative;
	padding: 0 0 0 15px;
}
.note-block li::before{
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 768px) {
	.detail-area{
		margin: 40px 0 0;
	}
	.tab_item{
		font-size: 1.5rem;
		line-height: 1.4;
		padding: 10px 0 0;
		height: 80px;
	}
	.tab_item .s{
		font-size: 1.2rem;
	}
	.detail-area::before{
		top: 80px;
	}
	

	.tab_content table{
		border: none;
		margin: 30px 0 0;
	}
	.tab_content thead {
		display:none;
	}
	.tab_content tr {
		background-color: unset;
		margin: 0 0 10px;
		display: block;
	}
	.tab_content th, .ex_sample2 td {
		display: block;
		width: 100%;
		border: 0;
		border-bottom: 1px solid #ccc;
	}
	.tab_content tbody th{
		/*background: #0057b8;
		color:#fff;
		text-align: center;*/
		background: none;
	}
	
	.tab_content table ,
	.tab_content td,
	.tab_content th {
		/*border: 1px solid #595959;*/
		border: none;
	}
	.tab_content tr {
		border: 1px solid #4F92B9;
		margin: 0 0 30px;
	}
	.tab_content tr:nth-child(1){
		border: 3px #DDC934 double;
	}
	.tab_content tr:nth-child(2){
		border: 3px #8C8C8C double;
	}
	.tab_content tr:nth-child(3){
		border: 3px #B18436 double;
	}
	
	.tab_content td,
	.tab_content th {
		border: none;
		text-align: left;
		line-height: 1.5;
		padding: 0 20px;
	}
	
	.tab_content th.rank {
		padding: 0;
		color: #fff;
		height: 25px;
	}
	.tab_content th.rank::before {
		width: 32px;
		top: -16px;
		left: -16px;
		transform: none;
	}
	
	/* .tab_content tbody tr td:not(:nth-child(n + 4)) {
	display: flex;
	flex-direction: column;
	gap: 5px;
	}
	.tab_content tbody tr td:not(:nth-child(n + 4))::before{
	content: attr(data-label);
	width: fit-content;
	padding: 0.2em 1em;
	border-radius: 100vw;
	font-size: 12px;
	background: #eee;
	}*/
	
	
	.tab_content tbody td::before{
		content: attr(data-label);
		display: inline-block;
		margin-right: 10px;
		font-size: 1.2rem;
		font-weight: bold;
		width: fit-content;
		padding: 3px 5px;
		border-radius: 50px;
		height: fit-content;
		background: #eee;
		width: 110px;
		text-align: center;
		position: absolute;
		left: 20px;
		top: 15px;
	}
	.tab_content tbody td:nth-child(2)::before,
	.tab_content tbody td:nth-child(3)::before{
		display: none;
	}
	
	.tab_content tbody td{
		display: flex;
		/*justify-content: space-between;*/
		border-top: none;
		position: relative;
	}
	
	.tab_content td .logo{
		max-width: 150px;
		max-height: 30px;
		margin: 0 auto 10px 0;
	}

	.tab_content td .price-txt{
		font-size: 3.5rem;
	}

	.tab_content tbody td:nth-child(4){
		padding: 15px 20px 0 150px;
	}
	.tab_content tbody td:last-child{
		text-align: left;
		font-size: 1.4rem;
		padding: 15px 20px 20px 150px;
	}
	.modal-open-button{
		margin: 0 0 0 5px;
		display: inline-block;
	}
	
	.note-block{
		margin: 0;
		padding: 20px;
		border: none;
		background: #f3f3f3;
	}
	.note-block ul li{
		font-size: 1.4rem;
	}
	.note-block .note-title span{
		font-size: 1.2rem;
	}
	.note-block .note-list{
		margin: 10px 0 0;
	}
}
/* -----------------------------
	-area
-------------------------------- */
.tab_content .section-fukidashi{
	margin: 0 auto;
	display: table;
	padding: 7px 20px;
}
.tab_content .title{
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	padding: 20px 0 0;
}
.tab_content .basic-txt{
	padding: 30px 0 0;
	text-align: center;
}

.discount-banner{
	margin: 50px 0 0;
	background: #DDF0F8;
	padding: 15px 20px 30px;
	position: relative;
}
.discount-banner::before{
	content: '';
	position: absolute;
	width: 131px;
	height: 139px;
	bottom: 0;
	right: 40px;
	background: url("../img/discount-banner-ill.png") no-repeat center / contain;
}
.discount-banner .discount-catch{
	font-size: 2.3rem;
	font-weight: bold;
	text-align: center;
}
.discount-banner .discount-catch .underline{
	text-underline-offset: 14px;
	text-decoration-thickness: 2px;
}
.discount-banner .discount-catch .num{
	font: 600 5.4rem / 1 var(--lato);
	position: relative;
}
.discount-banner .discount-catch .num::before{
	content: '';
	position: absolute;
	width: 22px;
	height: 24px;
	top: 0;
	right: 0;
	background: url("../img/discount-num-deco.png") no-repeat center / contain;
}
.discount-banner .discount-catch .percent{
	font-size: 3.2rem;
}
@media screen and (max-width: 768px){
	.tab_content{
		padding: 20px 0 0;
	}
	.tab_content .section-fukidashi{
		font-size: 1.8rem;
		padding: 3px 20px;
	}
	.tab_content .title{
		font-size: 2.2rem;
        line-height: 1.45;
	}
	.tab_content .basic-txt{
		padding: 20px 0 0;
		text-align: left;
	}
	.discount-banner{
		margin: 30px 0 0;
		padding: 15px 20px 15px;
	}
	.discount-banner::before{
		background: url("../img/discount-banner-ill-sp.svg") no-repeat center / contain;
		width: 67px;
		height: 101px;
		right: 0;
	}
	.discount-banner .discount-catch{
		padding: 0;
		font-size: 1.5rem;
		letter-spacing: 0;
		text-align: left;
	}
	.discount-banner .discount-catch .underline{
		text-underline-offset: 3px;
	}
	.discount-banner .discount-catch .num{
		font-size: 3.4rem;
	}
	.discount-banner .discount-catch .num::before{
		width: 17px;
		height: 16px;
		right: 6px;
	}
	.discount-banner .discount-catch .percent{
		font-size: 2.1rem;
	}
}

/* -----------------------------
	secret-area
-------------------------------- */
.secret-area{
	margin: 100px 0 0;
	 border-radius: 50px 50px 0 0;
	background: #0057B8;
	padding: 56px 0 77px;
	position: relative;
}
.secret-area::before{
	content: '';
	position: absolute;
	width: 708px;
	height: 432px;
	bottom: 0;
	right: 0;
	background: url("../img/secret-area-bg.png") no-repeat center / cover;
	mix-blend-mode : soft-light;
}

.secret-area .secret-ill{
	position: absolute;
	right: -30px;
	top: -20px;
}
.secret-area .section-fukidashi{
	position: absolute;
	top: -34px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	padding: 4px 29px;
}
.secret-area .section-fukidashi > p{
	font-size: 2rem;
}
.secret-area .section-fukidashi .l{
	font-size: 2.4rem;
}
.secret-area .txt-area{
	color: #fff;
	text-align: center;
	position: relative;
}
.secret-area .txt-area .section-catch{
	line-height: 1.4;
}
.secret-area .txt-area .basic-txt{
	padding: 20px 0 0;
}
.secret-area .figure-block{
	display: flex;
	margin: 53px 0 0;
}

.secret-area .secret-block{
	width: 630px;
	margin: 0 0 0 auto;
}

.secret-area .figure-block ol{
	counter-reset: my-counter;
}
.secret-area .figure-block ol li{
	background: #fff;
	padding: 24px 20px 24px 60px;
	font-size: 2.2rem;
	font-weight: bold;
	border-radius: 5px;
	position: relative;
}
.secret-area .figure-block ol li:nth-child(n  + 2){
	margin: 10px 0 0;
}
.secret-area .figure-block ol li::before{
	font-family: var(--poppins);
	background: #3EAEEF;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	color: #fff;
	border-radius: 30px;
	content: counter(my-counter);
  counter-increment: my-counter;
	position: absolute;
	left: 20px;
}

.secret-block .basic-txt{
	color: #fff;
	padding: 30px 0 0;
}

.secret-area .btn-more{
	margin: 50px 0 0;
}

@media screen and (max-width: 768px){
	.secret-area{
		border-radius: 0;
		padding: 56px 0 49px;
	}
	.secret-area::before{
	}

	.secret-area .sp-wrap{
		position: absolute;
		top: -66px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 250px;
	}
	.secret-area .sub-catch{
		text-align: center;
		position: relative;
		color: #004D94;
		font-weight: bold;
	}
	.secret-area .sub-catch::before{
		content: '';
		position: absolute;
		width: 8px;
		height: 14px;
		top: 8px;
		left: -5px;
		background: url("../img/blue-catch-l.png") no-repeat top center / contain;
	}
	.secret-area .sub-catch::after{
		content: '';
		position: absolute;
		width: 8px;
		height: 14px;
		top: 8px;
		right: -5px;
		background: url("../img/blue-catch-r.png") no-repeat top center / contain;
	}
	.secret-area .secret-ill{
		display: none;
	}
	.secret-area .section-fukidashi{
		font-size: 1.6rem;
		border-radius: 50px;
		padding: 8px 26px;
        position: relative;
        width: 250px;
        top: -22px;
	}
	.secret-area .section-fukidashi .l{
		font-size: 2rem;
	}
	.secret-area .section-fukidashi > p{
		font-size: 1.6rem;
				line-height: 1.3;
		text-align: center;

	}
	.secret-area .txt-area{
		position: relative;
	}
	.secret-area .txt-area::before{
		content: '';
		position: absolute;
		width: 73px;
		height: 85px;
		top: -68px;
        right: -15px;
		background: url("../img/secret-ill-sp.svg") no-repeat top center / contain;
	}
	
	.secret-area .txt-area .section-catch{
		font-size: 2rem;
		letter-spacing: 0;
		text-align: left;
		line-height: 1.5;
	}
	.secret-area .txt-area .section-catch .yellow{
		color: #fff;
	}
	.secret-area .txt-area .basic-txt{
	}
	.secret-area .figure-block{
		display: block;
		margin: 20px -20px 0 0;
	}
	.secret-area .figure-block img{
		width: 100%;
	}
	.secret-area .secret-block{
		width: 100%;
		position: relative;
		padding: 0 20px 0 0;
	}
	.secret-area .figure-block ol{
		margin: 20px 0 0;
	}
	.secret-area .figure-block ol li{
		font-size: 1.8rem;
		padding: 10px 15px 10px 60px;
		line-height: 1.4;
	}
	.secret-area .figure-block ol li:nth-child(n  + 2){
		margin: 4px 0 0;
	}
	.secret-area .figure-block ol li::before{
		left: 16px;
		top: 20px;
	}

	.secret-block .basic-txt{
		padding: 18px 0 0;
	}

	.secret-area .btn-more{
		margin: 33px 0 0;
		display: block;
	}
	
	.secret-area .btn-more a{
		height: 60px;
		line-height: 60px;
		width: 250px;
		margin: 0 auto;
	}
	/*.secret-area .btn-more a::before{
		width: 60px;
		height: 60px;
		right: 0;
	}*/
}

/* -----------------------------
	comparison-area
-------------------------------- */
.comparison-area{
	margin: 74px 0;
}
.comparison-area .txt-area{
	position: relative;
	text-align: center;
}
.comparison-area .txt-area .section-catch{
	padding: 20px 0 0;
}
.comparison-area .txt-area .basic-txt{
	padding: 20px 0 0;
}

.comparison-area .comparison-ill{
	position: absolute;
	right: 0;
    top: -14px;
}

.comparison-list-title{
	font-size: 2.2rem;
	font-weight: bold;
	position: relative;
	text-align: center;
	margin: 45px 0 0;
}
.comparison-list-title span{
	position: relative;
	padding: 0 1em;
	background: #fff;
	color: #0057B8;
}
.comparison-list-title::before{
	position: absolute;
    top: calc(50% - 1px);
    width: 100%;
    height: 1px;
    content: '';
    background: #0057B8;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.comparison-list ul{
	display: flex;
	justify-content: space-between;
	margin: 30px 0 0;
}
.comparison-list ul li{
	width: calc((100% / 3) - 20px);
	border: solid 1px #C7C7C7;
	border-radius: 5px;
	position: relative;
	display: flex;
    flex-direction: column;
}

.comparison-list ul li .top-area{
	display: flex;
	padding: 40px 28px 0;
}
.comparison-list ul li .top-area img{
	margin: 0 20px 0 0;
	width: 126px;
	height: 126px;
    object-fit: contain;
}
.comparison-list ul li .value{
	border: solid 1px #00669D;
	color: #00669D;
	font-weight: bold;
	line-height: 1;
	padding: 3px;
	font-size: 1.4rem;
}
.comparison-list ul li .industry{
	font-size: 2rem;
	font-weight: bold;
}
.before-insurance-premiums{
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.1;
	margin: 10px 0 0;
}
.before-insurance-premiums .price{
	font-size: 3.6rem;
}

.comparison-list .disc{
	padding: 20px 20px 0;
	font-size: 1.5rem;
}

.price-comparison{
	background:#0057B8;
		padding: 42px 30px 30px;
	margin: 35px 0 0;
	position: relative;
	flex-grow: 1;
}
.price-comparison::after{
		content: '';
	position: absolute;
	width:0;
	height:0;
	border-style:solid;
	border-width: 30px 40px 0 40px;
	border-color: #FFFFFF transparent transparent transparent;
	top: -1px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.price-comparison::before{
	content: '';
	position: absolute;
	width: 380px;
	height: 312px;
	bottom: 0;
	right: 0;
	background: url("../img/comparison-bg.png") no-repeat top center / contain;
	mix-blend-mode:screen;
}
.price-comparison .reduction{
	background: url("../img/reduction-fukidashi.png") no-repeat top center / 61px 65px;
	display: inline-block;
	position: absolute;
	width: 61px;
	height: 65px;
	right: 30px;
	top: -24px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding: 16px 0 0;
}
.price-comparison .reduction .num{
	font-size: 2.2rem;
}
.price-comparison table,
.price-comparison table tbody{
	display: block;
	width: 100%;
	color: #fff;
	position: relative;
}
.price-comparison table tr{
	border-bottom: solid 1px #fff;
	display: flex;
    justify-content: space-between;
    align-items: baseline;
	    padding: 5px 0 7px;
}
.price-comparison table td{
	font-size: 1.5rem;
	font-weight: bold;
}
.price-comparison table td .num{
	font-size: 3.6rem;
}
.price-comparison table .first td .num{
	font-size: 4.6rem;
	font-family: var(--lato);
}

.price-comparison > div{
	position: relative;
	color: #fff;
}
.bottom-catch{
	font-size: 2rem;
	padding: 35px 0 0;
}
.bottom-disc{
	font-size: 1.5rem;
	padding: 10px 0 0;
}
@media screen and (max-width: 768px){
	.comparison-area{
		margin: 31px 0 ;
	}
	
	.comparison-area .sub-catch{
		text-align: center;
		position: relative;
		color: #004D94;
		font-weight: bold;
		display: inline-block;
	}
	.comparison-area .sub-catch::before{
		content: '';
		position: absolute;
		width: 8px;
		height: 14px;
		top: 8px;
		left: -12px;
		background: url("../img/blue-catch-l.png") no-repeat top center / contain;
	}
	.comparison-area .sub-catch::after{
		content: '';
		position: absolute;
		width: 8px;
		height: 14px;
		top: 8px;
		right: -12px;
		background: url("../img/blue-catch-r.png") no-repeat top center / contain;
	}
	.comparison-area .section-fukidashi{
		font-size: 1.7rem;
		letter-spacing: 0;
		margin: 10px 0 0;
	}
	.comparison-area .txt-area{
	}
	.comparison-area .txt-area .section-catch{
		padding: 15px 0 0;
	}
	.comparison-area .txt-area .basic-txt{
	}

	.comparison-area .comparison-ill{
	}
	
	.comparison-area .comparison-ill-sp{
		width: 87px;
		height: 92px;
	}

	.comparison-list-title{
		font-size: 1.6rem;
		margin: 24px 0 0;
	}
	.comparison-list-title span{
	}
	.comparison-list-title::before{
	}
	
	.comparison-list{
		overflow-x: scroll;
		margin: 25px 0 0;
	}

	.comparison-list ul{
		width: 810px;
		margin: 0 20px 0 20px;
	}
	.comparison-list ul li{
		width: 260px;
	}

	.comparison-list ul li .top-area{
		padding: 13px 15px 0;
	}
	.comparison-list ul li .top-area img{
		width: 74px;
		height: 74px;
		margin: 0 14px 0 0;
	}
	.comparison-list ul li .value{
		font-size: 1.1rem;
		padding: 4px 3px;
	}
	.comparison-list ul li .industry{
		font-size: 1.7rem;
	}
	.before-insurance-premiums{
		font-size: 1.5rem;
		margin: 0;
	}
	.before-insurance-premiums .price{
		font-size: 2.8rem;
	}

	.comparison-list .disc{
		display: none;
	}

	.price-comparison{
		margin: 10px 0 0;
		padding: 33px 15px 15px;
	}
	.price-comparison::after{
		border-width: 20px 30px 0 30px;
	}
	.price-comparison::before{
		width: 260px;
		height: 100%;
	}
	.price-comparison .reduction{
		width: 54px;
		height: 58px;
		background-size: contain;
		font-size: 1rem;
		line-height: 1.1;
		right: 14px;
    top: -13px;
	}
	.price-comparison .reduction .num{
		font-size: 1.9rem;
		font-family: var(--lato);
	}
	.price-comparison table,
	.price-comparison table tbody{
	}
	.price-comparison table tr{
		padding: 5px 0 9px;
		align-items: flex-end;
	}
	.price-comparison table td{
	}
	.price-comparison table td .num{
		font-size: 2.4rem;
	}
	.price-comparison table .first td .num{
		font-size: 3rem;
		font-weight: 900;
	}
	.price-comparison table .first td{
		font-size: 1.9rem;
	}
	.price-comparison > div{
	}
	.bottom-catch{
		font-size: 1.5rem;
		padding: 10px 0 0;
		letter-spacing: 0;
	}
	.bottom-disc{
		font-size: 1.3rem;
		padding: 3px 0 0;
	}
}

/* -----------------------------
	works-area
-------------------------------- */
.works-area{
	background: #EBF5FD;
	margin: 100px 0 0;
	padding: 80px 0 80px;
	position: relative;
}
.works-area .works-evaluation{
	position: absolute;
	top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	margin:0 0 0 -490px;
}
.works-area .txt-area{
	text-align: center;

}
.works-area .txt-area .section-catch{
	padding: 20px 0 0;
}
.works-area .txt-area .basic-txt{
	padding: 15px 0 0;
	width: 800px;
	margin: 0 auto;
}

.works-area .works-list{
	max-width: 1200px;
	margin: 50px auto;
}
.works-area .works-list li{
	margin: 0;
}
/*.works-area .works-list li:nth-child(3n){
	margin: 40px 20px 0 0;
}
.works-area .works-list li:nth-child(4n){
	margin: 40px 0 0;
}*/
.works-area .works-list .disc{
	display: none;
}

.works-area .btn-more{
	margin: 40px auto 0;
	display: table;
	text-align: center;
}
.works-area .btn-more a{
	width: 320px;
}
@media screen and (max-width: 768px){
	.works-area{
		margin: 60px 0 0;
		padding: 0 0 40px;
	}
	
	.works-area .works-list{
		margin: 40px auto 10px;
	}
	.works-area .works-list li{
		margin: 0 0 0 20px;
	}
	
	.works-area .works-evaluation{
		position: initial;
		margin: 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		width: 161px;
	}
	.works-area .txt-area{
	}
	.works-area .section-fukidashi{
		font-size: 1.6rem;
		top: -20px;
	}
	.works-area .txt-area .section-catch{
		padding: 0;
	}
	.works-area .txt-area .basic-txt{
		display: none;
	}
	.works-area .works-list .disc{
	}

	.works-area .btn-more{
		margin: 30px auto 0;
	}
}

/* -----------------------------
	about-area
-------------------------------- */
.about-area{
	margin: 80px 0 100px;
}
.about-area .txt-area{
	text-align: center;
}
.about-area .about-block{
	display: flex;
	align-items: center;
	
	margin: 23px 0 0;
}
.about-area .about-block.first,
.about-area .about-block.third{
	flex-direction: row-reverse;
}
.about-area .about-block.second{
	margin: 78px 0 0;
}
.about-area .about-block.third{
	margin: 78px 0 0;
}
.about-area .about-block .title{
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
	color: #004D94;
}
.about-area .about-block .basic-txt{
	margin: 30px 0 0;
}
.about-area .about-block .btn-more{
	margin: 30px 0 0;
}

.about-area .about-block.first img{
	margin: 0 0 0 50px;
}
.about-area .about-block.second img{
	margin: 0 100px 0 0;
}
.about-area .about-block.third img{
	margin: 0 0 0 50px;
}

@media screen and (max-width: 768px){
	.about-area{
		margin: 40px 0 80px;
	}
	.about-area .txt-area{
	}
	.about-area .txt-area img{
		width: 100%;
	}
	.about-area .txt-area .section-catch{
		padding: 10px 0 0;
	}
	.about-area .about-block{
		display: block;
		margin: 29px 0 0;
	}
	.about-area .about-block.first,
	.about-area .about-block.third{
		width: 100%;
	}
	.about-area .about-block .title{
		font-size: 2.2rem;
		text-align: center;
		padding: 24px 0 0;
	}
	.about-area .about-block .basic-txt{
		margin: 20px 0 0;
	}
	.about-area .about-block .btn-more{
		margin: 20px auto 0;
	}

	.about-area .about-block.first img,
	.about-area .about-block.third img{
		width: 100%;
		margin: 0;
	}
	.about-area .about-block.second{
		margin: 40px 0 0;
	}
	.about-area .about-block.second img{
		width: 100%;
		margin: 0;
	}
}

/* -----------------------------
	フルリッチテキスト
-------------------------------- */

.detail-contents {
  line-height: 1.8;
  padding: 0 0 50px !important;
}

/* pタグ */
.detail-contents p {
  font-size: 1.6rem;
}

/* 見出し系 */
.detail-contents h1,
.detail-contents h2,
.detail-contents h3,
.detail-contents h4 {
  font-weight: bold;
  line-height: 1.5;
}

.detail-contents h1 {
	/*
  background: #333;
	*/
  color: #24A6D6;
  font-size: 2.6rem;
  margin: 30px 0 20px 0;
	/*
  padding: 15px 30px;
	*/
}

.detail-contents h2 {
  border-bottom: 3px #24A6D6 solid;
  font-size: 2.4rem;
  margin: 40px 0 30px 0;
  padding: 0 0 10px;
}

.detail-contents h3 {
	background: #24A6D6;
	color: #fff;
  font-size: 2.2rem;
  margin: 40px 0 30px 0;
  padding: 15px 30px;
}

.detail-contents h4 {
  font-size: 2rem;
  margin: 30px 0 20px 0;
  padding: 0 0 0 16px;
  position: relative;
}

.detail-contents h4::before {
  background: #24A6D6;
  border-radius: 3px;
  content: "";
  display: block;
  height: calc(100% - 10px);
  left: 0;
  position: absolute;
  top: 5px;
  width: 4px;
}

.detail-contents img {
  display: block;
  height: auto;
  max-width: 790px;
}

.detail-contents a:link {
  color: red;
  display: inline-block;
}

@media screen and (max-width: 768px) {
	
  .detail-contents {
    padding: 0 20px 30px !important;
  }

  .detail-contents h1 {
    font-size: 2.2rem;
    margin: 20px 0 10px 0;
	  /*
    padding: 10px 15px;
	  */
  }

  .detail-contents h2 {
    margin: 30px 0 20px 0;
    padding: 0 0 8px;
    font-size: 2rem;
  }

  .detail-contents h3 {
    margin: 30px 0 20px 0;
    padding: 15px 15px;
    font-size: 1.8rem;
  }

  .detail-contents h4 {
    margin: 20px 0 10px 0;
    padding: 0 0 0 18px;
    font-size: 1.6rem;
  }

  .detail-contents h4::before {
    top: 5px;
    height: calc(100% - 10px);
  }

  .detail-contents img {
    float: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    height: auto;
    display: block;
  }
}
