/* ---------------------------------------------------
  ipd__lead
--------------------------------------------------- */
.ipd__lead {
	background-image: url(../img/lead-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -1px;
	padding: 110px 0;
	line-height: 2;
	color: rgb(var(--wht));
	font-size: 24px;
	font-weight: 800;
	text-align: center;
}

@media screen and (max-width: 1366px) {
	.ipd__lead {
		padding: 8.053vw 0;
		font-size: 1.757vw;
	}
}

@media screen and (max-width: 768px) {
	.ipd__lead {
		background-image: url(../img/lead-bg_sp.webp);
		padding: 10.667vw 0;
		font-size: 3.733vw;
	}
}

/* ---------------------------------------------------
  ipd__nav
--------------------------------------------------- */
.ipd__nav {
	background-color: rgb(var(--gre01));
	padding: 80px 0;
}

.ipd__nav--title {
	background-image: url(../img/nav-title-bg.svg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 350px auto;
	margin-bottom: 30px;
	padding-bottom: 25px;
	color: rgb(var(--wht));
	font-size: 30px;
	font-weight: 800;
	text-align: center;
}

.ipd__nav--list {
	margin: 0 auto 60px;
	width: 870px;
	display: flex;
	justify-content: space-between;
}

.ipd__nav--item {
	background-color: rgb(var(--wht));
	padding: 20px 20px 30px;
	width: 210px;
	color: rgb(var(--gre02));
	border-radius: 6px;
	display: flex;
	flex-direction: column;
}

.ipd__nav--item .title {
	margin-bottom: 10px;
	line-height: 1.35;
	font-size: 16px;
	font-weight: 800;
	text-align: center;
}

.ipd__nav--item .image {
	margin: 0 auto 10px;
	width: 120px;
}

.ipd__nav--item .text {
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 14px;
}

.ipd__nav--item .text b {
	font-weight: 800;
}

.ipd__nav--item .link-button {
	background-color: rgb(var(--gre03));
	margin-top: auto;
	color: rgb(var(--wht));
	width: 100%;
	height: 25px;
	font-size: 12px;
	border-radius: 4px;
}

.ipd__nav--item .link-button::before {
	background-color: rgb(var(--gre03));
	width: 15px;
	height: 12px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

/* external */
.ipd__nav--external {
	color: rgb(var(--wht));
	text-align: center;
}

.ipd__nav--external-title {
	margin-bottom: 18px;
	line-height: 1.4;
	font-size: 23px;
	font-weight: 800;
}

.ipd__nav--external-title span {
	display: block;
}

.ipd__nav--external-link {
	background-image: url(../img/icon-link.svg);
	background-position: center right 14px;
	background-repeat: no-repeat;
	background-size: 24px auto;
	width: 310px;
	height: 45px;
	font-size: 18px;
	border: solid 2px rgb(var(--wht));
	border-radius: 10px;
}

@media screen and (max-width: 1366px) {
	.ipd__nav {
		padding: 5.857vw 0;
	}

	.ipd__nav--title {
		background-size: 25.622vw auto;
		margin-bottom: 2.196vw;
		padding-bottom: 1.83vw;
		font-size: 2.196vw;
	}

	.ipd__nav--list {
		margin-bottom: 4.392vw;
		width: 63.69vw;
	}

	.ipd__nav--item {
		padding: 1.464vw 1.464vw 2.196vw;
		width: 15.373vw;
		border-radius: 0.439vw;
	}

	.ipd__nav--item .title {
		margin-bottom: 0.732vw;
		font-size: 1.171vw;
	}

	.ipd__nav--item .image {
		margin-bottom: 0.732vw;
		width: 8.785vw;
	}

	.ipd__nav--item .text {
		margin-bottom: 0.732vw;
		font-size: 1.025vw;
	}

	.ipd__nav--item .link-button {
		height: 1.83vw;
		font-size: 0.878vw;
		border-radius: 0.293vw;
	}

	.ipd__nav--item .link-button::before {
		width: 1.098vw;
		height: 0.878vw;
		bottom: -0.732vw;
	}

	.ipd__nav--external-title {
		margin-bottom: 1.318vw;
		font-size: 1.684vw;
	}

	.ipd__nav--external-link {
		background-position: center right 1.025vw;
		background-size: 1.757vw auto;
		width: 22.694vw;
		height: 3.294vw;
		font-size: 1.318vw;
		border-width: 0.146vw;
		border-radius: 0.732vw;
	}
}

@media screen and (max-width: 768px) {
	.ipd__nav {
		padding: 8vw 0;
	}

	.ipd__nav--title {
		background-size: 50.667vw auto;
		margin-bottom: 4vw;
		padding-bottom: 4.8vw;
		font-size: 4.8vw;
	}

	.ipd__nav--list {
		margin-bottom: 8vw;
		width: 88.8vw;
		display: block;
	}

	.ipd__nav--item {
		padding: 2.667vw 4vw 4vw;
		width: 100%;
		border-radius: 6px;
		display: grid;
		grid-template-columns: 21.333vw minmax(0, 1fr);
		grid-template-rows: auto 1fr auto;
		grid-template-areas:
			"image title"
			"image text"
			"image button";
		column-gap: 3.2vw;
	}

	.ipd__nav--item:not(:last-of-type) {
		margin-bottom: 1.6vw;
	}

	.ipd__nav--item .title {
		margin-bottom: 1.6vw;
		font-size: 2.933vw;
		text-align: left;
		grid-area: title;
	}

	.ipd__nav--item .image {
		margin: 0;
		width: 100%;
		grid-area: image;
	}

	.ipd__nav--item .text {
		margin-bottom: 1.6vw;
		line-height: normal;
		font-size: 2.4vw;
		grid-area: text;
	}

	.ipd__nav--item .link-button {
		height: 5.333vw;
		font-size: 2.4vw;
		border-radius: 1.067vw;
		grid-area: button;
	}

	.ipd__nav--item .link-button::before {
		width: 4vw;
		height: 3.2vw;
		bottom: -2.667vw;
	}

	/* external */
	.ipd__nav--external-title {
		margin-bottom: 4.8vw;
		font-size: 4.267vw;
	}

	.ipd__nav--external-link {
		background-position: center right 3.733vw;
		background-size: 6.4vw auto;
		width: 82.667vw;
		height: 12vw;
		font-size: 4.8vw;
		border-width: 0.533vw;
		border-radius: 2.667vw;
	}
}

/* ---------------------------------------------------
  practice
--------------------------------------------------- */
.practice {
	padding: 80px 0;
}

.practice__content {
	margin: 0 auto;
	width: 1120px;
}

.practice__content--title {
	background-color: rgb(var(--wht));
	margin-bottom: 40px;
	height: 48px;
	line-height: 1;
	color: rgb(var(--gre03));
	font-size: 25px;
	font-weight: 800;
	text-align: center;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.practice__content--title span {
	line-height: 1;
	font-weight: inherit;
	display: block;
	transform: translateY(-1px);
}

.practice__list {
	display: flex;
	flex-wrap: wrap;
}

.practice__list--item {
	background-color: rgb(var(--wht));
	margin-bottom: 50px;
	padding: 25px;
	width: 360px;
	color: rgb(var(--gre03));
	font-size: 14px;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
}

.practice__list--item:not(:nth-child(3n)) {
	margin-right: calc((100% - 360px * 3) / 2);
}

.practice__list--item.is-hidden {
	display: none;
}

.practice__image {
	margin-bottom: 15px;
}

.practice__area {
	background-color: rgb(var(--gre03));
	margin-bottom: 15px;
	height: 24px;
	color: rgb(var(--wht));
	font-size: 16px;
	font-weight: 800;
	display: flex;
	justify-content: center;
	align-items: center;
}

.practice__name {
	margin-bottom: 13px;
	line-height: normal;
	font-size: 20px;
	font-weight: 800;
	text-align: center;
}

.practice__recommend {
	margin-bottom: 15px;
	padding: 18px 0 15px;
	border-top: solid 1px rgb(var(--gre03));
	border-bottom: solid 1px rgb(var(--gre03));
}

.practice__recommend--title {
	background-color: rgb(var(--gre03));
	margin-bottom: 5px;
	width: 75px;
	height: 16px;
	color: rgb(var(--wht));
	font-size: 10px;
	font-weight: 800;
	display: flex;
	justify-content: center;
	align-items: center;
}

.practice__recommend--list {
	font-weight: 800;
}

.practice__recommend--list li {
	line-height: normal;
	display: flex;
	align-items: center;
}

.practice__recommend--list li::before {
	background-color: rgb(var(--gre03));
	margin: 0 5px;
	width: 5px;
	height: 10px;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	display: block;
	flex-shrink: 0;
	content: "";
}

.practice__description {
	margin-bottom: 18px;
	line-height: normal;
}

.practice__nearby {
	margin-bottom: 15px;
	padding-top: 15px;
	border-top: solid 1px rgb(var(--gre03));
	display: flex;
}

.practice__nearby--title {
	margin-right: 10px;
	white-space: nowrap;
}

.practice__nearby--list a {
	font-weight: 800;
}

.practice__info--title {
	margin-bottom: 15px;
	height: 30px;
	font-size: 16px;
	font-weight: 800;
	border: solid 2px rgb(var(--gre03));
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.practice__info {
	line-height: normal;
}

.practice__info dt::before {
	content: "●";
}

.practice__info--content {
	margin-bottom: 15px;
	line-height: normal;
}

.practice__info--address-text {
	display: inline-block;
}

.practice__info--map {
	background-image: url(../img/icon-map.svg);
	background-position: left top 5px;
	background-repeat: no-repeat;
	background-size: 10px auto;
	padding-left: 15px;
}

.practice__list--item .link-button {
	background-color: rgb(var(--gre03));
	margin-top: auto;
	width: 100%;
	height: 30px;
	color: rgb(var(--wht));
	font-size: 16px;
	border-radius: 4px;
}

.practice__button {
	width: 100%;
	height: 48px;
	color: rgb(var(--wht));
	font-size: 20px;
	font-weight: 800;
	border: solid 2px rgb(var(--wht));
	border-radius: 10px;
	position: relative;
}

.practice__button::after {
	background-image: url(../img/arrow-button.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	aspect-ratio: 12 / 8;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	pointer-events: none;
	content: "";
}

.practice__button.is-open::after {
	transform: translateY(-50%) rotate(180deg);
}

/* wide */
#wide {
	background-color: rgb(var(--gre02));
}

/* skill */
#skill {
	background-color: rgb(var(--gre03));
}

/* round */
#round {
	background-color: rgb(var(--gre04));
}

/* shop */
#shop {
	background-color: rgb(var(--gre05));
}

@media screen and (max-width: 1366px) {
	.practice {
		padding: 5.857vw 0;
	}

	.practice__content {
		width: 81.991vw;
	}

	.practice__content--title {
		margin-bottom: 2.928vw;
		height: 3.514vw;
		font-size: 1.83vw;
		border-radius: 0.732vw;
	}

	.practice__content--title span {
		transform: translateY(-0.073vw);
	}

	.practice__list--item {
		margin-bottom: 3.66vw;
		padding: 1.83vw;
		width: 26.354vw;
		font-size: 1.025vw;
		border-radius: 0.439vw;
	}

	.practice__list--item:not(:nth-child(3n)) {
		margin-right: calc((100% - 26.354vw * 3) / 2);
	}

	.practice__image {
		margin-bottom: 1.098vw;
	}

	.practice__area {
		margin-bottom: 1.098vw;
		height: 1.757vw;
		font-size: 1.171vw;
	}

	.practice__name {
		margin-bottom: 0.952vw;
		font-size: 1.464vw;
	}

	.practice__recommend {
		margin-bottom: 1.098vw;
		padding: 1.318vw 0 1.098vw;
		border-top-width: 0.073vw;
		border-bottom-width: 0.073vw;
	}

	.practice__recommend--title {
		margin-bottom: 0.366vw;
		width: 5.491vw;
		height: 1.171vw;
		line-height: 1;
		font-size: 0.732vw;
	}

	.practice__recommend--list li::before {
		margin: 0 0.366vw;
		width: 0.366vw;
		height: 0.732vw;
	}

	.practice__description {
		margin-bottom: 1.318vw;
	}

	.practice__nearby {
		margin-bottom: 1.098vw;
		padding-top: 1.098vw;
	}

	.practice__nearby--title {
		margin-right: 0.732vw;
	}

	.practice__info--title {
		margin-bottom: 1.098vw;
		height: 2.196vw;
		font-size: 1.171vw;
		border-width: 0.146vw;
		border-radius: 0.293vw;
	}

	.practice__info--content {
		margin-bottom: 1.098vw;
	}

	.practice__info--map {
		background-position: left top 0.366vw;
		background-size: 0.732vw auto;
		padding-left: 1.098vw;
	}

	.practice__list--item .link-button {
		height: 2.196vw;
		font-size: 1.171vw;
		border-radius: 0.293vw;
	}

	.practice__button {
		height: 3.514vw;
		font-size: 1.464vw;
		border-width: 0.146vw;
		border-radius: 0.732vw;
	}

	.practice__button::after {
		width: 0.878vw;
		right: 2.196vw;
	}
}

@media screen and (max-width: 768px) {
	.practice {
		padding: 8vw 0;
	}

	.practice__content {
		width: 91.733vw;
	}

	.practice__content--title {
		margin: 0 auto 4.8vw;
		padding: 2.667vw 0;
		width: 91.733vw;
		/* height: 12.8vw; */
		height: auto;
		font-size: 3.467vw;
		letter-spacing: -0.005em;
		border-radius: 2.667vw;
	}

	.practice__content--title span {
		line-height: 1.4;
		transform: translateY(0);
	}

	.practice__list--item {
		margin-bottom: 4.8vw;
		padding: 2.133vw;
		width: 44.533vw;
		font-size: 2.4vw;
		border-radius: 1.6vw;
	}

	.practice__list--item:not(:nth-child(3n)) {
		margin-right: auto;
	}

	.practice__list--item:not(:nth-child(even)) {
		margin-right: calc(100% - 44.533vw * 2);
	}

	.practice__image {
		margin-bottom: 1.333vw;
	}

	.practice__area {
		margin-bottom: 2.667vw;
		height: 4vw;
		font-size: 2.4vw;
	}

	.practice__name {
		margin-bottom: 2.667vw;
		font-size: 2.667vw;
	}

	.practice__recommend {
		margin-bottom: 2.133vw;
		padding: 3.467vw 0 2.667vw;
		border-top-width: 0.267vw;
		border-bottom-width: 0.267vw;
	}

	.practice__recommend--title {
		margin-bottom: 1.333vw;
		width: 16vw;
		height: 4vw;
		font-size: 2.133vw;
	}

	.practice__recommend--list li::before {
		margin: 0 0.8vw;
		width: 1.067vw;
		height: 1.867vw;
	}

	.practice__description {
		margin-bottom: 4vw;
	}

	.practice__nearby {
		margin-bottom: 4vw;
		padding-top: 4vw;
		display: block;
	}

	.practice__nearby--title {
		margin-right: 0;
	}

	.practice__info--title {
		margin-bottom: 2.667vw;
		height: 5.867vw;
		font-size: 2.933vw;
		border-width: 0.533vw;
		border-radius: 1.067vw;
	}

	.practice__info--content {
		margin-bottom: 2.667vw;
	}

	.practice__info--address-text {
		display: block;
	}

	.practice__info--map {
		background-position: left top 0.8vw;
		background-size: 1.867vw auto;
		padding-left: 2.667vw;
	}

	.practice__list--item .link-button {
		height: 5.867vw;
		font-size: 2.933vw;
		border-radius: 1.067vw;
	}

	.practice__button {
		width: 100%;
		height: 9.333vw;
		font-size: 3.467vw;
		border-radius: 2.667vw;
	}

	.practice__button::after {
		width: 3.2vw;
		right: 5.333vw;
	}
}

/* ---------------------------------------------------
  banner
--------------------------------------------------- */
.banner {
	background-color: rgb(var(--blk));
	color: rgb(var(--wht));
	padding: 60px 0;
	text-align: center;
}

.banner__title {
	margin-bottom: 40px;
	line-height: normal;
	font-size: 22px;
	font-weight: 800;
}

.banner__list {
	display: flex;
	justify-content: center;
}

.banner__list--item {
	margin: 0 10px;
}

.banner__list--item a img {
	width: auto;
	height: 60px;
}

@media screen and (max-width: 1366px) {
	.banner {
		padding: 4.392vw 0;
	}

	.banner__title {
		margin-bottom: 2.928vw;
		font-size: 1.611vw;
	}

	.banner__list--item {
		margin: 0 0.732vw;
	}

	.banner__list--item a img {
		height: 4.392vw;
	}
}

@media screen and (max-width: 768px) {
	.banner {
		padding: 10.667vw 0;
	}

	.banner__title {
		margin-bottom: 5.333vw;
		font-size: 4.8vw;
	}

	.banner__list {
		display: block;
	}

	.banner__list--item {
		margin: 0;
	}

	.banner__list--item:not(:last-of-type) {
		margin-bottom: 4vw;
	}

	.banner__list--item a img {
		height: 10.667vw;
	}
}