@charset "utf-8";

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

/* box size */
.box-size {
	width: 100%;
	margin: 0 auto;
}
.box-side {
	padding-right: 20px;
	padding-left: 20px;
}
.size-560 {
	max-width: 560px;
}
.box-side.size-560 {
	max-width: 600px;
}
.size-640 {
	max-width: 640px;
}
.box-side.size-640 {
	max-width: 680px;
}
.size-768 {
	max-width: 768px;
}
.box-side.size-768 {
	max-width: 808px;
}
.size-840 {
	max-width: 840px;
}
.box-side.size-840 {
	max-width: 880px;
}
.size-960 {
	max-width: 960px;
}
.box-side.size-960 {
	max-width: 1000px;
}

/* background */
:root {
	--box-margin: 180px;
}
@media screen and (max-width: 640px) {
	:root {
		--box-margin: 120px;
	}
}
.inner-padding {
	padding-top: var(--box-margin);
	padding-bottom: var(--box-margin);
	overflow: hidden;
}
.inner-padding-b {
	padding-bottom: var(--box-margin);
	overflow: hidden;
}
.inner-padding-t {
	padding-top: var(--box-margin);
	overflow: hidden;
}

/* 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%;
}
.flex-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-item-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.col-2 > *,
.col-2-2-1 > * {
	width: 50%;
}
.col-3 > * {
	width: calc(100% / 3);
}
.col-4-4-2 > * {
	width: 25%;
}
.flex-margin-over {
	overflow: hidden;
}
.col-margin-20 {
	margin: -10px;
}
.col-margin-20 > * {
	padding: 10px;
}
.col-margin-30 {
	margin: -15px;
}
.col-margin-30 > * {
	padding: 15px;
}
.col-margin-60 {
	margin: -30px;
}
.col-margin-60 > * {
	padding: 30px;
}
.col-margin-y60 {
	margin-bottom: -60px;
}
.col-margin-y60 > * {
	padding-bottom: 60px;
}
@media screen and (max-width: 640px) {
	.col-2-2-1 > * {
		width: 100%;
	}
	.col-4-4-2 > * {
		width: 50%;
	}
}

/* d-list */
.d-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-weight: 300;
}
.d-list > * {
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid var(--color-text);
}
.d-list > dt {
	color: var(--color-point);
}
.d-list > dd {
	text-align: justify;
}
.d-theme6 > dt {
	width: 40%;
}
.d-theme6 > dt span {
	display: block;
	max-width: 9em;
	margin: 0 0 0 auto;
}
.d-theme6 > dd {
	width: 60%;
}
@media screen and (max-width: 640px) {
	.d-theme6 > dt {
		width: 100%;
		padding-bottom: 5px;
	}
	.d-theme6 > dt span {
		margin: 0;
	}
	.d-theme6 > dd {
		width: 100%;
		padding-top: 0;
		border-width: 0;
	}
}

/* button-circle */
.button-circle {
	text-align: center;
	padding: 28px 0;
}
.button-circle-right {
	text-align: right;
}
.button-circle-left {
	text-align: left;
}
.button-circle a {
	display: inline-block;
	width: auto;
	text-align: right;
	padding-right: 99px;
	position: relative;
}
.button-circle a:hover {
	color: var(--color-point);
}
.button-circle figure {
	width: 79px;
	height: 79px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.button-circle .circle-set {
	stroke: var(--color-point);
}
.circle-set {
	fill: none;
	stroke-miterlimit: 10;
	stroke-width: 1px;
}
.arrow {
	transition: 200ms ease-out 0ms;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
a:hover .arrow {
	transition: 200ms ease-out 400ms;
	-webkit-transform: translateX(6px);
	transform: translateX(6px);
}
.circle {
	stroke-dasharray: 242 244;
	stroke-dashoffset: 0;
	transition: 400ms ease-out 200ms;
}
a:hover .circle {
	stroke-dashoffset: -243;
	transition: 400ms ease-out 0ms;
}

/* button-underline-inline */
.button-underline-inline {
	display: inline-block !important;
	width: auto !important;
	position: relative;
}
.button-underline-inline::after {
	display: block;
	content: "";
	background-color: var(--color-point);
	width: 0;
	height: 1px;
	position: absolute;
	bottom: .3em;
	left: 0;
	transition: 200ms ease-out;
}
.button-underline-inline:hover::after {
	width: 100%;
}

/* image */
.img-c {
	display: block;
	width: 100%;
}

/* text-align */
.text-c,
.text-c-l,
.text-c-j {
	text-align: center;
}
.text-l {
	text-align: left;
}
.text-r {
	text-align: right;
}
.text-j {
	text-align: justify;
}
@media screen and (max-width: 640px) {
	.text-c-l {
		text-align: left;
	}
	.text-c-j {
		text-align: justify;
	}
}

/* font-size */
.font-s {
	font-size: var(--text-s);
}
.font-m {
	font-size: var(--text-m);
	line-height: 1.5;
}
.font-m-l {
	font-size: calc(var(--text-m) * 1.4);
	line-height: 1.5;
}
.font-l {
	font-size: var(--text-l);
	line-height: 1.2;
}

/* text-weight */
.font-bold {
	font-weight: 700;
}

/* margin */
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mt100 {
	margin-top: 100px !important;
}

/* map */
.map {
	width: calc(100% + 40px);
	height: 40vw;
	max-height: 400px;
	margin: 0 -20px;
}
.map iframe {
	display: block;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 640px) {
	.map {
		height: calc(100vw - 40px);
	}
}

/*-------------------------
Animation
---------------------------*/
.setAnime {
	transition-duration: 800ms;
	transition-timing-function: ease-out;
}
.animeDelay400 {
	transition-delay: 400ms;
}

.animation-image {
	position: relative;
}
.animation-image::after {
	display: block;
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
	opacity: 0;
	transition: transform 1800ms ease-out, opacity 3600ms ease-out;
}
.animation-image > div {
	position: relative;
	z-index: 2;
}
.left-image::after {
	background-position: right center;
	left: -20px;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.right-image::after {
	background-position: left center;
	right: -20px;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.animated.left-image::after,
.animated.right-image::after {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.left-image section {
	margin-right: 0;
	margin-left: auto;
}
.right-image section {
	margin-right: auto;
	margin-left: 0;
}
@media screen and (max-width: 960px) {
	.animation-image::after {
		width: calc(100% - 440px);
	}
}
@media screen and (max-width: 640px) {
	.animation-image::after {
		width: 100%;
		opacity: .1;
	}
	.animated.animation-image::after {
		opacity: .2;
	}
}

.right-fade {
	opacity: 0;
	transform: translateX(50%);
}
.animated.right-fade {
	opacity: 1;
	transform: translate(0);
}
.left-fade {
	opacity: 0;
	transform: translateX(-50%);
}
.animated.left-fade {
	opacity: 1;
	transform: translate(0);
}