@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*------------------------------------------- 
 * 変数
 * -------------------------------------------*/
:root {
	--f1: 2.44em;
	--f2: 1.95em;
	--f3: 1.56em;
	--f4: 1.25em;
	--f5: 1em;
	--f6: 0.8em;
	
	--basecol: #103170; /*基本色*/
	
	--myw: 720px;
}

@media (max-width: 768px) {
	:root {
	--f1: 28px;
	--f2: 24px;
	--f3: 20px;
	--f4: 18px;
	--f5: 14px;
	--f6: 12px;
	}
}

/*------------------------------------------- 
 * wp 
 * -------------------------------------------*/

.alignleft {
	float: left;
	margin-left: 0;
	margin-right: 1em;
}

.alignright {
	float: right;
	margin-left: 1em;
	margin-right: 0;
}

.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
	text-align: center;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

/*------------------------------------------- 
 * 初期設定 
 * -------------------------------------------*/

* {
  zoom: 1;
  	font-family: 'Roboto', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  letter-spacing: 0.05em;
}

body {
	display: table;
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 0px;
	box-sizing: border-box;
	line-height: 1.4;
	color: #333 !important;
	transition: 0.8s;
	margin: 0;
}

body *,
body *::before,
body *::after {
	box-sizing: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

p {
	line-height: 1.8;
	font-size: var(--f5);
}

figure {
	margin-left: 0;
	margin-right: 0;
}

.sp {
	display: none;
}

@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none!important;
	}
}

/*------------------------------------------- 
 * 見出し 
 * -------------------------------------------*/
h1 { 
	font-size: var(--f1);
	font-weight: 900;
	text-align: left;
}
h2 { 
	font-size: var(--f2);
	font-weight: 700;
	margin-top: 50px;
}
h2.index {
	font-size: var(--f1);
    position: relative;
    display: block;
    margin-bottom: 1.8em;
    text-align: center;
}
h2.index:before {
  content: '';
  position: absolute;
  bottom: -25px;
  display: inline-block;
  width: 60px;
  height: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #F4F88B;
  border-radius: 2px;
}

h3 { 
	font-size: var(--f3);
	font-weight: 500;
		margin-top: 30px;
}
h4 { font-size: var(--f4); }
h5 { font-size: var(--f5); }
h6 { font-size: var(--f6); }

.osusume {
	font-weight: 700;
	letter-spacing:0;
	font-size:var(--f1);
}

/*------------------------------------------- 
 * header
 * -------------------------------------------*/
header {
	display: flex;
   justify-content: center;
	position: fixed;
   background: #fff;
	z-index: 1000;
}

.myhead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100vw;
   padding: 4px calc( ( 100vw - 1020px ) / 2 );
	box-shadow: 0px 4px 8px 0px rgb(10 44 27 / 10%);
}

.logo {
	height: 40px;
}

/*------------------------------------------- 
 * PC ナビゲーション
 * -------------------------------------------*/
.mynav  {
	padding: 7px 0;
	color: #231815;
	font-size: var(--f5);
}

.mynav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.mynav li {
	padding: 0 16px;
   border-left: 1px solid #333;
   font-weight: 700;
   width: 117px;
   text-align: center;
}

.mynav li a {
	display:
	transition: .4s;
}

.mynav li a:hover {
	opacity: 0.7;
}

.mynav li a img {
    margin: 0 auto 5px;
    height: 28px;
    display: block;
}

/*------------------------------------------- 
 * ハンバーガーメニュー
 * -------------------------------------------*/

#nav-drawer {
position: absolute;
    top: 10px;
    right: 10px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 70%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

@media screen and (min-width:769px) {
  #nav-open {
    display:none;
  }
}

@media screen and (max-width:768px) {
	.logo {
		height: 30px;
	}
	.myhead {
		padding: 4px 10px 0;
		position: relative;
		justify-content: center;
	}
	.navsp {
				padding: 10px 20px;
		position: relative;
		    height: 100vh;
	}
	.navsp ul {
		list-style-type: none;
		padding: 0;
		
	}
	.navsp ul li:not(:last-child) {
		padding-bottom: 15px;
		border-bottom: 2px dotted #e0e0e0;
		margin-bottom: 15px;
	}
	.navsp ul li a {
    display: flex;
    align-items: center;
		font-size: var(--f4);
		    FONT-WEIGHT: 600;
    color: var(--basecol);
	}
	.navsp ul li a img {
		margin-right: 10px;
		    height: 34px;
	}
	.navsp ul li .logo {
    height: 27.4px;
	}
	.navsp .bnr {
		    position: absolute;
    bottom: 20px;
		text-align: center;
		    padding: 0 20px 0 0;
	}
	.navsp .bnr img {
		width: 100%;
	}
}

/*------------------------------------------- 
 * footer
 * -------------------------------------------*/
.myfoot {
	padding: 30px 10px;
	background: #fff;
	color: #231815;
	text-align: center;
	margin-top: 80px;
}

footer nav ul {
	list-style-type:none;
	display: flex;
	justify-content: center;
	padding: 0;
}
footer nav ul li:not(:last-child) {
	border-right: 1.5px solid #fff;
}
footer nav ul li {
    padding: 0 10px;
	font-size: var(--f6);
}

footer nav a {
	transition: .4s;
}
footer nav a:hover {
	opacity: 0.7;
}

small {
	margin-top: 30px;
}

/*------------------------------------------- 
 * 
 * -------------------------------------------*/

.mycontainer {
	margin-left: 16px;
	margin-right: 16px;
	    text-align: center;

}

.alignfull {
	margin-left: -10px;
	margin-right: -10px;
	max-width: none;
	width: auto;
}

@media (min-width: 740px) {

	.mycontainer {
		max-width: none;
		margin-left: calc( ( 100vw - var(--myw) ) / 2 );
		margin-right: calc( ( 100vw - var(--myw) ) / 2 );
		margin-top:50px;
	}

	.alignfull {
		margin-left: calc( ( 100vw - var(--myw) ) / 2 * -1 );
		margin-right: calc( ( 100vw - var(--myw) ) / 2 * -1 );
	}

	.alignwide {
		/*margin-left: calc( ( 100vw - var(--myw) ) / 4 * -1 );*/
		/*margin-right: calc( ( 100vw - var(--myw) ) / 4 * -1 );*/
		max-width: none;
		width: auto;
	}
}


@media (min-width: 1320px ) { 
	.alignwide {
		margin-left: -150px;
		margin-right: -150px;
	}
}


/*------------------------------------------- 
 * 記事一覧
 * -------------------------------------------*/
.mypostlist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	margin-top: 60px;
}

.mypostlist article {
	margin-bottom: 15px;
}

.mypostlist figure {
	margin: 0;
}

.mypostlist img {
	height: 180px;
	width: 100%;
	object-fit: cover;
}

.mypostlist h3 {
	margin: 0;
	padding: 0;
	border: none;
	font-size: var(--f6);
}

@media (max-width: 750px) {
	.mypostlist {
		    padding: 0 10px 0;
		margin: 0;
	}
	.mypostlist a:hover {
		opacity: 0.8;
	}
	mypostlist img {
    height: 130px;
	}
}

/*-------------------------------------------------------------------  
 * 記事ページ
 * -------------------------------------------------------------------*/
.myposthead {
	padding-bottom: 10px;
	text-align: center;
	    border-bottom: 2px solid;
    margin-bottom: 30px;
}

.myposthead h1 {
	font-size: var(--f2);
}

.post-info {
    display: flex;
    justify-content: space-between;
	    margin-top: 12px;
}
.post-info time {
	    margin-top: 2px;
}

article p {
	text-align: left;
}
article h2 {
	font-size: 1.75em ;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0.25em 0.5em;/*上下 左右の余白*/
  	background: transparent;/*背景透明に*/
  	border-left: solid 5px #103170;/*左線*/
	margin-bottom: 20px;
	text-align: left;
}

.contents-wrap h2 {
	  color: #103170;/*文字色*/
  padding: 0.8em 0;/*上下の余白*/
  border-top: solid 2px #103170;/*上線*/
  border-bottom: solid 2px #103170;/*下線*/
	border-left: none;
}

article h3 {
	font-family: 'Noto Sans JP', sans-serif;
	text-align:left;
}

.contents-wrap h3 {
	padding: 0.1em 0.5em;/*上下 左右の余白*/
  	background: transparent;/*背景透明に*/
  	border-left: solid 5px #103170;/*左線*/
	margin-bottom: 20px;
}

.contents-wrap h4 {
	margin: 20px 0 10px;
	text-align: left;
}

.contents-wrap ul {
    margin: 30px auto;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    padding: 30px 20px 10px 40px;
    border-radius: 10px;
}
.contents-wrap ul li {
    text-align: left;
    font-size: var(--f5);
    margin-bottom: 0.8em;
	}

.contents-wrap img {
	width: 100%;
    margin: auto;
    display: block;
}

.contents-wrap table {
    border-collapse:collapse;
    font-size: 14px;
    border: 3px solid #333;
}



article table th {
	background: #f5f5f5;
	vertical-align:top;
}

article table td {
	text-align: left;
	font-size: var(--f5);
}

.attention {
	background: #f5f5f5;
	padding: 10px;
	font-size: var(--f6);
	border: 1px solid #e0e0e0;
	borde-radius: 10px;
}
.attention a {
	text-decoration: underline;
}

.attention p {
	margin-bottom: 0;
}

.mt100 {
	margin-top: 100px!important;
}

@media (max-width: 750px) {
	.contents-wrap img {
		width: 100%;
		    border-radius: 10px;
	}
	.mt100 {
		margin-top: 60px!important;
	}
	.post-info time {
		margin-top: 3px;
    	font-size: 14px;
	}

	.mypostlist img {
    height: 130px;
	}
	article h2 {
		font-size: 1.2em;
    	margin: 40px 0 15px;
	}
	article h3 {
		font-size: 1.1em;
	}
	.contents-wrap ul {
		margin: 20px auto;
		padding: 20px 10px 0px 30px;

	}
	.contents-wrap li {
    text-align: left;
    font-size: var(--f5);
    margin-bottom: 1em;
	}
}

/*------------------------------------------- 
 * カテゴリー
 * -------------------------------------------*/
.post-categories {
	display: flex;
	justify-content: center;
	padding: 0;
	list-style-type: none;
	margin: 0;
}

.post-categories li:not(:last-child) {
	margin-right: 10px;
}

.post-categories a {
	padding: 3px 10px;
	border: solid 1px currentColor;
	border-radius: 4px;
	color: var(--basecol);
	font-size: var(--f6);
}

.post-categories::before {
	content: "\f318";
	font-family: "dashicons";
	color: var(--basecol);
	font-size: var(--f3);
	line-height: 1;
	margin-right: 5px;
}

/*------------------------------------------- 
 * スクリーンリーダのテキストを隠す
 * -------------------------------------------*/
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}


/*------------------------------------------- 
 * 記事のリンクを並べる
 * -------------------------------------------*/
.nav-links {
	display: flex;
	margin: 30px 0;
	font-size: var(--f5);
	    align-items: end;
	    text-align: left;


}

.nav-previous {
	flex: 1;
	display: flex;
	align-itemscenter;
}

.nav-next {
	flex: 1;
	margin-left: 10px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-previous::before {
	content: "\f341";
}

.nav-next::after {
	content: "\f345";
}

.nav-previous::before, .nav-next::after {
	font-family: "dashicons";
	color: var(--basecol);
	font-size: var(--f3);
	line-height: 1;
}

.nav-links a {
		color: var(--basecol);
}

/*------------------------------------------- 
 * ページネーション
 * -------------------------------------------*/
.pagination .nav-links {
	margin-bottom: 50px;
	justify-content: center;
}

.pagination .page-numbers:not(:last-child) {
	margin-right: 15px;
}

.pagination a {
	color: var(--basecol);
}

.pagination .current {
	color: #aaa;
}


/*------------------------------------------- 
 * menu(sidebar)
 * -------------------------------------------*/
.mymenu {
}

.mymenu .wrap {
		background: #DFDFDF;
		padding: 10px 20px;
	margin-bottom: 24px;
	margin-top: 100px;
}

#main .mymenu .wrap {
	margin-top: 0;
}

.mymenu h2,.category-ttl {
    font-weight: 500;
    letter-spacing: 0;
    font-size: var(--f4);
    margin: 10px 0;
    text-align: left;
    color: #231815;
}

.mymenu h3 {
	font-size: var(--f5);
	font-weight: 700;
   letter-spacing: 0;
	margin-top: 10px;
	text-align: center;
}

.mymenu img {
    height: auto;
    width: 100%;
	margin: 0 auto;
}

.side-list {
	list-style-type:none;
	padding: 0;
	margin: 0;
}

.side-list:not(:last-child) {
	margin-bottom: 8px;
}
@media (max-width: 1000px) {
	.side-list {	
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 10px;
	}
	.textwidget{
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
	}
	
}
@media (max-width: 750px) {
	.mymenu {
		padding: 10px 0;
		margin-top:30px;
}
	.mymenu h3 {
		font-size: var(--f3);
	}
	.side-list {	
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 10px;
	}
	.mymenu img {
		margin: 0;
	}
}

/*------------------------------------------- 
 * 2段組
 * -------------------------------------------*/
@media (min-width: 1000px) {
	.mycols .mycontainer,
	.mycols .alignwide,
	.mycols .alignfull {
		width: auto;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}
	
	.mycols .mymenu-columns {
		columns: 1;
	}
	
	.mycols {
		display: flex;
		margin: 0 calc( ( 100vw - 1000px ) / 2 ) 0;
		justify-content: space-between;
	}
	
	.mycols .mycontent {
		width: 700px;
	}
	
	.mycols .mymenu {
		width: 250px;
		margin-top: 0;
		padding: 20px;
	}
}

/*------------------------------------------- 
 * fv
 * -------------------------------------------*/

.mv-wrap {
    display: flex;
    justify-content: center;
   /* width: 100vw;*/
   /* padding: 10px calc( ( 100vw - 1020px ) / 2 ) 0;*/
}

.fv {
	padding-top: 100px;
    width: 100%;
    height: auto;
	display:block;
}

@media (max-width: 768px) {
	.mv-wrap {
    display: block;
	justify-content: center;
	width:100%;
	}
	.fv {
    padding: 37px 5px 0;
    margin:0 auto 15px;
	}
}

/*-------------------------------------------
 * btn
 * -------------------------------------------*/
.btn {
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.btn {
    display: block;
    padding: 16px 30px 16px;
    margin: 20px auto 30px;
    width: 80%;
    color: #fff;
    font-weight: 500;
    font-size: var(--f4);
    box-shadow: 0 4px 10px rgb(0 0 0 / 38%);
    transition: .3s;
    text-align: center;
    position: relative;
    box-sizing: border-box;
	background: #D64B33;
	border: 3px solid #D64B33;
	box-sizing: border-box;
	border-radius: 70px;
}

.btn-icon{
  position: absolute;
  top: 50%;
  left: 20px;/*右からの距離*/
  width: 13px;/*アイコンの横幅指定*/
  transform: translateY(-50%);/*この指定で上下中央に*/
}

.btn-form {
	    border-radius: 50px;
}

.btn-column {
	background:#50c2ca;
	    padding: 8px;
    border-radius: 5px;
	margin-top: 0;
}

.btn:hover {
  box-shadow: none;
  transform: translate3d(0, 5px, 0);
	opacity:1;
}

@media (max-width: 768px) {
	.btn {
		    padding: 13px 30px;
	}
	.btn-form {
		    margin: 20px auto 0;
		width: 100%;
	}
}
/*-------------------------------------------
 * search
 * -------------------------------------------*/
#searchform {
    width: 100%;
    background: #fff;
    margin: 0 auto 60px;
    border: 4px solid #565656;
}

#searchform h3 {
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    margin-top: 0;
    text-align: center;
    /* border-bottom: 3px dotted #707070; */
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    border-left: none;
    padding: 8px 0;
    text-align: left;
    background: #565656;
    color: #fff;
	margin: 0 0 24px -1px;
}

#searchform h3 img {
	width: auto;
    margin: 0;
}

.icon-search {
	    height: 36px;

}

.select {
    display: flex;
    padding: 6px 30px;

}

#searchform label {
    display: flex;
    width: 50%;
    font-weight: 700;
    font-family: 'Roboto', 'M PLUS 1p', sans-serif;
    align-items: center;
    text-align: left;
	margin-right: 10px;
	font-size: 18px;
}

.cp_ipselect {
    overflow: hidden;
    width: 100%;
    margin: auto;
    text-align: center;
}
.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl04 {
    position: relative;
    border-radius: 2px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #ffffff;
}
.cp_ipselect.cp_sl04::before {
    position: absolute;
    top: 1em;
    right: 0.8em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    pointer-events: none;
}
.cp_ipselect.cp_sl04 select {
    padding: 10px 38px 10px 16px;
    color: #333;
	font-size: var(--f5);
}

@media (max-width: 768px) {
	#searchform {
		padding: 15px 16px 30px;
	}
	#searchform h3 {
		font-size: 18px;
		border-bottom: none;
	}
	.icon-search {
    height: 42px;
	}
	#searchform label {
    font-size: 15px;
	}
	.cp_ipselect.cp_sl04 select {
  	  padding: 6px 4px;
		font-size: 16px;
		transform: scale(calc(14 / 16));
	}
	.select {
    display: flex;
    margin-bottom: 8px;
	padding: 6px 0;
	}
	.cp_ipselect.cp_sl04::before {
    top: 1em;
	}
}


/*-------------------------------------------
 * 各カードローン のwrap
 * -------------------------------------------*/
.card-wrap {
	border: 5px solid  #565656;
    margin: 0 auto 50px;
	border-radius: 15px;
}
.card-wrap .wp-block-column {
	margin: 0;
	padding: 0 16px;
}

.card-wrap h2 {
	border: none;
    background: #565656;
    padding: 10px;
    color: #fff;
    margin: -1px 0px 20px -1px;
    text-align: center;
}

.card-wrap p {
	text-align: center;
	font-weight: bold;
	line-height: 23px;
	color: #E62315;
	margin-bottom:0;
}
.card-wrap p.small{
	color:#000;
	font-weight: normal;
	text-align:right;
	line-height: 1.6;
	margin-bottom: 5px;
}
#button.small-btn a{
	font-size: 25px;
    line-height: 1.2;
    padding: 0px 0 3px;
}

.card-wrap img {
	max-width: 350px;
	margin: 0 auto;
	border: 1px solid #e0e0e0;
}

.card-wrap h3 {
	text-align: left;
	margin: 0;
	font-weight: 700;
	border-left: none;
	padding: 0;
	font-size:31px;
}

.card-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0 10px;
	padding: 0 20px;
}
.card-info dl {
	display: block;
	margin: 0 0 20px;
}
.card-info dt {
	background: #565656;
	color: #fff;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 0;
	border-radius: 10px 10px 0 0;
}
.card-info dt img {
	border: none;
    width: auto;
    margin: 0;
}
.card-info dd {
	background:#F3F3F3;
	margin: 0;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	flex-flow: column;
	color: #333;
	font-weight: bold;
}
.card-info .icon-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.card-info .icon-con {
    border: none;
    height: 20px;
    margin: 0 4px 10px;
    width: auto;
}
.card-info dd span {
	font-size: 10px;
}

.card-point {
	text-align: left;
	margin: 60px 20px 10px;
	padding: 20px 20px 20px 50px;
	border: 4px solid #DD6725;
	color: #103170;
	position: relative;
	
}

.card-point::before {
    content: url(image/point.svg);
    display: inline-block;
    width: 110px;
    position: absolute;
    top: -33px;
    left: -4px;
}
.card-point li:not(:last-child) {
	margin-bottom: 5px;
}
.card-point li span {
	font-size: 12px;
}

#button {
    display: block;
    width: 93%;
    margin: 10px auto 20px;
	font-size: 24px;
}
#button a {
	display: block;
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	border: 2px solid #CB2F00;
	background-color: #CB2F00;
	color: #ffffff;
	padding: 12px 0;
	text-align: center;
	text-decoration: none;
	transition: .25s linear;
	-webkit-transition: .25s linear;
	-moz-transition: .25s linear;
		box-shadow: 0 8px rgba(0,0,0,.78);
	transition: .3s;
	border-radius: 30px;
	font-weight: 700;
	background: #23935B;
    border: 3px solid #23935B;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 15%);
    border-radius: 50px;
}
#button a:hover {
	color: #23935B;
   background-color: #ffffff;
  box-shadow: none;
  transform: translate3d(0, 5px, 0);
	opacity:1;
}
#button a:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: -30%;
    top: -50%;
    content: "";
    width: 30px;
    height: 200px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,1),rgba(255,255,255,0) 100%);
    animation: shiny 3s infinite linear;
    -webkit-animation: shiny 3s infinite linear;
    -moz-animation: shiny 3s infinite linear;
}
@keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-webkit-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-moz-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-webkit-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-moz-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
#button.small-btn{
	font-size: 16px!important;
	    width: 100% !important;
}
.text-link {
    color: blue;
    text-decoration: underline;
    margin-left: auto;
    text-align: right;
    display: block;
    padding-right: 24px;
}
.card-list .mycontent {
	margin-top: 100px;
}


@media (max-width: 768px) {
	.card-list .mycontent {
		margin-top: 50px;
	}
	
	.text-link {
		margin: 0 0 12px;
		font-size: 16px;
		padding:0 15px;
	}
	.card-list {
	margin-top: 50px;
	}

	.rank img {
		    height: 60px;
		width: auto;
	}
	.card-wrap {
		margin: 30px 0;
	}
	.card-wrap h2 {
		/*padding:3px;*/
		margin-right:-1px;
	}
	.card-wrap img {
		width: 100%;
		    border-radius: 0;

	}
	.card-wrap .wp-block-image {
    margin-bottom: 0;
	}
	.card-wrap .wp-block-image .aligncenter {
		    margin: 10px auto 0;
	}
	.card-wrap h3 {
    margin: 0 10px 10px;
	}
	.card-info {
    grid-template-columns: repeat(1, 1fr);
	}
	.card-point {
		margin: 50px 16px 20px;
		padding: 10px 10px 10px 30px;
		font-size: 16px;
		font-weight:bold;
		
	}
	.card-point li:not(:last-child) {
	margin-bottom: 2px;
	}
	#button {
    font-size: 17px;
    width: 90%;
	}
	.card-wrap .wp-block-column {
    margin: 0 !important;
    padding: 0 16px;
	}
	.card-wrap .wp-block-columns {
		margin: 0;
	}
	.card-info .icon-con {
		    margin: 0 1px;
	}
	.card-info dt img {
	width: 30px;
    vertical-align: middle;
    margin-right: 5px;
	}
	.card-info dt {
    font-size: 10px;
    display: inline-flex;
    border-radius: 10px 0px 0 10px;
    height: 60px;
	width:41%;
	font-size: 13px;
    text-align: left;
    padding: 8px;
    justify-content: flex-start;
    align-items: center;
	}
	.card-info dd{
	width:58%;
	display: inline-flex;
    vertical-align: bottom;
    padding: 8px;
	margin-left:-4px;
    
	}
	#button a{
	/*padding: 8% 3%;*/
    border-radius: 100px;
    font-size: 23px;
}
	.card-wrap p.small{
	padding: 0 10px;
    letter-spacing: -0.3px;
	}
}


/*------------------------------------------- 
 * timer
 * -------------------------------------------*/
.timer-wrap {
	color: #fff;
	margin: 20px;
	justify-content: space-between;
	font-size: 18px;
	border: 4px solid #DD6725;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.timer-wrap p {
	margin: 0;
	text-align: center;
	background: #DD6725;
	padding: 10px 0;
	color:#fff;
	font-size:20px;
	line-height: 1.9;
}

.clearfix {
	font-weight: 700;
	color: #333;
	padding: 17px 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.countdown_section {
	color: #8FB64C:
}


.big-icon {
	font-size: 30px;
    width: 32px;
	padding-top:4px;
}

.rest,
.countdown_section {
    font-size: 18px;
    line-height: 24px;
}

.countdown_amount {
	color: #333;
	font-size: 48px!important;
}
.time-cage span{
	color:#dd6725;	
}
.time-cage .rest{
	color:#000;
}

@media (max-width: 768px) {
.timer-wrap {
    width: 92%;
    margin: auto;
	display:block;
	border: 4px solid #dd6725;
}
.timer-wrap p{
		line-height:1.2;
	}
.big-icon {
		    font-size: 22px;
}
.rest,.countdown_section {
    font-size: 16px;
    line-height: 24px;
}
	.countdown_amount {
	color: #dd6725;
    font-size: 24px!important;
}
}

/*------------------------------------------- 
 * rank
 * -------------------------------------------*/
.rank-wrap .hoken-wrap .wp-block-image {
	margin-bottom: 1em;
}

@media (max-width: 768px) {
	.rank-wrap .wp-block-image {
	margin-bottom: 0;
	}
}

/*------------------------------------------- 
 * コラム
 * -------------------------------------------*/
.column-wrap .wp-block-column .wp-block-image img {
	height: 200px;
	object-fit: cover;
}

.column-wrap figcaption, .wp-block-image figcaption {
    color: #333;
    font-size: 13px;
    text-align: left;
}

.wp-block-column:not(:first-child) {
    margin-left: 16px;
	margin-left: 0px;
}

/*------------------------------------------- 
 * page
 * -------------------------------------------*/
.page-wrap {
	padding: 10px calc( ( 100vw - 1020px ) / 2 ) 0;
}

.page-wrap h1 {
	text-align: center;
}

@media (max-width: 768px) {
	.page-wrap {
		padding: 10px;
	}
	.page-wrap h3 {
		margin-top: 0;
	}
	.page-wrap p {
    text-align: left;
    font-weight: 300;
    line-height: 1.7;
		font-size: 12px;
	}
	.page-wrap h2 {
    	margin: 20px 0 15px;
	}
}



/*------------------------------------------- 
 * 
 * -------------------------------------------*/
.sticky_table {
	border: 1px solid #e0e0e0;
	font-size: var(--f6);
	border-collapse:collapse;
}

.sticky_table thead th {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
	background: #F4F88B;
   padding: 8px 0;
	border-left: 1px solid #e0e0e0;
	width: 20%;

}

.sticky_table th:first-child {
  /* 横スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  left: 0;
	padding: 8px;
   background:#F4F88B;
	border-top: 1px solid #e0e0e0;
	text-align: left;

}

.sticky_table thead th:first-child {
  /* ヘッダー行内の他のセルより手前に表示する */
  z-index: 2;
}

.sticky_table td {
	border: 1px solid #e0e0e0;
	text-align: left;
		padding: 8px;
}

@media (max-width: 768px) {
	.sticky_table thead th {
  top: -3px;
	}
	.sticky_table thead th {
		/*width: 40%;*/
	}
	
.sticky_table_wrapper {
  overflow: scroll;
  width: calc(100vw - 1rem);
  height: 60vh;
}
}

.small {
    font-size: 10px;
    text-align: left;
    padding: 0 20px;
    letter-spacing: 0.4px;
}


.mt0 {
	margin-top: 0!important;
}

/*------------------------------------------- 
 * コラムページ
 * -------------------------------------------*/

.column-search {
    width: 100%;
}

.column-search h3 {
	font-size: var(--f2);
	color: #23935B;
	font-weight: 700;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.column-search h3 img {
	margin-right: 10px;
	width: 40px;
}

.column-search ul li .sub-title {
	font-size: var(--f3) !important;
	color: #fff;
	text-align: left !important;
	/*margin: 0 0 10px !important;*/
	font-weight: 500 !important;
	display:inline-block;
	margin:0;
	line-height:1.2;
}
.column-search ul li .big-title {
	font-size:larger;
}
.column-search ul li .small-title {
	font-size: 22px;
}

.column-search ul {
	list-style-type: none;
	padding:0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
	padding: 10px;
}
.column-search ul li a {
background: #F7C80E;
    display: flex;
	height: 100px;
	border-radius: 5px;
	box-shadow: 0 15px 0px rgb(153 125 3);
    padding: 15px 15px 10px;
    justify-content: center;
    align-items: center;
    
}

#column_page .card-point,
#column_page .card-wrap .small,
#column_page .timer-wrap {
	display: none;
}

.breadcrumbs {
	font-size: 11px;
	text-align: left;
	    margin-bottom: 10px;

}

.breadicon {
    color: var(--basecol);
    font-size: 15px;
    line-height: 15px;
}

.current-item {
	    color: var(--basecol);
}


.myrelated {
    background: #f5f5f5;
    padding: 20px 30px;
    border-radius: 20px;
}

.myrelated h2 {
	margin-top: 0;
	border-left: none;
	padding: 0;
	text-align: center;
}

.cl-s-index ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
	    margin-top: 20px;
}

.cl-s-index ul li a {
	padding: 20px 10px;
	height: auto;
}

.cl-s-index .sub-title {
	text-align: center !important;
}

.subicon {
    /*display: block;*/
    margin: auto;
    position: unset;
    /*height: 90px;*/
    width: auto;
	vertical-align:top;
	margin-right:5px;
}

@media (max-width: 768px) {
	.myrelated {
    padding: 20px 10px 0;
	}	
	.subicon {
		height: 40px;
		margin: auto;
		display: flex;
	}
	
	.column-search ul li .sub-title{
	margin: 0 0 5px !important;
    display: block;
    text-align: center!important;
		font-size:16px!important;
	}
	.column-search ul li .small-title {
	font-size: 13px;
}
	
	.column-search ul li a{
	height: 110px;
    line-height: 1.2;
    border-radius: 5px;
    box-shadow: 0 10px 0px rgb(153 125 3);
	}
	
}
/*------------------------------------------- 
 * カテゴリ
 * -------------------------------------------*/

.category-ttl {
    margin-top: 30px;
    text-align: left;
}

@media (max-width: 768px) {
.category-ttl {
    margin: 0 10px 10px;
}
}
/*------------------------------------------- 
 * 会社
 * -------------------------------------------*/

.about-table table, .reserch table, .reserch
{
	border-collapse:collapse;		/*セル同士の間に隙間を空けない*/
	font-size: 13px;
}

.about-table table th,
.reserch th {
	background: #f5f5f5;
	width: 20%;
	text-align: left;
	    padding: 10px;
}

.reserch-li {
	text-align: left;
}

.reserch-info {
	background: #f5f5f5;
	padding: 20px;
}

.reserch-info p {
	font-size: 11px;
}


@media (max-width: 768px) {
	.about-table table th {
		width: 120px;
	}
	.term-li {
		font-size: 12px;
		font-weight: 300;
	}
}

/*------------------------------------------- 
 * リダイレクトページ
 * -------------------------------------------*/

.redirect-mg {
	margin-bottom: 100px !important;
}

/*------------------------------------------- 
 * 記事の装飾追加　21/3/11
 * -------------------------------------------*/

.article-point {
    padding: 16px;
    background: #f5f5f5;
    border: 2px solid #83B715;
	    width: 90%;
    margin: auto;
	font-size: inherit;
}
.article-point li {
	list-style-type: none;
	text-align: left;
	    display: flex;
    align-items: center;
}

ul.article-point li:before {
	font-family: "dashicons";
content: "\f12a";
  padding-right : 5px;/*文字との隙間*/
  color:  #83B715;
	font-size: 24px;
}

ol.article-point li:not(:last-child) {
	    margin-bottom: 8px;
}

.big {
	font-size: 20px;
}

@media (max-width: 768px) {
	.article-point {
		font-size: 14px;
	}
	.big {
	font-size: 18px;
}

}

/*--------------------------------
 * TOPページの ranking-table
 * --------------------------------- */
.new-rank-wrap {
   margin-top: 80px;
   }

.new-rank-wrap img {
	position: relative;
	top: -60px;
	width: 65%;
}

.new-rank-wrap h2 {
	margin: 0;
	position: relative;
	top: -70px;
	color: #000;
	text-shadow: 0 3px 10px rgb(0 0 0 / 20%);
	font-size: xxx-large;
}
.new-rank-wrap h2 p{
	margin: 0;
    display: inline-block;
	background: rgb(251,255,68);
	background: linear-gradient(0deg, rgba(251,255,68,1) 63%, rgba(255,255,255,1) 65%);
	line-height: 1.2;
}
.new-rank-wrap h2 span {
	color: #0C6F48;
}

.new-rank-wrap table {
	width: 100%;
	font-size: 14px;
	margin: 0px auto 50px;
	border-collapse:separate;
	border-spacing: 0;
	color: #0c6f48;
}

.new-rank-wrap table .btn-table {
	padding: 10px 0 8px;
	background: #23935B;
	box-shadow: 0px 4px 4px rgb(0 0 0 / 15%);
	border-radius: 20px;
	display: block;
	color: #fff;
	font-weight: 600;
	border: 1px solid #fff;
	text-decoration: none;
}
.new-rank-wrap table .btn-table span {
	font-size: 20px;
}
span.font-s{
	font-size:14px!important;
}
.new-rank-wrap table .btn-table img {
    width: 32px;
}

.new-rank-wrap table th {
	width: 20%;
}

.new-rank-wrap table th,
.new-rank-wrap table td {
	padding: 8px;
}

.new-rank-wrap table img {
	width: 50px;
	position: unset;
}

.new-rank-wrap table a {
	text-decoration: underline;
	color: #1938FF;
}
.new-rank-wrap table a img {
    width: 100%;
    position: unset;
}

.new-rank-wrap table tr:nth-child(1) th:nth-child(2),
.new-rank-wrap table tr:nth-child(1) th:nth-child(3),
.new-rank-wrap table tr:nth-child(1) th:nth-child(4) {
    background: #565656;
    color: #fff;
    border-radius: 10px 10px 0 0;
    font-weight: 500;
}
	
.attention-mark {
	font-size: 10px;
}

.new-rank-wrap table tr:not(:first-child) td{
	border-left: 1px solid #D8D8D8;
	border-bottom: 2px solid #D8D8D8;
	border-top: 1px solid #D8D8D8;
}
.new-rank-wrap table tr:not(:first-child) td:last-child {
	border-right: 1px solid #D8D8D8;
	border-top: 1px solid #D8D8D8;
}
.new-rank-wrap table tr:nth-child(2) td {
	background: #FBFF44;
	border-top: 3px solid #D8D8D8 !important;
}
.new-rank-wrap table tr:nth-child(3) td {
	background: #fff;
}
.new-rank-wrap table tr:nth-child(4) td {
	background: #fff;
	border-bottom: 3px solid #D8D8D8!important;
}

@media (max-width: 768px) {
	.new-rank-wrap h2 {
   	font-size:30px;
	}
	.new-rank-wrap h2 p {
   	font-size:30px;
	}
	.new-rank-wrap img {
		top: -50px;
		margin: 0 auto 10px;
	}
	.table-wrap {
	  /*overflow-x: scroll;
		width: 330px;*/
		height: 100%;
		margin-bottom: 40px;
		margin-top:-30px;
	}
	.table-wrap table {
	  width: 100%;
	  border-collapse: collapse;
	  /*white-space: nowrap;*/
		margin: 0;
	}
	.new-rank-wrap table img {
    display: block;
	}
	.new-rank-wrap p.small{
		padding:0 5px;
		letter-spacing:-0.3px;
	}
	.new-rank-wrap table .btn-table {
	width: 50px;
    margin: 0 auto;
	padding: 8px;
    line-height: 1.2;
    border-radius: 25px;
	}
	.new-rank-wrap table .btn-table img{
	margin-top: 5px;
    margin-bottom: 0;
	}
}

/*--------------------------------
 * 口コミ
 * --------------------------------- */

.acd-check{
    display: none;
}
.acd-label{
    background: #23935B;
    color: #fff;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
	    margin: 0 20px;
}
.acd-label:after{
    background:#23935B;
    box-sizing: border-box;
    content:'\f543';
    display: block;
	font-family: "dashicons";
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-content{
    border: 2px solid #103170;
    display: block;
    height: 0;
    opacity: 0;
    padding: 10px 24px;
    transition: .5s;
    visibility: hidden;
	    margin: 0 20px;
}
.acd-check:checked + .acd-label:after{
content: "\f460";
}
.acd-check:checked + .acd-label + .acd-content{
    height: 100%;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
.acd-content p {
	margin: 0;
	color: #103170;
	line-height: 1.5;
	text-align:left;
	font-weight:normal;
}
.acd-content p.bold {
	font-weight: bold;
}

.acd-content .title {
	display: flex;
	align-items: flex-start;
	margin: 8px 0;
}
.acd-content .title img {
	border: none;
	width: 30px;
	margin: 0;
	margin-right: 10px;
}
.acd-content .title h3 {
	color: #D64B33;
	font-size: var(--f5);
}

.acd-content .voice {
	    margin-bottom: 30px;

}


/*----------------------------------*
  3STEP 
 * --------------------------------- */

.red {
	color: #D64B33;
}

.bg-yellow {
	background: #F7C80E;
		color: #23935B;
}

.web_3step h2.title {
	    margin: 24px auto;
    border: 4px solid #23935B;
    font-size: 30px;
    color: #23935B;
    padding: 12px;
}

.web_catch {
    position: relative;
    margin: 0;
    margin-top:40px;
    font-size: 20px;
    line-height: 1.5;
}
.web_catch:before {
content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(image/fukidashi-left.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0px;
}
.web_catch:after {
content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(image/fukidashi-right.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0px;
}

.web_3step ol {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 0;
	counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
	margin: 40px auto 0;
}
.web_3step ol li {
  position: relative;
  line-height: 1.5em;
}
.web_3step ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: "STEP"  counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #fff;
  color: #23935B;
	border: 2px solid #23935B;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
    top: -26px;
    left: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateX(-50%);
}
.web_3step ol li h2 {
    margin: 30px auto 0;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    height: 100px;
    padding: 0 0 0 20px;
	color: #23935B;
}
.web_3step ol li p {
    line-height: 1.3;
    text-align: left;
    padding: 0 0 0 20px;
    margin-top: 0;
    font-size: 14px;
}

.web_3step ol li:nth-child(1){
	background:#FFFFFF;
	border: 1px solid #D8D8D8;
}
.web_3step ol li:nth-child(1):after {
content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
	 top: 77px;
    right: -102px;
    border-width: 24px 90px 0 90px;
    z-index: 1;
    transform: rotate(-90deg);
}	

.web_3step ol li:nth-child(2){
	background:#F3F3F3;
	border: 1px solid #D8D8D8;
}

.web_3step ol li:nth-child(2):after {
content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #f4f4f5 transparent transparent transparent;
	 top: 77px;
    right: -102px;
    border-width: 24px 90px 0 90px;
    z-index: 1;
    transform: rotate(-90deg);
}	

.web_3step ol li:nth-child(3){
	background:#D8D8D8;
	border: 1px solid #D8D8D8;
}
.web_3step ol li:nth-child(3) {
    background: #D8D8D8;
    color: #231815 ;
   	border: 1px solid #D8D8D8;
}

.web_3step ol li:nth-child(3) h2 {
	color: #231815;
}
.web_3step .title-sub {
    background: #23935B;
    color: #fff;
    padding: 2px;
    margin-bottom: 30px;
    height: 40px;
    position: relative;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.web_3step .title-sub p {
	margin: 0;
}

.min30{
	font-size: 40px;
	/*text-shadow:2px 2px 0 #23935B, -2px -2px 0 #23935B,
						  -2px 2px 0 #23935B, 2px -2px 0 #23935B,
						  0px 2px 0 #23935B,  0 -2px 0 #23935B,
						  -2px 0 0 #23935B, 2px 0 0 #23935B;*/
}

.web_3step .title-sub::after {
    content: '';
    position: absolute;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #23935B;
    border-top: 20px solid transparent;
    border-left: 20px solid #23935B;
    right: -40px;
    bottom: 0;
}
@media (max-width: 768px) {
	.web_catch:before,
	.web_catch:after {
		width: 40px;
		height: 40px;
	}
	.web_3step h2.title {
		font-size: 18px;
	}
	.web_3step ol {
		display: block;
		margin-bottom: 20px;
	}
	.web_3step ol li:before {
		left: 40px;
		    z-index: 10;
	}
	.web_3step ol li {
		    padding: 20px 0px 12px;
	}
	.web_3step ol li h2 {
    margin: 0 auto 10px;
    height: unset;
    padding: 0;
	}
	.web_3step ol li p {
	margin: 0 0 20px;
		padding: 0 20px;
	}
	.web_3step ol li:nth-child(1):after {
    top: unset;
    right: 0;
    border-width: 15px 165px 0 165px;
    transform: none;
    bottom: -14px;
	}
		.web_3step ol li:nth-child(2):after {
    top: unset;
    right: 0;
    border-width: 15px 165px 0 165px;
    transform: none;
    bottom: -14px;
	}
		.web_3step ol li:nth-child(3):after {
    top: unset;
    right: 0;
    border-width: 15px 165px 0 165px;
    transform: none;
    bottom: -14px;
	}
}