@charset "UTF-8";


/*========================================================*/
/*      					共通CSS  			  		  */
/*=======================================================*/


/* ノーマル指定 */
table{
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}
.clear {
	clear: both;
}
/* 2行目以降の文字を一文字ずらす */
.indent{
	text-indent: -1em;
	padding-left: 1em;
}
/* 先頭の文字を一文字ずらす */
.indent02{
	text-indent: 1em;
}
/* 半角分文字をずらす */
.indent03{
	text-indent: 0.6em;
}
/* 全体の文章を１文字分右にずらす */
.indent04{
	padding-left: 1em;
}
.tj{
	text-align: justify;/*文字両端ぞろえ*/
}
.marker {
	background: linear-gradient(transparent 60%, #a9ebea 60%);
}
.lesp{
	letter-spacing: -0.1em;
}
.btm{
	padding-bottom: 2vw;
}
@media only screen and (max-width: 768px) {
	.lesp{
		letter-spacing: 0em;
	}
}

/*PCのみ表示*/
@media only screen and (max-width: 1024px) {
	.pc{
		display:none;
	}
	.sptx-c {
		text-align: center;
	}
}
/*スマホのみ表示*/
@media print, screen and (min-width: 569px) {
	.sp {
		display: none;
	}
}
/*タブレットのみ表示*/
@media not all and (min-width: 569px) and (max-width: 1024px) {
	.tab{
		display:none;
	}
}
/*スマホ～タブレットのみ表示（スマホ～タブレット（1024px以下）で表示し、それ以外では非表示）*/
@media screen and (max-width: 1024px) {
	.sptab {
		display: block; 
	}
}
@media screen and (min-width: 1025px) {
	.sptab {
		display: none;
	}
}

/*リンクの位置調整(Btype)*/
a.anchor {
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}
@media screen and (max-width: 568px) {
	a.anchor {
		display: block;
		padding-top: 90px;
		margin-top: -90px;
	}
}

/*リンクの位置調整 GREETINGS (Btype)*/
a.anchor2 {
    display: block;
    padding-top: 0px;
    margin-top: 0px;
}
@media screen and (max-width: 568px) {
	a.anchor2 {
		display: block;
		padding-top: 40px;
		margin-top: -40px;
	}
}

/* ページトップボタン */
#page_top{
	display: block;
	width: 60px;
	height: 60px;
	position: fixed;
	right: 20px;
	bottom: 15px;
	opacity: 0.6;
	z-index:99;
}
#page_top a{
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f139';
	font-size: 50px;
    color: var(--accent-color3);
}

/* 背景括り */
.contentsbg {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px 40px;
}
@media screen and (max-width: 568px) {
	.contentsbg {
		padding: 30px 15px 15px 15px;
	}
}
/* 背景括り */
div.contentsbg2 {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px 40px;
	/*border-radius: 10px;*/	/*背景の角を丸くする*/
}
@media screen and (max-width: 568px) {
	div.contentsbg2 {
		padding: 10px 15px 15px 15px;
	}
}
/* 背景括り */
.contentsbg3 {
	background: rgba(255, 255, 255, 0.7);
    padding: 40px 40px 0 40px;
}
@media screen and (max-width: 568px) {
	.contentsbg3 {
		padding: 30px 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に被せる*/
	z-index: 2;
}
.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;
	}
}

/*======================================================*/
/* 文字・色・罫線・フォント・幅・リンク色CSS			  */
/*======================================================*/


/* 文字・余白・色など */
.tx-l {
	text-align: left;
}
.tx-l2 {
	text-align: left;
}
.tx-r {
	text-align: right;
}
.tx-r2 {
	text-align: right;
}
.tx-c {
	text-align: center;
}
.tx-c2 {
	text-align: center;
}
.tx-fit {
	inline-size: fit-content;
	margin-inline: auto;
}
.tx-l_tx-fit {
	text-align: left;
}
.mt10{
	margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.pt00 {
	padding-top: 0 !important;
}
.pb00 {
	padding-bottom: 0 !important;
}

.mt00{
	margin-bottom: 0 !important;
}
.mb00{
	margin-bottom: 0 !important;
}
.mb10{
	margin-bottom: 10px;
}
.mlr10{
	margin-left: 10px;
	margin-right: 10px;
}
.f-12 {
	font-size: 12px;
}
.f-13 {
	font-size: 13px;
}
.f-14 {
	font-size: 14px;
}
.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;
}
.f12-16{
	font-size:clamp(14px, 2vw, 16px);
}
.f16-20{
	font-size:clamp(16px, 3vw, 20px);
}
.f20-30{
	font-size:clamp(20px, 3vw, 30px);
}
.f-s {
	font-size: small;
}
.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 only screen and (max-width: 768px) {
	.tx-l_tx-fit {
		inline-size: fit-content;
		margin-inline: auto;
	}
}
@media only screen and (max-width: 568px) {
	.pb10 {
		padding-bottom: 10px !important;
	}
	.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-l2 {
		text-align: center;
	}
	.tx-r2 {
		text-align: left;
	}
	.f-la {
		font-size: 17px;
	}
}

/*文字縁取り*/
.fuchidori {
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF, 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0 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: var(--main-color);
}
a.unli:hover{
    color: var(--accent-color2);
}

/* コンテンツ幅 */
div.haba{
	margin: 0 11%;
	padding: 2% 0 0 0;
}
@media only screen and (max-width: 768px)  {
	div.haba{
		margin: 0;
		padding: 2% 0 0 0;
	}
}
div.haba2{
	margin: 0 16%;
	padding: 30px 0;
}
@media only screen and (max-width: 768px)  {
	div.haba2{
		margin: 0;
		padding: 30px 1%;
	}
}
div.haba3{
	margin: 0 25%;
	padding: 0;
}
@media only screen and (max-width: 1046px)  {
	div.haba3{
		margin: 0;
		padding: 0 20%;
	}
}
@media only screen and (max-width: 720px)  {
	div.haba3{
		margin: 0;
		padding: 0 11%;
	}
}
@media only screen and (max-width: 550px)  {
	div.haba3{
		margin: 0;
		padding: 0 1%;
	}
}

/*パンくずリスト(Atypeのみ使用)*/
#pankuzu {
    font-size: 12px;
    color: #666666;
    padding-top: 20px;
}

/*pcとspで画像のサイズ変えたいときの指定*/
img.pcspwid{
	width: 10%;
    margin: 20px auto 0 auto;
}
img.pcspwid2{
	width: 30%;
	margin: 0 auto 10px auto;
}
img.pcspwid3{
	width: 12%;
	margin: 0 auto;
}
img.pcspwid4{
	width: 60%;
	margin: 0 auto;
}
img.pcspwid5{
	width: 30%;
	margin: 30px auto 0 auto;
}
img.pcspwid6{
	width: 20%;
	margin: 30px auto 0 auto;
}
img.pcspwid7{
	width: 15%;
	margin: 0 auto;
}
@media (max-width: 768px) {
	img.pcspwid{
		width: 15%;
	}
	img.pcspwid3{
		width: 27%;
	}
	img.pcspwid7{
		width: 25%;
		margin: 0 auto;
	}
}
@media (max-width: 568px) {
	img.pcspwid{
		width: 30%;
	}
	img.pcspwid2{
		width: 65%;
		margin: 0 auto;
	}
	img.pcspwid3{
		width: 30%;
	}
	img.pcspwid4{
		width: 100%;
	}
	img.pcspwid5{
		width: 65%;
		margin: 0 auto;
	}
	img.pcspwid6 {
        width: 30%;
        margin: 10px auto 0;
    }
	img.pcspwid7{
		width: 35%;
		margin: 0 auto;
	}
}
/*罫線*/
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);
}


.svgicon01 {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: sub;
	margin: 0 7px 0 5px;
}
.svgicon02 {
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: sub;
	margin: 0 7px 0 5px;
}
.f-awesome_icon01 {
    font-size: 1.7em;
    margin: 0 10px 0 5px;
}
.f-awesome_icon02 {
    font-size: 1.65em;
    margin: 0 10px 0 3px;
}
.f-awesome_icon03 {
    font-size: 1.7em;
    margin: 0 9px 0 1px;
}
.f-awesome_icon04 {
    font-size: 1.7em;
    margin: 0 9px 0 4px;
}


/*======================================================*/
        タイトルCSS
/*======================================================*/

/*タイトル	デザイン色々*/
.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: clamp(20px, 2.4vw, 25px);
	text-align: center;
	border: 0;
	color: #444;
}

.heading04::before,
.heading04::after {
	content: '';
	width: 2px;
	height: 35px;
	background-color: var(--accent-color2);
}

.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;
}

/*背景に英字*/
.heading06 {
	color: var(--main-color);
	position: relative;
	padding-top: clamp(30px, 4.7vw, 55px);
	padding-bottom: 25px;
	font-size: clamp(25px, 2.7vw, 30px);
	text-align: center;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
	font-style: normal;
	margin-bottom: 10px;
}
.heading06 span {
	position: relative;
	z-index: 2;
}
.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -5%;
	left: 50%;
	transform: translateX(-50%);
    color: var(--accent-color1);
	font-size: clamp(40px,6vw,70px);
	letter-spacing: 0.1em;
}

/*背景をずらしたデザイン*/
.heading07 {
	font-weight: bold;	
	background-color: rgba(221, 238, 238, 0.785);
	padding: 0.25em 1em;
	position: relative;
	font-size: clamp(18px, 4vw, 25px);
	margin-bottom: 20px;
	width: calc(100% - 1px);
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.heading07::before {
	content: '';
	/*background-color: #e1eef5;*/
	
	border: 1px solid #4c9ac0;
	width: calc(100% + 1px);
	height: calc(100% + 1px);
	position: absolute;
	top: -7px;
	left: 4px;
	z-index: -1;
}

/*全幅　真ん中のみ色　棒*/
.heading08 {
	position: relative;
	font-size: clamp(21px, 2vw, 25px);
	text-align: center;
	border-bottom: 4px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 5px;
	font-weight: 400;
}
.heading08:after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background-color: var(--main-color);
}

.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;
  }

/*タイトル（左にナンバリング）*/
.heading14 {
	position: relative;
	padding-left: 80px;
	font-size: 20px;
}

.heading14::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(63,193,201,0.3);
	font-size: 50px;
}

.heading14::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: rgba(63,193,201,1);
}

/**/
.heading41 {
    text-align: left;
    font-size: clamp(20px, 2.4vw, 20px);
    margin: 0px 0 20px 0;
    border-bottom: 0;
    line-height: 1.3;
    font-weight: bold;
    padding: 7px 7px 2px 2px;
    color: #4c4c4c;
    border-bottom: 2px dotted #b6b6b6;

	padding-left: 35px;
	background: url(../img/ico01.png) no-repeat left center;
	background-size:30px;
}
.heading41 span {
	font-size:14px;
}

/*最初の文字色・サイズ変更*/
.heading42{
	border-bottom: 1px solid #454545;
	color: #454545;
	margin-bottom: 20px;
}
.heading42:first-letter {
	font-size: 150%;
	color: var(--main-color);
  }

/*タイトル二色棒*/
.heading51 {
	border-bottom: solid 3px #e2d6ad;
	position: relative;
	padding-bottom: 0.2em;
	margin-bottom: 20px;
	font-size: clamp(16px, 2.4vw, 18px);
	color:var(--main-color);
  }
  
  .heading51::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px var(--main-color);
	padding-bottom: 0.2em;
	width: 20%;
  }

/*==========================================================*/
/*      	　　　	コンテンツレイアウトCSS  		  		  */
/*=========================================================*/

/*ボックスデザイン*/
.box01 {
	display: flex;
	justify-content:center;
  }
.box01-container {
    padding: 0.5em 2em;
    margin: 2em 0;
    border: double 5px var(--accent-color2);
	width: 100%;
	background-color: #eeeeee;
	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: #f5f3ed;
	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%;
	}
}
.box3 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box3 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box3 p {
    margin: 0; 
    padding: 0;
}

/*装飾枠　斜線影*/
.diagonal {
	position: relative;
	background-size: 10px 10px;
	background-image: repeating-linear-gradient(45deg, #b4b4b494 0, #b4b4b494 1px, #ffffff00 0, #ffffff00 50%);
	left: 10px;
	box-sizing: border-box;
	/* margin-top: 25px; */
}
.diagonal div {
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.5;
	background: rgba(255, 255, 255, 0.8);
	padding: 20px;
	display: inline-block;
	text-align: justify;
	font-weight: 400;
	border: 1px solid #bdbdbd;
	border-radius: 5px;
	position: relative;
	top: -10px;
	left: -10px;
	width: 100%;
	box-sizing: border-box;
}
@media (max-width: 768px) {
	.diagonal {
		width: 97%;
	}
}

/*装飾枠　斜線影*/
.diagonal_s {
    background: #2262d380;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(34, 98, 211, 0.2);
    left: 10px;
    box-sizing: border-box;
}

.diagonal_s div {
	background: #ffffff;
    border: 1px solid #2262d380;
	border-radius: 10px;
	padding: 20px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.6;
	font-weight: 400;
	color: #444;
	text-align: justify;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.diagonal_s {
		width: 97%;
	}
}


/*リスト*/
.list_clm1{
	column-count: 1;
}
.list_clm2{
	column-count: 2;
}
.list_clm3{
	column-count: 3;
}
@media (max-width: 768px) {
	.list_clm3{
		column-count: 2;
	}
}
@media (max-width: 568px) {
	/* .list_clm2{
		column-count: 1;
	} */
	.list_clm3{
		column-count: 1;
	}
}

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(--main-color);
  }
  
  /* ol デザイン */
  ol.list02 {
	counter-reset: li;
  }
  ol.list02 > li:before {
	position: absolute;
	color: var(--main-color);
	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;*/
	}

/*リスト　チェック*/

  
  ul.list04{
	/* margin-top: 10px; */
    font-size: 15px;
	line-height: 1.8;
	list-style-type: none;
	/* column-count: 2;		リスト横並び数を指定 */
  }
 
  /* .list04 li+li {
	margin-top: 5px;
  } */
  
  .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-color2);
	border-bottom: 3px solid var(--accent-color2);
  }
  
  .list04 li:after {
	content: "";
	position: absolute;
	top: .2em;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #9c9c9c;
	border-radius: 2px;
  }

/* スマホ設定 */
@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.list05{
	list-style: disc;
	margin-left: 25px;
	line-height: 1.4;
}
ul.list05 li::marker{
	font-size: 120%;
	font-weight: bold;
	line-height: 1;
	color: var(--accent-color2);
}

/* リスト */
.dot-list {
	list-style: none;
	line-height: 1.6;
}

.dot-list li {
	position: relative;
	padding-left: 1.5em; 
    margin-bottom: 0.5em;
}

.dot-list li::before {
	content: '●';
	position: absolute;
	left: 0;
	top: 0;
	line-height: 1.5;
	font-size: 1em;
	color: black;
}

/*文字ボタン*/
.btwi{
	display: block;
	margin: 10px auto 5px auto;
	box-sizing: border-box;	
	width: 300px;
}
.c-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 37px;
	color: #fff;
	line-height: 1.1;
	text-decoration: none;
	transition: 0.3s;
	padding: 0 32px 0 20px;
	border-radius: 20px;
}
.btn07 a {
	background-color: var(--main-color);
	border: 1px solid transparent;
	font-size: clamp(16px, 1.4vw, 16px);
}
.btn07 a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
}
.btn07 a::after {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff #fff transparent transparent;
}
.btn07 a:hover {
	background-color: var(--accent-color2);
}
.btn07 a:hover::before {
	border: 1px solid #f2f2f2;
}
.btn07 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}

  /*問い合わせボタン*/
  .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);*/
  }

/*テーブル*/
table.tbl01 {
	margin: 5px 0;
}
table.tbl01 tr th {
	text-align: left;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.4;
	padding: 5px;
	padding-left: 20px;
	border-bottom: 1px solid var(--main-color);
}
table.tbl01 tr td {
	text-align: left;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid var(--main-color);
}
table.tbl01 tr:last-child {
	background-color: #fd7e2325;
	font-weight: bold;
}

@media screen and (max-width: 910px) {
	table.tbl01 tr th {
		
		padding-left: 10px;
		width: 100px;
	}
}

/* ★概要のテーブル */
.tx-table1 {
	font-weight: bold;
	padding: 5px;
	width: 5.25em;
}
.tx-table2 {
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.tx-table1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
	}
	.tx-table2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

/*メニュー表*/
table.menuB {
	margin: 5px 0;
}
table.menuB tr th {
	text-align: left;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid var(--main-color);
}
table.menuB tr td {
	text-align: right;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid var(--main-color);
}

@media screen and (max-width: 568px) {
	table.menuB tr th:first-child {
		border-top: 1px solid var(--main-color);
		border-bottom: 1px solid var(--main-color);
	}
	table.menuB tr td {
		border-bottom: 0px;
	}
	table.menuB tr th{
		display: block;
		font-size: 15px;
		background: rgba(22,22,14,0.7);
		border-bottom: 0px;
	}
	table.menuB tr td:nth-of-type(1) {
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 70%;
		font-size: 15px;
	}
	table.menuB tr td:nth-of-type(2){
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 30%;
		font-size: 15px;
	}
}

/*一般(usually)テーブル*/
table.u-tab {
	/*width: 80%;*/	/*article class="entry" 内に入れるならいらない*/
	margin: 0px auto;
	/*border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;*/
}
table.u-tab tr td{
	font-size: clamp(14px,1.4vw,15px);
	text-align:left;
	border-bottom: 1px solid var(--main-color);
	line-height: 1.4;
	padding: 13px;
	/*background: rgba(243, 252, 255, 0.85);*/
}
table.u-tab tr td:nth-of-type(1){
	width: 9rem;	/* 1列目のスタイル */
	font-weight: 600;
	/*background: var(--main-color);*/
}
@media screen and (max-width: 800px) {
	table.u-tab {
		width: 100%;
	}
}
@media screen and (max-width: 568px) {
	table.u-tab tr td{
		display:block;
		width: calc( 100% - 20px );
		padding: 7px;
	}
	table.u-tab tr td:nth-of-type(1){
		width: calc( 100% - 20px );	/* 1列目のスタイル */
		display:block;
		background: #fd7f2340;
	}
}


/*フロー*/
.flow_design01 {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*フロー横展開*/
.flow01 {
	padding-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
ul.flow01 {
	margin-left:0px;
}
.flow01 > li {
	list-style-type: none;
	width: 100%;
	max-width: calc((100% - 50px) / 3);
	display: flex;
}

.flow01 > li .icon01 {
	line-height: 2;
	width: 2em;
	height: 2em;
	text-align: center;
	color: #fff;
	background: var(--main-color);
	margin: 0 auto 15px;
	display: block;
	border-radius: 100vh;
	position: relative;
}
/*番号部分の吹き出し*/
.flow01 > li .icon01::before {
	content: "";
	border: solid transparent;
	border-width: 7px;
	border-top-color: var(--main-color);
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.flow01 > li dl {
    padding: 20px 15px;
    margin: 0;
	border: 1.5px solid var(--main-color);
    position: relative;
    background-color: #fff;
    border-radius: 15px;
}

/*.flow01 > li:not(:first-child) dl::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 10px;
	display: inline-block;
	border-top: 4px solid #999;	
	border-right: 4px solid #999;
	position: absolute;
	top: calc(50% - 10px);
	left: -31px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}矢印*/

.flow01 > li dl dt {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: clamp(18px,1.8vw,19px);
	font-weight: 600;
	color: var(--main-color);
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.3;
}

.flow01 > li dl dd {
	margin-left: 0;
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
	padding: 0 25px;
}

@media screen and (max-width: 868px){
	.flow01 {
		gap: 20px;
	}
	.flow01 > li {
		max-width: unset;
		display: block;
	}
	.flow01 > li:not(:first-child) dl::before {
		display: none;
	}
}


/*フロー*/
.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;
	}
}




/*==========================================================*/
/*      	　　　フレックボックスレイアウトCSS  		  	  */
/*=========================================================*/

/*横並びにする*/
.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-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: 768px) {

	
	.flex-child01, .flex-child02 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child05{
		width: 100%;
		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-child04 {
		width: 100%;
		margin: 5px auto;
	}
	.flex-child05 {
		width: 99%;
		margin: 5px auto;
	}	
	.flex-child07,.flex-child06  {
		width: 99%;
		margin: 5px auto;
	}
}

/*==========================================================*/
/*      	　　　　　　　　　その他CSS　　　　  		  	  */
/*=========================================================*/

/*縦書き*/
.wrap {
	text-align: center;
}
.vertical {
	writing-mode: vertical-rl;
	display: inline-block;
	
}
.v_itl{
	text-align: initial;
}
.v_ctr{
	text-align: center;
}
.v_end{
	text-align:end;
}
.vertical h2 {
	margin: 0;
	line-height: clamp(2.5em, 9vw, 10em);
	font-size: clamp(25px, 1.8vw, 40px);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.vertical div {
	margin: 0;
	line-height: clamp(2.5em, 9vw, 10em);
	font-size: clamp(25px, 1.8vw, 40px);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
}

/* タグ */
.kakomi01 {
	text-align: left;
}
.kakomi01 span {
	padding: 3px 10px 2px 10px;
	margin: 4px 3px;
	background-color: #e8f4f3;
	border: 1px solid var(--accent-color1);
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(14px, 1.3vw, 14px);
}
@media only screen and (max-width: 768px) {
	.kakomi01 {
		text-align: center;
	}
}

/*アイコン*/
/*アイコン画像*/
.ico01 {
	display: inline-block;
	width: 40px;
	vertical-align: middle;
	margin: 0 7px;
}
@media screen and (max-width: 768px) {
	.ico01 {
		width: 35px;
	}
}

/*ふわっと表示(アニメーション)*/
.fadein {
	opacity: 0;
	transform: translate(0, 0);
	transition: opacity 2.5s, transform 2.5s;
}

.fadein.fadein-left {
	transform: translate(-30px, 0);
}

.fadein.fadein-right {
	transform: translate(30px, 0);
}

.fadein.fadein-up {
	transform: translate(0, -30px);
}

.fadein.fadein-bottom {
	transform: translate(0, 30px);
}

.fadein.scrollin {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}

.fadein-top {
	opacity: 0;
	transform: translate(0, 0);
	transition: opacity 4s, transform 4s;
}
.fadein-top.scrollin {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}

/* JSが使えない環境や印刷時に表示させる */
@media print {
	.fadein,
	.fadein-top {
			opacity: 1 !important;
			transform: none !important;
	}
}
