@charset "UTF-8";


.p-text-main {
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 2;
	text-align: center;
}
@media screen and (max-width: 46.875em) {
	.p-text-main {
		font-size: 1.8rem;
		width: 91vw;
		margin: 60px auto;
		text-align: center;
	}
}

.p-text-small {
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: 0.06em;
}
@media screen and (max-width: 46.875em) {
	.p-text-small {
		font-size: 1.2rem;
	}
}

.p-box {
	background-color: #fff;
	border-radius: 10px;
	width: 408px;
	height: 100px;
	padding: 30px 20px;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}
@media screen and (max-width: 46.875em) {
	.p-box {
		padding: 40px 20px;
		margin: 0 auto;
		height: 73px;
	}
}

.p-box--line {
	position: relative;
}

.p-box--first::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -60px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 6px;
	height: 60px;
	background: #fff;
	border-radius: 3px;
}

.p-box--branch::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -40px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 6px;
	height: 40px;
	background: #fff;
	border-radius: 3px;
}

.p-box--branch::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -80px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 240px;
	height: 6px;
	background: #fff;
	border-radius: 3px;
}

.p-box__branch {
	position: absolute;
	bottom: -80px;
	width: 6px;
	height: 40px;
	background: #fff;
	border-radius: 3px;
}

.p-box__branch--left {
	left: calc(50% - 80px);
}

.p-box__branch--center {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.p-box__branch--right {
	left: calc(50% + 80px);
}

.p-box__dest {
	position: absolute;
	bottom: -130px;
	width: 120px;
	height: 60px;
	background: #fff;
	border-radius: 10px;
}

.p-box__dest--left {
	left: calc(50% - 140px);
}

.p-box__dest--center {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.p-box__dest--right {
	left: calc(50% + 140px);
}

.p-box__vline1 {
	position: absolute;
	top: 20px;
	bottom: 15px;
	left: 45%;
	width: 2.5px;
	background-color: #CCCCCC;
	z-index: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/3;
	height: 64%;
	-ms-grid-column-align: center;
	justify-self: center;
}
@media screen and (max-width: 46.875em) {
	.p-box__vline1 {
		width: 1.5px;
		top: 1px;
		height: 110%;
	}
}

.p-box__vline2 {
	position: absolute;
	top: 22px;
	bottom: 15px;
	left: 48.4%;
	width: 2.9px;
	background-color: #CCCCCC;
	z-index: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/3;
	height: 61%;
	-ms-grid-column-align: center;
	justify-self: center;
}

.p-box__vline3 {
	position: absolute;
	top: 20px;
	bottom: 15px;
	left: 48.4%;
	width: 2px;
	background-color: #CCCCCC;
	z-index: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/3;
	height: 10%;
	-ms-grid-column-align: center;
	justify-self: center;
}

.p-box__vline4 {
	position: absolute;
	top: 21px;
	bottom: 15px;
	left: 42.4%;
	width: 2px;
	background-color: #CCCCCC;
	z-index: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-column: 2/3;
	height: 51px;
	-ms-grid-column-align: center;
	justify-self: center;
}

.p-box__content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 40% 2% 56%;
	grid-template-columns: 40% 2% 56%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	position: relative;
}

.p-box__img {
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-column: 1/2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.p-box__img img {
	width: 78%;
}
@media screen and (max-width: 46.875em) {
	.p-box__img img {
		width: 71%;
	}
}

.p-box__text {
	-ms-grid-column: 3;
	-ms-grid-column-span: 1;
	grid-column: 3/4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: right;
}
.p-box__text p {
	font-size: 2rem;
	font-weight: 700;
}
@media screen and (max-width: 46.875em) {
	.p-box__text p {
		font-size: 4vw;
	}
}

.org {
	width: 100%;
	text-align: center;
}
@media screen and (max-width: 46.875em) {
	.org {
		margin-top: 90px;
	}
}

.org__box {
	position: relative;
	margin-bottom: 78px;
}

.org__label {
	color: #fff;
	margin-bottom: 10px;
	font-size: 1.6rem;
}

.org__label--vertical {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin-right: 30px;
}

.org__hline {
	width: 680px;
	height: 6px;
	background: #fff;
	margin: 0 auto -4px;
	border-radius: 3px;
}

.org__bottom {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.org__col {
	position: relative;
	width: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media print, screen and (min-width: 46.9375em) {
	.org__col {
		width: 332px;
	}
}

.org__vline {
	width: 6.7px;
	height: 40px;
	background: #fff;
	border-radius: 3px;
	margin-bottom: -14px;
}

.org__vline-center {
	width: 6px;
	height: 107px;
	background: #fff;
	border-radius: 3px;
	margin-bottom: -13px;
	margin-top: -68px;
}

.org__vline-center2 {
	width: 6px;
	height: 107px;
	background: #fff;
	border-radius: 3px;
	margin-bottom: -13px;
	margin-top: -104px;
}

.p-box--small {
	width: 335px;
	height: 100px;
	padding: 23px;
	margin: 10px 0 0 0;
}
@media print, screen and (min-width: 46.9375em) {
	.p-box--small {
		width: 320px;
	}
}

.org__bottom {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.org__cols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 5px;
	width: 1170px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.org__label--vertical {
	position: absolute;
	left: 31px;
	top: 39px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.org__box--management {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 154px;
}

.org__between-text {
	margin: 36px 0 8px 0;
	font-size: 2rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	width: 100%;
}

.org__between-text2 {
	margin: 36px 0 8px 0;
	font-size: 2rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
}

.org__label--side {
	position: absolute;
	left: -60px;
	top: 0;
	font-size: 1.6rem;
	color: #fff;
	white-space: nowrap;
}

.org__label--side.org__label--vertical {
	position: absolute;
	left: -60px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 1.6rem;
	color: #fff;
	white-space: nowrap;
}

.org__label--out {
	position: absolute;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #fff;
	font-size: 1.6rem;
	white-space: nowrap;
}

.p-box {
	position: relative;
}

.org__label--management {
	position: absolute;
	top: 53%;
	-webkit-transform: translate(-140%, -50%);
	transform: translate(-140%, -50%);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin-left: -380px;
}

.org__label--operation {
	position: absolute;
	top: 63%;
	-webkit-transform: translate(-140%, -50%);
	transform: translate(-140%, -50%);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	margin-left: -960px;
}

.p-box__area {
	font-size: 1.4rem;
	font-weight: 400;
}

.p-box__company {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.org__vline-group {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.org__vline-text {
	position: absolute;
	left: 25px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: #fff;
	white-space: nowrap;
	margin-bottom: 45px;
	font-size: 2rem;
	font-weight: 600;
}

.org__vline-text2 {
	position: absolute;
	left: 197px;
	top: -51px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: #fff;
	white-space: nowrap;
	margin-bottom: 45px;
	font-size: 2rem;
	font-weight: 600;
}
@media screen and (max-width: 46.875em) {
	.org__vline-text2 {
		left: 15px;
		font-size: 1.8rem;
	}
}

.rinen-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
	margin: 60px auto;
}
@media screen and (max-width: 46.875em) {
	.rinen-section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 24px;
		margin: 0;
	}
}

.two-box {
	background: #fff;
	width: 616px;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
}
@media screen and (max-width: 46.875em) {
	.two-box {
		max-width: 350px;
		width: 100%;
		padding: 30px 0;
	}
}

.two-box__title {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #e68432;
}

.two-box__text {
	font-size: 3rem;
	line-height: 1.6;
	font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
	font-weight: bold;
	margin-top: 53px;
}
@media screen and (max-width: 46.875em) {
	.two-box__text {
		font-size: 2.5rem;
		margin-top: 0px;
	}
}

.two-box__text2 {
	font-size: 3rem;
	line-height: 1.6;
	font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
	font-weight: bold;
}
@media screen and (max-width: 46.875em) {
	.two-box__text2 {
		font-size: 2.3rem;
		margin-top: 0px;
	}
}

@media screen and (max-width: 46.875em) {
	.org-pc {
		display: none;
	}
}
@media print, screen and (min-width: 46.9375em) {
	.org-pc {
		display: block;
	}
}

@media screen and (max-width: 46.875em) {
	.org-sp {
		display: block;
	}
}
@media print, screen and (min-width: 46.9375em) {
	.org-sp {
		display: none;
	}
}

.p-wrapper {
	width: 100%;
	max-width: 1258px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 40px;
	padding-left: 40px;
}
@media print, screen and (min-width: 46.9375em) {
	.p-wrapper.o-wrapper-fluid-pc {
		padding-right: 0;
		padding-left: 0;
	}
}
@media screen and (max-width: 46.875em) {
	.p-wrapper {
		padding-right: 20px;
		padding-left: 20px;
		width: 350px;
	}
}

.box {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	height: 90px;
	width: 441px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media screen and (max-width: 46.875em) {
	.box {
		width: 350px;
	}
}

.box2 {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	width: 401px;
	height: 90px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media screen and (max-width: 46.875em) {
	.box2 {
		width: 332px;
	}
}

.box3 {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 332px;
	height: 87px;
	text-align: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media screen and (max-width: 46.875em) {
	.box3 {
		width: 285px;
	}
}

.box,
.box2 {
	margin-left: 0;
	margin-right: 0;
	-webkit-transform: none;
	transform: none;
}

.box2__label-vertical {
	position: absolute;
	right: 100%;
	margin-right: 6px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.2em;
	white-space: nowrap;
}

.box3__top-text {
	position: absolute;
	bottom: 100%;
	margin-bottom: 12px;
	left: 12px;
	-webkit-transform: translateX(-24px);
	transform: translateX(-24px);
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}
@media screen and (max-width: 46.875em) {
	.box3__top-text {
		font-size: 1.8rem;
	}
}

.box3--connect::before {
	content: "";
	position: absolute;
	right: 95%;
	margin-right: 8px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 4px;
	background: #fff;
	border-radius: 2px;
}

.box3__bottom-text {
	position: absolute;
	top: 100%;
	margin-top: 8px;
	left: 32%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 350px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #333;
	text-align: left;
	line-height: 1.6;
}
@media screen and (max-width: 46.875em) {
	.box3__bottom-text {
		left: 31vw;
		width: 90vw;
	}
}

.org-sp__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 61px;
	margin-bottom: 40px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-right: 0px;
}
@media screen and (max-width: 46.875em) {
	.org-sp__top {
		width: 342px;
		margin-left: 1.5vw;
	}
}

.org-sp__bottom {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	padding-left: 97px;
}

.org-sp__bottom2 {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	padding-left: 97px;
	top: 100px;
	max-width: 350px;
	left: -25px;
}
@media screen and (max-width: 46.875em) {
	.org-sp__bottom2 {
		max-width: 385vw;
		left: -1vw;
		top: 125px;
	}
}

.org-sp__label-vertical {
	position: absolute;
	left: 31px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.4em;
	white-space: nowrap;
}

.org-sp__vline {
	position: absolute;
	left: 92px;
	top: -163px;
	height: 56px;
	width: 4px;
	background: #fff;
	border-radius: 2px;
}

.p-box__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.p-box__img img {
	width: 105px;
	margin-right: 16px;
}

.org-sp__bottom {
	position: relative;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.org-sp__center {
	position: relative;
	width: 560px;
	margin: 0 auto;
}

.org-sp__vline-main {
	position: absolute;
	left: 27px;
	top: -191px;
	height: 80px;
	width: 4px;
	background: #fff;
	border-radius: 2px;
}

.org-sp__vline-branch {
	position: absolute;
	left: 60px;
	bottom: 0;
	width: 4px;
	background: #fff;
	border-radius: 2px;
	top: -43px;
	height: 310px;
}

.org-sp__canvas {
	position: relative;
	width: 350px;
	margin: 0 auto;
}

.p-joho {
	margin-top: 10px;
}

.org__between-text {
	position: absolute;
	top: 100%;
	margin-top: 12px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 377px;
	max-width: none;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: left;
	white-space: normal;
}
@media print, screen and (min-width: 46.9375em) {
	.org__between-text {
		width: 720px;
	}
}
@media screen and (max-width: 46.875em) {
	.org__between-text {
		left: 49%;
		width: 355px;
	}
}

.org__between-text2 {
	position: absolute;
	top: 100%;
	margin-top: 12px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 377px;
	max-width: none;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: left;
	white-space: normal;
}
@media print, screen and (min-width: 46.9375em) {
	.org__between-text2 {
		width: 834px;
	}
}

.p-gaiyo-sp {
	text-align: center;
}