@charset "UTF-8";

/*なるべく汎用性の高い順に記載（サイト特有指定ほど下部に記載）*/
/*切替[基本：max568 min569／デザインによっては：768／それ以外は個別・特例的に設定]*/

/* ノーマル指定 */
table{
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}
.clear {
	clear: both;
}
.indent{
	text-indent: -1em;
	padding-left: 1em;
}
.tj{
	text-align: justify;/*文字両端ぞろえ*/
}
.marker {
	background: linear-gradient(transparent 60%, #f2ceda 60%);
}
.lesp{
	letter-spacing: -0.1em;
}
.btm{
	padding-bottom: 50px;
}
@media (max-width: 768px) {
	.lesp{
		letter-spacing: 0em;
	}
}
/* メインビジュアル */
.hero-container {
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
	width: 100%;
	background-color: #fff;
}

picture.main-v{
	margin:0 auto;
	display: block;
	position: relative;
	box-sizing: border-box;
}
picture.main-v img{
	width: 100vw;
	object-fit: cover;
}
/* ヘッダー */
.header-details{
	font-size: 13px;
	line-height: 1.5;
	color: var(--base-color);
}
/* フッターコピーライト */
.footer-copy p{
	font-size: 14px;
}
/* フッターメニュー */
ul.footer-menu li a{
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	font-weight:400;
}
ul.footer-menu li::after{
	content: "　/　";
}
ul.footer-menu li:last-child::after{
	content: none;
}
@media (max-width: 763px) {
	ul.footer-menu li::after{
		content: none;
	}
}
/* フッター */
.footer-details{
	font-size: 13px;
}


/* 各セクション（汎用） */
.sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
}
.sec2 {
	padding: var(--v-space) 0;
	background-color: #f6f5f0;
}
.sec3 {
	padding: var(--v-space) 0;
	background-color: #f6f5f0;

	background-image: url(../img/bg_01.png);
	background-repeat:repeat;

}
.sec4 {
	padding: var(--v-space) 0;
	background-color: #aedadd;
	background-image: url(../img/bg_03.jpg);
	background-size: cover;
	background-position: center bottom;
}
.sec5{
	padding: var(--v-space) 0;
	background-color: #fbfbfb;
}
.sec6 {
	padding: 10px 0 100px 0;
	background-color: #FFF;
}
.greeting {
	/*padding: var(--v-space) 0;*/ /*今回のみ*/
	padding: clamp(50px, 7vw, 120px) 0;
	background-color: var(--base-color);
}
.footersec{
	padding: 30px 0 80px 0;
    background-color: #f6f5f0;
}
.area {
    padding: clamp(15px, 7vw, 20px) 0;
    background-color: #FFF;
}
.access{
	/*padding: var(--v-space) 0 50px;*/
	padding: var(--v-space) 0;
    background-color: #f6f5f0;
}


/*PCのみ表示*/
@media screen and (max-width: 1024px) {
	.pc{
		display:none;
	}
	.sptx-c {
		text-align: center;
	}
}
/*スマホのみ表示*/
@media screen and (min-width: 569px) {
	.sp {
		display: none;
	}
}
/*タブレットのみ表示*/
@media not all and (min-width: 569px) and (max-width: 1024px) {
	.tab{
		display:none;
	}
}
/*リンクの位置調整(Btype)*/
a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
@media screen and (max-width: 568px) {
	a.anchor {
		display: block;
		padding-top: 80px;
		margin-top: -80px;
	}
}


/* 背景括り */
div.contentsbg {
	background: rgba(255, 255, 255, 0.8);
	padding: 40px;
	/*border-radius: 10px;*/	/*背景の角を丸くする*/
}
@media screen and (max-width: 568px) {
	div.contentsbg {
		padding: 30px 15px 15px 15px;
	}
}
/* 背景括り */
div.contentsbg2 {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px;
	/*border-radius: 10px;*/	/*背景の角を丸くする*/
}
@media screen and (max-width: 568px) {
	div.contentsbg2 {
		padding: 10px 15px 15px 15px;
	}
}

/* Gmap */
.fullOuterMap{
	width: 100%;
	position: relative;
	padding:0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height:auto;
	margin-top: -70px;	/*セクションのbottomに被せる*/
}
.fullInner{
	width:100%;
}
.gmp {
	position: relative;
	padding-bottom: 45%;
	height: 0;
	overflow: hidden;
}
.gmp iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width: 568px) {
	.gmp {
	position: relative;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
	}
}

/* 文字・余白・色など */
.tx-l {
	text-align: left;
}
.tx-r {
	text-align: right;
}
.tx-r2 {
	text-align: right;
}
.tx-c {
	text-align: center;
}
.tx-c2 {
	text-align: center;
}
.mt10{
	margin-top: 10px;
}
.mb00{
	margin-bottom: 0;
}
.mb10{
	margin-bottom: 10px;
}
.mlr10{
	margin-left: 10px;
	margin-right: 10px;
}
.f-12 {
	font-size: 12px;
}
.f-15 {
	font-size: 15px;
}
.f-16 {
	font-size: 16px;
}
.f-16s {
	font-size: 16px;
}
.f-17 {
	font-size: 17px;
}
.f-20 {
	font-size: 20px;
}
.f-20s {
	font-size: 20px;
}
.f-20m {
	font-size: 20px;
}
.f-30s {
	font-size: 30px;
}
.f-30_title{
	font-size:clamp(2.5rem, 1.029rem + 7.35vw, 5.625rem);
}
.f-la {
	font-size: large;
}
.f-xla {
	font-size: x-large;
}
.f-famm {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.f-fama {
	font-family: 'ヒラギノ丸ゴ Pro W4', 'ヒラギノ丸ゴ Pro', 'Hiragino Maru Gothic Pro', 'HG丸ｺﾞｼｯｸM-PRO', 'HGMaruGothicMPRO', sans-serif;
}
.lihei14{
	line-height: 1.4;
}
.lihei19{
	line-height: 1.9;
}
.emp {
	font-weight: bold;	/*デザイン的強調 emphasis*/
}
.empcolor {
	color: var(--main-color);	/*サイト主要色*/
}
.accentColor {
	color: var(--accent-color1);	/*サイトアクセント色1*/
}
.accentColor2 {
	color: var(--accent-color2);	/*サイトアクセント色2*/
}
.colorPink{
	color: #dd517f;
}
.colorOrange{
	color: #e1a300;
}
.colorRed{
	color: #d30000;
}
.colorPurple{
	color: #5a0797;
}
.colorBlue{
	color: #021494;
}
.colorWhite{
	color: #fff;
}
@media screen and (max-width: 568px) {

	.f-16s {
		font-size: 12px;
	}

	.f-20s {
		font-size: 18px;
	}
	.f-20m {
		font-size: 16px;
	}
	.f-30s {
		font-size: 22px;
	}
	.tx-c2 {
		text-align: left;
	}
	.tx-r2 {
		text-align: center;
	}
	.f-la {
		font-size: 17px;
	}
}
/* 内容括り */
img.c-arra{
	margin: 0 auto;
	display: block;
}
.c-arra2{
	text-align: center;
	margin: 0 auto;
}
.r-arra{
	text-align: right;
	margin: 0;
}
@media screen and (max-width: 568px){
	.r-arra{
		text-align: center;
	}
	.c-arra2{
		margin: 0 auto;/*スマホの時だけ中央*/
	}
}

/*文字縁取り*/
.fuchidori {
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}

/*リンクオンマウス時アンダーライン*/
a.onmouse:hover{
	text-decoration: underline;
	color:var(--accent-color1);
}

/*リンク アンダーライン*/
a.unli{
	text-decoration: underline;
	color:#00A9DD;
}
a.unli:hover{
	color:#72d5f3;
}

/*pcとsmで画像のサイズ変えたいときの指定*/
img.pcspwid{
	width: 10%;
	margin:5px auto;
}
img.pcspwid2{
	width: 20%;
	margin:5px auto;
}
img.pcspwid3{
	width: 40%;
	margin:5px auto;
}
@media (max-width: 568px) {
	img.pcspwid{
		width: 25%;
	}
	img.pcspwid2{
		width: 50%;
	}
	img.pcspwid3{
		width: 100%;
	}
}
/*罫線*/
hr{
	height: 1px;
	border: none;
	margin: 15px auto;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed var(--accent-color1);
	margin: 20px auto;
}
hr.no{
	margin-top: 15px;
	margin-bottom: 15px;
	border: 1px solid rgba(255,255,255,0);	/*透明*/
}
hr.on{
	margin-top: 15px;
	margin-bottom: 30px;
	border-top: 1px solid #aaa;
}
hr.no-m{
	margin-top: 25px;
	margin-bottom: 25px;
	border: 1px solid rgba(255,255,255,0);	/*透明*/
}
hr.line{
	margin-top: 15px;
	margin-bottom: 15px;
	width: 80%;
	border-top: 1px solid var(--main-color);
}
hr.info{
	height: 1px;
	border: none;
	margin: 0px auto;
}

/*コンテンツ（画像）並べ*/

.line-container4 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.line-container4 div.bunkatsu3 {
	width: calc(33.3% - 10px);
	margin-bottom: 5px;
	background-color: var(--back-color);
}
@media (max-width: 768px) {
	.line-container4 div.bunkatsu3 {
		width: calc(50% - 10px);
		margin-bottom: 10px;
	}
}
@media (max-width: 568px) {
	.line-container4 div.bunkatsu3 {
		width: calc(100% - 2px);
		margin-bottom: 10px;
	}
}

/*ご利用シーン*/
.f-item1{
	background: var(--main-color);
	color: var(--base-color);
	height: 70px;
	width: 90%;
	margin: 0 auto;
	position: relative;
	top: -20px;
	z-index: 9;
	display: block;
	box-shadow: 0px 3px 3px 0px rgba(83, 83, 83, 0.5);
}
.f-item1 div.item1cont{
	width: 100%;
	display: table;
}
.f-item1 div.item1cont p{
	font-size: clamp(16px,2vw,18px);
	font-weight: 600;
	height: 70px;
	display: table-cell;
	vertical-align: middle;
}
div.item2cont{
	padding: 5px 20px 30px 20px;
}
div.item2cont p{
	font-size: clamp(15.5px,2vw,16px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -1px;
}


/* 概要のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 10px;
	width: 5.25em;
	background-color: var(--main-color);
	color: var(--base-color);
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 10px;
	width: 400px;
	background-color: #f6f5f0;
	font-size: 16px;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 10px;
		width: 95%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 10px;
		width: 95%;
	}
}
/* アクセスのテーブル */
.info_a1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.info_a2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.info_a1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info_a2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
/* FAQ */
div.faq2 p.b {
	font-weight: bold;
	color: var(--main-color);
	/*font-size: large;*/
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}
div.faq2 p.faq-details {
	font-weight: normal;
	padding: 10px;
	font-size: smaller;
	line-height: 1.4;
	text-align: left;
	text-indent: 0em;
	display: block;
	background-color: #fff5d8;
}


/* コンテンツ幅 */
div.haba{
	margin: 0 11%;
	padding: 2% 0 0 0;
}
@media (max-width: 768px)  {
	div.haba{
		margin: 0;
		padding: 2% 0 0 0;
	}
}
div.haba2{
	margin: 0 16%;
	padding: 0;
}
@media (max-width: 768px)  {
	div.haba2{
		margin: 0;
		padding: 0 1%;
	}
}
div.haba3{
	margin: 0 25%;
	padding: 0;
}
@media (max-width: 1046px)  {
	div.haba3{
		margin: 0;
		padding: 0 20%;
	}
}
@media (max-width: 720px)  {
	div.haba3{
		margin: 0;
		padding: 0 11%;
	}
}
@media (max-width: 550px)  {
	div.haba3{
		margin: 0;
		padding: 0 3%;
	}
}

/* リスト項目　横並び */
ul.sidelist2 li {
	box-sizing: border-box;		/*サイズの計算法を変更*/
	list-style-type: none;
	float: left;
	--widthA: calc(100% - 10px);	/* marginの分 */
	--widthB: calc(var(--widthA) / 2);
	width: var(--widthB);
	margin: 2.5px 5px 2.5px 0;
	text-align: left;
	text-decoration: none;
	font-size: 15px;
	padding: 5px;
	color: #fff;
	background-color: #aca394;
}
@media (max-width: 568px) {
	ul.sidelist2 li {
		font-size: 13px;
		padding: 5px 4px;

	}
	li.sp-f1 {
		font-size: 10px !important;
		padding: 6px 1px 6px 4px !important;
	}
}
ul.sidelist3 {
	box-sizing: border-box;
	width:100%;
	margin: 0 auto;
}
ul.sidelist3 li {
	box-sizing: border-box;		/*サイズの計算法を変更*/
	list-style-type: none;
	float: left;
	--widthA: calc(100% - 30px);	/* marginの分 */
	--widthB: calc(var(--widthA) / 2);
	width: var(--widthB);
	margin: 5px;
	text-align: left;
	text-decoration: none;
	font-size: 15px;
	padding: 5px;
	background-color: rgba(255, 202, 48, 0.7);
}

ul.sidelist3 li:last-child {
	--widthC: calc(var(--widthB) * 2);
	--widthD: calc(var(--widthC) + 10px);
	width: var(--widthD);
}
@media (max-width: 568px) {
	ul.sidelist3 li {
		width: 97%;
	}
	ul.sidelist3 li:last-child {
		width:97%;
	}
}
ul.sidelist4 {
	box-sizing: border-box;
	width:100%;
	margin: 0 auto;
}
ul.sidelist4 li {
	box-sizing: border-box;		/*サイズの計算法を変更*/
	list-style-type: none;
	float: left;
	--widthA: calc(100% - 30px);	/* marginの分 */
	--widthB: calc(var(--widthA) / 5);
	width: var(--widthB);
	margin: 2.5px;
	text-align: left;
	text-decoration: none;
	font-size: 15px;
	padding: 5px;
	color:#FFF;
	background-color: #aca394;
}
@media (max-width: 925px) {
	ul.sidelist4 li {
		width: 32%;
	}
}
@media (max-width: 600px) {
	ul.sidelist4 li {
		width: 48%;
	}
	/*
	ul.sidelist4 li:last-child {
		--widthC: calc(var(--widthB) * 3);
		--widthD: calc(var(--widthC) + 20px);
		width: var(--widthD);
	}*/
}
@media (max-width: 374px) {
	ul.sidelist4 li {
		width: 100%;
	}
}

/*パンくずリスト(Atypeのみ使用)*/
#pankuzu {
    font-size: 12px;
    color: #666666;
    margin: 20px auto;
}
/*会社概要*/
.bg_b{
	background: #FFF;
	padding:20px;
}

/*---------------- スポット ----------------*/

/*横並びにする*/
.flex01{
	display: flex;
	justify-content: start;/*アイテムを先頭に寄せる*/
	align-items: center;
}
.flex02{
	display: flex;
	justify-content: space-between;/*両端揃えで均等に配置*/
	flex-wrap: wrap;
}
.flex03{
	display: flex;
	justify-content: space-between;/*両端揃えで均等に配置*/
	flex-wrap: wrap;
}
/*横並びにする*/
.flex-child01{
	width: 35%;
}
.flex-child02{
	width: 63%;
}
.flex-child03{
	width: 48%;
}
.flex-child03a{
	width: 48%;
}
.flex-child03b{
	width: 48%;
}
.flex-child04{
	width: 24%;
}
.flex-child05{
	width: 72%;
}
.flex-child06{
	width: 28%;
}
.flex-child07{
	width: 70%;
}
.flex-child08{
	width: 68.85%;
}
.flex-child09{
	width: 30.6%;
}
.flex-child10{
	width: 30%;
}
.flex-child11{
	width: 68%;
}
@media screen and (max-width: 920px) {
	
	.flex-child04{
		width: 49%;
		margin: 5px auto;
	}
}
@media screen and (max-width: 768px) {

	.flex-child03b{
		width: 100%;
		margin: 5px auto;
	}
	
	.flex-child01, .flex-child02 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child05,.flex-child06 {
		width: 100%;
		margin: 5px auto;
	}
	.flex-child07 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child10, .flex-child11 {
		width: 100%;
		margin: 5px auto;
	}

}
@media screen and (max-width: 568px) {
	.flex-child03{
		width: 100%;
		margin: 0px auto;
	}
	.flex-child03a{
		width: 100%;
		margin: 10px auto;
	}
	/*.flex-child04 {
		width: 100%;
		margin: 5px auto;
	}*/
	.flex-child05 {
		width: 99%;
		margin: 5px auto;
	}
}

/*H3 タイトル*/
.heading01 {
	position: relative;
	text-align:center;
	/*margin-top: 1em;*/
	margin-bottom: 1em;
	font-size: 28px;
  }
  .heading01:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--main-color);
	border-radius: 2px;
  }

  .heading02 {
	position: relative;
  	display: inline-block;
	font-weight:600;
  	padding: 0 55px;
	font-size: 20px;
	color: var(--accent-color1);
	margin-top: 20px;
	margin-bottom: 20px;
}
.heading02:before, .heading02:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 3px;
	background-color: var(--accent-color1);
  }
  
  .heading02:before {
	left:0;
  }
  .heading02:after {
	right: 0;
  }

  .heading03 {
	font-family: 'Kiwi Maru';
	text-align: center;
	color: var(--accent-color2);
	font-weight: 400;
	font-size: clamp(24px, 2.5vw, 30px);
	margin-bottom: 10px;
	position: relative;
	padding: 1.5rem 1.5rem 0rem 1.5rem;
}
.heading03::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 75px);
	background-image: url(../img/heading03.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 150px;
	height: 80px;
	top: -50px;
}

  /*＼　／でタイトルを囲む*/
  .heading04 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	text-align: center;
	border: 0;
	color: var(--main-color);
	/*margin: 2vw;*/
}

.heading04::before,
.heading04::after {
	content: '';
	width: 4px;
	height: 40px;
	background-color: var(--accent-color1);
}

.heading04::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading04::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
@media screen and (max-width: 568px) {
	.heading04 {
		font-size: 19px;
	}
	.heading04::before {
		margin-right: 17px;
	}
	.heading04::after {
		margin-left: 17px;
	}
}

/*背景に色をつける*/
.heading05 {
	background-color: var(--accent-color2);
	text-align: center;
	padding: 0.2em 0 0.2em;
}

/*タイトル（左にナンバリング）*/
.heading14 {
	position: relative;
	padding-left: 80px;
	font-size: clamp(22px, 4vw, 25px);
	color:var(--main-color);
}

.heading14::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(230,26,29,0.3);
	font-size: 50px;
}

.heading14::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: rgba(230,26,29,1);
}

.heading12 {
	font-weight: bold;
	padding: 0.5em 1em;
	  --x-gradient: linear-gradient(90deg, var(--main-color) 0 100%);
	  --y-gradient: linear-gradient(var(--main-color) 0 15px, transparent 0 calc(100% - 15px), var(--main-color) calc(100% - 15px));
	background-image:var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
	background-repeat: no-repeat;
	background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
	background-position: top, right, bottom, left;
	position: relative;
  }

/**/
.heading41 {
    text-align: left;
    font-size: 25px;
    margin: 0px 0 20px 0;
    border-bottom: 0;
    line-height: 1.3;
    font-weight: normal;
    padding: 7px 7px 7px 2px;
    color: var(--accent-color2);
    border-bottom: 2px dotted var(--accent-color1);
}
.heading42{
	border-bottom: 1px solid #454545;
	color: #454545;
	margin-bottom: 20px;
}
.heading42:first-letter {
	font-size: 150%;
	color: #eb6100;
  }

/*タイトル二色棒*/
.heading51 {
	border-bottom: solid 3px #e2d6ad;
	position: relative;
	padding-bottom: 0.2em;
	margin-bottom: 20px;
	font-size: 18px;
	font-family:'ヒラギノ丸ゴ Pro W4','ヒラギノ丸ゴ Pro','Hiragino Maru Gothic Pro','HG丸ｺﾞｼｯｸM-PRO','HGMaruGothicMPRO',sans-serif;
	color:var(--main-color);
  }
  
  .heading51::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px var(--main-color);
	padding-bottom: 0.2em;
	width: 20%;
  }

/*中央ボタン*/
  .pikup {
	display: flex;
	justify-content:center;
    padding-top:40px;
	text-align: center;
  }
.pikup-container{
	padding: 15px;
	width: 50%;
	text-align: center;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 50px;
}
@media (max-width: 568px) {
	.pikup-container{
		width: 80%;
	}
}

/*ボックスデザイン*/
.box01 {
	display: flex;
	justify-content:center;
  }
.box01-container {
    padding: 0.5em 2em;
    margin: 2em 0;
    border: double 5px var(--main-color);
	width: 450px;
	background-color: #f5f3ed;
	color:#454545;
	text-align: left;
}
.box01-container p {
    margin: 0; 
    padding: 0;
}
@media (max-width: 568px) {
	.box01-container {
		padding: 0.2em 1.5em;
    	margin: 2em 0;
		width: 100%;
	}
}

/*ボックスデザイン2*/
.box02 {
	display: flex;
	justify-content:center;
  }
.box02-container {
    padding: 0.5em 1em;
    /*margin: 2em 0;*/
    border: double 5px var(--main-color);
	width: 650px;
	background-color: #fffcf3;
	color:#454545;
	text-align: left;
}
.box02-container p {
    margin: 0; 
    padding: 0;
}
@media (max-width: 568px) {
	.box02-container {
		padding: 0.2em 0.4em;
    	/*margin: 2em 0;*/
		width: 100%;
	}
}

/*フレームデザイン*/

.frame01{
	padding: 40px;
	background-image: url(../img/bg_frame01.jpg);
	background-size: cover;
}
@media screen and (max-width: 568px) {
	.frame01 {
		padding: 15px 15px 15px 15px;
	}
}

/*リスト*/

ul.list01{
	counter-reset:list;
	list-style-type:none;
	font: 14px/1.6 'arial narrow', sans-serif;
	padding:0;
  }
  ul.list01 li{
	position:relative;
	padding: 0 0 0 20px;
	margin: 7px 0 7px 0px;
	font-weight: bold;
	font-size:16px;
	line-height: 30px;
	border-bottom: dashed 1px var(--main-color);
  }
 ul.list01 li:before{
	counter-increment: list;
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: var(--main-color);;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
  }
  ul.list01 li:after{
	content: "";
	display: block;
	position: absolute;
	left: 6px;
	height: 0;
	width: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid #fff;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
  }

  /*リスト(数字つき)*/
  ol.list02 {
	position: relative;
	margin: 0;
	padding: 0 10px 0 6px;
	list-style: none;
	font-weight: bold;
  }
  ol.list02 li {
	position: relative;
	margin: 12px 20px 0 22px;
	padding: 0;
	line-height: 1.5;
	border-bottom: dashed 1px var(--accent-color1);
  }
  
  /* ol デザイン */
  ol.list02 {
	counter-reset: li;
  }
  ol.list02 > li:before {
	position: absolute;
	color: var(--accent-color1);
	font-weight: bold;
	counter-increment: li;
	content: counter(li) ".";
	left: -26px;
	top: 0;
  }

/*リスト大(数字つき)*/
ol.list03 {
	position: relative;
	margin: 0;
	padding: 0 10px 0 6px;
	list-style: none;
	font-weight: bold;
	}
	ol.list03 li {
		position: relative;
		margin: 0px 20px 0 22px;
		padding: 12px;
		line-height: 1.5;
		font-size: 20px;
	}
	
	/* ol デザイン */
	ol.list03 {
	counter-reset: li;
	}
	ol.list03 > li:before {
	position: absolute;
	color: var(--main-color);
	font-weight: bold;
	counter-increment: li;
	content: counter(li) ".";
	left: -26px;
	/*top: 0;*/
	}
	/* スマホ設定 */
	@media screen and (max-width: 768px) {
		ol.list03 {
			padding: 0 10px 0 6px;
			font-size: 14px;
		}
		ol.list03 li {
			margin: 0px 20px 0 12px;
			padding: 6px;
			font-size: 15px;
		}
		ol.list03 > li:before {
			left: -26px;
		}
	}

/*リスト　チェック*/

  
  ul.list04{
	margin-top: 10px;
    font-size: 15px;
	line-height: 1.8;
	list-style-type: none;
	column-count: 3;		/*リスト横並び数を指定*/
  }
  
  @media screen and (max-width: 568px) {
	ul.list04{
		column-count: 2;		/*リスト横並び数を指定*/	
	  }
  }
  @media screen and (max-width: 330px) {
	ul.list04{
		column-count: 1;		/*リスト横並び数を指定*/	
	  }
  }
 

  
  .list04 li {
	position: relative;
	padding-left: 25px;
  }
  
  .list04 li:before {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 0em;
	left: 6px;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	border-right: 3px solid var(--accent-color1);
	border-bottom: 3px solid var(--accent-color1);
  }
  
  .list04 li:after {
	content: "";
	position: absolute;
	top: .2em;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #9c9c9c;
	border-radius: 2px;
  }

  /*リスト（背景色のみ）*/
  ul.list05{
	padding: 0;
  	position: relative;
	column-count: 5;		/*リスト横並び数を指定*/
  }
  .list05 li{	
	color: #FFF;
	
	border-top: solid 5px #FFF;/*上に白色線*/
	border-left: solid 6px var(--accent-color1);/*左側の線*/
	border-bottom: solid 5px var(--accent-color2);/*下に黄色線*/
	background: var(--main-color);
	/*margin-bottom: 5px;*//*下のバーとの余白*/
	line-height: 1.5;
	padding: 0.5em;
	list-style-type: none!important;/*ポチ消す*/
	font-weight: bold;
  }

  @media screen and (max-width: 1050px) {
	ul.list05{
		column-count: 3;		/*リスト横並び数を指定*/	
	  }
  }
  @media screen and (max-width: 568px) {
	ul.list05{
		column-count: 2;		/*リスト横並び数を指定*/	
	  }
  }
  @media screen and (max-width: 330px) {
	ul.list05{
		column-count: 1;		/*リスト横並び数を指定*/	
	  }
  }



  /*問い合わせボタン*/
  .cta04 {
	display: flex;
	justify-content:center;
    padding-top:2vw;
	text-align: center;
	width: 100%;
  }
 /* @media (max-width: 568px) {
	.cta04 {
		width: 90%;
	}
  }*/
  .cta_btn04 {
	font-weight: bold; /* 文字の太さ */
	width: 100%;
	max-width: 800px; /* ボタン幅 */
	display: inline-block;
	padding: 0.5em;
	transition: 0.3s;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #fff; /* ボタン文字色 */
	border-radius: 10px;
	background: var(--main-color); /* 背景色 */
	/*box-shadow: 0 3px 0 var(--accent-color2);*/
	text-align: center;
  }
  
  .cta_btn04 p {
	margin: 0 auto;
  }
  .cta_btn04 span{
	display: inline-block;
	vertical-align: middle;
  }
  
  .cta_btn04 .cta_btn04_copy {
	font-size: 14px; /* コピー文字サイズ */
	display: block;
	/*padding: 0.3em 0;*/
	color: var(--accent-color2); /* コピー文字色 */
	border-radius: 100vh;
	background: #fff; /* コピー背景色 */
	margin-bottom: 10px;
  }
  
  /* マウスオーバーした際のデザイン */
  .cta_btn04:hover {
	/*transform: translate(0, 3px);*/
	color: #fff;
	background: var(--main-color);
	/*box-shadow: 0 1px 0 var(--accent-color2);*/
  }


/*right→bottom*/
.balloon1-right {
	position: relative;
	/*display: inline-block;*/
	/*margin: 1.5em 15px 1.5em 0;*/
	padding: 15px;
	min-width: 120px;
	max-width: 100%;
	color: #454545;
	background: #fbff8f;
	border-radius: 10px;
}

.balloon1-right:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #fbff8f;
}

.balloon1-right p {
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 568px) {
	.balloon1-right {
		position: relative;
		/*display: inline-block;*/
		margin: 1.5em 0;
		padding: 15px;
		min-width: 120px;
		max-width: 100%;
		color: #454545;
		background: #fbff8f;
	}
	.balloon1-right:before {
		content: "";
		position: absolute;
		top: 105%;
		left: 50%;
		margin-left: -15px;
		border: 15px solid transparent;
		border-top: 15px solid #fbff8f;
	}
}

/*フロー*/
.flow_design02 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flow_design02 ul {
	padding: 0;
}
.flow_design02 li {
	list-style-type: none;
}
.flow_design02 dd.flow-cc {
	margin-left: 0;
	width: 100%;
}
.flow02 > li {
	padding: 40px 10px;
}
.flow02 > li:not(:last-child) {
	border-bottom: 3px solid var(--main-color);
	position: relative;
}
.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 15%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flow02 > li:not(:last-child)::before {
	border-width: 22px;
	border-top-color: var(--main-color);
}
.flow02 > li:not(:last-child)::after {
	border-width: 18px;
	border-top-color: #FFF;/*三角部分の色*/
}
.flow02 > li dl.flow-aa {
	margin: 0;
}
.flow02 > li dl.flow-aa dt.flow-bb {
	font-size: 1.3em;
	font-weight: 600;
	border-bottom: 2px dotted #878787;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	display: flex;
	width: 100%;
}
.flow02 > li dl.flow-aa dt.flow-bb .icon02 {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 100px;/*50pxなら2行折り返しまで、100pxなら3行折り返しまで対応可*/
	font-size: 0.6em;
	color: #fff;
	background: var(--main-color);
	padding: 5px 10px;
	/*display: inline-block;*/
	margin-right: 0.5em;
}
@media screen and (max-width: 568px) {
	.flow02 > li dl.flow-aa dt.flow-bb {
		background: #fff;
	}
}


/*対応エリア(footer)*/
h4.areaTitle {
    font-size: clamp(18px,1.4vw,18px);
    font-weight:600;
    line-height: 1.4;
    border-bottom: 2px dotted var(--main-color);
    padding: 2px;
    margin: 10px 0;
    color: var(--main-color);
}
.afooter {
    color: #aaa;
}

