@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 995px) {
	html {
		font-size: 1.005vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.333vw;
	}
}
body {
	font-size: 1.6rem;
	line-height: 1.5;
}
@media (max-width: 768px) {
	body {
		font-size: 3.2rem;
	}
}
a {
	color: #333;
	text-decoration: none;
}
a,
a img {
	transition: opacity 0.3s ease-out;
}
a:hover,
a img:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
input,
button,
textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family:inherit;
}
input {
	display: none;
}
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family:inherit;
}
select::-ms-expand {
	display: none;
}
.wrapper {
	max-height: 100%; /*for android*/
}
.inner {
	margin: 0 auto;
	max-width: 99.5rem;
}
main .inner {
	padding: 0 0.5rem;
}
.sp {
	display: none;
}
.red {
	color: #f00;
}
.red02 {
	color: #e50012;
}
.blue {
	color: #0f218b;
}
.blue02 {
	color: #07c;
}
.pink {
	color:#eb50a0;
}
@media (min-width: 769px) {
	a[href^="tel:"] {
		opacity: inherit;
		color: inherit;
		cursor: default;
		pointer-events: none;
	}
}
@media (max-width: 768px) {
	main .inner {
		padding: 0 3rem;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

/*
	header
-------------*/
header {
	padding: 1.5rem 4rem 1.5rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
}
header .logo {
	width: 19.1rem;
}
@media (max-width: 768px) {
	header .logo {
		width: 27rem;
	}
}


/*
	main
-------------*/
main.bg {
	padding-top: 6rem;
	padding-bottom: 11rem;
	background-image: url(/common/img/bg_mainttl.png);
	background-repeat: no-repeat;
	background-position: top center;
}
@media (max-width: 768px) {
	main.bg {
		background-image: url(/common/img/bg_mainttl_sp.png);
		background-size: contain;
	}
}

/* mainTtl */
main.bg .mainTtl h1 {
	font-size: 3.8rem;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #eb50a0;
	text-align: center;
	line-height: 1;
}
@media (max-width: 768px) {
	main.bg .mainTtl h1 {
		font-size: 4.7rem;
		line-height: 1.2;
	}
}

/* mainContents */
main.bg .mainContents {
	margin-top: 5.5rem;
}
@media (max-width: 768px) {
}

/*
	footer
-------------*/
footer {
	padding-bottom: 5rem;
}
footer .ftMenu {
	padding: 5rem 2rem;
	background-color: #f9e3ec;
}
footer .ftMenu ul {
	max-width: 75rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem 4rem;
}
footer .ftMenu ul li a {
	padding-right: 2rem;
	color: #000;
	position: relative;
}
footer .ftMenu ul li a::after {
	display: block;
	content: "";
	width: 1rem;
	height: 1rem;
	border-right: solid 2px #e50012;
	border-bottom: solid 2px #e50012;
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 0.5rem);
	right: 0;
}
footer .pagetop {
	margin-top: 4rem;
	text-align: center;
}
footer .pagetop a {
	display: inline-block;
	padding: 2.5rem 1rem 0;
	background: url(/common/img/ft_pagetop.svg) no-repeat center top;
	background-size: 2.4rem;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.75;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
	color: #333;
	vertical-align: baseline;
}
footer .copyright {
	margin-top: 1.4rem;
	font-size: 1.2rem;
	text-align: center;
}
@media (max-width: 768px) {
	footer .ftMenu {
		padding: 5rem 4rem;
	}
	footer .ftMenu ul {
		justify-content: flex-start;
		gap: 4rem 3rem;
	}
	footer .ftMenu ul li a {
		font-size: 2.6rem;
	}
	footer .ftMenu ul li a::after {
		width: 1.4rem;
		height: 1.4rem;
		border-right: solid 0.3rem #e50012;
		border-bottom: solid 0.3rem #e50012;
		top: calc(50% - 0.7rem);
	}
	footer .pagetop {
		margin-top: 8rem;
	}
	footer .pagetop a {
		padding: 5rem 2rem 0;
		background-size: 4.8rem;
		font-size: 2.4rem;
	}
	footer .copyright {
		margin-top: 2.8rem;
		font-size: 2.4rem;
	}
}

