@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --color-background: #fff;
    --color-font: #333333;
    --color-primary: #009245;
    --color-primary-shade: #111;
    --color-primary-tint: #E8FBCE;
    --color-secondary: #FFDF69;
    --color-secondary-tint: #FF592C;
    --color-table-border: #ECECEC;
    --body-font-size: min(calc(1.6rem +(1vw - 1.92rem)* 0.1294), 1.6rem);
    --body-font-family: 'Noto Sans JP', sans-serif;
    --content-max-width: 1240px;
    --header-background: #fff;
    --header-color-font: #333333;
    --header-color-primary: #FF592C;
    --header-color-primary-shade: #FF592C;
    --header-color-primary-tint: #FFDF69;
    --footer-background: #fff;
    --footer-color-font: #333;
    --footer-color-primary: #009245;
    --font-family01: 'M PLUS 1', sans-serif;
    --font-family02: 'Noto Sans JP', 'M PLUS 1', sans-serif;
	--content-max-width: 1240px;
    --body-font-size: min(calc(1.8rem + (1vw - 1.92rem) * 0.2589) ,1.8rem);
}

/*--------------------------------------
common-parts
----------------------------------------*/

body {
    font-weight: 500;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
a {
    cursor: pointer;
    color: var(--color-font);
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

/*=======================
btn
=======================*/
.linkBtn,
.post .linkBtn,
a.linkBtn,
.post .subimitarea .linkBtn input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 260px;
  font-size: var(--rem16);
  color: #fff;
  line-height: 1.8;
  text-align: left;
  background: var(--color-font);
  font-weight: 600;
  padding: var(--rem20) 4rem var(--rem20) 20px;
  margin: var(--px40) auto 0;
  border: none;
  border-radius: 0.8rem;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.post .linkBtn::after,
.linkBtn::after,
a.linkBtn::after {
  content: none;
}
.post .linkBtn::before, .linkBtn::before, a.linkBtn::before {
	content: '\f0a9';
	font-family: "FontAwesome";
	font-weight: 400;
	position: absolute;
	right: 1.5rem;
	top: calc(50% + 0.2rem);
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	line-height: 0;
}

.post .linkBtn:hover,
.linkBtn:hover,
a.linkBtn:hover,
.post .subimitarea .linkBtn input[type="submit"]:hover {
  color: #fff;
  background: var(--color-secondary-tint);
}

.subimitarea>.linkBtn {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.post .subimitarea .linkBtn input[type="submit"] {
  margin-top: 0;
}

/*-----txtlink-------*/

.post .txtlink {
	position: relative;
	padding: 0.5rem var(--rem30) 0.2rem 0;
	font-size: var(--rem18);
	font-weight: 600;
    margin-top: 1rem;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
	letter-spacing: 0;
    border-bottom: solid 1px;
	-webkit-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;

	&::after {
		content: '\f0a9';
		font-family: "FontAwesome";
		font-weight: 400;
		position: absolute;
		right: 0;
		top: calc(50% + 0.2rem);
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		line-height: 0;
	}
	&:hover {
		color: var(--color-secondary-tint);
	}
}
/*---------designlist-----------*/
		
.post .designlist {

	& > li {

		.listinner {
			background: #FEFFD3;
			border-radius: var(--rem30);
			overflow: hidden;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			height: 100%;

			.imgarea {
				overflow: hidden;
				aspect-ratio: 4/3;
				
				img {
					-o-object-fit: cover;
					   object-fit: cover;
					aspect-ratio: 4/3;
					width: 100%;
					height: 100%;
				}
			}
			.txtarea {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				padding: var(--rem20) var(--rem30);

				b {
					color: var(--color-secondary-tint);
				}
			}
		}
	}
}

/*-----content_list-------*/

.post .content_list {
	width: 100%;
	margin: 0;

	@media print, screen and (min-width: 769px) {
		& > li:nth-child(2) {
			-webkit-box-orient: horizontal;
			-webkit-box-direction: reverse;
			    -ms-flex-direction: row-reverse;
			        flex-direction: row-reverse;
		}
	}

	& > li {

		border: solid 2px #111;
		background: #fff;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: var(--px30) var(--px60);
		gap: var(--px40);
		isolation: isolate;
		background: rgba(255, 255, 255, 0.8);
		border: 5px solid #009245;
		-webkit-backdrop-filter: blur(15px);
		        backdrop-filter: blur(15px);
		border-radius: var(--px40);
		-webkit-box-flex: 0;
		    -ms-flex: none;
		        flex: none;
		-webkit-box-ordinal-group: 1;
		    -ms-flex-order: 0;
		        order: 0;
		-ms-flex-item-align: stretch;
		    -ms-grid-row-align: stretch;
		    align-self: stretch;
		-ms-flex-positive: 0;
		    flex-grow: 0;

		@media print, screen and (max-width: 768px) {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			gap: var(--px12);
			padding: var(--px60) 5%;
		}

		& + li {
			margin-top: var(--px30);
		}
		.txtarea {
			@media print, screen and (max-width: 768px) {
				width: 100%;
			}
			.listttl {
				padding: 1rem;
				background: #FFFFFF;
				border-bottom: .2rem solid var(--color-font);
			}
			.icottl {
				position: relative;
				list-style: none;
				padding-left: var(--rem30);
				font-size: var(--rem20);
				font-weight: 600;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				gap: 10px;
				margin-bottom: var(--rem18);
				padding: 0px 0px 0 calc(var(--rem24) + 1rem);
				border-bottom: 0;

				&::before {
					font-family: 'Font Awesome 6 Free';
					line-height: 1.6;
					content: '\f164';
					position: absolute;
					left: 0;
					font-size: var(--rem24);
					font-weight: 400;
				}
			}
		}
		.imgarea {
			position: relative;
			padding-left: var(--px50);

			.onimg {
				width: var(--px200);
				position: absolute;
				left: 0;
				top: 0;
				z-index: 1;
			}
			.roundimg {
				width: 360px;
				height: 360px;
				border-radius: 50vh;
				overflow: hidden;
				position: relative;
				border: solid 10px #fff;
				
				img {
					aspect-ratio: 1 / 1;
					-o-object-fit: cover;
					   object-fit: cover;
				}
			}
			@media print, screen and (max-width: 1023px) {
				.roundimg {
					width: 280px;
					height: 280px;
				}
			}
			@media print, screen and (max-width: 640px) {
				padding-left: 50px;

				.onimg {
					width: 160px;
					left: -25px;
				}
				.roundimg {
					width: 200px;
					height: 200px;
				}
			}
		}
	}
}

/*---------box--------*/

.post .box {
	background: rgba(255, 255, 255, 0.8);
	border: 5px solid var(--color-primary);
	-webkit-backdrop-filter: blur(15px);
	        backdrop-filter: blur(15px);
	border-radius: var(--px80);
	padding: var(--px60);
	
	@media print, screen and (max-width: 414px) {
		padding: var(--px60) 5%;
	}
	.labelarea {
		margin-bottom: var(--px60);

		.labeltxt {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			gap: 50px;

			span {
				position: relative;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding: 4px 30px;
				gap: 10px;
				font-family: var(--font-family02);
				font-weight: 700;
				font-size: 30px;
				line-height: 1.6;
				background: #FEFFD3;
				border: 2px solid var(--color-primary);
				color: var(--color-primary);
				border-radius: 20px;
				-ms-flex-item-align: stretch;
				    -ms-grid-row-align: stretch;
				    align-self: stretch;

				&:nth-of-type(3) {
					background: var(--color-secondary-tint);
					color: #fff;
					border: none;
				}

				&:before {
					content: "";
					position: absolute;
					left: -44px;
					font-size: 35px;
					font-weight: 400;
					color: var(--color-font);
				}
				&:nth-of-type(2)::before {
					content: "×";
				}
				&:nth-of-type(3)::before {
					content: "＝";
				}
			}
		}
		@media print, screen and (max-width: 1023px) {
			.labeltxt {
				gap: 35px;
				span {
					padding: 4px 20px;
					gap: 10px;
					font-size: 18px;
					text-align: center;

					&:before {
						left: -31px;
						font-size: 25px;
					}
				}
			}
		}
		@media print, screen and (max-width: 768px) {
			.labeltxt {
				gap: 20px;
				span {
					padding: 6px 12px;
					gap: 10px;
					font-size: 14px;
					line-height: 1.2;
					border-radius: 12px;
					text-align: center;

					&:before {
						left: -18px;
						font-size: 14px;
					}
				}
			}
		}
		@media print, screen and (max-width: 414px) {
			.labeltxt {
				span {
					padding: 10px;
					gap: 10px;
					font-size: 16px
				}
			}
		}
	}
}

/*---------icottl--------*/

.post .icottl {
	position: relative;
	list-style: none;
	padding-left: var(--rem30);
	font-size: var(--rem20);
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	padding: 0px 0px 0 calc(var(--rem24) + 1rem);
	border-bottom: 0;
	margin-bottom: var(--rem12);

	&::before {
		font-family: 'Font Awesome 6 Free';
		line-height: 1.6;
		content: '\f164';
		position: absolute;
		left: 0;
		font-size: var(--rem24);
		font-weight: 400;
	}
}

/*---------listttl--------*/

.post .listttl {
	font-weight: 700;
	font-size: var(--rem30);
	line-height: 1.6;
	color: var(--color-secondary-tint);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0;
	gap: var(--rem20);
	background: transparent;
	border: none;

	@media print, screen and (max-width: 640px) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 5px;
		padding-top: 0;
	}

	.ttllabel {
		position: relative;
		background: var(--color-secondary-tint);
		color: #fff;
		padding: .3rem .5rem;
		font-weight: 800;
		font-size: var(--rem16);
		letter-spacing: .1rem;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
		margin: 0 3.5%;
		border-radius: 3px;

		&::before, &::after {
			content: "";
			width: 15%;
			height: 100%;
			background: var(--color-secondary-tint);
			position: absolute;
			top: 50%;
			-webkit-transform: translateY(-50%);
			    -ms-transform: translateY(-50%);
			        transform: translateY(-50%);
		}
		&::before {
			-webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
			        clip-path: polygon(0 50%, 100% 0, 100% 100%);
			left: calc(-15% + 1px);
		}
		&::after {
			-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
			        clip-path: polygon(0 0, 0% 100%, 100% 50%);
			right: calc(-15% + 1px);
		}
		@media print, screen and (max-width: 1023px) {
			font-size: var(--rem14);
		}
	}
}

/*---------caselis--------*/

.post ol.caselist {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: var(--px30);
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0;

	li {
		list-style: none;
		border-radius: var(--px60);
		overflow: hidden;
		background: #FEFFD3;

		.headarea {
			background: var(--color-primary);
			padding: var(--px30) var(--px50);

			.casettl {
				font-size: var(--rem30);
				font-family: var(--font-family01);
				font-weight: 600;
				letter-spacing: .1rem;
				color: #fff;
				border: none;
				padding: 0;
				margin: 0;
				text-align: left;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: var(--rem14);
				background: transparent;

				.ttllabel {
					position: relative;
					background: var(--color-secondary);
					color: var(--color-primary);
					padding: .3rem .5rem;
					font-weight: 800;
					font-size: var(--rem20);
					letter-spacing: .1rem;
					-ms-flex-negative: 0;
					    flex-shrink: 0;
					-ms-flex-item-align: center;
					    -ms-grid-row-align: center;
					    align-self: center;
					margin: 0 3.5%;
					border-radius: 3px;

					&::before, &::after {
						content: "";
						width: 15%;
						height: 100%;
						background: var(--color-secondary);
						position: absolute;
						top: 50%;
						-webkit-transform: translateY(-50%);
						    -ms-transform: translateY(-50%);
						        transform: translateY(-50%);
					}
					&::before {
						-webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
						        clip-path: polygon(0 50%, 100% 0, 100% 100%);
						left: calc(-15% + 1px);
					}
					&::after {
						-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
						        clip-path: polygon(0 0, 0% 100%, 100% 50%);
						right: calc(-15% + 1px);
					}
				}
			}
		}

		.bodyrea {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			gap: 5%;
			padding: var(--px40) var(--px60);

			.beforeimg, .afterimg {
				position: relative;
				
				.onimg {
					width: var(--px120);
					position: absolute;
					left: 0;
					top: 0;
					z-index: 1;
				}
				.roundimg {
					width: var(--px240);
					height: var(--px240);
					border-radius: 50vh;
					overflow: hidden;
					position: relative;
					margin: 30px 0 0 30px;
					
					img {
						aspect-ratio: 1 / 1;
						-o-object-fit: cover;
						   object-fit: cover;
					}
				}
			}		
		}
		@media print, screen and (max-width: 640px) {
			width: 100%;
			border-radius: var(--px40);

			.headarea {
				padding-left: 15px;

				.casettl {
					font-size: var(--rem24);

					.ttllabel {
						font-size: var(--rem12);
						padding: 0.1rem 0.2rem;
					}
				}
			}
			.bodyrea {
				padding: var(--px40) 5%;

				.beforeimg, .afterimg {
					.onimg {
						width: 60px;
					}
					.roundimg {
						width: 120px;
						height: 120px;
						margin: 10px 0 0 10px;
					}
				}
			}
		}
	}
}

/*---------side--------*/

.slideonarea {
    position: fixed;
    right: 0;
    bottom: 3%;
    z-index: 20;

	img {
		width: 240px;
		height: auto;
	}
	a:hover{
		opacity: 0.7;
		img {
			opacity: 1;
		}
	}
	@media print, screen and (max-width: 640px) {
		display: none;
	}
}

/*---------spfooter--------*/

#MESY_FTMFM_footer_bar-wrapper ul#MESY_FTMFM_footer_bar li {
    &.link_menu.bg_mail a {
        background: #333;
    }
    &.link_menu.bg_line a {
        background: #01ba03;
    }
}

/*---------scroll--------*/

@media print, screen and (max-width: 768px) {
	#scrollUp {
		bottom: 10% !important;
	}
}


/*=======================
utility
=======================*/
.widearea {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
}

.bg-green {
  background-color: var(--color-primary-tint);
}
.bg-gray {
	background-color: #eee;
  }
.post ul.list_point, .post ul.list_check, .post ul.caution, .post ul.list_checkbox {
	margin-top: var(--rem14);
	& > li {
		line-height: 1.6;
        padding-left: var(--rem30);

		&::before {
			color: var(--color-secondary-tint);
		}
	}
}
.post ul.list_checkbox > li {
	border-bottom: dotted #aaa 2px;
	padding: 0.8rem 0.5rem 0.8rem var(--rem30);
}

/*=======================
card
=======================*/
/*---------col03-----------*/
.post .col3_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post .col3_list>li {
  width: 32%;
  margin-bottom: 2%;
}

.post .col3_list::before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.post .col3_list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}

@media print,
screen and (max-width: 768px) {
  .post .col3_list>li {
    width: 49%;
  }

  .post .col3_list::before,
  .post .col3_list:after {
    content: none;
  }
}

@media print,
screen and (max-width: 640px) {
  .post .col3_list>li {
    width: 100%;
  }

  .post .col3_list>li:last-child {
    margin-bottom: 0;
  }
}

/*---------col4-----------*/
.post .col4_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.post .col4_list>li {
  width: 24%;
  margin-bottom: 1.5%
}

.post .col4_list::before {
  content: "";
  display: block;
  width: 24%;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.post .col4_list:after {
  content: "";
  display: block;
  width: 24%;
  height: 0;
}

@media print,
screen and (max-width: 1240px) {

  .post .col4_list>li,
  .post .col4_list::before,
  .post .col4_list:after {
    width: 32%;
    margin-bottom: 2%;
  }
}

@media print,
screen and (max-width: 768px) {
  .post .col4_list>li {
    width: 49%;
  }

  .post .col4_list::before,
  .post .col4_list:after {
    content: none;
  }
}

@media print,
screen and (max-width: 414px) {
  .post .col4_list>li {
    width: 100%;
  }

  .post .col4_list>li:last-child {
    margin-bottom: 0;
  }
}

/*=======================
list
=======================*/
.list-box {
  padding: var(--rem80) var(--rem40);
  border-radius: var(--rem30);
}

.secondary-box {
  padding: var(--rem40);
  border-radius: var(--rem30);
}

.num-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-primary);
  border-radius: 50em;
  padding: var(--rem14) var(--rem20);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;

  .num-list__count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: var(--rem80);
    height: var(--rem80);
    background: var(--color-secondary);
    border-radius: var(--rem48);
    font-size: var(--rem20);
    color: var(--color-primary);
	font-family: var(--font-family01);
    font-weight: bold;
  }

  .num-list__txt {
    color: #ffF;
    font-size: var(--rem20);
    line-height: 1.5;
  }
}

/*------------------------------------------
commonparts - txtstyle
------------------------------------------*/

/* ----------全体共通style----------*/

/* ----h1----*/

.post h1, h1 {
	font-size: var(--rem40);
	font-family: var(--font-family01);
	font-weight: 700;
	text-align: center;
	letter-spacing: .1rem;
	padding: 0;
	margin: 0 auto var(--px20);
	line-height: 1.3;
	color: var(--color-primary);
	margin: var(--rem120) auto var(--rem60);
    padding: calc(var(--rem48) + 1rem) 0 0 0;

	&::after {
		content: '';
		position: relative;
		visibility: visible;
		display: block;
		width: var(--rem60);
		height: 0.5rem;
		background: var(--color-primary);
		margin: var(--rem24w) auto 0;
		border-radius: 50vh;
	}

	@media print, screen and (max-width: 640px) {
		font-size: var(--rem36);
	}
}


/* ----h2----*/

.post h2, h2 {
	font-size: var(--rem40);
	font-family: var(--font-family01);
	font-weight: 700;
	text-align: center;
	letter-spacing: .1rem;
	padding: 0;
	margin: 0 auto var(--px20);
	line-height: 1.3;
	color: var(--color-primary);
	margin: var(--rem120) auto var(--rem60);
    padding: calc(var(--rem48) + 1rem) 0 0 0;

	&::before {
		content: "";
		position: absolute;
        left: 50%;
        top: 0;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
		width: var(--rem48);
		height: var(--rem48);
		background: url(/wp-content/uploads/ico_ttl.svg) no-repeat;
		background-size: contain;
		color: var(--color-primary);
	}
	&::after {
		content: "";
		position: relative;
		visibility: visible;
		display: block;
		width: var(--rem60);
		height: 0.5rem;
		background: var(--color-primary);
		margin: var(--rem24w) auto 0;
		border-radius: 50vh;
	}

	@media print, screen and (max-width: 640px) {
		font-size: var(--rem36);
	}
}

/* ----h3----*/

.post h3 {
    font-size: var(--rem30);
    font-family: var(--font-family02);
    font-weight: 600;
    letter-spacing: .01rem;
    padding: 0 0.5rem var(--rem12);
    margin: var(--rem60) auto var(--rem20);
    border-color: var(--color-primary);
    color: var(--color-font);
    border-bottom: 0.3rem solid var(--color-primary);
    background: transparent;
}
.post h3:before, .post h3:after, h3:before, h3:after {
    content: none;
}

/* ----h4----*/

.post h4 {
    position: relative;
    font-size: var(--rem18);
    font-family: var(--font-family02);
    font-weight: 700;
    padding: 0 0 0 var(--rem14);
    margin: var(--rem40) auto var(--rem24w);
    border: none;
}
.post h4::before {
    content: '';
    position: absolute;
    background: var(--color-primary);
    left: 0;
    width: 0.3rem;
    height: 100%;
    top: 0;
}

/* ----p----*/

.post p {
	line-height: 1.6;
}

/*=======================
title
=======================*/

/*---------txtstyle01-----------*/

.post .txtstyle01,
.txtstyle01 {
  font-family: var(--font-family02);
  font-size: var(--rem36);
  font-weight: 600;
  text-align: center;
  color: #111;
  line-height: 1.4;
  overflow-wrap: break-word;
  padding: 0;
  margin: var(--rem42) auto var(--rem30);
  border: none;
  background: transparent;
}

.post .txtstyle01:before,
.post .txtstyle01:after,
.txtstyle01:before,
.txtstyle01:after {
  content: none;
}

/*---------txtstyle02-----------*/

.post .txtstyle02,
.txtstyle02 {
    font-size: var(--rem24w);
    font-family: var(--font-family02);
    font-weight: 600;
    letter-spacing: .1rem;
    padding: var(--rem12);
    margin: var(--rem60) auto var(--rem20);
    border: none;
    background-color: var(--color-font);
    color: #fff;
}
.post .txtstyle02:before,
.txtstyle02:before,
.post .txtstyle02:after,
.txtstyle02:after {
  content: none;
}

/*---------txtstyle03-----------*/
.post .txtstyle03,
.txtstyle03 {
  font-family: var(--font-family01);
  font-size: var(--rem36);
  font-weight: 600;
  text-align: left;
  color: var(--color-font);
  line-height: 1.4;
  overflow-wrap: break-word;
  padding: 0;
  margin: var(--rem42) auto var(--rem30);
  border: none;
  background: transparent;
}

.post .txtstyle03:before,
.txtstyle03:before,
.post .txtstyle03:after,
.txtstyle03:after {
  content: none;
}

.post .txtstyle03 .subtxt,
.txtstyle03 .subtxt {
  display: block;
  font-size: var(--rem16);
  color: var(--color-primary);
  font-family: var(--font-family01);
  font-weight: 500;
  padding: 0;
  margin: var(--rem14) 0 0;
  border: none;
  background: transparent;
}

/*------------------------------------------
subpage - commoncatcharea
------------------------------------------*/

header#h1Header h1.title {
	font-size: var(--rem48);
	font-family: var(--font-family01);
	font-weight: 700;
	text-align: center;
	letter-spacing: .1rem;
	padding: 0;
	margin: 0 auto var(--px20);
	color: #fff;
	line-height: 1.3;
	text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
	margin: 0 auto;
    padding: 0;

	span.enttl {
		font-size: var(--rem24);
		color: #fff;
		display: block;
		position: relative;
		padding: 1rem 1rem 1rem calc(var(--rem48) + 1rem);
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin: 0 auto 1rem;
		font-weight: 800;

		&::before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			width: var(--rem48);
			height: var(--rem48);
			background: url(/wp-content/uploads/ico_ttl.svg) no-repeat;
			background-size: contain;
			-webkit-filter: brightness(0) invert(1);
			        filter: brightness(0) invert(1);
		}
	}
	&::after {
		content: none;
	}
	@media print, screen and (max-width: 640px) {
		font-size: var(--rem36);
	}
}
#thumbImg {
	position: relative;
}
#thumbImg img, header#h1Header img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
}
#thumbImg::before, header#h1Header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    top: 0;
    left: 0;
    z-index: 1;
}
@media print, screen and (min-width: 641px) {
    #thumbImg, header#h1Header {
        height: min(calc(400px + (1vw - 19.2px) * 15.6250), 500px);/*1920-640/400px-300px*/
    }
}
@media print, screen and (max-width: 640px) {
    #thumbImg, header#h1Header {
        height: 200px;
    }
}

/*--------------------------------------
front-common
----------------------------------------*/

.post .front_contents {
	padding: var(--px100) 0;

	.ttlarea {
		text-align: center;
		margin: 0 auto var(--px60);
		z-index: 1;
        position: relative;
	}
	h2 {
		font-size: var(--rem40w);
		font-family: var(--font-family01);
		font-weight: 700;
		text-align: center;
		letter-spacing: .1rem;
		padding: 0;
		margin: 0 auto var(--px20);
		color: var(--color-font);

		.subttl {
            font-size: var(--rem24);
            color: var(--color-primary);
            display: block;
            position: relative;
			padding: 1rem 1rem 1rem calc(var(--rem48) + 1rem);
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            margin: 0 auto 1rem;
			font-weight: 800;

			&::before {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				width: var(--rem48);
				height: var(--rem48);
				background: url(/wp-content/uploads/ico_ttl.svg) no-repeat;
				background-size: contain;
			}
		}
		&::after, &::before {
			content: none;
		}
		@media print, screen and (max-width: 640px) {
			font-size: var(--rem36);
		}
	}
}


/* ----sec01----*/

.post .sec01 {
	background: url(/wp-content/uploads/common_bgimg.png.webp) no-repeat;
	background-size: cover;

	&:before {
		content: "";
		background: #1111115e;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
	}
	.wrapper_content {
		max-width: 1400px;
		width: 90%;
		margin: 0 auto;
		z-index: 1;

		h2 {
			color: #fff;
			font-size: var(--px50);
			line-height: 1.3;
			text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);

			.subttl {
				color: #fff;

				&:before {
					-webkit-filter: brightness(0) invert(1);
					        filter: brightness(0) invert(1);
				}
			}
			b {
				font-size: var(--px80);

				&.color {
					color: #FFE207;
				}
			}
		}
		
		/*---------col03-----------*/
		
		.col3_list {
			position: relative;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: justify;
			-ms-flex-pack: justify;
			justify-content: space-between;
			-ms-flex-wrap: wrap;
			    flex-wrap: wrap;

			& > li {
				width: 32%;
				margin-bottom: 2%;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				-webkit-box-pack: stretch;
				    -ms-flex-pack: stretch;
				        justify-content: stretch;

				&::before {
					content: "";
					display: block;
					width: 32%;
					height: 0;
					-webkit-box-ordinal-group: 2;
					    -ms-flex-order: 1;
					        order: 1;
				}
				&::after {
					content: "";
					display: block;
					width: 32%;
					height: 0;
				}
				@media print, screen and (max-width: 1023px) {
					width: 49%;

					&::before, &::after {
						content: none;
					}
				}
				@media print, screen and (max-width: 640px) {
					width: 100%;

					&:last-child {
						margin-bottom: 0;
					}
					& + li {
						margin-top: var(--rem16);
					}
				}
				.listttl {
                    font-size: var(--rem30);
                    position: relative;
					flex-direction: row;
                    padding-left: calc(var(--rem80) + 1rem);
                    margin-bottom: var(--rem12);
					color: #fff;
					-webkit-filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.8));
					        filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.8));
					-webkit-box-align: baseline;
					    -ms-flex-align: baseline;
					        align-items: baseline;
					gap: 0.5rem;

                    b {
                        font-size: var(--rem36);
                        padding-top: 1rem;
                        background-position: top left;
                        background-repeat: repeat-x;
                        background-size: var(--rem36) var(--rem24);
                        background-image: -o-radial-gradient(center, circle, #ffffff 18%, transparent 18%);
                        background-image: radial-gradient(circle at center, #ffffff 18%, transparent 18%);
                    }
				}
				.listttl::before {
					content: "";
					position: absolute;
					left: 0;
					top: -1rem;
					width: var(--rem80);
					height: var(--rem60);
				}
				&:nth-child(1) .listttl::before {
					background: url(/wp-content/uploads/numico01.png.webp) no-repeat top left;
					background-size: contain;
				}
				&:nth-child(2) .listttl::before {
					background: url(/wp-content/uploads/numico02.png.webp) no-repeat top left;
					background-size: contain;
				}
				&:nth-child(3) .listttl::before {
					background: url(/wp-content/uploads/numico03.png.webp) no-repeat top left;
					background-size: contain;
				}
				.listinner {
					background: #FEFFD3;
					border-radius: var(--rem30);
					overflow: hidden;
                    height: 100%;

					a.fill {
						display: -webkit-box;
						display: -ms-flexbox;
						display: flex;
						-webkit-box-orient: vertical;
						-webkit-box-direction: normal;
						    -ms-flex-direction: column;
						        flex-direction: column;
						height: 100%;

						&:hover {
							p.txtlink {
								color: var(--color-secondary-tint);
							}
							.imgarea img {
								opacity: 1;
								-webkit-transform: scale(1.03);
								    -ms-transform: scale(1.03);
								        transform: scale(1.03);
							}
						}
					}
					.imgarea {
						overflow: hidden;
						aspect-ratio: 4/3;
						
						img {
							-o-object-fit: cover;
							   object-fit: cover;
							aspect-ratio: 4/3;
							width: 100%;
							height: 100%;
						}
					}

					.txtarea {
						display: -webkit-box;
						display: -ms-flexbox;
						display: flex;
						-webkit-box-orient: vertical;
						-webkit-box-direction: normal;
						    -ms-flex-direction: column;
						        flex-direction: column;
						-webkit-box-align: start;
						    -ms-flex-align: start;
						        align-items: flex-start;
						padding: var(--rem20) var(--rem30) 0;
						gap: var(--rem20);
						font-size: var(--rem20);

						b {
							color: var(--color-secondary-tint);
						}
					}
					.btnarea {
						margin-top: auto;
						padding: 0 var(--rem30) var(--rem40);
					}
				}
			}
		}
	}
}

/* ----sec02----*/

.post .sec02 {
	background: url(/wp-content/uploads/sec02_bgimg.jpg.webp) no-repeat;
	background-size: cover;
	
	.wrapper_content {
		max-width: 1100px;
		width: 90%;
		margin: 0 auto;

		.ttlarea {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			padding: var(--px50);
			background: #FFFFFF;
			border-radius: 50vh;
			width: 100%;
			
			h2 {
				margin: 0;
			}
		}
		.btnarea {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
			    -ms-flex-direction: row;
			        flex-direction: row;
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			-ms-flex-wrap: wrap;
			    flex-wrap: wrap;
			padding: var(--px40);
			margin-top: var(--px30);
			gap: var(--px20);
			background: #E7FBCE;

			.btnareattl {
                position: relative;
                list-style: none;
                padding-left: var(--rem24);
                font-size: var(--rem20);
                font-weight: 600;
				line-height: 1.2;
                color: var(--color-primary);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                    -ms-flex-direction: row;
                        flex-direction: row;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                padding: 0px 0px 0px calc(var(--rem20) + 1rem);
                gap: 10px;
                width: -webkit-fit-content;
                width: -moz-fit-content;
                width: fit-content;
                margin: 0 auto var(--rem12);

				&::before {
                    font-family: 'Font Awesome 6 Free';
                    line-height: 1.6;
                    content: '\f164';
                    position: absolute;
                    left: 0;
                    font-size: var(--rem20);
                    font-weight: 400;
                }
			}
			a.linkBtn {
				margin: 0;
			}
		}
	}
}

/* ----sec03----*/

.post .sec03 {

		padding: 0;

	.content01 {
		background: #ECECEC;
		padding: var(--px80) 0;

		.wrapper_content {
			max-width: 1300px;
			width: 90%;
			margin: 0 auto;

			h2 {
				font-size: var(--px40);
				line-height: 1.3;
	
				b {
					font-size: var(--px60);
					color: #2C5DFF;
				}
			}
			.imgarea {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;

				@media print, screen and (max-width: 768px) {
					-ms-flex-pack: distribute;
					    justify-content: space-around;
				}
				@media print, screen and (max-width: 640px) {
					-webkit-box-orient: vertical;
					-webkit-box-direction: normal;
					    -ms-flex-direction: column;
					        flex-direction: column;
				}
				.centerimg {
					position: absolute;
					z-index: 0;
					width: 40%;
					left: 50%;
					-webkit-transform: translateX(-50%);
					    -ms-transform: translateX(-50%);
					        transform: translateX(-50%);
					bottom: 0;
					text-align: center;

					img {
						max-height: 400px;
						width: auto;
					}

					@media print, screen and (max-width: 640px) {
						position: static;
						-webkit-transform: none;
						    -ms-transform: none;
						        transform: none;
						width: 80%;
					}
				}
			}
			ul.txtlist {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				display: flex;
				-ms-flex-wrap: wrap;
				    flex-wrap: wrap;
				justify-content: center;
				width: 430px;
				z-index: 1;

				@media print, screen and (max-width: 640px) {
					width: 100%;
					-ms-flex-wrap: wrap;
					    flex-wrap: wrap;
					gap: 0;
					-webkit-box-orient: horizontal;
					-webkit-box-direction: normal;
					    -ms-flex-direction: row;
					        flex-direction: row;

					& + ul {
						margin-top: 6px;
					}
				}
				
				li {
					-webkit-box-sizing: border-box;
					        box-sizing: border-box;
					display: -webkit-box;
					display: -ms-flexbox;
					display: flex;
					-webkit-box-orient: horizontal;
					-webkit-box-direction: normal;
					    -ms-flex-direction: row;
					        flex-direction: row;
					-webkit-box-pack: center;
					    -ms-flex-pack: center;
					        justify-content: center;
					-webkit-box-align: center;
					    -ms-flex-align: center;
					        align-items: center;
					background: #123776;
					height: var(--px200);
					--s: var(--px200); /* adjust to control the size */
					  
						width: var(--s); 
						aspect-ratio: 1;
						--g:/calc(var(--s)*0.201) calc(var(--s)*0.201) radial-gradient(50% 50%,#000 99%,#0000 101%) no-repeat;
						-webkit-mask: calc(50% + var(--s)*0.369) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*0.261) calc(50% + var(--s)*0.261) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*0.369) var(--g),calc(50% + var(--s)*-0.261) calc(50% + var(--s)*0.261) var(--g),calc(50% + var(--s)*-0.369) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*-0.261) calc(50% + var(--s)*-0.261) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*-0.369) var(--g),calc(50% + var(--s)*0.261) calc(50% + var(--s)*-0.261) var(--g),radial-gradient(calc(var(--s)*0.418),#000 99%,#0000 101%),calc(50% + var(--s)*0.447) calc(50% + var(--s)*0.185) var(--g),calc(50% + var(--s)*0.185) calc(50% + var(--s)*0.447) var(--g),calc(50% + var(--s)*-0.185) calc(50% + var(--s)*0.447) var(--g),calc(50% + var(--s)*-0.447) calc(50% + var(--s)*0.185) var(--g),calc(50% + var(--s)*-0.447) calc(50% + var(--s)*-0.185) var(--g),calc(50% + var(--s)*-0.185) calc(50% + var(--s)*-0.447) var(--g),calc(50% + var(--s)*0.185) calc(50% + var(--s)*-0.447) var(--g),calc(50% + var(--s)*0.447) calc(50% + var(--s)*-0.185) var(--g);
						-webkit-mask-composite: source-out;
						        mask: calc(50% + var(--s)*0.369) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*0.261) calc(50% + var(--s)*0.261) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*0.369) var(--g),calc(50% + var(--s)*-0.261) calc(50% + var(--s)*0.261) var(--g),calc(50% + var(--s)*-0.369) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*-0.261) calc(50% + var(--s)*-0.261) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*-0.369) var(--g),calc(50% + var(--s)*0.261) calc(50% + var(--s)*-0.261) var(--g),radial-gradient(calc(var(--s)*0.418),#000 99%,#0000 101%) subtract,calc(50% + var(--s)*0.447) calc(50% + var(--s)*0.185) var(--g),calc(50% + var(--s)*0.185) calc(50% + var(--s)*0.447) var(--g),calc(50% + var(--s)*-0.185) calc(50% + var(--s)*0.447) var(--g),calc(50% + var(--s)*-0.447) calc(50% + var(--s)*0.185) var(--g),calc(50% + var(--s)*-0.447) calc(50% + var(--s)*-0.185) var(--g),calc(50% + var(--s)*-0.185) calc(50% + var(--s)*-0.447) var(--g),calc(50% + var(--s)*0.185) calc(50% + var(--s)*-0.447) var(--g),calc(50% + var(--s)*0.447) calc(50% + var(--s)*-0.185) var(--g);

					.listinner {
						text-align: center;
						line-height: 1.4;
						font-size: var(--px20);
						font-family: var(--font-family01);
						color: #fff;

						b {
							color: var(--color-secondary);
						}
					}

					&:first-child {
						margin: 0 80px;
					}
					&:nth-child(2) {
						margin-top: 15px;
						margin-right: 30px;
					}

					@media print, screen and (max-width: 768px) {
						.listinner {
							font-size: var(--px16);
						}
						&:first-child, &:nth-child(2) {
							margin: 0;
						}
					}
					@media print, screen and (max-width: 640px) {
						--s: 144px;
						height: 144px;

						.listinner {
							font-size: 16px;
						}
					}
				}
			}
		}
	}
	.content02 {
		background: url(/wp-content/uploads/sec03_bgimg.png.webp) no-repeat;
		background-size: cover;
		color: #fff;
		padding: var(--px160) 0 var(--px100);
		position: relative;
		
		&:before {
			content: "";
			background: #1111115e;
			position: absolute;
			left: 0;
			top: 0;
			z-index: 0;
			width: 100%;
			height: 100%;
		}

		h2 {
			color: #fff;
			font-size: var(--px50);
			line-height: 1.3;
			text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);

			b {
				font-size: var(--px80);

				&.color {
					color: #FFE207;
				}
			}
			@media print, screen and (max-width: 640px) {
				font-size: var(--px40);
				b {
					font-size: var(--px60);
				}
			}
		}
		&::after {
			position: absolute;
			top: -1px;
			left: 50%;
			-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
			transform: translateX(-50%);
			content: "";
			width: 35%;
			padding-bottom: calc(var(--px200) - var(--px80));
			background-color: #ECECEC;
			-webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
			        clip-path: polygon(50% 100%, 0% 0%, 100% 0%);

			@media print, screen and (max-width: 640px) {
				width: 60%;
				padding-bottom: var(--px80);
			}

		}
		.txtarea {
			border-top: solid;
			border-bottom: solid;
			padding: var(--rem40);
			margin: var(--rem30) 0;
		}
	}
}

/* ----sec04----*/

.post .sec04 {
	background: url(/wp-content/uploads/common_bgimg.png.webp) no-repeat;
	background-size: cover;
	position: relative;

	&:before {
		content: "";
		background: #1111115e;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
	}
	.wrapper_content {
		max-width: 1100px;
		width: 90%;
		margin: 0 auto;
		z-index: 1;

		.ttlarea {
			margin-bottom: var(--px40);
		}
	}
}

/* ----sec05----*/

.post .sec05 {
	position: relative;

	&::before {
		content: "";
		background: url(/wp-content/uploads/sec05_bgimg.png.webp) no-repeat;
		background-size: cover;
		height: 30%;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.wrapper_content {
		max-width: 1400px;
		width: 90%;
		margin: 0 auto;
	}
}

/* ----sec06----*/

.post .sec06 {
	.wrapper_content {
		max-width: 1400px;
		width: 90%;
		margin: 0 auto;
	}
}

/* ----sec07----*/

.post .sec07 {
	.wrapper_content {
		max-width: 1400px;
		width: 90%;
		margin: 0 auto;
		background: #E7FBCE;
		padding: var(--rem80);
		border-radius: var(--rem80);

		@media print, screen and (max-width: 640px) {
			padding: var(--rem80) 5%;
			border-radius: var(--rem60);
		}
		.flow_detail {
			margin: var(--rem60) 0;

			.flow_item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				-ms-flex-pack: justify;
				justify-content: space-between;
				position: relative;
				padding-bottom: var(--rem48);
				margin-bottom: var(--rem12);

				&:not(:last-of-type):after {
					position: absolute;
					bottom: 0;
					left: 50%;
					-webkit-transform: translateX(-50%);
					-ms-transform: translateX(-50%);
					transform: translateX(-50%);
					content: "";
					width: var(--rem80);
					height: var(--rem30);
					background-color: var(--color-primary);
					-webkit-clip-path: polygon(50% var(--rem30), 0% 0%, var(--rem80) 0%);
					clip-path: polygon(50% var(--rem30), 0% 0%, var(--rem80) 0%);
				}

				&:last-of-type {
					padding-bottom: 0;
				}
			}
			.flow_item_ttl {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				-ms-flex-pack: justify;
				justify-content: space-between;
				width: 42%;
				background: var(--color-primary);
				font-weight: bold;
	
				.flow_ico {
					width: var(--rem120);
					height: 100%;
					background: var(--color-secondary);
					color: var(--color-primary);
					-ms-flex-negative: 0;
					flex-shrink: 0;
					display: -webkit-box;
					display: -ms-flexbox;
					display: flex;
					-webkit-box-pack: center;
					-ms-flex-pack: center;
					justify-content: center;
					-webkit-box-align: center;
					-ms-flex-align: center;
					align-items: center;
		
					i {
						font-size: var(--rem42);
					}
				}
			}
			.flow_item_ttltxt {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
				-ms-flex-align: center;
				align-items: center;
				-webkit-box-pack: center;
				-ms-flex-pack: center;
				justify-content: center;
				width: 100%;
				color: #fff;
				padding: var(--rem24);
				font-size: var(--rem20);
				text-align: center;
				font-weight: 600;
				line-height: 1.4;
			}
			.flow_item_txt {
				position: relative;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-pack: start;
				    -ms-flex-pack: start;
				        justify-content: flex-start;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				background: #fff;
				width: 57%;
	
				p {
					font-weight: 500;
					font-size: var(--rem18);
					padding-bottom: 0;
					color: var(--color-font);
					line-height: 1.4;
				}
				.accordionarea  {
					padding: var(--rem16);
					background: #fff;
					width: 100%;
					display: -webkit-box;
					display: -ms-flexbox;
					display: flex;
					-webkit-box-orient: vertical;
					-webkit-box-direction: normal;
					    -ms-flex-direction: column;
					        flex-direction: column;
					-webkit-box-align: start;
					    -ms-flex-align: start;
					        align-items: flex-start;
					-webkit-box-pack: center;
					    -ms-flex-pack: center;
					        justify-content: center;
					cursor: pointer;
					-webkit-transition: 0.3s all;
					-o-transition: 0.3s all;
					transition: 0.3s all;

					&:hover {
						background: #eee;
					}
					.accordionbtn {
						position: relative;
						padding: 0.5rem 0 0.2rem var(--rem30);
						font-size: var(--rem18);
						font-weight: 600;
						margin-top: 1rem;
						display: block;
						width: -webkit-fit-content;
						width: -moz-fit-content;
						width: fit-content;
						letter-spacing: 0;
		
						&::after {
							content: '\f055';
							font-family: "FontAwesome";
							font-weight: 400;
							position: absolute;
							left: 0;
							top: calc(50% + 0.2rem);
							-webkit-transform: translateY(-50%);
							    -ms-transform: translateY(-50%);
							        transform: translateY(-50%);
							line-height: 0;
							color: var(--color-secondary-tint);
						}
					}
					&.active {
						.accordionbtn:after {
							content: '\f056';
							color: #2C5DFF;
						}
					}
				}
				.accordionarea_hidecontent {
					display: none;

					.hidecontent_inner {
						padding: var(--rem16);
						background: #fff;
						width: 100%;
						display: -webkit-box;
						display: -ms-flexbox;
						display: flex;
						-webkit-box-orient: vertical;
						-webkit-box-direction: normal;
						    -ms-flex-direction: column;
						        flex-direction: column;
						-webkit-box-align: start;
						    -ms-flex-align: start;
						        align-items: flex-start;
						-webkit-box-pack: center;
						    -ms-flex-pack: center;
						        justify-content: center;

						.openhead {
							font-weight: 600;
							font-size: var(--rem18);
							color: var(--color-primary);
							margin-bottom: var(--rem14);
						}
						p {
							font-weight: 500;
							font-size: var(--rem16);
							color: var(--color-font);
							line-height: 1.4;
						}
						.txtlink {
							font-size: var(--rem16);
						}
					}
				}
			}
			@media print, screen and (max-width: 640px) {
				.flow_item {
					-webkit-box-orient: vertical;
					-webkit-box-direction: normal;
					-ms-flex-direction: column;
					flex-direction: column;
					-webkit-box-align: center;
					-ms-flex-align: center;
					align-items: center;
					padding-bottom: var(--rem40);

					.flow_item_ttl, .flow_item_txt {
						width: 100%;
					}
					.flow_item_ttl {
						
						.flow_ico {
							height: auto;
							-webkit-box-align: center;
							-ms-flex-align: center;
							align-items: center;
						}
					}
					.flow_item_ttltxt {
						text-align: left;
						-webkit-box-pack: start;
						-ms-flex-pack: start;
						justify-content: flex-start;
					}
				}
			}
		}
	}
}

/* ----sec08----*/

.postarea {
	padding-top: 0;

	.wrapper_content {
		max-width: none;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: distribute;
		    justify-content: space-around;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: var(--px80) 0;

		.postcontent {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			max-width: 720px;
			width: 100%;
			
			.postlist {
				width: 100%;
			}

			h1 span {
				font-size: var(--rem40w);
				font-family: var(--font-family01);
				font-weight: 700;
				text-align: center;
				letter-spacing: .1rem;
				padding: 0;
				margin: 0 auto var(--px20);
				color: var(--color-font);
		
				.subttl {
					font-size: var(--rem24);
					color: var(--color-primary);
					display: block;
					position: relative;
					padding: 1rem 1rem 1rem calc(var(--rem48) + 1rem);
					width: -webkit-fit-content;
					width: -moz-fit-content;
					width: fit-content;
					margin: 0 auto 1rem;
					font-weight: 800;
		
					&::before {
						content: "";
						position: absolute;
						left: 0;
						top: 0;
						width: var(--rem48);
						height: var(--rem48);
						background: url(/wp-content/uploads/ico_ttl.svg) no-repeat;
						background-size: contain;
					}
				}
				&::after {
					content: none;
				}
				@media print, screen and (max-width: 640px) {
					font-size: var(--rem36);
				}
			}
			.btnarea {
				display: block;
				text-align: center;
				width: 100%;
				margin-top: auto;
			}
		}
		@media print, screen and (max-width: 640px) {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			gap: var(--rem80);
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
		}
	}
}
.postlist {
	li, li:first-child {
		border-top: 1px solid var(--color-font);

		&:last-child {
			border-bottom: 1px solid var(--color-font);
		}
	}
	.post_text {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		width: 98%;
		margin: 0 auto;
		padding: 12px 0;
		gap: 0 10px;
	}
	.time {
		-webkit-box-ordinal-group: 1;
		    -ms-flex-order: 0;
		        order: 0;
		background: transparent;

		a {
			color: #fff;
			padding: 5px 10px;
			background: var(--color-primary);
			width: 100px;
			text-align: center;
			white-space: break-spaces;
			-ms-flex-negative: 0;
			    flex-shrink: 0;
			display: block;
	
			&:hover {
				background: var(--color-secondary-tint);
			}
		}
	}
	.date {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
		line-height: 1.4;
	}
	.time, .date {
		padding: 10px 0;
	}
	.ttls {
		overflow: inherit;
		white-space: normal;
		-o-text-overflow: inherit;
		   text-overflow: inherit;
		width: 100%;
		padding: 0;
		margin: 0;
		
		a {
			padding: 10px 60px 10px 0;
			position: relative;
			width: 100%;
			display: block;
	
			&:hover {
				text-decoration: none;
				color: var(--color-secondary-tint);
			}
			
			&::after {
				content: '\f0a9';
				font-family: "FontAwesome";
				font-weight: 400;
				position: absolute;
				right: 20px;
				top: 50%;
				-webkit-transform: translateY(-50%);
				    -ms-transform: translateY(-50%);
				        transform: translateY(-50%);
			}
		}
	}
	@media print, screen and (max-width: 640px) {
		.post_text {
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			padding-bottom: 0;
		}
		.time, .date {
			padding: 0;
		}
	}
}

/*--------------------------------------------
cta
--------------------------------------------*/

/* area */
.areatxt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: var(--px20) 5%;
	gap: var(--px20);
	background: #E7FBCE;
	border: solid #009245;
	border-width: 5px 0;
	font-size: var(--px18);
	font-weight: 600;
	color: #009245;

	.areattl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
        -ms-flex-item-align: stretch;
            -ms-grid-row-align: stretch;
            align-self: stretch;
		padding: 4px var(--px20);
		gap: 10px;
		font-size: var(--px20);
		color: #fff;
		background: #009245;
	}
	ul.area_list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 0.2rem 1rem;
		font-size: var(--rem18);
	}
}

.cta {
	background: url(/wp-content/uploads/common_bgimg.png.webp) no-repeat;
	background-size: cover;
    color: #fff;
    padding: var(--px80) 0;
	position: relative;

	&:before {
		content: "";
		background: #1111115e;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
	}
	@media print, screen and (max-width: 640px) {
		padding-bottom: 0;
	}

	.cta_inner {
		width: 90%;
		margin: 0 auto;
		max-width: 1720px;
		z-index: 1;
        position: relative;

		.ctattl {
            font-size: var(--px80);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0;
            text-align: left;
            max-width: 960px;
            margin: 0 0 var(--px30) 0;
			font-family: var(--font-family01);
			text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);

			span.min {
				font-size: var(--px60);
			}
			b {
				color: #FFE207;
			}
		}
		.ctalist {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
			    -ms-flex-direction: row;
			        flex-direction: row;
			-ms-flex-wrap: wrap;
			    flex-wrap: wrap;
			-webkit-box-align: start;
			    -ms-flex-align: start;
			        align-items: flex-start;
			-ms-flex-line-pack: start;
			    align-content: flex-start;
			padding: 0px;
			gap: 10px;
			max-width: 960px;
            margin: var(--px30) 0;

			li {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding: 5px var(--px20);
				gap: 10px;
				background: #FEFFD3;
				border: 2px solid #009245;
				color: #009245;
				font-size: var(--rem24);
				font-weight: 600;
				border-radius: var(--px50);
			}
			@media print, screen and (max-width: 640px) {
				gap: 5px;
			}
		}
		.ctabtnlist {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
			    -ms-flex-direction: row;
			        flex-direction: row;
			-webkit-box-pack: start;
			    -ms-flex-pack: start;
			        justify-content: flex-start;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			-ms-flex-wrap: wrap;
			    flex-wrap: wrap;
			padding: 0px;
			gap: var(--px24);
			margin-top: var(--px30);
			
			li {
				-webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
				        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
				border-radius: var(--px16);
				overflow: hidden;

				a {
					position: relative;
					display: -webkit-box;
					display: -ms-flexbox;
					display: flex;
					-webkit-box-orient: horizontal;
					-webkit-box-direction: normal;
					    -ms-flex-direction: row;
					        flex-direction: row;
					-webkit-box-align: center;
					    -ms-flex-align: center;
					        align-items: center;
					padding: var(--px20) 70px var(--px20) var(--px20);
					gap: var(--px20);
					background: var(--color-font);
					color: #fff;
					font-size: var(--px30);
					font-weight: 500;

					.icoarea {
						width: var(--px100);
						height: var(--px100);
						background: #fff;
						border-radius: 50vh;
						-ms-flex-negative: 0;
						    flex-shrink: 0;
						display: -webkit-box;
						display: -ms-flexbox;
						display: flex;
						-webkit-box-pack: center;
						    -ms-flex-pack: center;
						        justify-content: center;
						-webkit-box-align: center;
						    -ms-flex-align: center;
						        align-items: center;

						i {
							color: var(--color-font);
							font-size: var(--px40);
						}
					}
					.subtxt {
						font-size: var(--px14);
						display: block;
					}
					&::after {
						content: '\f0a9';
                        font-family: "FontAwesome";
						font-weight: 400;
                        position: absolute;
                        right: 20px;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                            -ms-transform: translateY(-50%);
                                transform: translateY(-50%);
                        font-size: 80%;
					}
					@media print, screen and (max-width: 768px) {
						padding-right: 40px;
					}
				}
				&.cta_faqbtn a {
					-webkit-transition: 0.3s all;
					-o-transition: 0.3s all;
					transition: 0.3s all;
					background: var(--color-font);

					.icoarea {
						background: #FEFFD3;
					}
					&:hover {
						background: var(--color-secondary-tint);
					}
				}
				&.cta_mailbtn a {
					-webkit-transition: 0.3s all;
					-o-transition: 0.3s all;
					transition: 0.3s all;
					background: var(--color-font);

					.icoarea {
						background: var(--color-secondary-tint);
						i {
							color: #fff;
						}
					}
					&:hover {
						background: var(--color-secondary-tint);
					}
				}
				&.cta_linebtn a {
					-webkit-transition: 0.3s all;
					-o-transition: 0.3s all;
					transition: 0.3s all;
					background: #fff;

					color: var(--color-font);

					.icoarea {
						i {
							font-size: var(--px100);
							color: #01BA03;
							position: relative;

							&::after {
								content: "";
                                background: transparent;
                                position: absolute;
                                left: 50%;
                                top: 50%;
                                transform: translate(-50%, -50%);
                                width: calc(100% - 1px);
                                height: calc(100% - 1px);
                                z-index: 0;
                                border: solid 1px #01BA03;
                                border-radius: 15px;
								opacity: 0;
								-webkit-transition: 0.3s all;
								-o-transition: 0.3s all;
								transition: 0.3s all;
							}
						}
					}
					&:hover {
						background: #01BA03;
						color: #fff;

						.icoarea {
							i {
								&::after {
									opacity: 1;
								}
							}
						}
					}
				}
				@media print, screen and (max-width: 768px) {
					width: -webkit-fit-content;
					width: -moz-fit-content;
					width: fit-content;
				}
				@media print, screen and (max-width: 640px) {
					width: 100%;
				}
			}
		}
	}
	.ctaimg {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 50%;
		height: auto;
		line-height: 1;

		@media print, screen and (max-width: 1023px) {
			bottom: inherit;
			top: 2%;
			width: 60%;
		}
		@media print, screen and (max-width: 640px) {
            bottom: 0;
            top: inherit;
            position: relative;
            -webkit-transform: inherit;
                -ms-transform: inherit;
                    transform: inherit;
            margin: var(--px30) auto 0;
            left: inherit;
			width: 90%;
            z-index: 1;
		}
		img {
			width: 100%;
			height: auto;
			-o-object-fit: cover;
			   object-fit: cover;
		}
	}
}

/*--------------------------------------------
header
--------------------------------------------*/

#header {
	p.catchphrase {
		font-size: 12px;
		margin-top: 2px;
        white-space: normal;
        line-height: 1.1;
	}
	a.head_btn.line_btn {
		background: #009245;

		&:hover {
			background: #007036;
		}
	}
	a.head_btn.mail_btn {
		background: #333;

		&:hover {
			background: var(--color-secondary-tint);
		}
	}
	.mark {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: start !important;
		    -ms-flex-align: start !important;
		        align-items: flex-start !important;
		text-align: left;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.logo .spmenu {
        margin-left: auto;
    }
	.spmenu #menu span, .spmenu #menu span:before, .spmenu #menu span:after {
		background: var(--color-font);
	}
	.spmenu #menu p {
		color: var(--color-font);
	}
}
@media print, screen and (min-width: 1024px) {
	body:not(.mobile) #header {
		.logo a {
			height: auto;
			padding: 7px 0;
		}
	}
}
@media print, screen and (max-width: 1400px) {
	nav#mainNav ul li a {
        padding: var(--px20) 1rem;
		font-size: var(--rem16);
    }
}
@media print, screen and (max-width: 1240px) {
	nav#mainNav ul li a {
		font-size: var(--rem14);
        padding: var(--px20) 0.5rem;
    }
}

/*--------------------------------------------
footer
--------------------------------------------*/
#footer {
	
	background: #fff;
	color: var(--color-font);

	/* ----全体LAYOUT調整----*/

	.footer__inner {
		width: 90%;
		margin: 0 auto;
		padding-bottom: var(--px40);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		gap: 5%;
		border-bottom: solid 1px;

		@media print, screen and (max-width: 768px) {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center;
		}
	
	}

	/* ----------------------------
	right
	----------------------------*/

	.footnav ul {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;

		@media print, screen and (max-width: 768px) {
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
			margin-top: var(--px40);
		}
	}

	/*footer navi ico*/

	.footnav ul > li {
		position: relative;
		line-height: 1.4;
		padding: 0 min(calc(16px + (1vw - 19.2px) * 0.4531), 16px) 0 0; /* 16-9px、15-8px (1920-375) */
		margin-bottom: 5px;

		&::before {
			content: none;
		}
		&::after {
			content: none;
		}

		a {
			color: var(--color-font);
			padding: 0.2rem 0.5rem;
            font-weight: 600;

			&:hover {
				color: var(--color-secondary-tint);
				text-decoration: none;
			}
		}
	}
	/* ----------------------------
	left
	----------------------------*/

	.footer__logo:not(:last-child) {
		margin: 0;
		text-align: left;
	}
	.leftarea .logoare {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: var(--px14);
		line-height: 1;
	}
	.footer__catchphrase {
		line-height: 1.2;
		text-align: left;
	}
	.footer__address {
		font-size: var(--rem14);
		margin: var(--rem12) 0;
	}
	@media print, screen and (max-width: 768px) {
		.footer__logo:not(:last-child) {
			text-align: center;
		}
		.footer__catchphrase {
			text-align: center;
		}
	}

	/* ----------------------------
	SNSアイコン
	----------------------------*/

	/*LAYOUT調整*/

	.socialicon ul {
		-webkit-box-pack: start;
		-ms-flex-pack: flex-start;
		justify-content: flex-start;
		gap: 10px;
	}
	.socialicon ul li {
		padding: 0;
	}
	@media print, screen and (max-width: 768px) {
		.socialicon ul {
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
		}
	}
	.socialicon .fa-facebook:before, .socialicon .fa-twitter:before, .socialicon .fa-youtube:before, .socialicon .fa-instagram:before, .socialicon .fa-x-twitter:before, .socialicon .fa-line:before, .socialicon .fa-tiktok:before {
		font-size: var(--rem24);
		color: var(--color-font);
	}
	.socialicon ul li a:hover i::before {
		color: var(--color-secondary-tint) !important;
	}

	/* ----------------------------
	bottomarea
	----------------------------*/
	.bottomarea {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		width: 90%;
		margin: var(--px30) auto 0;
		gap: 10px;

		.footnav {
			margin: 0;
		}
		#copyright {
			background: transparent;
			color: var(--color-font);
			text-align: right;
			margin: 0;
		}
	}
}

/*==============================================
subpage
==============================================*/

/* outline */
.page_contents_inner + .page_contents_inner {
    margin-top: var(--px100);
}
.fw_contents .page_contents_inner + .page_contents_inner  {
	margin-top: 0;
}
.fw_contents .page_contents_inner:nth-child(even) {
    background: #f5f5f5;
    padding: var(--px100) calc((100vw - 100%) / 2);
}

/* linkbtn_list */
.linkbtn_list {
    display: flex;
    gap: var(--px40);
    flex-wrap: wrap;
    justify-content: center;

	.txtlink {
		&::after {
			content: '\f0ab';
		}
	}
}

/* table */
.post table th {
    width: 25%;
    color: #ffffff;
    font-weight: 600;
    background: var(--color-primary);
}
.post table td {
    color: var(--color-font);
    background: #fff;
}

/* wpcf7form */
.wpcf7-form .must {
    background: var(--color-secondary);
    color: var(--color-primary);
}
.linkBtn.submit_btn {
    background: transparent;
    padding: 0;

	&::before {
		content: none;
	}
	input.wpcf7-form-control.wpcf7-submit {
		display: block;
		width: 100%;
		background: var(--color-font);
		text-align: center;
		padding: var(--rem20);
		transition: 0.3s all;

		&:hover {
			background: var(--color-secondary-tint);
    		color: #fff;
		}
	}
}

/* パンくず */
div#breadcrumb span.enttl {
    display: none;
}

/*------------------------------------------
subpage - service
------------------------------------------*/
#service {
	ol.caselist {

		li {
			width: 48%;
			
			@media print, screen and (max-width: 960px) {
				width: 100%;
			}
		}
	}
}
/*------------------------------------------
subpage - sitemap
------------------------------------------*/

.post ul#sitemap_list li {
    border-bottom: dotted 2px;
    padding: var(--rem30) 0;
}
.post ul#sitemap_list li span {
    display: none;
}
.post ul#sitemap_list li a {
    line-height: 1.4;
    position: relative;
    overflow: inherit;
    display: inline-block;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}
.post ul#sitemap_list li a:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 6px;
    height: 10px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--footer-color-primary);
    border: none;
    margin-top: -4px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/*------------------------------------------
subpage - privacy
------------------------------------------*/

#privacy h3 {
    color: var(--color-primary);
    background: none;
    font-size: var(--rem24w);
    font-weight: 700;
    text-align: left;
    padding: 0 0 10px;
    margin: var(--px40w) auto var(--px20);
    border-width: 0 0 1px;
    border-style: dashed;
}
.single-post .title.first:after {
  content: none;
}