@charset "utf-8";
/* CSS Document */
:root {
	--color-deep-blue: #014C6D;
	--color-holo-blue: #00A2E5;
	--color-blue: #6BC4FF;
	--color-light-blue: #C8E9FF;
	--color-light-blue_ex:#E6F5FF;
	--pc_inner_width: clamp(18.75rem, 0.106rem + 93.22vw, 87.5rem);
	--color-light-green :#E4F2C7;
	--color-light-gray: #f9f9f9;
}

* {
	font-family: "hiragino-mincho-pron", sans-serif!important;
	font-weight: 300;
	font-style: normal!important;
	font-size: clamp(1rem, 0.926rem + 0.37vw, 1.25rem);
    font-optical-sizing: auto!important;
    color: var(--color-deep-blue);
    line-break: strict!important;
    word-break: normal!important;
}

a, a:hover {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}
h1, h2, h3, h4 {
	color: var(--color-deep-blue);
	font-weight: 700;
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fade-in-down {
	-webkit-animation: fadeInDown .8s ease-in forwards;
	-o-animation: fadeInDown .8s ease-in forwards;
	animation: fadeInDown .8s ease-in forwards;
}
.hidden {
	opacity: 0;
}

body {
	background: url("../img/background.png");
	position: relative;
	z-index: -999;
}
.pc_view {
	display:block;
}
.sp_view {
	display:none;
}
/*uikit edit*/
.uk-heading-divider {
	padding-bottom: 0;
	border-bottom: calc(.2px + .05em) solid var(--color-holo-blue);
}
*+address, *+dl, *+fieldset, *+figure, *+ol, *+p, *+pre, *+ul {
	margin-top: 0;
}
.uk-card-default .uk-card-title {
	color: var(--color-deep-blue);
}

header {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.top-title-img {
	position: relative;
	background: url("../img/top_img.jpg") center / cover;
	width: 100%;
}
.blue-bg {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background: var(--color-holo-blue);
	/*mix-blend-mode: multiply;*/
	will-change: transform;
	-webkit-animation: slideInOut 2s forwards;
	-o-animation:  slideInOut 2s forwards;
	animation:  slideInOut 2s forwards;
}
@keyframes slideInOut {
	0% {
		left: -100%;
	}
	50% {
		left: 0%
	}
	100% {
		left: 100%;
	}
}
.white-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: white;
	will-change: transform;
	-webkit-animation: slideOut 2s forwards;
	-o-animation:  slideOut 2s forwards;
	animation:  slideOut 2s forwards;
}
@keyframes slideOut {
	0% {
		left: 0%;
	}
	100% {
		left: 100%;
	}
}
.blending-layer {
	position: absolute;
	bottom: 20px;
	width: 100%;
	height: 30%;
	background: var(--color-holo-blue);
	mix-blend-mode: multiply;
	contain: paint;
}
.phrase {
	padding-top: 100px;
}
.phrase p {
	color: var(--color-deep-blue);
	text-align: center;
	text-shadow: 2px 0 5px #fff, -2px 0 5px #fff, 0 2px 5px #fff, 0 -2px 5px #fff;
	margin: 0;
}
.title-deco {
	position: absolute;
	bottom: 24%;
    right: 1vh;
}
.title-deco p {
	color: #fff;
	mix-blend-mode: overlay;
	font-size: clamp(1.5rem, 0.268rem + 5.258vw, 5rem);
}
.top-title {
	position: absolute;
	width: var(--pc_inner_width);
	left: 0;
	right: 0;
	bottom: 20px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.top-title div:first-child {
	width: 45%;
	max-width: 400px;
	margin-bottom: -20px;
}
.top-title p,
.top-title h1 {
	color: #fff;
}
.top-title p {
	font-size: clamp(1rem, 0.648rem + 1.502vw, 2rem);
}
.top-title h1 {
	font-size: clamp(1.8rem, 1.148rem + 3.26vw, 4rem);
}
.top-text {
	width: var(--pc_inner_width);
	margin: 0 auto;
	padding: 10px;
}
.top-text p {
	text-align: center;
	font-size: clamp(1.5rem, 1.352rem + 0.74vw, 2rem);
}
.top-text p:last-child {
	font-size: clamp(1.2rem, 1.034rem + 0.707vw, 1.6rem);
}
nav {
	position: absolute;
	width: 100%;
	height: 120px;
	bottom: 0;
	z-index: -1;
}
nav video {
	width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
	z-index: -1;
}
nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: var(--pc_inner_width);
	margin: 20px auto;
}
nav ul li {
	text-align: center;	
	width: calc(100% / 4 - 75px);
	height: 80px;
	transition: all .3s ease-in-out;
}
.nav-btn {
	display: flex;
	justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid var(--color-holo-blue);
	background: #014c6dc9;
	z-index: 0;
}
.nav-btn span,
.nav-btn span small {
	color: #fff;
	z-index: 1;
}
.nav-btn::before,
.nav-btn::after,
.nav-btn span::before,
.nav-btn span::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #ffffff5e;
	transition: 0.4s ease-in-out;
	z-index: 0;
}
.nav-btn::after,
.nav-btn span::before {
	top: auto;
	bottom: 0;
}
.nav-btn span::before,
.nav-btn span::after {
	transition-delay: 0.4s;
}
.nav-btn:hover span,
.nav-btn:hover span small {
	color: var(--color-deep-blue);
	z-index: 1;
}
.nav-btn:hover::before,
.nav-btn:hover::after,
.nav-btn:hover span::before,
.nav-btn:hover span::after {
	height: 80px;
	z-index: -1;
}
.fixed-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-20px);
	opacity: 0;
	transition: all .4s ease;	
	pointer-events: none;
}
.fixed-nav.nav-visible {
	top: 0;
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.fixed-nav:not(.nav-visible) {
	top: -120px;
}
/*--------------------Topページ--------------------*/
#greeting {
	margin-top: 200px;
	display: flex;
	position: relative;
}
.greeting-deco {
	width: 15%;
	height: auto;
}
.greeting-deco.second {
	position: absolute;
	bottom: -50px;
	right: 0;
}
.wrap-greeting-contents {
	width: 70%;
	margin-top: 50px;
	background: #fff;
	position: relative;
}
.wrap-greeting-contents::before,
.wrap-greeting-contents::after {
	content: "";
	position: absolute;
	width: 70%;
	height: 30px;
	background: var(--color-blue);
}
.wrap-greeting-contents::before {
	top: -30px;
	left: 0;
}
.wrap-greeting-contents::after {
	bottom: -30px;
	right: 0;
}
.greeting-contents {
	padding: 50px;
}
.space {
    width: .5px;
    height: 100%;
    background-color: transparent;
}
.greeting-img {
	width: 50%;
	max-width: 350px;
	float: right;
	clear: both;
}
#menu {
	width: var(--pc_inner_width);
	margin: 200px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
svg.menu-arrow {
	width: 50px;
}
.wrap-menu {
	background: var(--color-blue);
	padding: 30px 20px;
	width: calc(100% / 3 - 65px);
	display: flex;
	flex-direction: column;
}
.wrap-menu.holoblue {
	background: var(--color-holo-blue);
}
.wrap-menu a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	width: 100%;
	transition: all .3 ease-in-out;
}
.wrap-menu a:hover .menu-title {
	animation: .3s scaleUp ease-in-out;
}
@keyframes scaleUp {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
	80% {
		transform: scale(.9);
	}
	100% {
		transform: scale(1);
	}
}
.menu-title {
	position: relative;
	background: #ffffffd6;
	text-align: center;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.menu-title::before,
.menu-title::after {
	content: "";
	position: absolute;
	width: calc(100% - 15px);
	height: calc(100% - 15px);
	border: 1px solid var(--color-blue);
}
.menu-title::before {
	top: 5px;
	left: 5px;
}
.menu-title::after {
	bottom: 5px;
	right: 5px;
}
.menu-title h3 {
	line-height: 1.7rem;
}
.menu-contents {
	background: #fff;
	padding: 10px;
	flex-grow: 3;
}
.menu-contents p {
	text-align: center;
	margin: 5px 0 0 0;
	line-height: 1.3rem;
	padding: 10px 0 20px 0;
}
#profile {
	width: var(--pc_inner_width);
	margin: 250px auto 0;
	background: #fff;
	box-shadow: 5px 5px 10px #0000007d;
}
.wrap-profile-contents {
	padding: 50px;
}
.section-title {
	position: relative;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(196, 231, 255, 1) 100%);
	padding: 5px 5px 5px 35px;
}
.section-title::before {
	position: absolute;
	content: "";
	background: var(--color-holo-blue);
	width: 30px;
	height: 100%;
	top: 0;
	left: 0;
}
.profile-list {
	display: flex;
	flex-wrap: wrap;
}
.profile-list ul li:nth-child(n+2),
.profile-cotents ul li:nth-child(n+2) {
	margin-top: 10px;
}
.profile-list ul:last-child {
	margin-left: 20px;
}
.profile-cotents {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.profile-cotents.second {
	align-items: stretch;
}
.profile-cotents.first > div:first-child {
	width: calc(65% - 20px);
}
.profile-cotents.first > div:last-child {
	width: 35%;
}
.profile-cotents.second > div:first-child {
	width: 40%;
}
.profile-cotents.second > div:first-child img {
	height: 100%;
	object-fit: cover;
}
.profile-cotents.second > div:last-child {
	width: calc(60% - 20px);
}
.profile-cotents.second > div:last-child dl {
	display: flex;
}
.profile-cotents.second > div:last-child dl dt {
	margin-right: 15px;
}

/*--------------------next-page link buttun--------------------*/
.next-page {
	width: var(--pc_inner_width);
	margin: 100px auto 0;
}
.next-page a {
	display: inline-block;
	position: relative;
	margin-left: 70%;
	padding: 20px 0 20px 35px;
	background-color:hsla(0,0%,100%,1);
	background-image:
		radial-gradient(at 89% 14%, hsla(197,100%,77%,1) 0px, transparent 50%),
		radial-gradient(at 48% 61%, hsla(191,73%,76%,1) 0px, transparent 50%),
		radial-gradient(at 12% 89%, hsla(207,95%,85%,1) 0px, transparent 50%),
		radial-gradient(at 88% 87%, hsla(189,100%,56%,1) 0px, transparent 50%),
		radial-gradient(at 9% 21%, hsla(155,100%,91%,1) 0px, transparent 50%);
	width: 25%;
	min-width: 315px;
	border-radius: 999px;
	border: 1px solid var(--color-deep-blue);
	transition: all .3s ease-in-out;
}
.next-page a.left-arrow {
	text-align: right;
	padding: 20px 35px 20px 0;
}
.next-page a::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color-deep-blue);
	top: calc(50% - 25px);
	right: 25px;
}
.next-page a.left-arrow::after {
	left: 25px;
}
.next-page svg {
	position: absolute;
	width: 15px;
	animation: moveArrow 1.5s linear infinite;
	z-index: 1;
	top: calc(50% - 25px / 2);
}
@keyframes moveArrow {
	0% {
		opacity: 0;
		right: 3em;
	}
	30% {
		opacity: 1;
	}
	60% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		right: 1em
	}
}
.next-page a.left-arrow svg {
	animation: moveArrowLeft 1.5s linear infinite;
}
@keyframes moveArrowLeft {
	0% {
		opacity: 0;
		left: 3em;
	}
	30% {
		opacity: 1;
	}
	60% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		left: 1em;
	}
}
.next-page a:hover {
	background: var(--color-deep-blue);
	color: #fff;
}
#sub-page .next-page {
	display: flex;
	justify-content: space-between;
}
#sub-page .next-page a {
	margin: 100px 0 0 0;
}

/*--------------------footer--------------------*/
footer {
	margin-top: 250px;
	background: url("../img/footer.jpg") center / cover;
}
.wrap-footer-contents {
	width: calc(var(--pc_inner_width) - 100px);
	margin: 0 auto;
	padding: 50px 50px 0;
}
.footer-contents {
	padding: 30px;
	width: 40%;
	text-align: center;
	background: #ffffffab;
}
.footer-contents > a {
	display: inline-block;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
	text-shadow: 2px 0 5px #fff, -2px 0 5px #fff, 0 2px 5px #fff, 0 -2px 5px #fff;
}
.footer-logo {
	width: 90%;
	background: #ffffff7d;
	padding: 10px;
	margin: 20px auto 0;
	border: 1px solid var(--color-holo-blue);
}
.copyright,
.copyright span {
	color: #fff;
	margin-top: 20px;
}

/*--------------------subページ--------------------*/
#subpage {
	margin-top: 200px;
}
#subpage h1 {
    position: relative;
    background: #C4E7FF;
    background: -webkit-linear-gradient(left, rgba(196, 231, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(left, rgba(196, 231, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right, rgba(196, 231, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 10px 0 10px 60px;
}
#subpage h1::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: var(--color-holo-blue);
}
#subpage h2 {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}
.aks_h3 span {
	font-size:105%;
}
.aks_h3 span::after{
	border-bottom: calc(.2px + .05em) solid var(--color-holo-blue);
}
.inner_subpage {
	padding:50px 30px;
}
#subpage .uk-card-title {
	background-color: var(--color-light-blue);
    padding: 10px 5px;
}
#subpage .uk-card-default.wrap_uk_card_default_border {
    box-shadow: 0 5px 15px rgb(3 169 244 / 20%);
    border: 1px solid var(--color-light-blue);
	height:100%;
}
#subpage.regenerative-medicine {
	width: var(--pc_inner_width);
	margin: 200px auto 0;
}
.inner_header_bg{
	position: relative;
	height: 65vh;
}
.header_rm .inner_header_bg{
    background: url(./../img/subpage_topimg_1.png) center / cover;
}
.header_omalgia .inner_header_bg{
    background: url(./../img/subpage_topimg_2.png) center / cover;
}
.header_ex .inner_header_bg{
    background: url(./../img/subpage_topimg_3.png) center / cover;
}
#wrap_subpage_sub_message {
	padding: 30px 10px;
}
#wrap_subpage_sub_message p {
	font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
	margin: 0;
}
.wrap_subpage_top_images {
	position: absolute;
    width: 100%;
    bottom: 20px;
}
.wrap_subpage_top_images .wrap_uk_overlay {
	position: relative;
}
.wrap_uk_overlay::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 95%;
	background-color: var(--color-holo-blue);
	mix-blend-mode: multiply;
	z-index: 0;
	bottom: 0;
}
p.english-title{
	color: #ffffff69;
    font-size: clamp(1.5rem, 0.620rem + 3.756vw, 4rem);
	margin: 0;
}
.wrap_subpage_top_images p:nth-of-type(2){
	color: #ffffff;
    mix-blend-mode: normal;
    text-align: right;
    font-size: clamp(1.5rem, 0.620rem + 3.756vw, 4rem);
    font-weight: bold;
}
/*--------------------肩の痛みページ--------------------*/
.image_tittle {
    text-align: center;
    font-size: 120%;
    margin-top: 80px;
}
.msg_strong {
	margin: 100px auto;
	width: 90%;
	padding: 20px;
	box-sizing: border-box;
	background-color: var(--color-deep-blue);
	color: #fff;
	text-align: center;
	border-radius: 50px;
}
.wrap_hr {
	border-top: 1px solid var(--color-holo-blue);
}
.image_note {
    text-align: center;
    margin: 0;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-light-blue);
}
.algorithm-1row {
	display: flex;
	justify-content: space-between;
}
.algorithm-1row p {	
	margin: 0;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.algorithm-1row > div:not(:last-child) {
	background: var(--color-light-blue);	
}
.algorithm-piece {
	position: relative;
	width: calc(100% / 4 - 15px);
	height: 50px;
}
.arrow {
	position: absolute;
	display: inline-block;
	width: 5px;
	height: 225px;
	background: var(--color-holo-blue);
	top: 50px;
	left: calc(50% - 2.5px);
	z-index: 0;
}
.arrow::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 20px 0 20px;
	border-color: var(--color-holo-blue) transparent transparent transparent;
	position: absolute;
	left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
}
.arrow.black {
	background: #ababab;
}
.arrow.black::after {
	border-color: #ababab transparent transparent transparent;
}
.algorithm-2row,
.algorithm-3row {
	position: relative;	
	width: 100%;
	height: 50px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
.algorithm-2row {
	background: #DCF0B3;
}
.algorithm-3row {
	background: var(--color-deep-blue);
}
.algorithm-3row p {
	color: #fff;
}
.algorithm-4row {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.algorithm-4row > div {
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
}
.algorithm-4row > div:first-child {
	background: var(--color-light-blue);
	width: calc(75% - 47.5px);
}
.algorithm-4row > div:first-child p {
	font-size: 2rem;
	font-weight: bold;
}
.algorithm-4row > div:first-child > div {
	max-width: 200px;
}
.algorithm-4row > div:last-child {
	border: 1px solid var(--color-deep-blue);
	width: calc(25% - 47.5px);
}
.rotator-cuff-repair {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.rotator-cuff-repair > div:first-child {
	width: 20%;
	height: 250px;
}
.rotator-cuff-repair > div:first-child img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.repair {
	width: calc(20% - 25px);
	height: 250px;
}
.repair img {
	width: 100%;
    height: calc(100% - 50px);
    object-fit: cover;
}
.rotator-cuff-repair > div:last-child {
	width: 40%;
}
.artificial-joint .algorithm-piece:not(:last-child) {
	width: calc(60% / 3 - 15px);
	background-color: inherit;
}
.artificial-joint .algorithm-piece:last-child {
	width: calc(40% - 15px);
	background: var(--color-light-blue);
}
.algorithm-4row.artificial-joint > div:first-child {
	background-color: inherit;
	width: calc(60% - 47.5px);
	border: 1px solid var(--color-deep-blue);
}
.algorithm-4row.artificial-joint > div:first-child p {
	font-size: inherit;
	font-weight: normal;
}
.algorithm-4row.artificial-joint > div:last-child {
	background: var(--color-light-blue);
	width: calc(40% - 47.5px);
	border: none;
}
.algorithm-4row.artificial-joint > div:last-child p {
	font-weight: bold;
}
.algorithm-4row.artificial-joint > div:last-child div {
	max-width: 200px;
}

/*--------------------再生医療ページ--------------------*/
.regenerative .algorithm-1row .algorithm-piece:nth-child(-n+2) {
	background: #FFF4C8;
}
.regenerative .algorithm-1row .algorithm-piece:nth-child(-n+2) .arrow {
	background: #FF9100;
}
.regenerative .algorithm-1row .algorithm-piece:nth-child(-n+2) .arrow::after {
	border-color: #FF9100 transparent transparent transparent;
}
.regenerative .algorithm-3row {
	width: calc(50% - 15px);
	margin-left: auto;
}
.regenerative .algorithm-4row > div:first-child {
	background: #FFF4C8;
	width: calc(50% - 55px);
}
.regenerative .algorithm-4row > div:nth-child(2) {
	width: calc(25% - 55px);
	border: 1px solid var(--color-deep-blue);
}
.regenerative .algorithm-4row > div:last-child {
	width: calc(25% - 55px);
}
.regenerative .algorithm-4row .culture {
	height: 200px;
}
.regenerative .algorithm-4row .culture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wrap_PSC {
	text-align: left;
	padding:20px;
}
.wrap_PSC dd{
	padding-left:20px;
	padding-bottom:8px;
}
.wrap_MSC {
	padding:20px;
}
.MSC {
    background-color: var(--color-light-green);
    padding: 5px;
    width: 210px;
    margin: 0 auto 15px;
    border-radius: 20px;
	box-sizing: border-box;
}
.inner_MSC {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.MSC_contants {
	width: 45%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 15px 10px;
    box-sizing: border-box;
}
.MSC_contants p {
	margin:0;
}
.MSC_contants p > span {
	font-size: 90%;
    display: block;
    margin-top: 10px;
    color: cadetblue;
}
.MSC_explanation {
	background: var(--color-light-blue);
	margin-top: 50px;
}
.wrap_card_horizontal {
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .08)!important;
	border:none!important;
}

.sc_kind_title {
	font-weight: bold;
}
.sc_kind_title::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 80%;
	background: var(--color-deep-blue);
	top: 50%;
    left: 160px;
    transform: translateY(-50%);
}
.sc_kind_content {
	display: flex;
	align-items: center;
}
.sc_kind_content dl {
	display: flex;
	flex-wrap: wrap;
}
.sc_kind_content dt {
	width: 190px;
	text-align: right;
}
.sc_kind_content dd {
	width: calc(100% - 190px);
    text-align: left;
    box-sizing: border-box;
    padding-left: 30px;
    margin-bottom: 8px;
}
.wrap_sc_ability {
	align-items: center;	
}
.sc_ability_note p{
	background-color: var(--color-light-blue);
    padding: 20px 50px;
    border-radius: 999px;
}
.wrap_sc_reason {
	margin-left: 0!important;
	align-items: center;
}
.wrap_sc_reason > div:nth-of-type(1) {
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    border-radius: 50px;
    line-height: 100px;
    background-color: var(--color-deep-blue);
    color: #fff;
    text-align: center;
    padding: 0;
    letter-spacing: 0.3em;
	padding-left: 0.3em;
	font-size: 110%;
}
.wrap_sc_reason > div:nth-of-type(2) {
	width:calc( 100% - 100px );
	box-sizing: border-box;
}
.wrap_sc_reason li {
	position: relative;
    padding-left: 21px;
}
.wrap_sc_reason li::before {
	content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 8px;
    left: 0;
    background-color: var(--color-blue);
    border-radius: 8px;
}
.sc_process_index {
	background-color: var(--color-light-blue);
    padding: 10px 5px 10px 10px;
}
.culture-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cell-culture {
	width: calc(65% - 15px);
}
.cell-culture-2 {
	width: calc(35% - 15px);
}
.wrap_sc_process {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.wrap_sc_process > div:nth-last-child(2n-1) {
	width: calc(75% / 6 - 5px);
}
.wrap_sc_process > div:nth-last-child(2n) {
	width: calc(25% / 5 - 5px);
	display: flex;
	justify-content: center;
}
.triangle-arrow {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 0 25px 15px;
	border-color: transparent transparent transparent var(--color-blue);
}
.wrap_sc_process_2 {
	display: flex;
	justify-content: space-between;
}
.wrap_sc_process_2  > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wrap_sc_process_2  > div:first-child {
	width: calc(25% - 5px);
	height: 200px;
}
.wrap_sc_process_2 > div:nth-of-type(2) {
	width: calc(10% - 5px);
	display: flex;
    justify-content: center;
}
.arrow-2 {
	position: relative;
	display: inline-block;
	width: 25px;
	height: 25px;
	background: var(--color-blue);
	top: calc(100px - 25px / 2);
	margin-right: 30px;
	z-index: 0;
}
.arrow-2::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 0 25px 30px;
	border-color: transparent transparent transparent var(--color-blue);
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	left: 25px;
}
.wrap_sc_process_2 > div:nth-of-type(3) {
	width: calc(25% - 5px);
	max-width: 200px;
}
.wrap_sc_process_2 > div:nth-of-type(3) > div,
.wrap_sc_process_2 > div:nth-of-type(4) > div {
	height: 200px;
}
.wrap_sc_process_2 > div:nth-of-type(3) p,
.wrap_sc_process_2 > div:nth-of-type(4) p {
    line-height: 1rem;
	font-size: clamp(0.7rem, 0.594rem + 0.451vw, 1rem);
}
.wrap_sc_process_2 > div:last-child {
	width: calc(40% - 5px);
}
.wrap_sc_process_3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.wrap_sc_process_3  > div {
	width: calc(50% - 10px);
	max-width: 300px;
}
.wrap_sc_process_3  > div > div {
	height: 200px;
}
.wrap_sc_process_3  > div > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.image_note.bg {
	background-color: var(--color-light-green);
}
#subpage .uk-card-default.wrap_uk_card_lightblue {
	background-color: var(--color-light-blue_ex);
	border:none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}
.wrap_sc_process_4 {
	display: flex;
	justify-content: space-between;
}
.wrap_sc_process_4 > div:nth-child(2n-1) {
	max-width: 300px;
	width: calc(80% / 3 - 5px);
}
.wrap_sc_process_4 > div:nth-child(2n) {
	display: flex;
    justify-content: center;
	width: calc(10% - 5px);
}
.wrap_sc_process_4 > div:nth-child(2n-1) > div {
	height: 200px;
}
.wrap_sc_process_4 > div > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.h4_sub_baseball {
    text-align: center;
    background-color: var(--color-light-green);
    padding: 10px;
    border-radius: 40px
}
.baseball-shoulder {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: -90px;
}
.baseball-shoulder > div:first-child {
	width: calc(35% - 10px);
}
.baseball-shoulder > div:last-child {
	width: calc(65% - 10px);
}
.wrap_gamechanger {
	position: relative;
    z-index: 1;
    margin-bottom: 100px;
}
.gamechanger_msg {
	position:relative;
	margin: 50px auto 20px;
	width: 80%;
}
.gamechanger_msg::before {
	content: "";
    position: absolute;
    width: 110%;
    height: 100%;
    background-color: var(--color-light-blue);
    z-index: -1;
    left: -5%;	
}
@media (max-width: 1024px) {
	.cell-culture,
	.cell-culture-2 {
		width: 100%;
	}
	.cell-culture-2 {
		margin-top: 20px;
	}
	.wrap_sc_process_3 {
		justify-content: space-evenly;
	}
	.wrap_sc_process_3 > div {
		max-width: 200px;
	}
	.baseball-shoulder {
		margin-top: 0;
	}
}

/*--------------------治療の例ページ--------------------*/
.wrap_ex_contant {
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	background: #C8E9FF;
	background: -webkit-linear-gradient(bottom, rgba(200, 233, 255, 1) 0%, rgba(200, 233, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
	background: -o-linear-gradient(bottom, rgba(200, 233, 255, 1) 0%, rgba(200, 233, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to top, rgba(200, 233, 255, 1) 0%, rgba(200, 233, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
	width:90%;
	max-width:1200px;
	padding: 0 100px;
	margin: 0 auto;
	box-sizing: border-box;
}
.wrap_eximage_b {
	width:300px;
}
.wrap_eximage_b.type2{
	width:330px;
}

.wrap_eximage_a {
	justify-content:flex-end;
	width:calc( 100% - 300px );
	margin:0;
}
.wrap_eximage_a.type2 {
	justify-content:flex-end;
	width:calc( 100% - 330px );
	margin:0;
}
.eximage {
	display: block;
	margin:0 auto;
}
.eximage_note {
	text-align: center;
}
.wrap_ex_note {
	padding: 50px;	
}
.wrap_ex_note p{
	margin-bottom: 8px;
	line-height: 1.4;
}
.wrap_ex_contant.type3 {
	justify-content: space-between;
}
.wrap_eximage_b.type3 {
	width:48%;
}
.wrap_eximage_a.type3 {
	width:48%;
	margin-top: 0;
}
p.cost a {
	color: var(--color-holo-blue);
}
p.cost a:hover {
	color: var(--color-deep-blue);
	font-weight: bold;
	text-decoration: underline;
}
.side-effects {
	display: flex;
	width: 80%;
	margin: 100px auto 0;
	box-shadow: 3px 3px 10px #0000005c;
}
.side-effects-title {
	background: var(--color-deep-blue);
	width: 25%;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.side-effects-title h4 {
	color: white;
	text-align: center;	
}
.side-effects-content {
	background: white;
	width: 85%;
	padding: 15px;
}

@media (max-width: 1430px) {
	.wrap_ex_contant {
		width:100%;
	}
	.eximage {
		width:15vw;	
	}
}
@media (max-width: 1000px) {
	.wrap_ex_contant {
	}
	.wrap_eximage_b {
		width:200px
	}
	.wrap_eximage_b.type2 {
		width:200px
	}
	.wrap_eximage_a {
			justify-content: flex-end;
			width: calc(100% - 200px);
	}
	.wrap_eximage_a.type2 {
			justify-content: flex-end;
			width: calc(100% - 200px);
	}
	.eximage {
	}
}


