@charset "utf-8";

/*-------------------------
汎用css
---------------------------*/
.sp {
	display: none;
}
@media screen and (max-width: 640px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	span.sp {
		display: inline;
	}
}

/* width */
.box-size {
	width: 100%;
	margin: 0 auto;
}
.box-side20 {
	padding-right: 20px;
	padding-left: 20px;
}
.box-bottom100 {
	padding-bottom: 100px;
}
.w340 {
	max-width: 340px;
}
.box-side20.w340 {
	max-width: 380px;
}
.w640 {
	max-width: 640px;
}
.box-side20.w640 {
	max-width: 680px;
}
.w800 {
	max-width: 800px;
}
.box-side20.w800 {
	max-width: 840px;
}
.w840 {
	max-width: 840px;
}
.box-side20.w840 {
	max-width: 880px;
}
.w960 {
	max-width: 960px;
}
.box-side20.w960 {
	max-width: 1000px;
}
.w1000 {
	max-width: 1000px;
}

/* box-color */


/* flex box */
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex a,
.flex img {
	display: block;
	width: 100%;
}
.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.box-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.col-2-1-1 > * {
	width: 50%;
}
.col-3-3-2 > *,
.col-3-3-1 > * {
	width: calc(100% / 3);
}
.col-4-3-2 > * {
	width: 25%;
}
.col-6-3-2 > * {
	width: calc(100% / 6);
}
.col-margin20 {
	margin: 0 0 -20px -20px;
}
.col-margin20 > * {
	padding: 0 0 20px 20px;
}
.col-margin40 {
	margin: 0 0 -40px -40px;
}
.col-margin40 > * {
	padding: 0 0 40px 40px;
}
.col-margin80 {
	margin: 0 0 -80px -80px;
	overflow: hidden;
}
.col-margin80 > * {
	padding: 0 0 80px 80px;
}
@media screen and (max-width: 960px) {
	.col-2-1-1 > * {
		width: 100%;
	}
	.col-4-3-2 > *,
	.col-6-3-2 > * {
		width: calc(100% / 3);
	}
}
@media screen and (max-width: 640px) {
	.col-3-3-1 > * {
		width: 100%;
	}
	.col-3-3-2 > *,
	.col-4-3-2 > *,
	.col-6-3-2 > * {
		width: 50%;
	}
}

/* description list */
.d-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.d-list > * {
	margin-bottom: .5em;
}
.d-list > dt {
	color: var(--color-point);
}
.d-theme7 > dt {
	width: 7em;
}
.d-theme7 > dd {
	width: calc(100% - 7em);
}
@media screen and (max-width: 640px) {
	.d-theme7 > dt {
		width: 100%;
		margin-bottom: 0;
	}
	.d-theme7 > dd {
		width: 100%;
	}
}

.d-list-uni {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.d-list-uni dl {
	width: 25%;
}
.d-list-uni dt {
	color: var(--color-point);
	font-size: var(--font-l);
	font-weight: bold;
}
.d-list-uni dd {
	text-align: justify;
	margin-top: 10px;
}
.d-list-uni figure {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 12.5%;
	padding: 30px;
}
.d-list-uni figure img {
	display: block;
	width: 100%;
}
@media screen and (max-width: 640px) {
	.d-list-uni dl {
		width: 100%;
	}
	.d-list-uni figure {
		width: 108px;
		transform: rotate(90deg);
	}
}

/* list */
.list-disk li {
	padding-left: 1.2em;
	position: relative;
}
.list-disk li::before {
	display: block;
	content: "\25CF";
	color: var(--color-point);
	position: absolute;
	top: 0;
	left: 0;
}

.list-inline {
	text-align: center;
}
.list-inline li {
	display: inline-block;
	text-align: left;
	margin-right: 10px;
}

/* パンくず */
.breadcrumbs {
	background-color: #fff;
	padding: 5px 20px;
}
.breadcrumbs ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.breadcrumbs li::after {
	display: inline-block;
	content: "＞";
	margin: 0 5px;
}
.breadcrumbs li:last-child::after {
	display: none;
}
.breadcrumbs a:hover {
	color: var(--color-point);
}
.breadcrumbs a i {
	display: inline-block;
	margin-right: 5px;
}

/* title */
.title01 {
	color: var(--color-point);
	font-family: var(--font-point);
	font-size: calc(var(--font-l) * 2);
	text-align: center;
	line-height: 1.5;
	letter-spacing: .5rem;
	padding: 0 20px;
	-webkit-transform: scaleX(.9);
	transform: scaleX(.9);
}
.title01 span {
	display: block;
	font-size: var(--font-m);
	line-height: 1.2;
}
@media screen and (max-width: 640px) {
	.title01 {
		font-size: calc(var(--font-l) * 1.7);
	}
}
.line-top {
	background: url("../img/line_top.svg") no-repeat center top;
	padding-top: 80px;
}

.title02 {
	background-color: var(--color-point);
	color: #fff;
	font-size: var(--font-l);
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	padding: .5em 20px;
	margin: 0 auto;
	border-radius: 30px;
	position: relative;
}
.title02::after {
	display: block;
	content: "";
	background: url("../img/ico_sba01.svg") no-repeat;
	background-size: 18px 14px;
	width: 18px;
	height: 14px;
	position: absolute;
	bottom: -13px;
	left: calc(50% - 9px);
}
.ttl02-color02 {
	background-color: #F9BF3D;
}
.ttl02-color02::after {
	background: url("../img/ico_sba02.svg") no-repeat;
}
.ttl02-color03 {
	background-color: #E683A7;
}
.ttl02-color03::after {
	background: url("../img/ico_sba03.svg") no-repeat;
}

.title03 {
	color: var(--color-point);
	font-size: var(--font-l);
	font-weight: bold;
	text-align: center;
}

/* text */
.text-c {
	text-align: center;
}
.text-j {
	text-align: justify;
}
.text-c-j{
	text-align: center;
}
.text-l {
	text-align: left;
}
.text-r {
	text-align: right;
}

.text-bold {
	font-weight: bold;
}

.text-size-m {
	font-size: var(--font-m);
}
@media screen and (max-width: 640px) {
	.text-c-j{
		text-align: justify;
	}
}
/* image */
.img-c {
	display: block;
	width: 100%;
	margin: 0 auto;
}

/* anchor */
.anchor01 {
	display: block;
	background-color: #fff;
	width: 100%;
	max-width: 420px;
	padding: 17px 0;
	text-align: center;
	margin: 0 auto;
	border: 1px solid #b4b4b4;
	border-radius: 30px;
	position: relative;
}
.anchor01:hover {
	background-color: #b4b4b4;
	color: #fff;
}
.anchor01:after {
	content: "＞";
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.anchor01 i {
	display: inline-block;
	color: var(--color-point);
	margin-right: .3em;
	transition: .2s;
}
.anchor01:hover i {
	color: #fff;
}
.anchor01.tel-button i,
.anchor01.tel-button span {
	font-size: var(--font-l);
	font-weight: bold;
	line-height: 1.2;
}


/* margin */
.mt1 {
	margin-top: 1rem !important;
}
.mt2 {
	margin-top: 2rem !important;
}
.mt3 {
	margin-top: 3rem !important;
}
.mt4 {
	margin-top: 4rem !important;
}
.mt5 {
	margin-top: 5rem !important;
}

/* padding */
.pt5 {
	padding-top: 5rem !important;
}

/* map */
.map iframe {
	display: block;
	width: 100%;
	height: 400px;
}

/* animation */
.setAnime {
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.setAnime.delay200 {
	-webkit-transition-delay: 200ms;
	transition-delay: 200ms;
}
.setAnime.delay400 {
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
.inView {
	opacity: 0;
	-webkit-transform: translateY(calc(100vh / 10));
	transform: translateY(calc(100vh / 10));
}
.inView.animated {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.inExg {
	opacity: 0;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: cubic-bezier(.38,1.67,.78,.87);
	transition-timing-function: cubic-bezier(.38,1.67,.78,.87);
	-webkit-transform: scale(.5);
	transform: scale(.5);
}
.inExg.animated {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
@media screen and (max-width: 640px) {
	.inView {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
