@charset "UTF-8";

/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
html {
	scroll-padding-top: 75px;
}

/*---------- header ----------*/
header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

header .header-inn {
	width: 98%;
	height: 60px;
	margin: 0 auto 0 0;
	padding-left: 30px;
	display: flex;
	align-content: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

/*ロゴ*/
header .header-logo {
	width: 424px;
	display: flex;
	align-items: center;
}

header .header-logo a {
	width: 100%;
	display: flex;
	align-items: center;
}

header .header-logo .header-logo-img {
	width: 60px;
	margin-right: 12px;
	overflow: hidden;
}

header .header-logo .header-logo-ttl {
	width: 347px;
}

header .header-logo span {
	font-size: 20px;
	font-weight: bold;
}

header .btn-menu-wrap {
	display: none;
}

header .gnav-wrap {
	width: calc(100% - 424px);
}

header .gnav-wrap ul#gnav {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

header .gnav-wrap ul#gnav li {
	margin-left: 20px;
}

header .gnav-wrap ul#gnav li a {
	padding: 0;
	display: block;
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {

	header .gnav-wrap ul#gnav li a:hover,
	header .gnav-wrap ul#gnav li a.is-current {
		color: #ED490D;
	}
}

@media (max-width: 1500px) {
	header .header-logo {
		width: 354px;
	}

	header .header-logo .header-logo-ttl {
		width: 255px;
	}

	header .gnav-wrap {
		width: calc(100% - 354px);
	}

	header .gnav-wrap ul#gnav li {
		margin-left: 15px;
	}

	header .gnav-wrap ul#gnav li a {
		font-size: 14px;
	}

}

@media (max-width: 1300px) {
	header .gnav-wrap ul#gnav li {
		margin-left: 10px;
	}

	header .gnav-wrap ul#gnav li a {
		font-size: 12px;
	}

}


@media (max-width: 1136px) {
	header {
		width: 100%;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
	}

	header .header-inn {
		width: 100%;
		height: 60px;
		margin: 0;
		display: flex;
		align-content: center;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}

	/*ロゴ*/
	header .header-logo {
		width: 90%;
		display: flex;
		align-items: center;
	}

	header .header-logo .header-logo-img {
		width: 60px;
		margin-right: 20px;
	}

	header .header-logo span {
		font-size: 20px;
		font-weight: bold;
	}

	header .gnav-wrap {
		width: 100%;
		height: 100%;
		padding: 100px 0 0;
		display: none;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}

	header .gnav-wrap ul#gnav {
		width: 100%;
		height: auto;
		padding: 0;
		display: block;
		position: relative;
		z-index: 999;
	}

	header .gnav-wrap ul#gnav li a {
		margin-bottom: 40px;
		padding: 0;
		display: block;
		color: #282828;
		position: relative;
	}

	header .btn-menu-wrap {
		width: 60px;
		height: 60px;
		display: block;
		position: absolute;
		top: 0;
		right: 0;
	}

	header #sp-menu-trigger {
		width: 60px;
		height: 60px;
		display: inline-block;
		position: relative;
		cursor: pointer;
		z-index: 999;
	}

	header #sp-menu-trigger span {
		width: 40px;
		height: 4px;
		background: -webkit-gradient(linear, left top, right top, from(#ce1b07), to(#ed9a09));
		background: linear-gradient(to right, #ce1b07, #ed9a09);
		position: absolute;
		left: 10px;
	}

	header #sp-menu-trigger span:nth-of-type(1) {
		top: 12px;
	}

	header #sp-menu-trigger span:nth-of-type(2) {
		top: 21px;
	}

	header #sp-menu-trigger span:nth-of-type(3) {
		top: 30px;
	}

	header #sp-menu-trigger.is-active span:nth-of-type(1) {
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
	}

	header #sp-menu-trigger.is-active span:nth-of-type(2) {
		opacity: 0;
	}

	header #sp-menu-trigger.is-active span:nth-of-type(3) {
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	}

	header #sp-menu-trigger p {
		width: 100%;
		text-align: center;
		position: absolute;
		top: 34px;
		left: 0;
		font-size: 16px;
	}

}

@media (max-width: 767px) {

	header .header-inn {
		padding-left: 0;
	}

	/*ロゴ*/
	header .header-logo {
		width: 90%;
		display: flex;
		align-items: center;
	}

	header .header-logo .header-logo-img {
		width: 60px;
		margin-right: 10px;
	}

	header .header-logo .header-logo-ttl {
		width: 220px;
	}

	header .header-logo span {
		font-size: 16px;
		font-weight: bold;
	}

	header #sp-menu-trigger p {
		font-size: 14px;
	}
}

/*---------- footer ----------*/

footer {
	width: 100%;
	padding: 80px 0 40px;
}

footer .pagetop {
	width: 62px;
	height: 62px;
	cursor: pointer;
	position: fixed;
	right: 3%;
	bottom: 3%;
	z-index: 9996;
}

footer .footer-inn {
	width: 100%;
	display: flex;
}

footer .footer-logo {
	width: 128px;
	margin-right: 24px;
	display: block;
}

footer .footer-txt-wrap {
	width: calc(100% - 152px);
	font-weight: bold;
}

footer .footer-ttl {
	margin-bottom: 10px;
	line-height: 1.4;
}

footer .footer-address {}

footer ul.footer-links {
	width: 100%;
	margin: 50px auto 10px;
	display: flex;
	justify-content: flex-end;
}

footer ul.footer-links li {
	border-left: 1px solid #141414;
	line-height: 1;
}

footer ul.footer-links li a {
	padding: 0 15px;
	color: #141414;
	font-size: 13px;
	line-height: 1;
}

footer .copyright {
	width: 100%;
	padding: 30px 0 0;
	border-top: 1px solid #c3c3c3;
	text-align: center;
	font-size: 12px;
}

@media (max-width: 767px) {
	footer {
		width: 100%;
		padding: 10vw 0 6vw;
	}

	footer .pagetop {
		width: 12vw;
		height: 12vw;
	}

	footer .footer-logo {
		width: 18vw;
		margin-right: 5vw;
		display: block;
	}

	footer .footer-txt-wrap {
		width: calc(100% - 152px);
		font-weight: bold;
	}

	footer .footer-ttl {
		margin-bottom: 1vw;
	}

	footer ul.footer-links {
		width: 100%;
		margin: 8vw auto 1vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	footer ul.footer-links li {
		width: 50%;
		margin-bottom: 2vw;
	}

	footer ul.footer-links li a {
		padding: 0 3vw;
		font-size: 3.2vw;
	}

	footer .copyright {
		width: 100%;
		padding: 3vw 0 0;
		font-size: 3.0vw;
	}
}




/*---------- パンクズ ----------*/
.sec-breadcrumbs {
	width: 100%;
	padding: 10px 0;
	position: relative;
	z-index: 1;
	background: #f3f3f3;
}

.breadcrumbs {
	width: 100%;
	margin: 0 auto;
	font-weight: 400;
}

.breadcrumbs ol {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	line-height: 1;
}

.breadcrumbs li {
	display: inline-block;
}

.breadcrumbs li+li:before {
	content: '>';
	display: inline-block;
	margin: 0 5px;
}

.breadcrumbs li a {
	font-size: 14px;
	color: #141414;
}

.breadcrumbs li:last-child a {
	font-weight: bold;
}


@media screen and (max-width: 767px) {
	.sec-breadcrumbs {
		width: 100%;
		margin-top: 60px;
		padding: 1vw 0;
	}

	.breadcrumbs {}

	.breadcrumbs ol {
		width: 100%;
		display: flex;
	}

	.breadcrumbs li {
		display: inline-block;
	}

	.breadcrumbs li+li:before {
		margin: 0 1vw;
	}

	.breadcrumbs li a {
		font-size: 3.2vw;
	}
}

/*---------- コンテンツ レイアウト ----------*/
@media (min-width: 768px) {
	main {
		padding-top: 60px;
	}
}

.cont-inn {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.box-border {
	background: #fff;
	border: 4px solid #dbdbd9;
	border-radius: 22px;
}


.bg-white.add-triangle {
	background: #fff;
	position: relative;
}

.bg-white.add-triangle::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: calc(50% - 75px);
	bottom: -44px;
	border-top: 50px solid #fff;
	border-left: 75px solid transparent;
	border-right: 75px solid transparent;
	z-index: 3;
}

@media (max-width: 767px) {
	.bg-white.add-triangle::after {
		content: '';
		position: absolute;
		display: block;
		width: 0;
		height: 0;
		left: calc(50% - 60px);
		bottom: -34px;
		border-top: 40px solid #fff;
		border-left: 60px solid transparent;
		border-right: 60px solid transparent;
		z-index: 3;
	}
}


/*---------- ボタン ----------*/
.link-normal {
	text-decoration: underline;
}

.btn-gradation,
a.btn-gradation {
	width: 90%;
	max-width: 600px;
	margin: 0 auto 0;
	padding: 25px;
	display: block;
	background: -webkit-gradient(linear, left top, right top, from(#cb1b45), to(#df5c34));
	background: linear-gradient(to right, #cb1b45, #df5c34);
	-webkit-box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	border-radius: 12px;
	color: #fff;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	position: relative;
}

.btn-gradation::after,
a.btn-gradation::after {
	content: '';
	width: 14px;
	height: 22px;
	background: url("../img/common/icon_arrow_white.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 11px);
	right: 23px;
}

.btn-border-white,
a.btn-border-white {
	width: 90%;
	max-width: 600px;
	margin: 0 auto 0;
	padding: 25px;
	display: block;
	border: 3px solid #cb1b45;
	background: #fff;
	-webkit-box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	border-radius: 12px;
	color: #cb1b45;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	position: relative;
}

.btn-border-white::after,
a.btn-border-white::after {
	content: '';
	width: 14px;
	height: 22px;
	background: url("../img/common/icon_arrow_red.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 11px);
	right: 23px;
}

.btn-blue,
a.btn-blue {
	width: 90%;
	max-width: 600px;
	margin: 0 auto 0;
	padding: 25px;
	display: block;
	background: #4da8d0;
	-webkit-box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	border-radius: 12px;
	color: #fff;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	position: relative;
}

.btn-blue::after,
a.btn-blue::after {
	content: '';
	width: 14px;
	height: 22px;
	background: url("../img/common/icon_arrow_white.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 11px);
	right: 23px;
}

.btn-white {
	width: 90%;
	max-width: 342px;
	margin: 20px auto 0;
	display: block;
	background: #fff;
	border-radius: 10px;
	color: #c81428;
	text-align: center;
	position: relative;
	z-index: 2;
}

.btn-white span {
	padding: 5px 10px;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	background: -webkit-gradient(linear, left top, right top, from(#cb1b45), to(#df5c34));
	background: linear-gradient(to right, #cb1b45, #df5c34);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn-white::after {
	content: '';
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border: solid 2px #c81428;
	border-radius: 8px;
	display: block;
	box-sizing: border-box;
	position: absolute;
	top: 4px;
	left: 4px;
}

.btn-more {
	width: 90%;
	max-width: 400px;
	margin: 0 auto 0;
	padding: 15px;
	display: block;
	background: -webkit-gradient(linear, left top, right top, from(#cb1b45), to(#df5c34));
	background: linear-gradient(to right, #cb1b45, #df5c34);
	-webkit-box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	box-shadow: rgba(93, 98, 104, 0.38) 0px 0 14px;
	border-radius: 12px;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	position: relative;
	cursor: pointer;
}

.btn-more::after {
	content: '';
	width: 10px;
	height: 18px;
	background: url("../img/common/icon_arrow_white.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 9px);
	right: 20px;
	transform: rotate(90deg);
}

.btn-more.is-open::after {
	transform: rotate(-90deg);
}

.btn-border {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 15px;
	display: block;
	border-radius: 10px;
	border: 2px solid #cd2243;
	color: #cd2243;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
}

@media (max-width: 767px) {

	.btn-gradation,
	a.btn-gradation {
		width: 90%;
		max-width: 600px;
		margin: 0 auto 0;
		padding: 4vw 2vw;
		display: block;
		font-size: 4.2vw;
		letter-spacing: 0.01em;
		position: relative;
	}

	.btn-gradation::after,
	a.btn-gradation::after {
		content: '';
		width: 1.8vw;
		height: 4vw;
		background: url("../img/common/icon_arrow_white.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		right: 3vw;
	}

	.btn-blue,
	a.btn-blue {
		width: 90%;
		max-width: 600px;
		margin: 0 auto 0;
		padding: 4vw 2vw;
		display: block;
		font-size: 4.2vw;
		letter-spacing: 0.01em;
		position: relative;
	}

	.btn-gradation::after,
	a.btn-gradation::after {
		content: '';
		width: 1.8vw;
		height: 4vw;
		background: url("../img/common/icon_arrow_white.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		right: 3vw;
	}

	.btn-border-white,
	a.btn-border-white {
		width: 90%;
		max-width: 600px;
		margin: 0 auto 0;
		padding: 4vw 2vw;
		display: block;
		font-size: 4.2vw;
		letter-spacing: 0.01em;
		position: relative;
	}

	.btn-border-white::after,
	a.btn-border-white::after {
		content: '';
		width: 1.8vw;
		height: 4vw;
		background: url("../img/common/icon_arrow_red.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		right: 3vw;
	}

	.btn-white {
		width: 96%;
		max-width: initial;
		margin: 25px auto 0;
	}

	.btn-white span {
		padding: 5px 10px;
		display: inline-block;
		font-size: 20px;
		font-weight: bold;
		background: -webkit-gradient(linear, left top, right top, from(#cb1b45), to(#df5c34));
		background: linear-gradient(to right, #cb1b45, #df5c34);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	.btn-white::after {
		content: '';
		width: calc(100% - 8px);
		height: calc(100% - 8px);
		border: solid 2px #c81428;
		border-radius: 8px;
		display: block;
		box-sizing: border-box;
		position: absolute;
		top: 4px;
		left: 4px;
	}

	.btn-more {
		padding: 3vw 2vw;
		display: block;
		font-size: 3.8vw;
		letter-spacing: 0.01em;
		position: relative;
	}

	.btn-more::after {
		content: '';
		width: 1.8vw;
		height: 4vw;
		background: url("../img/common/icon_arrow_white.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		right: 3vw;
		transform: rotate(90deg);
	}

	.btn-more.is-open::after {
		transform: rotate(-90deg);
	}

	.btn-border {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		padding: 3vw;
		display: block;
		border-radius: 2.5vw;
		font-size: 3.8vw;
	}

}



/*---------- カラー ----------*/
.txt-yellow {
	color: #ffcc44;
}
a.txt-red, 
.txt-red {
	color: #cb1b45;
}

.txt-orange {
	color: #df5c34;
}

.bg-beige {
	background: #f8f7f3;
}

.bg-gradation {
	background: -webkit-gradient(linear, top, bottom, from(#cb1b45), to(#df5c34));
	background: linear-gradient(#cb1b45, #df5c34);
}

/*---------- テキスト ----------*/
.fs-l {
	font-size: 18px;
}

.roboto {
	font-family: 'Roboto', sans-serif;
}

.ttl-deco-03 {
	width: 100%;
	padding: 115px 0 40px;
	color: #fff;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
}

.ttl-deco-03::before {
	content: '';
	width: 122px;
	height: 58px;
	background: url("../img/top/icon_ttl_top.svg") no-repeat center center;
	background-size: 100%;
	position: absolute;
	top: 32px;
	left: calc(50% - 65px);
}

.ttl-deco-03::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: calc(50% - 75px);
	bottom: -44px;
	border-top: 50px solid #df5b34;
	border-left: 75px solid transparent;
	border-right: 75px solid transparent;
	z-index: 3;
}

.ttl-border-left-red {
	width: 100%;
	padding: 10px 0 10px 27px;
	display: block;
	border-left: 9px solid #cb1b45;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
}

.ttl-border-left-orange {
	width: 100%;
	padding: 10px 0 10px 27px;
	display: block;
	border-left: 9px solid #df5c34;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
}

.ttl-border-bottom {
	width: 100%;
	margin-bottom: 25px;
	padding: 0 0 20px;
	display: block;
	font-size: 36px;
	font-weight: bold;
	line-height: 1.2;
}

.ttl-border-bottom.txt-red {
	border-bottom: 1px solid #cb1b45;
}

.ttl-border-bottom.txt-orange {
	border-bottom: 1px solid #df5c34;
}

.ttl-middle {
	width: 100%;
	margin: 50px auto 25px;
	padding: 0 0 10px;
	display: block;
	border-bottom: 1px solid #cb1b45;
	color: #cb1b45;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
}

@media (max-width: 767px) {
	.fs-l {
		font-size: 3.9vw;
	}

	.ttl-deco-03 {
		width: 100%;
		padding: 15vw 3vw 6vw;
		font-size: 5.2vw;
	}

	.ttl-deco-03::before {
		content: '';
		width: 18vw;
		height: 10vw;
		background: url("../img/top/icon_ttl_top.svg") no-repeat center center;
		background-size: 100%;
		position: absolute;
		top: 4vw;
		left: calc(50% - 9vw);
	}

	.ttl-deco-03::after {
		content: '';
		position: absolute;
		display: block;
		width: 0;
		height: 0;
		left: calc(50% - 60px);
		bottom: -34px;
		border-top: 40px solid #df5b34;
		border-left: 60px solid transparent;
		border-right: 60px solid transparent;
		z-index: 3;
	}

	.ttl-border-left-red {
		width: 100%;
		padding: 1vw 0 1vw 5vw;
		border-left: 2vw solid #cb1b45;
		font-size: 5.7vw;
	}

	.ttl-border-left-orange {
		width: 100%;
		padding: 1vw 0 1vw 5vw;
		border-left: 2vw solid #df5c34;
		font-size: 5.7vw;
	}

	.ttl-border-bottom {
		width: 100%;
		margin-bottom: 4vw;
		padding: 0 0 3vw;
		font-size: 5.0vw;
	}

	.ttl-border-bottom.txt-red,
	.ttl-border-bottom.txt-orange {
		border-bottom-width: 2px;
	}

	.ttl-middle {
		width: 100%;
		margin: 10vw auto 4vw;
		padding: 0 0 2vw;
		font-size: 4.8vw;
	}
}

@media screen and (max-width: 767px) {
	.main-sp-top {
		margin-top: 80px !important;
	}
}


@media print {
	body {
		-webkit-print-color-adjust: exact;
	}

	header,
	footer {
		display: none !important;
	}
}

.text-center {
	text-align: center;
}

.error-text,
.search-text {
	color: #cb1b45;
	margin-top: 10px;
	font-size: 20px;
	font-weight: bold;
	/* font-size: 12px; */
}