@charset "utf-8";

/* PC、SP表示切り替え
------------------------------------------------------------------------------------ */
.dNoSp {
	display: block;
}
.dNoPc {
	display: none;
}


/* header
------------------------------------------------------------------------------------ */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5
}
header div.headerWrapper {
	display: flex;
	justify-content: space-between;
}
header div.headerWrapper div.headerInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-grow: 1;
	background-color: #28292c;
	padding: 20px 0 20px 40px;
}
header div.headerWrapper div.headerInner h1 {
	width: 200px;
}
header div.headerWrapper div.headerInner div.headerInnerRight {
	width: 60%;
	max-width: 650px;
}
header div.headerWrapper div.headerInner div.headerInnerRight ul#gnavPc {
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
}
header div.headerWrapper div.headerInner div.headerInnerRight ul#gnavPc::after {
	content: "";
	width: 1%;
	max-width: 50px;
	min-width: 5px;
}
header div.headerWrapper div.headerInner div.headerInnerRight ul#gnavPc li {
}
header div.headerWrapper div.headerInner div.headerInnerRight ul#gnavPc li a {
	position: relative;
	font-size: 1.125rem;
	line-height: 1;
	color: #FFF;
}
header div.headerWrapper div.headerInner div.headerInnerRight ul#gnavPc li a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background-color: #FFF;
	transform: scaleX(0);
	transform-origin: left top;
	transition: all 0.3s ease;
}
header div.headerWrapper div.headerInner div.headerInnerRight ul#gnavPc li a:hover:after {
	transform: scaleX(1);
}
header div.headerWrapper div.headerTelPc {
	display: flex;
	justify-content: center;
	width: 30%;
	max-width: 400px;
	white-space: nowrap;
	background-color: #c00d1c;
}
header div.headerWrapper div.headerTelPc p {
	font-size: 1.75rem;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
	padding: 25px 30px;
}
header div.headerWrapper div.headerTelPc p i {
	font-size: 2rem;
	line-height: 1;
	font-weight: bold;
	color: #FFF;
	margin-right: 8px;
}


/* ハンバーガーメニュー
------------------------------------------------------------------------------------ */


/* contents
------------------------------------------------------------------------------------ */
div#contents {
	margin-top:82px;
}
div#contents div.sectionInner {
	width:90%;
	margin:0 auto;
}


/* footer
------------------------------------------------------------------------------------ */
footer {
	position: relative;
	padding:60px 0;
	background-color: #28292c;
}
footer div.footerInner {
	width:90%;
	margin:0 auto;
}

footer div#footerTop {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer div#footerTop div#footerLeft {
	margin-right: 20px;
}
footer div#footerTop div#footerLeft h2 {
}
footer div#footerTop div#footerLeft h2 a {
	color: #FFF;
	font-size: 1.25rem;
	line-height: 1;
}
footer div#footerTop div#footerLeft h2 a span {
	font-size: 1.625rem;
	line-height: 1;
}
footer div#footerTop div#footerLeft p {
	color: #FFF;
	margin-top:15px;
}
footer div#footerTop div#footerRight {
	display: flex;
}
footer div#footerTop div#footerRight ul {
	display: flex;
	flex-wrap: wrap;
	width:435px;
}
footer div#footerTop div#footerRight ul li {
	margin-right:80px;
}
footer div#footerTop div#footerRight ul li:nth-child(3) {
	margin-right:0;
}
footer div#footerTop div#footerRight ul li a {
	position: relative;
	color: #FFF;
}
footer div#footerTop div#footerRight ul li a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background-color: #FFF;
	transform: scaleX(0);
	transform-origin: left top;
	transition: all 0.3s ease;
}
footer div#footerTop div#footerRight ul li a:hover:after {
	transform: scaleX(1);
}
footer div#footerTop div#footerRight ul li a i {
	margin-left:10px;
}
footer div#footerTop div#footerRight div {
	color: #FFF;
	text-align: center;
	border-left: 1px solid #FFF;
	margin-left:60px;
	padding-left:60px;
}
footer div#footerTop div#footerRight div p#footerRightText {
}
footer div#footerTop div#footerRight div p#footerRightTel {
	font-size: 2.25rem;
	line-height: 1;
	font-weight: bold;
	margin-top:10px;
}
footer div#footerTop div#footerRight div p#footerRightTel i {
	font-size: 2.25rem;
	line-height: 1;
	margin-right:10px;
}

footer div#footerBottom {
	margin-top:30px;
}
footer div#footerBottom p#copyright {
	color: #FFF;
	line-height: 100%;
	text-align: center;
}

/* ページTOPへ戻るボタン
------------------------------------------------------------------------------------ */
footer div.footerInner div#toPageTopBtn {
	visibility: hidden;
}


/* パンくずリスト
------------------------------------------------------------------------------------ */
section#breadcrumb {
	padding:15px 50px;
	background-color: #e9e6e6;
}
section#breadcrumb ul {
	display: flex;
	font-size: 0.875rem;
	line-height: 1;
}
section#breadcrumb ul li {
	position: relative;
	margin-right:10px;
	padding-right:20px;
}
section#breadcrumb ul li:last-child {
	margin-right:0;
	padding-right:0;
}
section#breadcrumb ul li:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "\f054";
	font-family: "Font Awesome 6 Sharp";
	color: #c00d1c;
	font-size: 1rem;
	font-weight: 300;
}
section#breadcrumb ul li:last-child:after {
	display: none;
}
section#breadcrumb ul li a {
}


/* ページ内リンク集
------------------------------------------------------------------------------------ */
ul.anchorLinkList {
	display: flex;
	flex-wrap: wrap;
}
ul.anchorLinkList li {
	width:calc((100% - 40px) / 3);
	margin-right:20px;
}
ul.anchorLinkList li:nth-child(3n) {
	margin-right:0;
}
ul.anchorLinkList li a {
	position: relative;
	display: block;
	color: #FFF;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	padding: 20px 30px;
	background-color: #c00d1c;
	border-radius:40px;
	transition: all 0.3s ease;
}
ul.anchorLinkList li a:hover {
	background-color: #28292c;
}
ul.anchorLinkList li a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	content: "\f107";
	font-family: "Font Awesome 6 Sharp";
	font-weight: 300;
	color: #f7f7f7;
	font-size: 1.5rem;
}


/* 共通パーツ
------------------------------------------------------------------------------------ */
.title01 {
	position: relative;
	font-size: 2.5rem;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	margin-bottom: 100px;
}
.title01::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	width: 380px;
	height: 4px;
	background: linear-gradient(
		90deg,
		rgba(231, 63, 78, 0) 0%,
		rgba(231, 63, 78, 1) 40%,
		rgba(231, 63, 78, 1) 60%,
		rgba(231, 63, 78, 0) 100%
	);
}
.title01 span {
	display: block;
	font-size: 1rem;
	line-height: 1;
	text-align: center;
	margin-top: 40px;
}
.title02 {
	font-size: 1.675rem;
	line-height: 175%;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.2rem;
	margin-bottom: 100px;
}
.title03 {
	position: relative;
	color: #FFF;
	font-size: 1.75rem;
	line-height: 175%;
	font-weight: bold;
	letter-spacing: 0.2rem;
	margin-bottom: 50px;
	padding-left: 45px;
}
.title03:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 1px;
	background-color: #FFF;
	transform: translateY(-50%);
}
.title04 {
	color: #FFF;
	font-size: 2.5rem;
	line-height: 100%;
	font-weight: bold;
	text-align: center;
	margin-bottom: 100px;
	padding: 30px 0;
	background: url("../images/title04_bg.png") left top no-repeat;
	background-size: contain;
	background-color: #c00d1c;
}
.title05 {
	color: #c00d1c;
	text-align: center;
	margin-bottom: 100px;
}
.title05 .title05l {
	font-size: 4.5rem;
	line-height: 100%;
}
.title05 .title05l span {
	font-weight: bold;
}
.title05 .title05l ruby[data-ruby] rt {
	display: none;
}
.title05 .title05l ruby[data-ruby] {
	position: relative;
	display: inline-block;
}
.title05 .title05l ruby[data-ruby]::after {
	content: attr(data-ruby);
	position: absolute;
	transform: translate(-50%, -1.7em);
	display: block;
	left: 50%;
	top: 0;
	white-space: nowrap;
	font-size: 0.75rem;
	line-height: 100%;
	letter-spacing: 0.2rem;
}
.title05 .title05m {
	font-size: 2.875rem;
	line-height: 100%;
	font-weight: bold;
	margin-top: 10px;
}
.title05 .title05m span {
	font-weight: bold;
}
.title05 .title05s {
	font-size: 1.5rem;
	line-height: 100%;
	margin-top: 25px;
}
.title05 span.bgLRextend::before {
	background-color: #c00d1c;
}

.linkBtnL a {
	display: block;
	position: relative;
	color: #FFF;
	font-size: 1.75rem;
	line-height: 100%;
	font-weight: bold;
	text-align: center;
	margin-top: 100px;
	padding: 30px 0;
	background: url("../images/linkbtn-l_bg.png") left top no-repeat;
	background-size: contain;
	background-color: #c00d1c;
	transition: all 0.3s ease;
}
.linkBtnL a:hover {
	color: #FFF;
	opacity: 0.7;
}
.linkBtnL a span {
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 40px;
	height: 40px;
	background-color: #000;
	border-radius:40px;
	transform: translateY(-50%);
}
.linkBtnL a span:after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "\f054";
	font-family: "Font Awesome 6 Sharp";
	color: #FFF;
	font-size: 1.25rem;
	line-height: 100%;
	font-weight: 300;
	transform: translate(-50%,-50%);
}

.table01 {
	border-collapse:collapse;
	border-spacing: 0;
}
.table01 tr th {
	color: #c00d1c;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
	font-weight: bold;
	padding: 15px 20px;
	border-bottom: 3px solid #c00d1c;
}
.table01 tr td {
	width: 100%;
	padding: 15px 0 15px 20px;
	border-bottom: 3px solid #EEE;
}

.googleMap {
	position: relative;
	width: 100%;
	height: 400px;
}
.googleMap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* topVoice
------------------------------------------------------------------------------------ */
section#topVoice {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
section#topVoice div.topVoiceBg {
	position: absolute;
	top: 50%;
	left: -20px;
	width: 17%;
	transform: translateY(-50%);
	pointer-events: none;
}
section#topVoice div.sectionInner div.topVoiceWrapper {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	width: 80%;
	min-width: 800px;
	max-width: 1080px;
	margin: 0 auto;
	z-index: 1;
}
section#topVoice div.sectionInner div.topVoiceWrapper div {
	background-color: #FFF;
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(216,216,216,.5);
	pointer-events: none;
}


 /* topFlow
------------------------------------------------------------------------------------ */
section#topFlow {
	background-color: #e9e6e6;
	padding-top: 100px;
	padding-bottom: 100px;
}
section#topFlow div.sectionInner div.topFlowWrapper {
	width:100%;
	max-width:920px;
	margin: 0 auto;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock {
	position: relative;
	background-color: #FFF;
	padding: 30px 80px;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock:not(:first-child) {
	margin-top: 50px;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 18px solid #c00d1c;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h3 {
	display: flex;
	align-items: center;
	font-size: 1.375rem;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 15px;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h3 span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: auto;
	width: 32px;
	height: 32px;
	font-family: "Poppins", sans-serif;
	font-size: 1.2rem;
	line-height: 32px;
	font-weight: bold;
	color: #FFF;
	background-color: #c00d1c;
	border-radius: 50%;
	padding: 1px 0 0 1px;
	margin-right: 8px;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock p.topFlowStar {
	font-size: .75rem;
	line-height: 1.75;
	font-weight: bold;
	margin-top: 10px;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h4.topFlowTel {
	display: inline-block;
	font-size: 1.75rem;
	line-height: 1;
	font-weight: bold;
	color: #c00d1c;
	border: solid 1px #c00d1c;
	border-radius: 50px;
	padding: 20px 30px;
	margin: 20px auto 0;
}
section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h4.topFlowTel i {
	font-size: 1.5rem;
	line-height: 1;
	margin-right: 8px;
}


/* topContact
------------------------------------------------------------------------------------ */
section#topContact {
	position: relative;
	background-color: #c00d1c;
	overflow: hidden;
	padding-top: 150px;
	padding-bottom: 150px;
}
section#topContact div.topContactBg {
	position: absolute;
	inset: 0;
	opacity: 0.6;
	z-index: 1;
	pointer-events: none;
}
section#topContact div.sectionInner {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #FFF;
}
section#topContact div.sectionInner h2.topContactTitle {
	font-size: 2rem;
	line-height: 1.75;
	font-weight: bold;
	margin-bottom: 10px;
}
section#topContact div.sectionInner p.topContactBalloon {
	width: 420px;
	margin: 0 auto 15px;
}
section#topContact div.sectionInner h3.topContactTel {
	font-size: 4.25rem;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 40px;
}
section#topContact div.sectionInner h3.topContactTel i {
	font-size: 4rem;
	line-height: 1;
	margin-right: 8px;
}


@media screen and (max-width:1300px) and (min-width: 961px) {

/* footer PC画面幅小
------------------------------------------------------------------------------------ */
	footer {
		text-align: center;
	}
	footer div#footerTop {
		display: block;
	}
	footer div#footerTop div#footerRight {
		justify-content: center;
		margin-top: 40px;
	}
	footer div#footerTop div#footerRight ul {
		width:355px;
	}
	footer div#footerTop div#footerRight ul li {
		margin-right:40px;
	}
	footer div#footerTop div#footerRight ul li:nth-child(3) {
		margin-right:0;
	}
	footer div#footerTop div#footerRight div {
		margin-left:30px;
		padding-left:30px;
	}
	footer div#footerBottom {
		margin-top:40px;
	}
}



@media screen and (max-width:960px) {
	/* PC、SP表示切り替え SP
	------------------------------------------------------------------------------------ */
	.dNoSp {
		display: none !important;
	}
	.dNoPc {
		display: block !important;
	}

	/* pageTopアンカー
	------------------------------------------------------------------------------------ */
	div#pageTop {
	display: block;
	height: 48px;      /* headerの高さ */
	margin-top: -48px; /* 分引き上げる */
	}

	/* header SP
	------------------------------------------------------------------------------------ */
	header {
	}
	header div.headerWrapper div.headerInner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-grow: 1;
		background-color: #28292c;
		padding: 10px 15px 10px 20px;
	}
	header div.headerWrapper div.headerInner div.headerInnerRight {
		display: flex;
		align-items: center;
		gap: 30px;
		width: auto;
	}
	header div.headerWrapper div.headerInner h1 {
		width: 170px;
	}
	header div.headerWrapper div.headerInner div.headerInnerRight a.headerTelSp p {
		font-size: 0.625rem;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		color: #FFF;
	}
	header div.headerWrapper div.headerInner div.headerInnerRight a.headerTelSp p i {
		font-size: 1.75rem;
		line-height: 1;
		font-weight: bold;
		color: #FFF;
		margin-bottom: 5px;
	}

	/* ハンバーガーメニュー SP
		----------------------------------------------------------------------------------- */
	div#gnavWrapper {
		display : block;
	}
	.hamburger {
		position: relative;
		width: 45px;
		height: 42px;
		cursor: pointer;
		text-align: center;
		z-index: 999;
		transition: all 0.3s ease;
	}
	.hamburger span {
		position: relative;
		display : block;
		width: 40px;
		height: 18px;
		margin: 0 auto;
		transition: 0.3s ease-in-out;
	}
	.hamburger p.menuBtnText {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		font-size:0.625rem;
		line-height:1;
		letter-spacing: 0.1em;
		font-weight: bold;
		text-align: center;
		color: #FFF;
		white-space: nowrap;
	}
	.hamburger p.menuBtnText i {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		font-size:0.625rem;
		line-height:1;
		letter-spacing: 0.1em;
		font-weight: bold;
		text-align: center;
		color: #FFF;
		white-space: nowrap;
	}
	.hamburger span:before,
	.hamburger span:after {
		display : block;
		position: absolute;
		height: 3px;
		background-color: #FFF;
		transition: 0.3s ease-in-out;
	}
	.hamburger span:before {
		content: "";
		left: 0;
		top: 5px;
		width: 40px;
	}
	.hamburger span:after {
		content: "";
		left: 0;
		top: 18px;
		width: 40px;
	}
	/* ナビ開いてる時のボタン */
	.hamburger.active {
		height: 45px;
		transition: all 0.3s ease-in-out;
	}
	.hamburger.active span {
	}
	.hamburger.active p.menuBtnText {
		color: #c00d1c;
	}
	.hamburger.active span:before,
	.hamburger.active span:after {
		left: 50%;
		top: 50%;
		width: 40px;
		background-color: #c00d1c;
	}
	.hamburger.active span:before {
		transform: translateX(-50%) rotate(45deg);
	}
	.hamburger.active span:after {
		transform: translateX(-50%) rotate(-45deg);
	}

	/* ハンバーガー開いた時 */
	body.active {
		overflow: hidden;
	}
	body.active div#gnavWrapper nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	body.active div#gnavWrapper nav div#gnavWrapperInner {
		opacity: 1;
		visibility: visible;
	}
	div#gnavWrapper nav {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100%;
		background: transparent; /* メニュー全体のベース背景 */
		z-index: 998;
		overflow: hidden;
		box-sizing: border-box;
		transition: all 0.5s;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	/* 下の黒透過*/
	div#gnavWrapper nav::after {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(1, 1, 1, 0.6);
		z-index: 1;
		pointer-events: none;
	}

	div#gnavWrapper nav div#gnavWrapperInner {
		position: relative;
		width: 100%;
		height: auto;
		max-height: 100dvh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background-color: #e9e6e6;
		padding: 80px 20px 40px;
		box-sizing: border-box;
		z-index: 2;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper ul {
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper ul li {
		position: relative;
		padding: 20px 10px;
		border-bottom: solid 1px #c00d1c;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper ul li a {
		display: block;
		font-size: 1.125rem;
		line-height: 1;
		font-weight: 500;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper ul li a::after {
		position: absolute;
		top: 50%;
		right: 0;
		content: "\f054";
		font-family: "Font Awesome 6 Sharp";
		color: #c00d1c;
		font-size: 1.25rem;
		line-height: 100%;
		font-weight: 300;
		transform: translate(-50%,-50%);
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper a.hamburgerTelBtn {
		display: block;
		font-size: 1.75rem;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		color: #FFF;
		width: 300px;
		background-color: #c00d1c;
		padding: 15px;
		margin : 40px auto 20px;
		border-radius: 50px;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper a.hamburgerTelBtn i {
		font-size: 1.5rem;
		line-height: 1;
		margin-right: 5px;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper a.hamburgerTelBtn span {
		display: block;
		font-size: 1rem;
		line-height: 1;
		font-weight: 500;
		margin-bottom: 5px;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper a.hamburgerLtalicoBtn {
		position: relative;
		display: block;
		font-weight: 500;
		text-align: center;
		color: #FFF;
		width: 300px;
		background-color: #111;
		padding: 18px 15px;
		border-radius: 50px;
		margin: 0 auto 60px;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper a.hamburgerLtalicoBtn i {
		position: absolute;
		top: 50%;
		right: 25px;
		transform: translateY(-50%);
		font-weight: 500;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper h3 {
		font-size: 1.25rem;
		line-height: 1;
		font-weight: 500;
		margin-bottom: 20px;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper h3 span {
		display: inline-block;
		font-size: 2rem;
		line-height: 1;
		font-weight: 500;
		margin-left: 5px;
	}
	div#gnavWrapper nav div#gnavWrapperInner div#gnav div#gnavLinkWrapper p.hamburgerCopyright {
		line-height: 1;
		font-weight: 500;
		text-align: center;
		margin-top: 60px;
	}

	/* パンくずリスト
	------------------------------------------------------------------------------------ */
	section#breadcrumb {
		display: none;
	}

	/* contents SP
	------------------------------------------------------------------------------------ */
	div#contents {
		margin-top: 63px;
	}

	/* footer SP
	------------------------------------------------------------------------------------ */
	footer {
		position: relative;
		padding:40px 0;
	}
	footer div#footerTop {
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	footer div#footerTop div#footerLeft a {
		color: #FFF;
	}
	footer div#footerTop div#footerLeft a i {
		margin-left: 5px;
	}
	footer div#footerTop div#footerRight {
		display: none;
	}

	/* ページTOPへ戻るボタン
	------------------------------------------------------------------------------------ */
	footer div.footerInner div#toPageTopBtn {
		position: fixed;
		right: 10px;
		z-index: 99;
		visibility: visible;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	footer div.footerInner div#toPageTopBtn a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 70px;
		height: 70px;
		background-color: #28292c;
		border-radius: 50%;
	}
	footer div.footerInner div#toPageTopBtn a i {
		display: block;
		color: #f7f7f7;
	}
	footer div.footerInner div#toPageTopBtn a span {
		display: block;
		color: #FFF;
	}
	body.active footer div.footerInner div#toPageTopBtn {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	/* ページ内リンク集 SP
	------------------------------------------------------------------------------------ */
	ul.anchorLinkList {
		display: block;
	}
	ul.anchorLinkList li {
		width:100%;
		margin-right:0;
	}
	ul.anchorLinkList li:not(:first-child) {
		margin-top: 15px;
	}
	ul.anchorLinkList li a {
		max-width: 250px;
		margin: 0 auto;
	}


	/* 共通パーツ SP
	------------------------------------------------------------------------------------ */
	.title01 {
		font-size: 2rem;
		line-height: 1;
		margin-bottom: 60px;
	}
	.title01::after {
		top: 50px;
		width: 280px;
	}
	.title01 span {
		margin-top: 35px;
	}
	.table01 tr th {
		padding: 15px 20px 15px 0;
	}
	.table01 tr:first-child th {
		border-top: 3px solid #c00d1c;
	}
	.table01 tr:first-child td {
		border-top: 3px solid #EEE;
	}
	.title02 {
		font-size: 1.25rem;
		line-height: 175%;
		letter-spacing: 0.05em;
		margin-bottom: 40px;
	}
	.title04 {
		font-size: 2rem;
		line-height: 100%;
		padding: 30px 0;
		background: url("../images/title04_bg.png") left top no-repeat;
		background-size: contain;
		background-color: #c00d1c;
	}
	.title05 {
		margin-bottom: 50px;
	}
	.title05 .title05l {
		font-size: 3.25rem;
		line-height: 100%;
	}
	.title05 .title05l ruby[data-ruby]::after {
		transform: translate(-50%, -1.25em);
	}
	.title05 .title05m {
		font-size: 2rem;
		line-height: 135%;
	}
	.title05 .title05s {
		font-size: 1.25rem;
		line-height: 100%;
		margin-top: 20px;
	}

	.googleMap {
		height: 265px;
	}
	.linkBtnL a {
		max-width: 360px;
		font-size: 1.25rem;
		padding: 25px 0;
		background: none;
		background-color: #111;
		border-radius: 50px;
		box-sizing: border-box;
		margin: 50px auto 0;
	}
	.linkBtnL a span {
		top: 50%;
		right: 30px;
		width: 0;
		height: 0;
		background-color: none;
		border-radius:0;
	}

	/* topVoice SP
	------------------------------------------------------------------------------------ */
	section#topVoice {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	section#topVoice div.topVoiceBg {
		top: 24%;
		left: -40px;
		width: 25%;
	}
	section#topVoice div#topVoiceBg02 {
		top: 54%;
	}
	section#topVoice div#topVoiceBg03 {
		top: 84%;
	}
	section#topVoice div.sectionInner div.topVoiceWrapper {
		grid-template-columns: 1fr;
		gap: 15px;
		width: 100%;
		min-width: auto;
	}
	section#topVoice div.sectionInner div.topVoiceWrapper div {
		padding: 25px;
	}


	/* topFlow SP
	------------------------------------------------------------------------------------ */
	section#topFlow {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock {
		padding: 25px;
	}
	section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock:not(:last-child)::after {
		border-left: 16px solid transparent;
		border-right: 16px solid transparent;
		border-top: 14px solid #c00d1c;
	}
	section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h3 {
		font-size: 1.25rem;
		line-height: 1;
		margin-bottom: 10px;
	}
	section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h4.topFlowTel {
		padding: 0;
		margin: 15px auto 0;
	}
	section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h4.topFlowTel a {
		display: block;
		font-size: 1.5rem;
		line-height: 1;
		color: #c00d1c;
		padding: 18px 20px;
	}
	section#topFlow div.sectionInner div.topFlowWrapper div.topFlowBlock h4.topFlowTel i {
		font-size: 1.5rem;
		line-height: 1;
		margin-right: 8px;
	}

	/* topContact SP
	------------------------------------------------------------------------------------ */
	section#topContact {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	section#topContact div.sectionInner h2.topContactTitle {
		font-size: 1.5rem;
		line-height: 1;
		font-weight: bold;
		margin-bottom: 8px;
	}
	section#topContact div.sectionInner p.topContactBalloon {
		width: 100%;
		max-width: 340px;
		margin: 0 auto 15px;
	}
	section#topContact div.sectionInner h3.topContactTel {
		font-size: 2.5rem;
		line-height: 1;
		font-weight: bold;
		margin-bottom: 20px;
	}
	section#topContact div.sectionInner h3.topContactTel i {
		font-size: 2.125rem;
		line-height: 1;
		margin-right: 5px;
	}
	section#topContact div.sectionInner p.topContactSmallText {
		font-size: .75rem;
		line-height: 1;
	}
	section#topContact div.sectionInner div a.topContactBtn {
		position: relative;
		display: flex;
		justify-content: center;
		width: 280px;
		box-sizing: border-box;
		font-size: 1.25rem;
		line-height: 1;
		letter-spacing: 0.1em;
		font-weight: 500;
		color: #FFF;
		background-color: #111;
		padding: 20px 15px;
		margin: 25px auto 0;
		border-radius: 50px;
	}
	section#topContact div.sectionInner div a.topContactBtn::before {
		position: absolute;
		content: "\f054";
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		font-family: "Font Awesome 6 Sharp";
		font-size: 1rem;
		line-height: 1;
		font-weight: 500;
		color: #f7f7f7;
	}
}
