@charset "UTF-8";
/* ============================================ */
/* ドロップダウン */
/* ============================================ */
.wrap-dropdown {
	margin-top: -1px;
	overflow: hidden;
}
.heading-dropdown {
	background: #fff;
	border-top: 1px solid var(--gray-c);
	border-bottom: 1px solid var(--gray-c);
	padding: 1em 3em 1em 1em;
	font-weight: bold;
	font-size: 1.25em;
	display: flex;
	align-items: center;
	position: relative;
	transition: all .3s ease;
}
.heading-dropdown span:first-child {
	display: inline-flex;
	align-items: center;
}
.heading-dropdown span.sub {
	background: var(--white);
	border: 1px solid var(--gray-c);
	font-size: .75em;
	font-weight: 500;
	padding: .25em .5em;
}
.heading-dropdown:after,
.heading-dropdown:before {
    display: block;
    content: '';
    background-color: var(--red);
    position: absolute;
    width: 2px;
    height: 14px;
    top: calc(50% - .25em);
    right: 1.5em;
	transition: .3s;
}
.heading-dropdown:before {
	transform: rotate(90deg);
}
.heading-dropdown.active:after{
    transform: rotate(45deg);
}
.heading-dropdown.active:before{
    transform: rotate(135deg);
}
.heading-dropdown > *:first-child {
	width: 3em;
	font-weight: bold;
}
.heading-dropdown > *:last-child{
	width: calc(100% - 3em);
}
.heading-dropdown.active {
	background: rgba(var(--red-rgb), .1);
	border-top: 1px solid var(--red);
	border-bottom: 1px solid var(--red);
	color: var(--red);
	}
/* hoverが使える端末 PC想定 */
@media (hover: hover) {
.heading-dropdown:hover {
	background: rgba(var(--red-rgb), .1);
	border-top: 1px solid var(--red);
	border-bottom: 1px solid var(--red);
	color: var(--red);
	z-index: 1;
}
}
.wrap-dropdown .inner-text {
	border: 1em solid var(--gray-e);
	padding: 1.5em;
}
.wrap-dropdown .inner-text ol.list-num {
	width: 100%;
}
.wrap-dropdown .inner-text ol.list-num > li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1em;
	border-bottom: 1px solid var(--gray-c);
	gap: .5em 0;
} 
.wrap-dropdown .inner-text ol.list-num > li:not(:last-child) {
	margin-bottom: 1em;
}
.wrap-dropdown .inner-text ol.list-num > li > span {
	flex-basis: calc(100% - 2em - 24rem);
}
@media screen and (max-width: 767px) {
.wrap-dropdown .inner-text ol.list-num > li {
	flex-direction: column;
	}
}

/* ============================================ */
/* 学校協会について*/
/* ============================================ */
.list-about {
	border-top: 1px solid var(--gray-c);
	gap: 0;
}
.list-about dt {
	border-bottom: 1px solid var(--gray-c);
	flex-basis: 10em;
	text-align: center;
	padding: .75em 0;
	background: rgba(var(--red-rgb), .1);
	font-weight: bold;
}
.list-about dd {
	border-bottom: 1px solid var(--gray-c);
	flex-basis: calc(100% - 10em);
	padding: .75em 0 1em .75em;
}
.about-profile > * {
	padding: 1.5em;
	background: var(--gray-e);
}
.about-profile figure {
	max-width: 14rem;
	margin: auto;
}
@media screen and (max-width: 767px) {
.list-about dt {
	flex-basis: 6em;
}
.list-about dd {
	flex-basis: calc(100% - 6em);
}
	.about-profile > * {
		padding: .5em;
	}
}
/* ============================================ */
/* 会長挨拶*/
/* ============================================ */
.wrap-flex.outline01 {
	flex-direction: row-reverse;
	gap: 0;
}
.wrap-flex.outline01.row-2-1 > *:first-child {
	flex-basis: calc(100% - 29rem);
}
.wrap-flex.outline01.row-2-1 > *:last-child {
	text-align: center;
	flex-basis: 29rem;
	padding-right: 3em;
}
@media screen and (max-width: 767px) {
.wrap-flex.outline01 {
	background: none;
	flex-direction:column-reverse;
	align-items: center;
	padding: 0;
}
	.wrap-flex.outline01.row-2-1 > *:first-child {
		padding: 2em 0 0;
	}
.wrap-flex.outline01.row-2-1 > *:last-child {
	max-width: 24rem;
	padding-right: 0;
}
	.wrap-flex.outline01 figcaption {
		font-size: 1em;
	}
}
/* ============================================ */
/* 役員名簿・機構図 */
/* ============================================ */
.organization table th {
	width: 14em;
}
.organization table .name {
	width: 8em;
	margin-left: 1em;
	display: inline-block;
}
.organization table .school {
}
@media screen and (max-width: 959px) {
.organization table th {
	width: 8em;
}
.organization table .name {
	display: block;
	margin-left: 0;
}
}
/* ============================================ */
/* 事業内容 */
/* ============================================ */
.mission.wrap-flex.row-2 {
	gap: 3em;
}
.mission.wrap-flex.row-2 > * {
	flex-basis: calc((100% - 3em) / 2);
	padding: 2em;
	border: 4px solid rgba(var(--red-rgb), .1);
}
.mission.wrap-flex.row-2 > * h3 {
	font-size: 1.25em;
	font-weight: bold;
	margin-bottom: .75em;
	border-left: 4px solid var(--red);
	padding-left: .5em;
}
@media screen and (max-width: 767px) {
.mission.wrap-flex.row-2 > * {
	flex-basis: 100%;
	padding: .75em 0 0;
	border-left: none;
	border-right: none;
	border-bottom: none;
}
.mission.wrap-flex.row-2 > * h3 {
	margin-bottom: .5em;
}
.mission.wrap-flex.row-2 > * h3 + * {
	border-top: 4px solid rgba(var(--red-rgb), .1);
	padding-top: 1em;
}
}
/* ============================================ */
/* 事業と予算 */
/* ============================================ */
.management .wrap-dropdown h4 {
	font-weight: bold;
	margin-bottom: 1em;
	border-left: 4px solid var(--red);
	padding-left: .5em;
}
.management .wrap-dropdown .inner-text > * + * {
	margin-top: 3em;
}
.management .wrap-dropdown ul {
	display: flex;
	flex-wrap: wrap;
	gap: .75em;
}
.management .wrap-dropdown ul li {
	flex-basis: calc((100% - 1.5em) / 3);
}
.management .wrap-dropdown ul li a {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
.management .wrap-dropdown ul li {
	flex-basis: 100%;
}
}
/* ============================================ */
/* 柔道整復師について */
/* ============================================ */
.judo-step:not(:last-child) {
	margin-bottom: 5em;
}
.judo-step,
.list-judo-step {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2em;
}
.list-judo-step {
	border-top: 1px solid var(--gray-c);
	gap: 0;
    font-weight: bold;
}
.judo-step > h3 {
	flex-basis: 20em;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(var(--red-rgb), .1);
	position: relative;
}
@media screen and (min-width: 960px) {
.judo-step:not(:last-child) > h3::after {
	content: '';
	display: inline-block;
	width: 100px;
	height: 50px;
	background: rgba(var(--red-rgb), .1);
	clip-path: polygon(0 38.7%, 28.2% 38.7%, 28.2% 0, 71.8% 0, 71.8% 38.7%, 100% 38.7%, 50% 100%);
	position: absolute;
	bottom: -50px;
}
}
.judo-step > h3 span.sub {
	font-weight: bold;
	background: var(--red);
	width: 100%;
	color: var(--white);
	text-align: center;
	padding: .5em;
}
.judo-step > h3 span.main {
	font-size: 2em;
	font-weight: bold;
	padding: .25em 0;
}
.judo-step > div {
	flex-basis: calc(100% - 22em);
}
.list-judo-step dt {
		background: var(--gray-6);
    flex-basis: 8em;
    font-size: 1.25em;
    border-bottom: 1px solid var(--gray-c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.list-judo-step dd {
	flex-basis: calc(100% - 10em);
	border-bottom: 1px solid var(--gray-c);
	padding: .75em 1em;
}
.list-judo-step02 > *,
.judo-price > * {
	background: var(--white);
	padding: 1em;
}
.judo-price {
	display: flex;
	justify-content: center;
}
.judo-price > * {
	border: 1px solid var(--gray-c);
	margin-left: -1px;
}
.img-judo {
	position: relative;
	display: flex;
	min-height: 48rem;
}
.img-judo.img01 {
	align-items: flex-end;
	margin: 3em 0 6em;
}
.img-judo.img02 {
	align-items: flex-end;
}
.img-judo > div {
	background: var(--white);
	flex-basis: 48%;
}
.img-judo.img01 > div {
	padding: 2em 0 0 2em;
	margin: 10rem 0 0 auto;
}
.img-judo.img02 > div {
	padding: 2em 2em 0 0;
	margin: 10rem auto 0 0;
}
.img-judo picture {
	display: block;
	width: 68% !important;
	margin-bottom: 0 !important;
	position: absolute;
	z-index: -1;
}
.img-judo.img01 picture {
	top: 0;
	left: 0;
}
.img-judo.img02 picture {
	bottom: 0;
	right: 0;
}
@media screen and (max-width: 959px) {
	.judo-step > h3,
	.judo-step > div {
		flex-basis: 100%;
	}
	.judo-step > h3 {
		margin-bottom: 1em;
	}
	.judo-step > h3 span.main {
		padding: .5em 0;
	}
	.list-judo-step dt {
    flex-basis: 5em;
	}
	.list-judo-step dd {
	flex-basis: calc(100% - 6.5em);
	}
	.img-judo {
		flex-direction: column;
	}
	.img-judo > div {
		padding: 0 !important;
		margin: 1em 0 !important;
	}
.img-judo.img01 {
	margin: 2em 0 2em;
}
	.img-judo.img02 {
		flex-direction: column-reverse;
	}
	.img-judo picture {
		width: 100% !important;
		position: relative;
	}
}
/* ============================================ */
/* 柔道整復師になるには */
/* ============================================ */
.judo-field > * {
	background: rgba(var(--red-rgb), .1);
	border-radius: 1em 0 1em 0;
	overflow: hidden;
	margin-bottom: 0 !important;
}
.judo-field dt {
	border-radius: 1em 0 0 0;
	position: relative;
}
.judo-field dt figure {
		height: 24rem;
}
.judo-field dt span {
	display: block;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
}
.judo-field dd {
	padding: .5em 1em 1em;
}
@media screen and (max-width: 959px) {
	.judo-field > * {
		flex-basis: 100% !important;
	}
	.judo-field dt figure {
		height: 60vw;
	}
}
/* ============================================ */
/* お問い合わせ　アクセス */
/* ============================================ */
.wrap-contact dl {
	display: flex;
	font-weight: bold;
	text-align: center;
	width: 100%;
}
.wrap-contact dl dt {
	background: var(--black);
	color: var(--white);
	font-size: 1.2em;
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5em;
}
.wrap-contact dl dd  {
	background: var(--gray-e);
	font-size: 1.5em;
	width: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
}
.wrap-map {
	position: relative;
	width: 100%;
	height: 50rem;
}
.wrap-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wrap-map-add {
	display: flex;
	flex-wrap: wrap;
}
.wrap-map-add > * {
	border-bottom: 1px solid var(--gray-c);
	border-top: 1px solid var(--gray-c);
	padding: .75em;
	margin-top: -1px;
}
.wrap-map-add dt {
	background: var(--gray-e);
	display: flex;
	flex-basis: 20%;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.wrap-map-add dd {
	flex-basis: 80%;
}
@media screen and (max-width: 767px) {
.wrap-contact dl {
	display: block;
	}
.wrap-contact dl dt {
	width: 100%;
	}
	.wrap-contact dl dd {
	width: 100%;
	}
	.wrap-map-add dt {
		border: none;
		padding: .5em 0;
	flex-basis: 100%;
	}
	.wrap-map-add dd {
		padding: 1em 0;
		border: none;
	flex-basis: 100%;
	}
}

/* ============================================ */
/* ページャー */
/* ============================================ */
.wrap-pager {
	display: flex;
	text-align: center;
	gap: 0 .5em;
	font-weight: bold;
	justify-content: center;
}
.wrap-pager li {
	flex-basis: 0;
	line-height: 2;
	height: 2.5em;
	align-items: center;
	justify-content: center;
	display: flex;
}
.wrap-pager li.pre a,
.wrap-pager li.next a {
	min-width: 4em;
}
.wrap-pager li.pre span,
.wrap-pager li.next span {
	display: none;
}
.wrap-pager a {
	background: var(--gray-e);
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 2.5em;
	height: 100%;
}
.wrap-pager a:hover,
.wrap-pager a.active {
	background: var(--black);
	color: var(--white);
}

/* ============================================ */
/* 学校情報 */
/* ============================================ */
.tab-content.member > div {
	display: none;
}
.tab-content.member .nav-anc {
	display: flex;
	flex-wrap: wrap;
	margin: 1em 0;
	gap: .5em .25em;
}
.tab-content.member .nav-anc li {
	flex-basis: calc((100% - 2.25em) / 8);
}
.tab-content.member .nav-anc a {
	display: flex;
	align-items: center;
	font-weight: bold;
	height: 100%;
	padding: .5em;
	background: rgba(var(--red-rgb), .1);
	border: 1px solid rgba(var(--red-rgb), 0);
}
.tab-content.member .nav-anc a:hover {
	background: rgba(var(--red-rgb), 0);
	border: 1px solid rgba(var(--red-rgb), 1);
}
.wrap-school section {
	border: 1.5em solid var(--gray-e);
	padding: 2em 5%;
}
.tab-content.member h2,
.tab-content.member h3 {
	font-size: 1.75em;
	font-weight: bold;
	padding-bottom: .75em;
	text-align: center;
}
.tab-content.member h2 {
	background: var(--red);
	border-radius: .75em .75em 0 0;
	color: var(--white);
	font-size: 1.25em;
	padding: .5em 0;
	margin-top: 2em;
}
.member-info {
	border-top: 1px solid var(--gray-c);
	display: flex;
	flex-wrap: wrap;
}
.member-info > dt {
	background: var(--gray-e);
	border-bottom: 1px solid var(--gray-c);
	padding: .5em;
	flex-basis: 10rem;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	display: flex;
}
.member-info > dd {
	flex-basis: calc(100% - 10rem);
	border-bottom: 1px solid var(--gray-c);
	padding: .75em .5em .75em 1em;
}
.member-info p {
	margin-bottom: initial !important;
}
.member-info .department-sub {
	position: relative;
}
.member-info .department-sub::before {
	content: "【";
}
.member-info .department-sub::after {
	content: "】";
}
.member-info .department-sub span+ span {
	margin-left: .5em;
}
.member-info .department-sub span:empty+ span {
	margin-left: 0;
}
.member-info .department,
.department-sub {
	font-size: 1.2em;
	font-weight: bold;
}
.department-other dt {
		border-top: 1px solid var(--gray-c);
    padding-top: .5em;
    margin: .5em 0 0;
}
.tab-content.member .link-site {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:.5em;
	margin: auto;
	max-width: 60rem;
}
.tab-content.member .link-site li {
	flex-basis: calc(50% - .25em);
}
.tab-content.member .link-site li a {
	font-size: 1.25em;
	font-weight: bold;
	padding: .5em;
	width: 100%;
	text-align: center;
	display: block;
	border-radius: 3em;
	background: rgba(var(--red-rgb), .1);
	border: 1px solid rgba(var(--red-rgb), 0);
}
.tab-content.member .link-site li a:hover {
	background: rgba(var(--red-rgb), 0);
	border: 1px solid rgba(var(--red-rgb), 1);
}
.member-news a[target="_blank"]::after {
	display: none;
}
.member-news dt {
	padding: .25em .5em;
	background: var(--gray-6);
	color: var(--white);
	font-weight: bold;
}
.member-news dd {
	padding: 1em;
	border-bottom: 1px solid var(--gray-c);
}
.tab-content.member .nav-sns {
	display: flex;
	flex-wrap: wrap;
	gap: .5em 1em;
	background: var(--gray-c);
	padding: .5em;
	justify-content: center;
	margin-bottom: 1.5em;
	margin-top: -1em;
}
.tab-content.member .nav-sns li {
	height: 4.8rem;
	width: 4.8rem;
}
.tab-content.member .nav-sns a {
	width: 100%;
	height: 100%;
	display: flex;
	padding: 20%;
	background: var(--white);
	border-radius: 8px;
	transform: scale(1);
}
.tab-content.member .nav-sns a.sns-youtube {
	padding: 0;
}
@media (hover: hover) {
.tab-content.member .nav-sns a:hover {
	transform: scale(1.15);
}
}
.tab-content.member .nav-sns img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.tab-content.member .nav-sns a::after {
	display: none;
}
@media screen and (max-width: 767px) {
	.wrap-school section {
		border-left: .5em solid var(--gray-e);
    border-right: .5em solid var(--gray-e);
		padding: 1.5em 1em;
	}
	.tab-content.member h3 {
		font-size: 1.5em;
		text-align: left;
	}
.member-info .department,
.department-sub {
	font-size: 1.1em;
	}
	.member-info > dt {
	flex-basis: 4em;
	}
	.member-info > dd {
	flex-basis: calc(100% - 4em);
	padding: .75em 0 .75em .75em;
	}
.member-news dd {
		padding: 1em 0;
	}
	.department-other dt {
		padding-top: 1em;
	}
.tab-content.member .nav-anc li {
	flex-basis: calc((100% - .5em) / 3);
}
.tab-content.member .link-site li {
	flex-basis: 100%;
	max-width: 40rem;
}
.tab-content.member .nav-sns {
	gap: .5em;
	}
}
/* ============================================ */
/* 新着詳細/学校最新情報 */
/* ============================================ */
.wrap-main.info .con-inner {
	max-width: var(--con-s);
}
.heading-info {
	border-left: .5em solid var(--red);
	padding: 1em 0 1em 2em;
	margin-bottom: 2px;
}
.heading-info span.title {
	display: block;
	font-size: 3rem;
	font-weight: bold;
	padding: .25em 0 .5em;
}
.info-inner.info {
	margin-bottom: 3em;
	overflow-x: auto;
	padding: 1em 0 1em 2em;
	border-left: .5em solid rgba(var(--red-rgb), .2);
}
.info-inner > p {
	margin-bottom: initial !important;
}
.info-inner h1,
.info-inner h2,
.info-inner h3,
.info-inner h4,
.info-inner h5,
.info-inner h6 {
  font-size: revert;
  font-weight: bold;
	line-height: inherit;
  margin: 0;
}
.info-inner a {
  text-decoration: underline;
}
.info-inner a:hover {
  color: var(--red);
  text-decoration: none;
}
.info-inner .ql-align-center {
	text-align: center;
}
.info-inner .ql-align-right {
	text-align: right;
}
/*Quillエディタ　スペース入力時の圧縮解消*/
.info-inner * {
white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
.heading-info,
.info-inner.info {
	padding: 1em 0 1em 0;
	border-left: none;
}
	.heading-info {
			border-top: 2px solid var(--red);
			border-bottom: 2px solid var(--red);
	}
.heading-info span.title {
	font-size: 2.2rem;
	}
}
/* ============================================ */
/* 教科書 */
/* ============================================ */
.tab-content.book > div {
	display: none;
}
.wrap-book {
	margin-top: 2em;
}
.inner-book {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1em;
	width: 100%;
}
.inner-book:not(:last-child) {
	border-bottom: 1px solid var(--gray-c);
	margin-bottom: 2em;
	padding-bottom: 2em;
}
.inner-book h2 {
	border-left: .25em solid var(--red);
	padding-left: .5em;
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: .75em;
}
.inner-book h2 .sub {
	font-size: .7em;
	margin-left: 1em;
}
.inner-book > *:first-child {
	flex-basis: 76%;
}
.inner-book dl {
	display: flex;
	flex-wrap: wrap;
}
.inner-book dt {
	flex-basis: 3em;
}
.inner-book dd {
	flex-basis: calc(100% - 3em);
}
.inner-book > figure {
	flex-basis: 20%;
	border: 1px solid var(--gray-9);
}
.wrap-dropdown-book {
	width: 100%;
}
.wrap-dropdown-book .btn-more {
	background: var(--gray-e);
	padding: .25em;
	margin: 0;
	text-align: center;
	font-weight: bold;
}
.wrap-dropdown-book .btn-more.active {
	background: var(--gray-c);
}
.wrap-dropdown-book .inner-text > p:first-child {
	margin-bottom: .5em;
}
.wrap-dropdown-book ol + p,
.wrap-dropdown-book ul + p {
	margin-top: 1.5em;
	margin-bottom: .5em;
}
.wrap-dropdown-book ol.list-num > li:before {
	position: absolute;
	left: 0;
	content: counter(item) ".";
}

@media (hover: hover) {
.wrap-dropdown-book .btn-more:hover {
	background: var(--gray-c);
}
}
.wrap-dropdown-book .inner-text {
	background: var(--gray-e);
	height: 40rem;
	padding: 1em 5%;
	overflow-y: auto;
}
@media screen and (max-width: 767px) {
	.inner-book {
		flex-direction: column-reverse;
		align-items: center;
	}
	.inner-book > *:first-child,
	.inner-book > figure {
		flex-basis: 100%;
	}
		.inner-book > figure {
			max-width: 20rem;
			margin-bottom: .75em;
	}
.wrap-dropdown-book .inner-text {
	padding: 1em;
	}
}
/* ============================================ */
/* 研究活動（研究紀要） */
/* ============================================ */
.archive .btn-link.no-icon {
	color: var(--red);
	padding: .5em;
	justify-content: center;
}
/* ============================================ */
/* 会員校ログイン */
/* ============================================ */
.wrap-login {
	display: flex;
	justify-content: space-between;
	gap: 6rem;
}
.wrap-login > * {
	flex-basis: 50%;
	padding: 4%;
}
.wrap-login > *:first-child {
	background: rgba(var(--red-rgb), .1);
}
.wrap-login > *:last-child {
	background: var(--gray-e);
}
.wrap-login h2 {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1em;
}
.wrap-error {
	color: var(--red);
	font-weight: bold;
}
.wrap-login form {
	background: var(--white);
	display: flex;
	flex-direction: column;
	padding: 8%;
	gap: 1em;
}
.wrap-login .form > * {
	margin-bottom: .5em !important;
}
.wrap-login form input {
	width: 100%;
}
.wrap-login form button,
.wrap-login .btn-admission {
	background: var(--red);
	border-radius: 8px;
	color: var(--white);
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
	padding: .5em;
	line-height: 1;
	min-height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wrap-login form button:hover,
.wrap-login .btn-admission:hover {
	background: var(--black);
}
.wrap-login .wrap-contact dt {
	font-weight: bold;
	background: var(--gray-6);
	color: var(--white);
	padding: .5em;
	text-align: center;
}
.wrap-login .wrap-contact dd {
	padding: 1em;
	background: var(--white);
	text-align: center;
}
@media screen and (max-width: 959px) {
.wrap-login {
	display: block;
	margin: auto;
	}
.wrap-login > * {
	padding-top: 8%;
	}
.wrap-login > *:first-child {
	margin-bottom: 2em;
	}
}
/* ============================================ */
/* 入会案内 */
/* ============================================ */
.admission .nav-anc {
	gap: .5em .25em;
	margin: 10rem 0;
}
.admission .nav-anc a {
	background: rgba(var(--red-rgb), .1);
	border: 1px solid rgba(var(--red-rgb), 0);
	display: flex;
	align-items: center;
	font-weight: bold;
	padding: .75em .5em;
	height: 100%;
}
.admission .nav-anc a:hover {
	background: rgba(var(--red-rgb), 0);
	border: 1px solid rgba(var(--red-rgb), 1);
	color: var(--red);
}
.admission .nav-anc li {
	flex-basis: 100%;
}
.admission .col-step {
  font-size: clamp(1.1rem, 0.6139240506rem + 0.6329113924vw, 1.5rem);
	position: relative;
}
.admission .col-step ul,
.admission .col-step li {
	margin-bottom: 0;
}
.admission .step-title p {
	margin-bottom: 0;
	display: block;
	padding: .5em 1em;
}
.admission .step-title p > span {
	display: inline-block;
}
.admission .overview-table .txt-center {
  text-align: center;
}
.admission .content-box + .content-box {
  margin-top: clamp(40px, 6.6666666667vw, 60px);
}
.admission .contents-title01 {
  margin-bottom: clamp(20px, 5.3333333333vw, 30px);
}
.admission .contents-title02 {
  margin-bottom: clamp(20px, 5.3333333333vw, 30px);
}
.admission .contents-title04 {
  margin-top: 0;
}
.admission .contents-title04 + p {
  margin-top: 0;
}
.admission .content-inner + .content-inner {
  margin-top: clamp(20px, 5.3333333333vw, 30px);
}
.admission .contents-body * + p {
  margin: 0;
}
.admission .indent {
  text-indent: -1em;
  padding-left: 1em;
}
.admission .txt-center {
  text-align: center;
}
.admission .head-step {
  display: flex;
}
.admission .head-step > * {
  width: 50%;
  text-align: center;
}
.admission .head-step  > *:nth-child(1) {
  background: var(--red);
}
.admission .head-step  > *:nth-child(2) {
  background: var(--gray-3);
}
.admission .head-step .title {
  color: #fff;
	font-size: 1.25em;
  font-weight: bold;
  padding:  .5em;
	justify-content: center;
}
.admission .body-step {
	background: linear-gradient(90deg, rgba(var(--red-rgb), .15) 49.9%, rgba(var(--black-rgb), .15) 50% 100%);
  padding: 4.4776119403% 0;
  position: relative;
  line-height: 1.6;
}
.admission .col-step::after {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--white);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.admission .step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.5em 7.299270073%;
  position: relative;
}
.admission .step-inner + .step-inner {
  margin-top: 1.5em;
}
.admission .step-inner {
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.admission .col-row {
  display: flex;
  justify-content: space-between;
}
.admission .col-row .step-item {
  width: 50%;
  padding: 0 4.4776119403%;
	gap: 2px 0;
}
.admission .col-row + .col-row {
  margin-top: 1.5em;
}
.admission .step-item .arrow {
  width: 16.7883211679%;
  position: absolute;
}
.admission .step-item .arrow::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.admission .step-item .arrow::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 7px;
  border-color: transparent transparent transparent var(--gray-6);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.admission .step-item .arrow.line::before {
  background-color: var(--gray-6);
}
.admission .step-item .arrow.dots::before {
  background-image: linear-gradient(to right, var(--gray-6), var(--gray-6) 4px, transparent 4px, transparent 8px);
  background-size: 8px 4px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.admission .step-item .arrow.dots.red::before {
  background-image: linear-gradient(to right,  var(--red),  var(--red) 4px, transparent 4px, transparent 8px);
}
.admission .step-item .arrow.red::after {
  border-color: transparent transparent transparent var(--red);
}
.admission .step-item .arrow.line.red::before {
  background-color: var(--red);
}
.admission .step-item .arrow-bottom::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: .9em;
  background-color: var(--gray-6);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: -1;
}
.admission .step-item .arrow-bottom::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 10px 0 10px;
  border-color: var(--gray-6) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -1.3em;
  transform: translateX(-50%);
  z-index: -1;
}
.admission .step-item .arrow-bottom.dots::before {
  background-color: transparent;
  background-image: linear-gradient(to top, var(--gray-6), var(--gray-6) 4px, transparent 4px, transparent 8px);
  background-size: 4px 8px;
  background-position: left bottom;
  background-repeat: repeat-y;
}
.admission .step-item .arrow-bottom.dots.red::before {
  background-image: linear-gradient(to top, var(--red), var(--red) 4px, transparent 4px, transparent 8px);
}
.admission .step-item .arrow-bottom.red::after {
  border-color: var(--red) transparent transparent transparent;
}
.admission .col-row:nth-child(1) .step-item:nth-child(1) .step-title .arrow {
  left: 100%;
  top: 60%;
}
.admission .col-row:nth-child(1) .step-item:nth-child(2) .step-inner .arrow {
  width: 23.3576642336%;
  right: 100%;
  bottom: 0;
  transform: rotate(-45deg);
  z-index: 1;
}
.admission .col-row:nth-child(1) .step-item:nth-child(2) .step-inner .arrow::after {
  border-width: 10px 7px 10px 0;
  border-color: transparent var(--gray-6) transparent transparent;
  left: auto;
  right: 100%;
}
.admission .col-row:nth-child(2) .step-item:nth-child(1) .step-title .arrow {
  left: 100%;
  top: 60%;
}
.admission .col-row:nth-child(3) .step-item:nth-child(1) .step-title .arrow {
  left: 100%;
  bottom: 20%;
}
.admission .col-row:nth-child(3) .step-item:nth-child(2) .step-title .arrow {
  right: 100%;
  top: 20%;
}
.admission .col-row:nth-child(3) .step-item:nth-child(2) .step-title .arrow::after {
  border-width: 10px 7px 10px 0;
  border-color: transparent #737373 transparent transparent;
  left: auto;
  right: 100%;
}
.admission .col-row:nth-child(4) .step-item:nth-child(1) .step-title .arrow {
  width: 23.3576642336%;
  left: 100%;
  bottom: 20%;
  transform: rotate(45deg);
  transform-origin: left top;
}
.admission .col-row:nth-child(4) .step-item:nth-child(2) .step-title .arrow {
  right: 100%;
  top: 50%;
}
.admission .col-row:nth-child(4) .step-item:nth-child(2) .step-title .arrow::after {
  border-width: 10px 7px 10px 0;
  border-color: transparent #737373 transparent transparent;
  left: auto;
  right: 100%;
}
.admission .col-row:nth-child(5) .step-item:nth-child(1) .step-title .arrow {
  left: 100%;
  bottom: 13%;
}
.admission .col-row:nth-child(5) .step-item:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
}
.admission .col-row:nth-child(5) .step-item:nth-child(2) .step-title {
  width: 100%;
	margin-bottom: auto;
}
.admission .col-row:nth-child(5) .step-item:nth-child(2) .step-title .arrow {
  right: 100%;
  top: 40%;
}
.admission .col-row:nth-child(5) .step-item:nth-child(2) .step-title .arrow::after {
  border-width: 10px 7px 10px 0;
  border-color: transparent #737373 transparent transparent;
  left: auto;
  right: 100%;
}
.admission .col-row:nth-child(5) .step-item:nth-child(2) .step-inner {
  width: 100%;
  margin-top: auto;
}
.admission .step-title {
	background: var(--white);
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.admission .step-title > * {
	font-size: 1.25em;
}
.admission .step-title .title {
  background: var(--red);
  color: #fff;
  font-family: "Roboto", sans-serif;
	padding: .5em 0;
	text-align: center;
}
.admission .school .step-title .title {
  background: var(--gray-3);
}
.admission .step-title + .step-inner {
  margin-top: 2px;
	display: block;
	text-align: left;
	font-weight: inherit;
}
@media screen and (min-width: 768px) {
.admission .nav-anc li {
	flex-basis: calc((100% - .75em) / 4);
	}
  .admission .step-inner {
    align-items: stretch;
    padding: 1em;
  }
.admission .step-title p {
	display: flex;
	align-items: center;
	}
  .admission .col-row .step-title {
    display: flex;
  }
  .admission .col-row .step-title .title {
    width: 23.3830845771%;
    justify-content: center;
  }
  .admission .col-row .step-title .txt {
    width: 76.6169154229%;
    text-align: left;
  }
  .admission .col-row .step-title .arrow {
    width: 19.9004975124%;
  }
  .admission .col-row:nth-child(1) .step-item:nth-child(2) .step-inner .arrow {
    width: 20.4379562044%;
    bottom: -2%;
    transform: rotate(-20deg);
  }
  .admission .col-row:nth-child(4) .step-item:nth-child(1) .step-title .arrow {
    width: 20.8955223881%;
    bottom: 20%;
    transform: rotate(20deg);
  }
  .admission .col-row:nth-child(5) .step-item:nth-child(1) .step-title .arrow {
    bottom: 24%;
  }
}


	
