@charset "UTF-8";

	/* ゴシック体セット */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap');

body {
	color: #373737;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;

	/* 明朝体セット */
	font-family: 'Noto Serif Japanese', serif;

	/* ゴシック体セット */
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
}

/*使用カラー*/
#004070 /*ネイビー*/
#0069b7 /*ブルー*/
#61a9df /*ライトブルー*/
#004070 /*ネイビー*/
#373737 /*ブラック*/
#ffd658 /*イエロー*/


/* ==================================================
タグ
================================================== */
/* リンク
-------------------------------------------------- */
a,
a img {
	text-decoration: none;
	color: inherit;
	transition: all .3s;
}

a:hover,a:hover img {
	opacity: .6;
}

a[href^="tel:"] {
	color: inherit;
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* 端末別表示非表示設定
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.pc-only { /* PCでの閲覧時にのみ表示したいコンテンツにつける */
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.sp-only { /* スマホでの閲覧時にのみ表示したいコンテンツにつける */
		display: none !important;
	}
}

/* 改行
-------------------------------------------------- */
.app-br {
	display: block;
}

/* box-sizing
-------------------------------------------------- */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


/* ==================================================
テーブル
================================================== */
.styled-table01 {
	width: 100%;
	margin: 1em 0;
	line-height: 1.7;
}

.styled-table01:first-child {
	margin-top: 0;
}

.styled-table01 th,
.styled-table01 td {
	padding: 12px;
	vertical-align: middle;
	text-align: left;
	border: 1px solid #ddd;
	background: #fff;
}

.styled-table01 th {
	width: 35%;
	font-weight: normal;
	background: #004070;
	color: #fff;
}

.styled-table01 thead th {
	background: #e6e6e6;
}

.styled-table01 caption {
	text-align: center;
	font-size: 20px;
}

/* ==================================================
ヘッダー
================================================== */
.global-header {
}

.header-inner {
	max-width: 1080px;
	margin: 0 auto 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.h_right_cont {
	margin-top: 10px;
}


/* 固定設定　（ヘッダーを固定しない場合はこの項目ごと消せば固定しなくなる）
-------------------------------------------------- */
.header-fix-area-wrap {
	height: 149px; /* .header-fix-area の高さの実数地をデベロッパーツールで調べてここに入力する */
}

.header-fix-area {
	width: 100%;
	background: #fff; /* ヘッダーの固定部分の背景 */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.header-fix-area-wrap {
		height: auto;
	}

	.header-fix-area {
		position: static;
	}
}

/* h1
-------------------------------------------------- */
.header-description {
	width: 100%;
	padding: 8px 0;
	line-height: 1.2;
	font-size: 12px;
	font-weight: 300;
}

/* 問い合わせ
-------------------------------------------------- */
.header-contacts {
	line-height: 40px;
	display: flex;
	justify-content: flex-end;
}

.header-contacts li {
	margin: 0 0 10px 15px;
}

/* 電話番号 */
.header-contacts .tel a {
	text-decoration: none;
	font-size: 22px;
	font-family: 'Noto Serif Japanese', serif;
}

.tel span{
	color: #004070;
	font-size: 18px;
	font-weight: 500;
}

/* メール */
.header-contacts .mail a {
	padding: 0px 30px;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	background: #ffd658;
	display: flex;
	transition: .4s;
}

.header-contacts .mail a:hover {
	background: #61a9df;
}

/* WEB予約 */
.header-contacts .web a {
	padding: 0px 45px;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	background: #ffd658;
	display: flex;
	transition: .4s;
}

.header-contacts .web a:hover {
	background: #61a9df;
}

.header-information {
	font-size: 14px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-information .header-address {
	margin-left: 20px;
}


/* 営業時間
-------------------------------------------------- */
.header-time span{
	background: #004070;
	padding: 1px 5px;
	color: #fff;
	margin-right: 6px;
}

/* 住所
-------------------------------------------------- */
.header-address span{
	background: #004070;
	padding: 1px 5px;
	color: #fff;
	margin-right: 6px;
}


/* スマホメニュー時 お問い合わせ関係設定
-------------------------------------------------- */
.header-contacts-sp {
	border-bottom: 0;
	padding: 20px;
}

.h_right_cont_sp .header-contacts {
	display: block;
	padding: 0 20px;
}

.h_right_cont_sp .header-contacts .tel a {
	font-size: 24px;
	padding:20px 0;
}

/* メール */
.h_right_cont_sp .header-contacts .mail a {
	display: flex;
	align-items: center;
	margin: 0;
	height: 50px;
}

/* WEB予約 */
.h_right_cont_sp .header-contacts .web a {
	display: flex;
	align-items: center;
	margin: 10px 0 0 0;
	height: 50px;
}

.header-information-sp {
	margin-bottom: 15px;
	display: block;
	width: 100%;
	margin: 0 auto;
	padding:20px;
}

.header-information-sp .header-address {
	display: flex;
}

/* グローバルナビ
-------------------------------------------------- */
.header-nav {
	background: #0069b7;
}

.header-nav > div > ul {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.header-nav > div > ul > li {
	flex-grow: 1;
	position: relative;
}

.header-nav a {
	padding: 0 20px;
	line-height: 50px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	display: block;
	text-align: center;
	font-family: 'Noto Serif Japanese', serif;
}

.header-nav a::after {
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #ffd658;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.header-nav a:hover {
  color: #ffd658;
  font-weight: bold;
}

.header-nav a:hover::after {
  width: 100%;
}

/* ドロップダウンメニュー
------------------------- */
.header-nav li ul {
	width: 100%;
	background: #cfcfcf;
	opacity: 0;
	transition: all .3s;
	position: absolute;
	top: 80%;
	z-index: 100;
	pointer-events: none;
}

.header-nav li:hover ul {
	top: 100%;
	opacity: 1;
	pointer-events: auto;
}


/* スマホメニュー　カラー設定
------------------------- */

/* トグルの背景色 */
.um-crossBtn .um-crossBtn-basis {
	background: #ffd658;
}

/* 三本線の色  */
.um-crossBtn .um-crossBtn-border,
.um-crossBtn .um-crossBtn-border:before,
.um-crossBtn .um-crossBtn-border:after {
	background: #FFFFFF;
}

/* メニュー背景  */
.um-l-wrap .um-l-content {
	background: #FFFFFF;
}

/* 子要素メニュー　背景  */
.um-mianList .hasChild li {
	background: #f9f9f9;
}

/* 各メニュー　リンク色  */
.um-mianList a {
	color: #000000;
}

/* 各メニュー　ボーダー色  */
.um-mianList a:after {
	border-bottom: 1px solid #e5e5e5;
}

/* 各メニュー　ボーダー色（一番上）  */
.um-mianList .first {
	border-top: 1px solid #e5e5e5;
}

/* スマホ
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.header-inner {
		margin: 0;
		padding: 10px;
		display: block;
	}

	.header-description,
	.header-contacts,
	.header-information,
	.header-nav {
		display: none;
	}

	.header-contacts li {
    margin: 0;
	}

	/* ロゴ */
	.header-logo {
		text-align: center;
	}
}


/* メインビジュアル
-------------------------------------------------- */

.main_vismain_vis{
	position: relative;
	width: 100%;
	height: 700px;
	background: url(../img/main_vis.png) center / cover;
	overflow: hidden;
}

.catch{
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    position: absolute;
    z-index: 3;
}

/* メインビジュアル
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	
.main_vismain_vis{
	height: 350px;
}

.catch img{
	max-width: 95%;
}
}

/* ご挨拶
-------------------------------------------------- */
/* ==================================================
文章＋画像  背景グラデ透過パターン
================================================== */
.column-section03 {
	max-width: none;
	background: rgba(255,255,255,1);
	display: flex;
	overflow: hidden;
}

.column-section03 .thumb-column {
	width: 60%;
	position: relative;
}

.column-section03 .thumb-column img {
	width: 100%;
}

.column-section03 .text-column {
	width: 40%;
	padding: 25px 3%;
	line-height: 2;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.column-section03.right-thumb .thumb-column {
	margin-bottom: 50px;
	order: 1;
	overflow: hidden
}


/* グラデ設定
-------------------------------------------------- */
.column-section03 .thumb-column:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.column-section03.left-thumb .thumb-column:before {
	background: linear-gradient(to right, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%);
}

.column-section03.right-thumb .thumb-column:before {
	background: linear-gradient(to left, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%);
}

.zenkoku_box{
	position: relative;
	background: url(../img/memo_pt.png)repeat;
	padding: 40px;
	margin-top: 100px;
}

.zenkoku_box::before {
    position:absolute;
	content:"";
    background:url(../img/pin.png) no-repeat;
    width:29px;
    height:44px;
	top:-445px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.tx_im_box{
	display: flex;
	justify-content: space-between;
}

/* ご挨拶
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	
	.column-section03 {
		margin: 0 0 15px;
		display: block;
	}

	.column-section03 .thumb-column {
		width: auto;
	}

	.column-section03 .thumb-column:before {
		display: none;
	}

	.column-section03 .text-column {
		width: auto;
		padding: 16px;
	}
	
	.zenkoku_box {
	position: relative;
	background: url(../img/memo_pt.png)repeat;
	padding: 30px 20px;
	margin-top: 30px;
   }

    .zenkoku_box::before {
    position:absolute;
	content:"";
    background:url(../img/pin.png) no-repeat;
    width:29px;
    height:44px;
	top:-810px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
   }
	
	.tx_im_box{
	display: inline-block;
	justify-content: none;
   }
	
   .tx_im_box img{
	margin-top: 20px;
   }
	
   .column-section03.right-thumb .thumb-column {
	margin-bottom: 0;
}
}

/* 事業案内
-------------------------------------------------- */

/* ==================================================
文章＋画像
================================================== */
.column-section01 .column-section-inner {
	display: flex;
	overflow: hidden;
}

.column-section01.right-thumb .thumb-column {
	margin: 0 0 0 20px;
	order: 1;
}

.column-section01.left-thumb .thumb-column {
	margin: 50px 20px 0 0;
}

.text-column{
	width: 600px;
	margin: auto;
}

/* 業務内容
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.column-section01 .column-section-inner {
		display: block;
		margin: 20px 0;
	}

	.column-section01.right-thumb .thumb-column,
	.column-section01.left-thumb .thumb-column{
		margin: 0 0 10px;
		text-align: center;
	}
	
	.text-column{
	width: 100%;
	margin: auto;
}
}

/* 行政書士に相談するメリット
-------------------------------------------------- */

/* ==================================================
文章＋画像
================================================== */
.column-section01 .column-section-inner {
	display: flex;
}

.column-section01.merit-thumb .thumb-column {
	margin: 0 20px 0 0;
}

.text-column{
	width: 600px;
	margin: auto;
}

/*  行政書士に相談するメリット
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.column-section01 .column-section-inner {
		display: block;
		margin: 20px 0;
	}

	.column-section01.merit-thumb .thumb-column{
		margin: 0 0 10px;
		text-align: center;
	}
	
	.text-column{
	width: 100%;
	margin: auto;
}
}

/* ご相談の流れ
-------------------------------------------------- */
.flow {
	width: 100%;
	text-align: center
}

.flow img{
	margin: 30px 0;
}

.flow_chart{
	position:relative;
	background:url(../img/memo_white_pt.png) repeat;
	padding: 30px;
	border-radius: 20px;
	text-align: left;
} 

.flow_chart::before {
    position:absolute;
	content:"";
    background:url(../img/masking.png) no-repeat;
    width:124px;
    height:38px;
	top:-130px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
 }


/*  ご相談の流れ
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	
.flow img{
	margin: 30px 0 35px;
}
	
.flow_chart{
	padding: 15px;
} 
	
.flow_chart::before {
	max-width: 25%;
    position:absolute;
	content:"";
    background:url(../img/masking.png) no-repeat;
    width:124px;
    height:38px;
	top:-110px;
    bottom: 0;
    left: 60%;
    right: 0;
    margin: auto;
 }
}

/* 事務所概要
-------------------------------------------------- */
.table-column-wrap {
	display: flex;
	justify-content: space-between;
}

.table-column-wrap .table-column {
	width: 580px;
	margin-right: 20px;
}

.table-column-wrap .map-column {
	width: 580px;
}

/* スマホ
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.table-column-wrap {
		display: block;
	}

	.table-column-wrap .table-column {
		width: auto;
		margin: 0 0 10px;
	}

	.table-column-wrap .map-column {
		width: auto;
	}
}

/* お知らせ
-------------------------------------------------- */
.news_ttl{
	font-size: 28px;
	font-family: 'Noto Serif Japanese', serif;
	margin-bottom: 20px;
	font-weight: bold;
}

.n_txt{
	background: #fff;
	padding: 10px;
}

.n_txt span{
	background: #ffd658;
	padding: 0 5px;
	margin-right: 10px;
	color: #fff;
	font-weight: bold;
}

.n_magin{
	margin: 20px 0;
}

.btn {
  width: 100%;
  text-align: center;
}


.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: 400;
  padding: 8px 20px;
  text-decoration: none;
  color: #fff;
  background: #ffd658;
  transition: .4s;
  margin: auto;
  margin-top: 20px;
  width: 200px;
}

.btn-flat-simple:hover {
  background: #61a9df;
  color: white;
}

/*.btn {
	text-align: center;
	width: 200px;
	background: #ffd658;
	padding: 10px 20px;
	margin: 20px auto 0;
}

.btn a{
	color: #fff;
}

.btn:hover{
	background: #61a9df;
}*/

/* お知らせ
-------------------------------------------------- */
@media screen and (max-width: 768px) {
}


/* ==================================================
フッター
================================================== */
.global-footer {
	background: #0069b7;
}

.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 25px 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.footer-inner {
		padding: 20px;
		flex-direction: column;
		justify-content: center;
	}
}

/* ロゴ
-------------------------------------------------- */
.footer-logo {
	margin: 0 0 20px;
}

/* 会社概要
-------------------------------------------------- */
.footer-about {
}

.footer-about li {
	margin: 0 0 8px;
	line-height: 1.2;
}

/* 電話番号 */
.footer-about .tel {
	font-size: 22px;
	font-family: 'Noto Serif Japanese', serif;
	
}

.footer-about .tel a {
	color: #fff;
	font-weight: bold;
	letter-spacing: .1em;
	text-decoration: none;
}

.footer-about .tel span{
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

/* 所在地 */
.footer-about .address {
	color: #fff;
}

/* オフィシャルサイト */
.official li{
	text-align: center;
}
.official a {
	padding: 10px 35px;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	background: #ffd658;
	display: flex;
	transition: .4s;
}

.official a:hover {
	background: #61a9df;
}

@media screen and (max-width: 768px) {
.footer-about {
	text-align: center;
}
.footer-about li {
	margin: 0 0 10px;
}
}
/* コピーライト
-------------------------------------------------- */
.footer-copyright {
	padding: 8px;
	line-height: 1.3;
	text-align: center;
	font-size: 12px;
	display: block;
	color: #fff;
}

.footer-copyright a {
	color: #fff;
}

/* ==================================================
セクション
================================================== */
.section_padding{
	padding: 70px 0;
}

.section-inner {
	max-width: 1080px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
.section_padding{
	padding: 30px 8px;
}
}

/* 各背景
-------------------------------------------------- */

/*事業案内*/
.work_bg{
	background:url(../img/work_bg.png) center / cover fixed;
}

@media screen and (max-width: 768px) {
	.work_bg /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		/*background: none;*/
		background:url(../img/work_bg.png) center / cover fixed;
	}

	.work_bg:before /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		background: none;
		/*background:url(../img/work_bg.png) center no-repeat;/* 画像URLのみ変更する */
		background-size:cover;
	}
}

/*行政書士に相談するメリット*/
.merit_bg{
	background:url(../img/merit_bg.png) center / cover fixed;
}

@media screen and (max-width: 768px) {
	.merit_bg /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		/*background: none;*/
		background:url(../img/merit_bg.png) center / cover fixed;
	}

	.merit_bg:before /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		background: none;
		/*background:url(../img/merit_bg.png) center no-repeat;/* 画像URLのみ変更する */
		background-size:cover;
	}
}

/*ご利用の流れ*/
.flow_bg{
	background:url(../img/flow_bg.png) center / cover fixed;
}

@media screen and (max-width: 768px) {
	.flow_bg /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		/*background: none;*/
		background:url(../img/flow_bg.png) center / cover fixed;
	}

	.flow_bg:before /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		background: none;
		/*background:url(../img/merit_bg.png) center no-repeat;/* 画像URLのみ変更する */
		background-size:cover;
	}
}

/*事務所概要*/
.company_bg{
	background:url(../img/company_bg.png) center / cover fixed;
}

@media screen and (max-width: 768px) {
	.company_bg/* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		/*background: none;*/
		background:url(../img/company_bg.png) center / cover fixed;
	}

	.company_bg:before /* #hogeには、背景固定したいセクションのid名かclass名を記入 */ {
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		background: none;
		/*background:url(../img/company_bg.png) center no-repeat;/* 画像URLのみ変更する */
		background-size:cover;
	}
}

/*お知らせ*/
.news_bg{
	background:url(../img/memo_pt.png) repeat;
}

@media screen and (max-width: 768px) {
}

/*お問い合わせ*/
.contact_bg{
	background:url(../img/contact_bg.png) center / cover fixed;
}

@media screen and (max-width: 768px) {
	.contact_bg {
		background: none;
	}

	.contact_bg :before {
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-1;
		width:100%;
		background:url(../img/contact_bg.png) center / cover fixed;
		background-size:cover;
	}
}

/* 見出し
-------------------------------------------------- */
.styled-title01 {
	position: relative;
	margin: 0 0 50px;
	text-align: center;
	font-size: 43px;
	font-weight: 400;
	font-family: 'Noto Serif Japanese', serif;
}

.styled-title01:before {
	position: absolute;
	content:"";
    background:url(../img/h3_dot.png) no-repeat;
    width:40px;
    height:4px;
	top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/*.styled-title02 {
	margin: 0 0 15px;
	padding: 8px;
	line-height: 1.3;
	color: #fff;
	font-size: 27px;
	font-weight: bold;
	background: #ffb400;
	font-family: 'Noto Serif Japanese', serif;
}*/

.styled-title02 {
  position: relative;
  background: url(../img/h4_pt.png)repeat;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
  padding: 10px 5px 10px 50px;
  border-radius: 22px;
  font-family: 'Noto Serif Japanese', serif;
}

.styled-title02:before {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 14px;
  margin-top :-10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

.styled-title03 {
  color: #004070;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid #004070;
  padding-bottom: 5px;
  font-family: 'Noto Serif Japanese', serif;
}

.styled-title03 span{
  font-size: 27px;
  font-weight: bold;
  margin-right: 6px;
}

.number{
  padding-left:2.1em;
  text-indent:-2.1em;
}

.number span{
	color: #004070;
	margin-right: 5px;
    font-family: 'Noto Serif Japanese', serif;
	font-size: 20px;
	font-weight: bold;
	vertical-align: middle;
	background: #fff;
	padding: 0 8px;
	line-height: 0;
	border-radius: 50%;
}

/*メリットタイトル*/
.styled-title01_merit {
	position: relative;
	margin: 0 0 50px;
	text-align: center;
	font-size: 43px;
	font-weight: 400;
	font-family: 'Noto Serif Japanese', serif;
}

.styled-title01_merit:before {
	position: absolute;
	content:"";
    background:url(../img/h3_dot.png) no-repeat;
    width:40px;
    height:4px;
	top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.news_ttl{
	font-size: 28px;
	font-family: 'Noto Serif Japanese', serif;	
}

@media screen and (max-width: 768px) {
.styled-title01 {
	position: relative;
	margin: 0 0 30px;
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	font-family: 'Noto Serif Japanese', serif;
}

.styled-title01:before {
	position: absolute;
	content:"";
    background:url(../img/h3_dot.png) no-repeat;
    width:40px;
    height:4px;
	top: 65px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
	
.styled-title02 {
  position: relative;
  font-size: 20px;
  line-height: 0.8;
  margin-bottom: 15px;
  padding: 8px 12px;
  border-radius: 22px;
  text-align: center;
}

.styled-title02:before {
  content: none;
  position: none;
  background: none;
  top: none;
  left: none;
  margin-top :none;
  height: none;
  width: none;
  border-radius: none;
}
	
.styled-title03 {
  color: #004070;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  border-bottom: 1px solid #004070;
  font-family: 'Noto Serif Japanese', serif;
}
	
/*メリットタイトル*/
.styled-title01_merit {
	position: relative;
	margin: 0 0 30px;
	text-align: center;
	font-size: 27px;
	font-weight: 400;
	font-family: 'Noto Serif Japanese', serif;
}

.styled-title01_merit:before {
	position: absolute;
	content:"";
    background:url(../img/h3_dot.png) no-repeat;
    width:40px;
    height:4px;
	top: 65px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

}
