@charset "UTF-8";
/* CSS Document */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
html{
	font-size: 62.5%;
}
body{
	color:#000435;
	font-family: "Noto Sans CJK JP", 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	-webkit-font-smoothing:antiliased;
	-moz-osx-font-smoothing:grayscale;
	font-feature-settings: "palt";/*自動でカーニング*/
	letter-spacing: 0.05em;
	line-height: 1.7;
	overflow-x: hidden;	/*横スクロール禁止*/
}
.ios_div{
	overflow-x: hidden;
}
img{
	max-width:100%;
	height: auto;
}
a{
	color: #000435;
	text-decoration: none;
}

/********************************
 共通クラス
*********************************/
/*.grecaptcha-badge { visibility: hidden; }*//*ReCaptcha非表示*/
.wrap{
  margin: 0 auto;
  padding-right: 5%;
  padding-left: 5%;
}
.a_hover:hover{
  text-decoration-line: underline;
  opacity: 0.7;
}
.btn_hover:hover{
  opacity: 0.5;
  transform: scale(0.95);
}
.text_hover:hover{
	opacity:0.6;
}
.flex_row {
  display: flex;
  align-items: center;
}
.flex_start{
  display: flex;
  align-items: flex-start;	
}
.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_between {
  display: flex;
  justify-content: space-between;
}
.box_shadow{
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);		
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.bg_red{
	background-color: #D7153C;
	color: #fff;
	font-weight: 700;
}
.bg_gray{
	background-color: #707070;
	color: #fff;
	font-weight: 700;	
}
.bg_blue{	background-color: #042A6F;
	color: #fff;
	font-weight: 700;
}
.bg_skyblue{
	background-color: #3F94D2;
	color: #fff;
	font-weight: 700;	
}
.text_red{
	color: #D7153C !important; 
}
.text_white{
	color: #fff !important;
}
.text_blue{
	color: #042A6F;
}
.text_skyblue{
	color: #3F94D2;
}
.text_EA2100{
	color: #EA2100;
}
.text_00D2D3{
	color: #00D2D3;
}
.text_FBBD10{
	color: #FBBD10;
}
.text_600{
	font-weight: 600; 
}
.text_700{
	font-weight: 700; 
}
.text_center{
	text-align: center;	
}
.text_right{
	text-align: right;
}
.text_underline{
	text-decoration: underline;
}
.font-Tsuku{
	font-family: "fot-tsukuardgothic-std", "FOT-TsukuARdGothic Std", sans-serif;
}
.block{
	display: block;
}
.margin_center{
	margin: auto;
}
.margin_top{
	margin-top: 60px;
}
.margin_T16{margin-top: 16px;}
.margin_T20{margin-top: 20px;}
.bottom_30{
	position: fixed;
	bottom: 30px;
}
.highlight {
  text-decoration: underline; 
  text-decoration-thickness: 11px; 
  text-decoration-color: #FEEF00;
  text-underline-offset: -5px;
  text-decoration-skip-ink: none;
}
.zindex_0{	position: relative;  z-index: 0;}
.zindex_5{	position: relative;  z-index: 5;}
.zindex_10{	position: relative;  z-index: 10;}


/*---------------------------
*ボタン
---------------------------*/
.btn_1{
	font-weight: 700;
	color: #fff;	
	border-radius: 5px;
	text-align: center;
	letter-spacing: 0.06em;
	font-size: 1.0rem;
	width: 120px;
	height: 26px;	
	line-height: 26px;		
}
.circle_arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 40px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.circle_arrow::before,
.circle_arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.circle_arrow::before{
	width: 20px;
	height: 20px;
	-webkit-border-radius: 50%;
	border-radius: 50%;	
/*	background-color: #D7153C;		*/
}
.circle_arrow::after{
	left: 4px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn_2{
	color: #fff;
	font-weight: 700;
	padding-top: 8px;
	text-align: center;
	font-size: 1.6rem;
	width: 300px;
	height: 42px;
	left:calc(50% - 300px/2);	
	border-radius: 100px;
}
.btn_3{
  display: flex;
	justify-content: center;
	font-weight: 700;
	background-color: #fff;
	border-radius: 22px;
	width: 150px;	
	padding: 8px 14px 8px 24px;	
}
.btn_3 p{
	padding-right: 14px;
	white-space: nowrap;
}
.btn_3 .circle_arrow{
	margin-right: -18px;
}
/*投稿（法人＆個人お知らせ、キャンペーン）の書式式式整備*/
.tax_single_post p{
	font-size: 1.4rem;
	font-weight: 500;
}
.tax_single_post h2{
	font-size: 2.4rem;
	font-weight: 700;
}
.tax_single_post h3{
	font-size: 2.2rem;
	font-weight: 700;
}
.tax_single_post h4{
	font-size: 1.8rem;
	font-weight: 700;
}
.tax_single_post strong{
	font-weight: 700;
}
.has-text-align-right{
	text-align: right;
}
.has-text-align-center{
	text-align: center;
}

/*---------------------------
*レスポンシブ
---------------------------*/
.pc{
	display: none;
}
.tablet{
	display: none;
}
@media screen and (min-width:768px) {
  body{
  	font-size: 1.6rem;
  }
  .sp{
    display: none;
  }
  .pc{
    display: block;
  }
	.tablet{
		display: none;
	}	
	.wrap{
		max-width: 1040px;
		margin: 0 auto;	
		padding: 0 20px;
	}
	.wrap_inner{
		margin: 0 0.5%;
	}
	.pc_flex{
		display: flex;/*PC表示のみflex*/
	}
	.pc_flex_between{
		display: flex;
		justify-content: space-between;
	}
	.pc_center{
		text-align: center;
		margin-left: 0;
	}
	.pc_left{
		text-align: left;
		margin: 0;
	}
	.btn_1{
		font-size: 1.3rem;
		width: 154px;
		height: 48px;
		line-height: 48px;
		border-radius: 10px;
	}
	.margin_top{
		margin-top: 70px;
	}	
	.highlight{
		text-decoration-thickness:20px;
		text-underline-offset: -7px;
	}
	/*投稿（法人＆個人お知らせ、キャンペーン）の書式式式整備*/
	.tax_single_post p{ font-size: 1.8rem; }
	.tax_single_post h2{ font-size: 3.2rem;	}
	.tax_single_post h3{ font-size: 2.8rem;	}
	.tax_single_post h4{ font-size: 2.2rem; }
	

}











