@charset "utf-8";

/*============

bottom.css

=============*/

/*============

Nav

=============*/

/*-------------

content-nav

--------------*/

.content-nav-list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

.content-nav-list__item {
	width: calc(100%/3 - 1.6rem);
	margin-top: 4rem;
}

.content-nav-list__item:not(:nth-of-type(3n+1)) {
    margin-left: 2.4rem;
}

.content-nav-list__item a {
	display: block;
	background-color: #fff;
	border-radius: 2rem;
	box-shadow: 0 0.6rem 1.2rem -0.2rem rgba(50, 50, 93, 0.25), 0 0.3rem 0.7rem -0.3rem rgba(0, 0, 0, 0.3); /* #22 */
	transition: all 0.3s;
	height: 100%;
}

.content-nav-list__item a:hover {
	box-shadow: 0 1.3rem 2.7rem -0.5rem rgba(50, 50, 93, 0.25), 0 0.8rem 1.6rem -0.8rem rgba(0, 0, 0, 0.3); /* #23 */
	transition: all 0.3s;
}

.content-nav-list__txt-unit {
	padding: 0 2rem 2rem 2rem;
}

.content-nav-list__title {
	font-size: max(2.0rem, 20px);
	margin-top: 2rem;
	font-weight: bold;
	text-align: center;
}

.content-nav-list__title img {
	margin-top: 0.4rem;
	max-height: 2.8rem;
	max-width: 100%;
}

.content-nav-list__title ruby rt {
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.2rem;
	transform: translateY(-0.3rem);
}

.content-nav-list__title ruby b {
	font-weight: bold;
}

.content-nav-list__txt {
	margin-top: 2rem;
}

.content-nav-list__img {
	height: 28rem;
	overflow: hidden;
	border-radius: 2rem 2rem 0 0;
}

.content-nav-list__img img {
	width: 100%;
	height: 28rem;
	object-fit: cover;
}

.content-nav-list__item a .content-nav-list__img img {
	transition: all 0.3s;
}

.content-nav-list__item a:hover .content-nav-list__img img {
	transform: scale(1.1);
	transition: all 0.3s;
}

/*-------------

secondary-nav

--------------*/

.secondary-nav-list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	border-bottom: solid 0.2rem #ccc;
}

.secondary-nav-list li {
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 2.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.secondary-nav-list li:not(:first-of-type) {
	border-left: solid 0.2rem #ccc;
}

.secondary-nav-list li a {
	display: block;
	padding: 2rem 0.5rem;
	width: 100%;
	height: 100%;
}

.secondary-nav-list__item--active {
	border-top: solid 0.2rem #ccc;
	border-bottom: solid 0.2rem #fff;
	margin-bottom: -0.2rem;
	position: relative;
}

.secondary-nav-list__item__small {
	display: block;
	font-size: max(1.6rem, 14px);
}

.secondary-nav-list__item--active:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 5.6rem;
	height: 0.4rem;
	background-color: #e60012;
}

.secondary-nav-list li:not(.secondary-nav-list__item--active) {
	background-color: #efefef;
	color: #999;
}

.secondary-nav-list__item--active:first-of-type {
	border-left: solid 0.2rem #ccc;
}

.secondary-nav-list__item--active:last-of-type {
	border-right: solid 0.2rem #ccc;
}

/*-------------

content-btn-nav

--------------*/

.content-btn-nav-list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

.content-btn-nav-list__btn {
	width: calc(100%/4 - 1.8rem);
	margin-top: 4rem;
}

.content-btn-nav-list__btn:not(:nth-of-type(4n+1)) {
	margin-left: 2.4rem;
}

.content-btn-nav-list__btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 1.2rem 3.2rem;
	background-color: #e60012;
	border-radius: 10rem;
	box-shadow: 0 0.6rem 1.2rem -0.2rem rgba(50, 50, 93, 0.25), 0 0.3rem 0.7rem -0.3rem rgba(0, 0, 0, 0.3); /* #22 */
	color: #fff;
	font-weight: bold;
	text-align: center;
	transition: all 0.3s;
}

.content-btn-nav-list__btn a:hover {
	box-shadow: 0 1.3rem 2.7rem -0.5rem rgba(50, 50, 93, 0.25), 0 0.8rem 1.6rem -0.8rem rgba(0, 0, 0, 0.3); /* #23 */
	text-decoration: underline;
	text-underline-offset: 0.2rem;
	transform: scale(1.03);
	transition: all 0.3s;
}

.content-btn-nav-list__btn a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2.4rem;
	margin: auto;
	width: 1rem;
	height: 1rem;
	transform: rotate(45deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: all 0.3s;
}

.content-btn-nav-list__btn a:hover:after {
	transform: rotate(45deg) scale(1.3);
	transition: all 0.3s;
}

/*============

Layout

=============*/

/*-------------

font

--------------*/

.content {
	color: #111;
}

/*-------------

section

--------------*/

.section {
	padding: 0 2.4rem;
	margin-top: 12rem;
}

.section__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.lead-box + .section {
	margin-top: 8rem;
}

/*-------------

visual-box

--------------*/

.visual-box {
	position: relative;
	height: 40rem;
}

.visual-box__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visual-box__txt-unit {
	position: absolute;
	bottom: 2%;
	padding: 0 3.2rem;
	left: 0;
	right: 0;
	margin: auto;
}

.visual-box__title {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.4), -0.2rem -0.2rem 0 rgba(0, 0, 0, 0.4),
						-0.2rem 0.2rem 0 rgba(0, 0, 0, 0.4), 0.2rem -0.2rem 0 rgba(0, 0, 0, 0.4),
						0px 0.2rem 0 rgba(0, 0, 0, 0.4), 0 -0.2rem 0 rgba(0, 0, 0, 0.4),
						-0.2rem 0 0 rgba(0, 0, 0, 0.4), 0.2rem 0 0 rgba(0, 0, 0, 0.4),
						0 0 2rem rgba(0, 0, 0, 0.6), 0 0 2rem rgba(0, 0, 0, 0.2);
}

.visual-box__title--black {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 2.4rem;
	font-weight: bold;
	color: #111;
	text-shadow: 0.2rem 0.2rem 0 rgba(255, 255, 255, 0.9), -0.2rem -0.2rem 0 rgba(255, 255, 255, 0.9),
						-0.2rem 0.2rem 0 rgba(255, 255, 255, 0.9), 0.2rem -0.2rem 0 rgba(255, 255, 255, 0.9),
						0px 0.2rem 0 rgba(255, 255, 255, 0.9), 0 -0.2rem 0 rgba(255, 255, 255, 0.9),
						-0.2rem 0 0 rgba(255, 255, 255, 0.9), 0.2rem 0 0 rgba(255, 255, 255, 0.9),
						0 0 2rem rgba(255, 255, 255, 0.8), 0 0 2rem rgba(255, 255, 255, 0.8);
}

/* visual-box__title ruby */

.visual-box__title ruby rt,
.visual-box__title--black ruby rt {
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.2rem;
}

.visual-box__title ruby b,
.visual-box__title--black ruby b {
	font-weight: bold;
}

/*-------------

lead-box

--------------*/

.lead-box {
	padding: 0 2.4rem;
}

.lead-box__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/*-------------

soon-box

--------------*/

.soon-box {
	padding: 0 2.4rem;
	margin-top: 12rem;
}

.soon-box__inner {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	border-top: solid 0.2rem #ddd;
	border-bottom: solid 0.2rem #ddd;
	padding: 6rem 0;
}

.soon-box__title {
	position: relative;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	color: #666;
	padding-top: 6rem;
}

.soon-box__title:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 4rem;
	height: 4rem;
	background: url(../../../img/clock_ic04.svg) no-repeat center left;
	background-size: 4.0rem auto;
}

.soon-box__txt {
	text-align: center;
	margin-top: 2rem;
	color: #666;
}

/*-------------

inquiry-box

--------------*/

.inquiry-box__unit {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

/* inquiry-box__title */

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

.inquiry-box__title span {
	position: relative;
	font-size: 2.4rem;
	font-weight: bold;
	padding-bottom: 1.6rem;
	border-bottom: 3px solid #e60012;
}

.inquiry-box__title span:before,
.inquiry-box__title span:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	margin: auto;
}

.inquiry-box__title span:before {
	bottom: -1.4rem;
	border-style: solid;
	border-color: #e60012 transparent transparent transparent;
	border-width: 1.4rem 1.4rem 0;
}

.inquiry-box__title span:after {
	bottom: -1.0rem;
	border-style: solid;
	z-index: 1;
	border-color: #fff transparent transparent transparent;
	border-width: 1.4rem 1.4rem 0;
}

.inquiry-box__title + .inquiry-box__txt,
.inquiry-box__title + .inquiry-box__btn {
	margin-top: 6rem;
}

.inquiry-box__title .nowrap {
	font-weight: bold;
}

.inquiry-box__second-title {
	text-align: center;
	margin-top: 4rem;
}

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

.inquiry-box__txt ruby rt {
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.2rem;
}

.inquiry-box__note {
	text-align: center;
	font-size: 14px;
}

/* inquiry-box__btn */

.inquiry-box__btn {
	margin-top: 3.2rem;
	text-align: center;
}

.inquiry-box__btn a {
	position: relative;
	display: inline-block;
	min-width: 32rem;
	height: 100%;
	padding: 2.4rem 4.8rem;
	background-color: #e60012;
	border-radius: 10rem;
	box-shadow: 0 0.6rem 1.2rem -0.2rem rgba(50, 50, 93, 0.25), 0 0.3rem 0.7rem -0.3rem rgba(0, 0, 0, 0.3); /* #22 */
	color: #fff;
	font-weight: bold;
	transition: all 0.3s;
}

.inquiry-box__btn a:hover {
	box-shadow: 0 1.3rem 2.7rem -0.5rem rgba(50, 50, 93, 0.25), 0 0.8rem 1.6rem -0.8rem rgba(0, 0, 0, 0.3); /* #23 */
	text-decoration: underline;
	text-underline-offset: 0.2rem;
	transform: scale(1.03);
	transition: all 0.3s;
}

.inquiry-box__btn a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2.4rem;
	margin: auto;
	width: 1rem;
	height: 1rem;
	transform: rotate(45deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: all 0.3s;
}

.inquiry-box__btn a:hover:after {
	transform: rotate(45deg) scale(1.3);
	transition: all 0.3s;
}

/*============

Parts

=============*/

/* external-link-btn */

.external-link-btn {
	margin-top: 3.2rem;
	text-align: center;
}

.external-link-btn a {
	position: relative;
	display: inline-block;
	min-width: 32rem;
	height: 100%;
	padding: 2.4rem 4.8rem;
	background-color: #e60012;
	border-radius: 10rem;
	box-shadow: 0 0.6rem 1.2rem -0.2rem rgba(50, 50, 93, 0.25), 0 0.3rem 0.7rem -0.3rem rgba(0, 0, 0, 0.3); /* #22 */
	color: #fff;
	font-weight: bold;
	transition: all 0.3s;
}

.external-link-btn a:hover {
	box-shadow: 0 1.3rem 2.7rem -0.5rem rgba(50, 50, 93, 0.25), 0 0.8rem 1.6rem -0.8rem rgba(0, 0, 0, 0.3); /* #23 */
	text-decoration: underline;
	text-underline-offset: 0.2rem;
	transform: scale(1.03);
	transition: all 0.3s;
}

.external-link-btn a:after {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 2.4rem;
	margin: auto;
	width: 16px;
	height: 16px;
	background: url(../img/external_ic01.svg) no-repeat center right;
	background-size: max(1.6rem, 14px) auto;
	transition: all 0.3s;
}

.external-link-btn a:hover:after {
	transform: scale(1.3);
	transition: all 0.3s;
}

/*-------------

tel-link

--------------*/

.tel-link {
	font-size: 3.2rem;
	font-weight: bold;
}

.tel-link span {
	position: relative;
	padding-left: 3.2rem;
	display: inline-block;
	word-break: break-all;
}

.tel-link span:before {
	position: absolute;
	content: "";
	top: 1.5rem;
	left: 0;
	background: url(../../img/tel_ic02.svg) no-repeat center left;
	background-size: 2.6rem auto;
	width: 2.6rem;
	height: 2.6rem;
}

.tel-link a:hover {
	text-decoration: underline;
	text-underline-offset: 0.1rem;
}

/*-------------

mail-link

--------------*/

.mail-link {
	font-size: max(1.8rem, 16px);
	font-weight: bold;
}

.mail-link a {
	position: relative;
	padding-left: 3.2rem;
	display: inline-block;
	word-break: break-all;
}

.mail-link a:before {
	position: absolute;
	content: "";
	top: 0.5rem;
	left: 0;
	background: url(../../img/mail_ic03.svg) no-repeat center left;
	background-size: 2.6rem auto;
	width: 2.6rem;
	height: 2.6rem;
}

.mail-link a:hover {
	text-decoration: underline;
	text-underline-offset: 0.1rem;
}

/*-------------

form-link

--------------*/

.form-link {
	font-size: max(1.8rem, 16px);
	font-weight: bold;
}

.form-link a {
	position: relative;
	padding-left: 3.2rem;
	display: inline-block;
	word-break: break-all;
}

.form-link a:before {
	position: absolute;
	content: "";
	top: 0.2rem;
	left: 0;
	background: url(../../img/form_ic02.svg) no-repeat center center;
	background-size: 2rem auto;
	width: 2.6rem;
	height: 2.6rem;
}

.form-link a:hover {
	text-decoration: underline;
	text-underline-offset: 0.1rem;
}

/*-------------

list-link

--------------*/

.list-link a {
	position: relative;
	padding-right: 4rem;
}

.list-link a:hover {
	text-decoration: underline;
	text-underline-offset: 0.1rem;
}

.list-link a:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 3rem;
	height: 3rem;
	background-color: #e60012;
	transition: all 0.3s;
}

.list-link a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.2rem;
	margin: auto;
	width: 1rem;
	height: 1rem;
	transform: rotate(45deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: all 0.3s;
}

.list-link a:hover:before {
	transform: scale(1.1);
	transition: all 0.3s;
}

.list-link a:hover:after {
	transform: rotate(45deg) scale(1.3);
	transition: all 0.3s;
}


/*-------------

nowrap

--------------*/

.nowrap,
.nowrap_pc,
.nowrap_pc_tablet {
	white-space: nowrap;
}

/*-------------

content-title

--------------*/

.content-title {
	position: relative;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	padding-top: 6.0rem;
}

.content-title:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 2rem;
	height: 4.8rem;
	background-color: #e60012;
}

.content-title ruby rt {
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.2rem;
}

.content-title ruby b {
	font-weight: bold;
	color: #e60012;
}

.content-title__txt {
	display: block;
	font-size: max(2.0rem, 20px);
	letter-spacing: 0.2rem;
}

.content-txt {
	text-align: center;
	margin-top: 1rem;
}

.content-title + .content-txt {
	margin-top: 4rem;
}

/*-------------

content-second-title

--------------*/

.content-second-title {
	position: relative;
	font-size: max(2.8rem, 24px);
	font-weight: bold;
	text-align: center;
	padding-top: 4rem;
}

.content-second-title:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 5.6rem;
	height: 0.8rem;
	background-color: #e60012;
}

.content-second-title ruby rt {
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.2rem;
}

.content-second-title__txt {
	display: block;
	font-size: max(2.0rem, 20px);
	letter-spacing: 0.2rem;
}

.content-second-txt {
	text-align: center;
	margin-top: 1rem;
}

.content-second-title + .content-second-txt {
	margin-top: 4rem;
}

.content-second-lead {
	font-size: max(2.0rem, 20px);
	font-weight: bold;
	text-align: center;
	margin-top: 4rem;
}

.content-second-lead__line {
	font-weight: bold;
	background: linear-gradient(transparent 70%, #fcc 0%);
}

/*-------------

content-third-title

--------------*/

.content-third-title {
	font-size: max(2.6rem, 22px);
	font-weight: bold;
	position: relative;
	padding-left: 2.6rem;
	margin: 0.5rem 0 2.5rem 0;
}

.content-third-title:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0.6rem;
	height: calc(100% + 1rem);
	background-color: #e60012;
}

.content-third-txt {
	margin-top: 1rem;
}

.content-third-title + .content-third-txt {
	margin-top: 4rem;
}

/*-------------

content-fourth-title

--------------*/

.content-fourth-title {
	font-size: max(2.0rem, 20px);
	font-weight: bold;
	padding-left: 2rem;
	position: relative;
}

.content-fourth-title:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background-color: #e60012;
}

.content-fourth-txt {
	margin-top: 1rem;
}

.content-fourth-title + .content-fourth-txt {
	margin-top: 2rem;
}

/*============

List

=============*/

/*-------------

note-list

--------------*/

.note-list > li {
	position: relative;
	padding-left: 16px;
	text-indent: 0;
}

.note-list > li:before {
	position: absolute;
	content: "※";
	left: 0;
}

/*-------------

disc-list

--------------*/

.disc-list > li {
	position: relative;
	padding-left: 1.6rem;
	text-indent: 0;
}

.disc-list > li:before {
	position: absolute;
	content: "";
	top: 1.2rem;
	left: 0;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background-color: #666;
}

/*-------------

number-list

--------------*/

.number-list > li {
	position: relative;
	list-style: decimal inside;
	text-indent: -2.2rem;
	padding-left: 2.2rem;
}

/*-------------

number-circle-list

--------------*/

.number-circle-list > li {
	position: relative;
	padding-left: 2.2rem;
	text-indent: 0;
}

.number-circle-list > li:before {
	position: absolute;
	top: 0;
	left: 0;
}

.number-circle-list > li:nth-of-type(1):before {
	content: "\02460";
}

.number-circle-list > li:nth-of-type(2):before {
	content: "\02461";
}

.number-circle-list > li:nth-of-type(3):before {
	content: "\02462";
}

.number-circle-list > li:nth-of-type(4):before {
	content: "\02463";
}

.number-circle-list > li:nth-of-type(5):before {
	content: "\02464";
}

.number-circle-list > li:nth-of-type(6):before {
	content: "\02465";
}

.number-circle-list > li:nth-of-type(7):before {
	content: "\02466";
}

.number-circle-list > li:nth-of-type(8):before {
	content: "\02467";
}

.number-circle-list > li:nth-of-type(9):before {
	content: "\02468";
}

.number-circle-list > li:nth-of-type(10):before {
	content: "\02469";
}

/*============

Note

=============*/

/*-------------

note-txt

--------------*/

.note-txt {
	padding-left: 1.6rem;
	text-indent: -1.6rem;
}

/*-------------

note-small-txt

--------------*/

.note-small-txt {
	padding-left: 1.6rem;
	text-indent: -1.6rem;
	font-size: 14px;
}

/*============

media queries

=============*/

/*-------------

タブレット・スマホ

--------------*/

@media (max-width: 959px) {
	/* content-nav-list */
	.content-nav-list__item {
		width: calc(100%/2 - 1.6rem);
	}

	.content-nav-list__item:not(:nth-of-type(3n+1)) {
		margin-left: 0;
	}

	.content-nav-list__item:nth-of-type(even) {
		margin-left: 2.4rem;
	}

	.content-nav-list__img,
	.content-nav-list__img img {
		height: auto;
	}

	/* content-btn-nav-list */
	.content-btn-nav-list__btn {
		width: calc(100%/2 - 1.2rem);
	}

	.content-btn-nav-list__btn:not(:nth-of-type(4n+1)) {
		margin-left: 0;
	}

	.content-btn-nav-list__btn:nth-of-type(even) {
		margin-left: 2.4rem;
	}

	.nowrap_pc {
		white-space: normal;
	}
}

/*-------------

スマホ

--------------*/

@media (max-width: 519px) {
	/* content-nav-list */
	.content-nav-list__item {
		width: 100%;
	}

	.content-nav-list__item:nth-of-type(even) {
		margin-left: 0;
	}

	.content-nav-list__title img {
		max-height: 4.0rem;
	}

	/* content-btn-nav-list */
	.content-btn-nav-list__btn {
		width: 100%;
	}

	.content-btn-nav-list__btn:nth-of-type(even) {
		margin-left: 0;
	}

	/* content-title-txt */
	.content-txt {
		text-align: left;
	}

	.content-second-txt {
		text-align: left;
	}

	.nowrap_pc_tablet {
		white-space: normal;
	}

	.inquiry-box__txt {
		text-align: left;
	}

	.disc-list > li:before {
		top: 1.6rem;
	}
}
