
#wrapper {
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding-top: 9rem;
}

#header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	background: #fff;
}
.header-logo {
	display: flex;
	align-items: center;
	margin: 0 6rem;
	position: relative;
}
.header-logo a {
	position: absolute;
	left: 0;
	top: 2.4rem;
	width: 27.8rem;
}

.btn-menu {
	display: none;
}

#g-navi {
	display: flex;
	align-items: center;
	position: relative;
	padding-right: 32rem;
}
#g-navi:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.4rem;
	background: linear-gradient(90deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
	border-radius: 1rem 0 0 1rem;
	z-index: -1;
}
#g-navi ul {
	display: flex;
}
#g-navi li {
	position: relative;
}
#g-navi .level1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 0.8rem;
	padding: 0 3rem;
	height: 9rem;
	font-size: 2rem;
	font-weight: 500;
}
#g-navi .parent:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1.5rem 0.8rem 0 0.8rem;
	border-color: #000 transparent;
}
#g-navi .parent.parent-recovery:after{
	border-color: #2c82fa transparent;
}
#g-navi .parent.parent-about:after{
	border-color: #ff8723 transparent;
}
.nav-text {
	overflow: hidden;
	position: relative;
	display: block;
}
.nav-text .text {
	display: block;
	transition-duration: 0.3s;
}
.nav-text .text:after {
	content: attr(data-tit);
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	transition-duration: 0.3s;
	width: 100%;
}
.pullmenu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% - 1rem);
	left: 0;
	transition: all 0.3s;
	min-width: 100%;
	background: rgba(255,255,255,0.7);
	border: 1px solid #c8c8c8;
}
.pullmenu a {
	display: block;
	padding: 1rem 3.2rem;
	white-space: nowrap;
	word-wrap: break-word;
	word-break:break-all;
	font-size: 2rem;
}
.pullmenu a + a {
	border-top: 1px solid #c8c8c8;
}

.header-cv {
	position: absolute;
	right: 6rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
} 
.header-cv a {
	display: flex;
	align-items: center;
	padding: 1rem 3.2rem;
	height: 4.2rem;
	background: #00c300;
	border-radius: 5rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
}

@media (max-width: 1680px) {
	.header-logo {
		margin: 0 3rem;
	}
	
	#g-navi {
		padding-right: 24rem;
	}
	#g-navi li .level1 {
		padding: 0 2rem;
		font-size: 1.6rem;
	}
	.pullmenu a {
		padding: 1rem 2rem;
		font-size: 1.6rem;
	}
	.header-cv {
	    right: 3rem;
	}
	.header-cv a {
		font-size: 1.6rem;
	}
}
/* pc */
@media (min-width: 768px) {
	#g-navi li:hover .pullmenu {
		opacity: 1;
		visibility: visible;
	}
	#g-navi .level1:hover .nav-text .text {
		transform: translateY(-100%);
	}
	.pullmenu a:hover {
		color: #ff8723;
	}
	.header-cv a:hover {
		background: #ff8723;
	}
	
}
/* sp */
@media (max-width: 767px) {
	#wrapper {
		padding-top: 5rem;
	}
	
	#header {
		align-items: flex-start;
		height: 5rem;
	}
	#header:after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    right: 0;
	    width: 52%;
	    height: 0.2rem;
	    background: linear-gradient(90deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
	    border-radius: 1rem 0 0 1rem;
	}
	.header-logo {
		margin: 0 2rem;
	}
	.header-logo a {
	    top: 1.5rem;
		z-index: 5;
	    width: 14.2rem;
	}
	
	.btn-menu {
		display: block;
		position: relative;
		z-index: 5;
		margin: 2rem 2rem 0 0;
		width: 4.4rem;
		height: 4.4rem;
		background: url(../img/common/icon_menu.svg)no-repeat center;
		background-size: 100%;
		border-radius: 50%;
	}
	.btn-menu.is-active {
		background-image: url(../img/common/icon_menu_close.svg);
	}
	
	#g-navi {
		display: block;
		visibility: hidden;
		opacity: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 2;
		transition-duration: 0.5s;
		padding: 0;
		width: 100%;
		height: 100dvh;
		background: linear-gradient(180deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
	}
	#g-navi:after,
	#g-navi .parent:after {
		content: none;
	}

	#g-navi .parent {
		display: none;
	}
	#g-navi .nav-inner {
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(-100%);
		transition-duration: 0.5s;
		padding: 9rem 1.5rem 6rem 4rem;
		width: 75%;
		max-width: 28rem;
		height: calc(100vh - 2rem);
		background: #fff;
		border-bottom-right-radius: 2.8rem;
	}
	#g-navi ul {
		display: block;
	}
	#g-navi li a {
		position: relative;
		border-bottom: 1px solid #e6e6e6;
	}
	#g-navi li a:before {
		content: "";
		position: absolute;
		left: 0;
		top: 1.1rem;
		width: 1.6rem;
		height: 1.6rem;
		background: url(../img/common/icon_arr_wh.svg)no-repeat 60% center;
		background-size: 0.6rem;
		border-radius: 50%;
	}
	#g-navi .icon1:before {
		background-color: #FF5082;
	}
	#g-navi .icon2:before {
		background-color: #ff6450;
	}
	#g-navi .icon3:before {
		background-color: #ff9600;
	}
	#g-navi .icon4:before {
		background-color: #ffc800;
	}
	#g-navi .icon5:before {
		background-color: #fff000;
	}
	#g-navi .icon6:before {
		background-color: #b4e600;
	}
	#g-navi .icon7:before {
		background-color: #5acd28;
	}
	#g-navi .icon8:before {
		background-color: #00a000;
	}
	#g-navi .icon9:before {
		background-color: #00d7aa;
	}
	#g-navi .icon10:before {
		background-color: #00d2ff;
	}
	#g-navi .icon11:before {
		background-color: #008cff;
	}
	#g-navi .icon12:before {
		background-color: #0028dc;
	}

	#g-navi li .level1 {
		justify-content: flex-start;
		padding: 0.5rem 0 0.5rem 2rem;
		height: 4rem;
		font-size: 1.5rem;
		font-weight: 400;
	}
	.pullmenu {
		visibility: visible;
		opacity: 1;
	    position: static;
	    transition: all 0.3s;
	    background: rgba(255, 255, 255, 0);
	    border: 0;
	}
	.pullmenu a + a {
		border-top: 0;
	}
	.pullmenu a {
		overflow: hidden;
		padding: 0.8rem 0 0.8rem 2rem;
		font-size: 1.5rem;
	}
	
	#g-navi .text {
		display: block;
		opacity: 0;
		transform: translateY(100%);
		transition-duration: 0.3s;
	}
	
	#g-navi.open {
		visibility: visible;
		opacity: 1;
	}
	#g-navi.open .nav-inner {
		transform: translateX(0%);
	}
	#g-navi.open .text {
		opacity: 1;
		transform: translateY(0%);
		transition-delay: 0.3s;
	}
	
	.header-cv {
		position: fixed;
		top: auto;
		bottom: 2rem;
		transform: translateY(0%);
		right: 1.8rem;
	}
	.header-cv a {
		justify-content: center;
		padding: 1rem;
		width: 9.6rem;
		height: 9.6rem;
		background: #00c300;
		border-radius: 50%;
		text-align: center;
	}
	
	
	
}

/* footer 
------------------------------------------------------------------------*/
.page-top {
	cursor: pointer
}

#footer {
	padding: 18rem 0 0;
	background: #fff;
}
#footer:after {
	content: "";
	display: block;
	height: 1.5rem;
	background: linear-gradient(90deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
}
.footer-inner {
	display: flex;
	align-items: flex-start;
	padding-bottom: 4rem;
}
.footer-logo {
	width: calc(50% - 6rem);
}
.footer-logo img {
	width: 38.6rem;
}
.footer-inner .right {
	width: calc(50% + 6rem);
}
.foot-links {
	padding-left: 3.5rem;
	border-left: 1px solid #b4b4b4;
	font-size: 1.8rem;
}
.foot-links li {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 4.5rem;
}
.foot-links li + li {
	margin-top: 2rem;
}
.foot-links li a {
	display: block;
	line-height: 1;
}
.foot-links li .parent:after {
	content: "▶";
	margin-left: 0.4rem;
}
.foot-links li:nth-child(5) .parent:after {
	color: #2c82fa;
}
.foot-links li:nth-child(8) .parent:after {
	color: #ff8723;
}
.foot-links li .level2 {
	padding: 0 1.2rem;
	border-left: 1px solid;
	border-right: 1px solid;
}
.foot-links .btn-line {
	margin-top: 3.5rem;
}
.foot-links .btn-line a {
	display: inline-block;
	padding: 0 2rem;
	background: #00c300;
	border-radius: 5rem;
	color: #fff;
}
#copyright { 
	padding: 20rem 0 0 3.5rem;
	font-size: 1.4rem;
}

/* pc */
@media (min-width: 768px) {
	.foot-links li a:hover {
		text-decoration: underline;
	}
	
	.foot-links .btn-line a:hover {
		background: #ff8723;
	}
}
/* sp */
@media (max-width: 767px) {
	#footer {
		padding-top: 8rem;
	}
	
	.footer-inner {
	    display: block;
	}
	.footer-logo {
		margin: 0 auto 3rem;
		width: 23rem;
	}
	.footer-inner .right {
		width: auto;
	}
	.foot-links {
	    padding: 3.5rem 0 0;
	    border-top: 1px solid #b4b4b4;
		border-left: 0;
	    font-size: 1.8rem;
	}
	.foot-links {
	    font-size: 1.2rem;
	}
	.foot-links li {
		display: block;
	}
	.foot-links li + li {
	    margin-top: 1.2rem;
	}
	.foot-links li .parent:after {
		content: none;
	}
	.foot-links li .level2 {
	    padding: 0;
		margin-top: 1rem;
	    border-width: 0;
	}

	.foot-links li a {
		line-height: 1.5;
	}

	.foot-links li a.parent,
	.foot-links li span.parent {
		display: none;
	}

	.foot-links .btn-line {
	    margin-top: 1.6rem;
	}
	.foot-links .btn-line a {
		padding: 0.2rem 1.2rem;
	}
	#copyright {
	    padding: 6rem 0 0;
	    font-size: 1rem;
	}
}
 
/* page 
------------------------------------------------------------------------*/
.main-kv {
	position: relative;
	padding: 21rem 0 8.8rem;
}
.js-image-scroll {
	overflow: hidden;
	display: flex;
}
.js-image-scroll ul {
	display: flex;
	align-items: flex-start;
}
.js-image-scroll ul:nth-child(odd) {
	animation-name: image-loop-left1;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.js-image-scroll ul:nth-child(even) {
	animation-name: image-loop-left2;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
@keyframes image-loop-left1 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes image-loop-left2 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-200%);
	}
}
.mainSlide li {
	overflow: hidden;
	padding-right: 3rem;
	width: 374.5rem;
}
.mainSlide li img {
	width: 100%;
}

.main-kv .title {
	position: absolute;
	top: 7.6rem;
	z-index: 2;
	width: 100%;
}
.main-kv .head {
	margin-bottom: 3rem;
	line-height: 1.2;
}
.main-kv .head .jap {
	display: block;
	color: #ff8723;
	font-size: 4.6rem;
	font-weight: 500;
}
.main-kv .head .jap2 {
	display: block;
	color: #000;
	font-size: 8.4rem;
	font-weight: 900;
}
.main-kv .head2 {
	max-width: 59rem;
	font-size: 2.6rem;
}
.main-kv .logo {
	position: absolute;
	right: 4rem;
	top: 5.6rem;
	width: 62.7rem;
}
.main-info {
	position: absolute;
	left: 0;
	bottom: 8.8rem;
	width: 100%;
}
.main-info .sub {
	margin-bottom: 2rem;
	font-weight: 300;
}
.main-info .sub span {
	display: inline-block;
	padding: 0.5rem 2rem;
	background: #fffbed;
	border-radius: 0.5rem 0.5rem 0 0;
}
.main-info .sub span:last-child {
	border-radius: 0 0.5rem 0.5rem 0.5rem;
}

.top-news .content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 9.6rem;
	border-top: 2px solid #dcdcdc;
	border-bottom: 2px solid #dcdcdc;
}
.content .side {
	width: 28%;
}
.content .main {
	width: calc(72% - 0.4rem);
}
.top-news .head .eng {
	display: block;
	letter-spacing: 0.1em;
	text-align: right;
	color: #ffaa28;
	font-size: 4rem;
	font-weight: 300;
}
.top-news .head .jap {
	line-height: 1.45;
	color: #41afff;
	font-size: 4.4rem;
	font-weight: 700;
}
.top-news .link {
	margin-top: 4.4rem;
}
.top-news .link a {
	display: flex;
	align-items: center;
	gap: 0 2rem;
	font-size: 2rem;
	font-weight: 300;
}
.top-news .link .icon-link-arr {
	position: relative;
	margin-top: -2rem;
}
.news-list li + li {
	border-top: 1px dashed #bebebe;
}
.news-list li a {
	display: flex;
	gap: 0 3.6rem;
	padding: 3rem 7rem 3rem 3rem;
	background: url(../img/common/icon_link_blue.svg)no-repeat right center;
	background-size: 3.6rem;
}
.news-list .dd {
	overflow:hidden;
	text-overflow:ellipsis; 
	white-space:nowrap;
	font-weight: 500;
}

.top-about {
	overflow: hidden;
	padding: 19rem 0 13rem;
}
.top-about .display {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.top-about .display .info {
	width: 64rem;
}
.top-about .display .img {
	width: 42rem;
}
.top-about .display .img img {
	object-fit: cover;
	max-width: unset;
	height: 50rem;
	width: calc(100% + 50vw - 60rem);
	border-radius: 5.4rem 0 0 5.4rem;
}
.top-about .display .head-small {
	white-space: nowrap;
	word-wrap: break-word;
	word-break:break-all;
}

.top-about-visited {
	position: relative;
	padding: 27rem 0 19rem;
	background: #fffbed;
}
.top-about-visited .about-connect {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 88rem;
}
.top-about-visited .display {
	display: flex;
	justify-content: center;
	position: relative;
}
.top-about-visited .display .info {
	max-width: calc(100% - 60rem);
}
.check-points li {
	padding-left: 5.2rem;
	background: url(../img/common/icon_check.svg)no-repeat left 0.5rem;
	background-size: 3.6rem;
	font-size: 2.8rem;
}
.check-points li + li {
	margin-top: 2.4rem;
}
.top-about-visited .display .imgs ul {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 29rem;
}
.top-about-visited .display .imgs .left {
	left: 0;
}
.top-about-visited .display .imgs .right {
	right: 0;
}
.top-about-visited .display .imgs li + li {
	margin-top: 4rem;
}

.top-sports-item {
	position: relative;
	padding: 10rem 0 12rem;
	color: #1e1e1e;
}
.top-sports-item.bluegreen-st {
	background: #40cfd7;
}
.top-sports-item.orange-st {
	background: #ffa419;
}
.bluegreen-st .head-middle,
.bluegreen-st .head-middle:before {
	background: #009ba6;
}
.orange-st .head-middle,
.orange-st .head-middle:before {
	background: #ff7100;
}
.head-middle-eng {
	position: absolute;
	top: 6rem;
	right: 5rem;
	height: 100%;
	writing-mode: tb-rl;
	writing-mode: vertical-rl; 
	letter-spacing: 0.1em;
	font-size: 6rem;
	font-weight: 300;
}
.bluegreen-st .head-middle-eng {
	color: #009ba6;
}
.orange-st .head-middle-eng {
	color: #ff7100;
}
.top-sports-item .insurance-foucs {
	position: absolute;
	left: calc(50% + 38rem);
	top: 10rem;
}
.top-sports-item .display {
	display: flex;
	justify-content: space-between;
}
.top-sports-item .display .img {
	width: 42rem;
}
.top-sports-item .display .img .img-con {
	display: block;
	overflow: hidden;
	margin-left: calc(-50vw + 60rem);
	height: 51rem;
	width: calc(100% + 50vw - 60rem);
	border-radius: 0 5rem 5rem 0;
}
.top-sports-item .display .img img {
	object-fit: cover;
	transition-duration: 0.3s;
	width: 100%;
	height: 100%;
}
.top-sports-item .display .info {
	width: 62rem;
}
.top-sports-item .display .head {
	margin-bottom: 3.2rem;
	color: #fff;
	font-size: 4.2rem;
	font-weight: 700;
}
.top-sports-item .display .common-txt {
	min-height: 22rem;
}

.top-reasons {
	position: relative;
	z-index: 2;
	padding: 19rem 0;
	background: linear-gradient(90deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
}
.top-reasons:before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.2rem;
	bottom: 1.2rem;
	z-index: -1;
	width: 100%;
	background: #fff;
}

.top-reasons .display {
	display: flex;
	justify-content: center;
}
.top-reasons .people1 {
	position: absolute;
	right: calc(50% + 31.6rem);
	bottom: -1rem;
	width: 47.4rem;
}
.top-reasons .people2 {
	position: absolute;
	left: calc(50% + 33.6rem);
	bottom: -4.8rem;
	width: 51rem;
}

.top-banner {
	height: 68rem;
	font-size: 0;
}

.top-recovery {
	padding: 8rem 0 11rem;
	background: linear-gradient(#2c78fa 0%, #5ad0d7 30%, #8cff64 45%, #fff52d 70%);
}
.recovery-display {
	overflow: hidden;
	position: relative;
	padding: 8rem 0;
	margin-left: 12rem;
	border-radius: 5.5rem 0 0 5.5rem;
	color: #fff;
}
.recovery-display + .recovery-display {
	margin-top: 5rem;
}
.recovery-display .head {
	position: relative;
	margin-bottom: 5rem ;
	margin-left: 10.416667vw;
	line-height: 1;
	font-size: 6rem;
	font-weight: 700;
}
.recovery-display .head:before {
	content: "";
	position: absolute;
	right: calc(100% + 4rem);
	top: 0;
	height: 6.8rem;
	width: 100rem;
	background: linear-gradient(-90deg, rgba(0,0,0,0.2) 1.2rem, rgba(0,0,0,0) 1.2rem, rgba(0,0,0,0) 2.2rem, rgba(0,0,0,0.2) 2.2rem);
}
.recovery-display .display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 10rem;
	padding-left: 10.416667vw;
}
.recovery-display .display .info {
	width: 58rem;
}
.recovery-display .display .img {
	width: 88rem;
}
.recovery-display .display .img .img-con {
	display: block;
	overflow: hidden;
	border-radius: 6.8rem 0 0 6.8rem;
}
.recovery-display .display .img img {
	object-fit: cover;
	transition-duration: 0.3s;
	width: 100%;
	height: 51rem;
	border-radius: 6.8rem 0 0 6.8rem;
}
.recovery-display .display .tit {
	margin-bottom: 2.4rem;
	font-size: 4.2rem;
	font-weight: 700;
}
.recovery-display .display .foucs-cate {
	margin-top: 4rem;
}
.foucs-cate span {
	display: inline-block;
	padding: 2.45rem 3.6rem;
	border-radius: 1.5rem;
	line-height: 1;
	color: #fff;
	font-size: 4.1rem;
	font-weight: 700;
}
.foucs-cate .safe {
	background: #ff8723;
}
.foucs-cate .price {
	background: #ff6e96;
}
.foucs-cate .treatment {
	background: #00d200;
}
.foucs-cate .effective {
	background: #1349bf;
}
.foucs-cate .effect {
    background: #00a7cd;
}

.recovery-display .head-eng {
	position: absolute;
	right: 3rem;
	top: 6.8rem;
	line-height: 1;
	font-size: 9rem;
	font-weight: 200;
}

.recovery-display.blue-st {
	background: #2864e6;
}
.recovery-display.blue-st .head-eng {
	color: #1244b3;
}
.recovery-display.bluegreen-st {
	background: #25cce6;
}
.recovery-display.bluegreen-st .head-eng {
	color: #009abd;
}
.recovery-display.orange-st {
	background: #ff9623;
}
.recovery-display.orange-st .head-eng {
	color: #ff6400;
}

.recovery-display.orange-st .head:before {
	background: linear-gradient(-90deg, rgba(255,110,0,1) 1.2rem, rgba(255,110,0,0) 1.2rem, rgba(255,110,0,0) 2.2rem, rgba(255,110,0,1) 2.2rem);
}

.top-voice {
	padding: 13rem 0 3.6rem;
	background: linear-gradient(0deg, #ebe3ca 4rem, transparent 4rem, transparent 100%);
}
.top-voice .head {
	margin-bottom: 4.8rem;
	text-align: center;
}
.top-voice .head span + span {
	display: block;
	margin-top: 4rem;
}
.top-voice .head .cate {
	display: inline-block;
	padding: 2.4rem 20.5rem;
	background: #ebe3ca;
	border-radius: 5rem;
	line-height: 1;
	color: #877351;
	font-size: 4.2rem;
	font-weight: 700;
}
.top-voice .head .jap {
	display: block;
	font-size: 3rem;
	font-weight: 400;
}
.voice-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2.5rem;
}
.voice-list li {
	overflow: hidden;
	border-radius: 1.8rem;
}
.voice-list li img {
	object-fit: cover;
	transition-duration: 0.3s;
	width: 100%;
	height: 100%;
}
.top-voice .link {
	margin-top: 8rem;
	text-align: center;
}
.top-voice .link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0 1.6rem;
	padding: 0 6.2rem;
	height: 7rem;
	background: url(../img/common/bg_rainbow.png)no-repeat center;
	background-size: 100% 100%;
	border-radius: 0.8rem;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 700;
}
.top-voice .link a:before {
	content: "";
	width: 3rem;
	height: 3rem;
	background: url(../img/common/icon_instagram_wh.svg)no-repeat center;
	background-size: 100%;
}
.top-voice .bottom {
	margin: 4.8rem 5rem 0;
	text-align: center;
}
.top-voice .bottom img {
	max-width: 177rem;
}

.top-price-information {
	padding: 18rem 0 20rem;
	background: #fff;
}
.top-price-information .head-small2 {
	margin-bottom: 6rem;
}
.top-price-information .sub {
	margin-bottom: 2.4rem;
	text-align: center;
	font-size: 2.5rem;
}
.top-price-information .price-info {
	padding: 0 4rem;
	border-top: 2px solid #c8c8c8;
	border-bottom: 2px solid #c8c8c8;
}
.price-info li {
	padding: 3.6rem 0;
	font-size: 2.8rem;
}
.price-info li + li {
	border-top: 1px dashed #a0a0a0;
}
.price-info li .tr {
	display: flex;
	justify-content: space-between;
	gap: 0 3rem;
}
.price-info li .th {
	position: relative;
	padding-left: 4.6rem;
	min-width: 50%;
}
.price-info li .th:before {
	content: "●";
	position: absolute;
	left: 0.9rem;
	top: 0;
}
.price-info li .th.is-lightbule:before {
	color: #40cfd7;
}
.price-info li .th.is-lightorange:before {
	color: #ffa419;
}
.price-info li .th.is-blue:before {
	color: #2864e6;
}
.price-info li .th.is-orange:before {
	color: #ff6e00;
}
.price-info li .td {
	width: 42%;
}
.price-info li .note {
	font-size: 2rem;
}
.price-info li .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 2rem;
}
.price-info li .row + .row {
	margin-top: 1.8rem;
}
.price-info li .price-cate {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	min-width: 22rem;
	background: #ff7100;
	border-radius: 1rem;
	text-align: center;
	color: #fff;
	font-size: 2.2rem;
}
.price-info .btn-detail {
    margin-top: 2.4rem;
}
.price-info .btn-detail .btn {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 4.5rem 0.5rem 3.6rem;
	width: calc(100% - 3.2rem);
}
.price-info .blue-st .btn-detail .btn {
	background: #2864e6;
}
.price-info .bluegreen-st .btn-detail .btn {
	background: #25cce6;
}
.price-info .btn-detail .foucs {
	color: #fff000;
	font-weight: 500;
}

.top-greeting {
	padding: 13rem 0 15rem;
}
.top-greeting .display {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 112rem;
	font-size: 2rem;
}
.top-greeting .display .info {
	width: 60%;
	line-height: 1.8;
}
.top-greeting .display .img {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem 0;
	width: calc(30% + 2.4rem);
}
.top-greeting .display .img img {
	border-radius: 2rem;
}
.top-greeting .display .name {
	margin-top: 1rem;
}
.top-greeting .display .name .jap {
	letter-spacing: 0.2em;
	font-size: 3.2rem;
}
.top-greeting .display .name .eng {
	margin-left: 2.4rem;
	color: #ffaa28;
	letter-spacing: 0.06em;
	font-size: 2.4rem;
}
.top-greeting .head {
	margin-bottom: 2.8rem;
	line-height: 1.5;
	color: #ff8723;
	font-size: 4rem;
	font-weight: 700;
}
.top-greeting .display .serial-number {
	margin: 2rem 0;
}
.serial-number {
	counter-reset:sectioncounter;
}
.serial-number li {
	position: relative;
	padding-left: 2.8rem;
	line-height: 2;
	font-weight: 500;
}
.serial-number li:before {
	content: counter(sectioncounter); 
	counter-increment: sectioncounter;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 1rem;
	left: 0;
	width: 2.1rem;
	height: 2.1rem;
	background: #000;
	border-radius: 50%;
	line-height: 1;
	color: #fff;
	font-size: 1.2rem;
	font-family: "Inter", sans-serif;
}
.serial-number li:nth-child(1):before {
	background: #2c82fa;
}
.serial-number li:nth-child(2):before {
	background: #32e632;
}
.serial-number li:nth-child(3):before {
	background: #ff9628;
}
.serial-number li:nth-child(4):before {
	background: #ff5082;
}

.top-consultation-hours {
	padding: 12rem 0 24rem;
	background: #fff;
}
.top-consultation-hours .schedule table {
	width: 100%;
	border: 1px solid #969696;
	text-align: center;
}
.top-consultation-hours .schedule thead {
	background: #b4f500;
}
.top-consultation-hours .schedule th {
	vertical-align: middle;
	height: 8rem;
	border: 1px solid #969696;
	font-size: 2.5rem;
	font-weight: 400;
}
.top-consultation-hours .schedule td {
	vertical-align: middle;
	position: relative;
	width: 12rem;
	height: 8rem;
	border: 1px solid #969696;
	color: #877351;
}
.top-consultation-hours .schedule td.none {
	background: url(../img/common/icon_line_none.png)no-repeat center;
	background-size: 100%;
}

.contact-section {
	position: relative;
	z-index: 3;
	background: #fff;
}
.contact-section .head {
	position: relative;
	margin-bottom: 4.8rem;
	background: linear-gradient(90deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
}
.contact-section .head h2 {
	padding-top: 0.2rem;
	text-align: right;
	line-height: 1.4;
	color: #fff;
	font-size: 7rem;
	font-weight: 600;
}
.contact-section .head .icon-people {
	position: absolute;
	right: calc(50% + 36.6rem);
	top: -4.8rem;
	width: 23.2rem;
}
.contact-section .head2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2.4rem;
	padding-bottom: 2.4rem;
	border-bottom: 2px solid #ffcd2d;
}
.contact-section .head2 .jap {
	color: #ff8223;
	font-size: 5.8rem;
	font-weight: 700;
}
.btn-linkline a {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 2;
	background: #00c300;
	border-radius: 10rem;
	color: #fff;
	font-size: 3.6rem;
	font-weight: 500;
}
.btn-linkline a:before {
	content: "";
	position: absolute;
	left: -22rem;
	top: 50%;
	z-index: 0;
	opacity: 0;
	transition-duration: 0.5s;
	transform: translateY(-50%);
	width: 0%;
	height: 20rem;
	background: #ff8723;
	border-radius: 50%;
}
.btn-linkline .btn {
	display: flex;
	align-items: center;
	gap: 0 2rem;
	position: relative;
	z-index: 3;
	padding: 1rem 6.5rem 1rem 4rem;
	height: 9rem;
}
.btn-linkline .btn:before {
	content: "";
	transition-duration: 0.5s;
	margin-top: 0.5rem;
	width: 5.2rem;
	height: 5rem;
	background: url(../img/common/icon_line_talk.svg)no-repeat center;
	background-size: 100%;
}
.contact-section .sub {
	margin-bottom: 3.2rem;
	line-height: 1.6;
	color: #877351;
	font-size: 3rem;
	font-weight: 700;
}
.contact-info {
	padding: 6.6rem 0 9rem;
	background: #fff064;
}
.contact-info .flow {
	display: flex;
	gap: 2rem;
}
.contact-info .flow li {
	clip-path: polygon(0% 0%, calc(100% - 2.5rem) 0%, 100% 50%, calc(100% - 2.5rem) 100%, 0% 100%);
	position: relative;
	z-index: 2;
	padding: 1.2rem 1rem;
	width: 30%;
	background: #ffaa28;
	text-align: center;
	font-size: 2.6rem;
}
.contact-info .flow li:before {
	content: "";
	clip-path: polygon(0% 0%, calc(100% - 2.4rem) 0%, 100% 50%, calc(100% - 2.4rem) 100%, 0% 100%);
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	bottom: 2px;
	z-index: -1;
	background: #fff;
}
.contact-info .flow li:last-child {
	clip-path: none;
	width: 40%;
}
.contact-info .flow li:last-child:before {
	clip-path: none;
}
.contact-info .contact-tel {
	display: flex;
	justify-content: center;
	margin-top: 8rem;
	line-height: 1.4;
}
.contact-tel .con {
	padding-left: 5rem;
}
.contact-tel .tit {
	position: relative;
	font-size: 3.6rem;
	font-weight: 500;
}
.contact-tel .tit:before {
	content: "";
	position: absolute;
	left: -5rem;
	top: 1rem;
	width: 3.4rem;
	height: 3.4rem;
	background: #ff8223;
}
.contact-tel .tel {
	width: 60.8rem;
	font-size: 1px;
    line-height: 1;
    padding: 1.5rem 0;
}
.contact-tel .time {
	font-size: 2.4rem;
	font-weight: 300;
}

.top-access {
	padding: 13.5rem 0 0;
	background: linear-gradient(0deg, #fff 60rem, transparent 60rem, transparent 100%);
	font-size: 2.5rem;
}
.top-access .head-small2 {
	margin-bottom: 1rem;
	text-align: left;
}
.top-access .display {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0 5rem;
}
.top-access .display .info {
	width: calc(50% + 2rem);
}
.top-access .display .img {
	overflow: hidden;
    margin-right: calc(-50vw + 60rem);
    width: 70%;
	border-radius: 6.6rem 0 0 6.6rem;
}
.top-access .display .traffic {
	margin-bottom: 2.8rem;
	line-height: 1.84;
}
.top-access .display .parking {
	display: inline-block;
	padding: 1.1rem 3rem;
	background: #877351;
	border-radius: 0.6rem;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 500;
}
.top-access .display .place-pic {
	display: flex;
	gap: 2.4rem;
	margin-top: 5.6rem;
}
.top-access .display .place-pic img {
	border-radius: 1.8rem;
}
.top-access .access-map {
	margin-top: 15rem;
}
.access-map .map {
	overflow: hidden;
	margin-bottom: 2.5rem;
	border-radius: 4rem;
	border: 1px solid #b4b4b4;
	font-size: 0;
}
.access-map iframe {
	width: 100%;
	height: 74rem;
}



@media (max-width: 1680px) {
	.main-kv .head .jap {
		font-size: 4rem;
	}
	.main-kv .head .jap2 {
		font-size: 7.6rem;
	}
	.main-kv .logo {
		width: 48rem;
	}
	
	.top-sports-item .insurance-foucs {
		left: calc(50% + 32rem);
		top: 10rem;
	}
	
	.recovery-display .head-eng {
		font-size: 7.2rem;
	}
}
/* pc */
@media (min-width: 768px) {
	.top-news .link a:hover {
		color: #ffaa28;
	}
	
	.news-list li a:hover {
		background-image: url(../img/common/icon_link_ora.svg);
	}
	
	.top-sports-item .display .img a:hover img,
	.recovery-display .display .img a:hover img,
	.voice-list li a:hover img {
		transform: scale(1.1,1.1);
	}
	
	.top-voice .link a:hover {
		opacity: 0.7;
	}
	
	.btn-linkline a:hover:before {
		opacity: 1;
		left: 0;
		width: 100%;
	}
}
/* sp */
@media (max-width: 767px) {
	.main-kv {
		padding: 3rem 0 1.5rem;
	}
	.mainSlide li {
		padding-right: 1.4rem;
	    width: 148rem;
	}
	.main-kv .title {
		position: static;
	}
	.main-kv .head {
		margin-bottom: 1rem;
		white-space: nowrap;
		word-wrap: break-word;
		word-break:break-all;
	}
	.main-kv .head .jap {
		font-size: 2.1rem;
	}
	.main-kv .head .jap2 {
		font-size: 3.6rem;
	}
	.main-kv .head2 {
		margin-bottom: 1.4rem;
		max-width: 22.5rem;
		font-size: 1.5rem;
		position: relative;
		margin-top: -2.4rem;
	}
	.main-kv .head2 span:nth-child(1) {
		padding-top: 0.6rem;
	}
	.main-kv .head2 span:last-child {
		padding-bottom: 0.6rem;
		border-radius: 0 1.2rem 1.2rem;
	}
	.main-kv .head2 span:after {
		content: "";
		position: absolute;
		left: 100%;
		bottom: 0;
		width: 1.5rem;
		height: 1.5rem;
		background: url(../img/common/icon_radius.png)no-repeat center;
		background-size: 100%;
	}
	.main-kv .head2 span:last-child:after {
		content: none;
	}
	.main-kv .logo {
		position: static;
		right: 4rem;
		top: 5.6rem;
		width: 19.5rem;
	}
	.main-info {
		position: static;
		padding: 4rem 0 7.6rem;
	}
	.main-info .sub {
		margin-bottom: 2.4rem;
		line-height: 1.6667;
		text-align: center;
		font-size: 1.5rem;
	}
	.main-info .sub span {
		padding: 0;
		background: transparent;
		border-radius: 0;
	}
	
	.top-news {
	    padding: 0 0 6rem;
		border-bottom: 1px solid #e6e6e6;
	}
	.top-news .content {
	    display: block; 
	    padding: 3.2rem 0;
	    border-width: 1px 0 0;
	}
	.content .side {
		width: auto;
	}
	.content .main {
		width: auto;
	}
	.top-news .head {
		margin-bottom: 1.6rem;
		text-align: center;
	}
	.top-news .head .jap {
	    font-size: 2.5rem;
	}
	.top-news .head .eng {
	    letter-spacing: 0.15em;
		text-align: center;
	    font-size: 1.4rem;
	}
	.top-news .news-list {
		border-bottom: 1px solid #dcdcdc;
	}
	.news-list li {
	    border-top: 1px dashed #bebebe;
	}
	.news-list li a {
		flex-direction: column;
	    gap: 0.1rem 0;
	    padding: 1.6rem 4rem 1.6rem 1.2rem;
	    background-position: right 1.5rem center;
	    background-size: 2.4rem;
	}
	.top-news .link {
	    margin-top: 3.5rem;
		text-align: center;
	}
	.top-news .link a {
		justify-content: center;
		gap: 0 0.8rem;
		font-size: 1.3rem;
	}
	.top-news .link .icon-link-arr {
	    margin-top: -1rem;
	}
	
	.top-about {
	    padding: 7.5rem 0 9.6rem;
	}
	.top-about .display {
	    display: block;
	}
	.top-about .display .info {
		width: auto;
	}
	.top-about .display .img {
	    margin: 3rem -3rem 0 0 ;
		width: auto;
	}
	.top-about .display .img img {
		height: auto;
		max-width: 100%;
		width: 100%;
		border-radius: 4rem 0 0 4rem;
	}
	.top-about-visited {
	    padding: 9rem 0 6.8rem;
	}
	.top-about-visited .display {
	    display: block;
	}
	.top-about-visited .display .info {
		max-width: 100%;
	}
	.top-about-visited .display .imgs {
		display: flex;
		gap: 0 1.5rem;
		margin-top: 3.6rem;
	}
	.top-about-visited .display .imgs ul {
		position: static;
		transform: translateY(0%);
		width: auto;
	}
	.top-about-visited .display .imgs li + li {
	    margin-top: 1.4rem;
	}
	.check-points li {
	    padding-left: 2.4rem;
	    background-position: left 0.3rem;
	    background-size: 1.8rem;
		line-height: 1.375;
	    font-size: 1.6rem;
	}
	.check-points li + li {
	    margin-top: 1.4rem;
	}
	
	.top-sports-item {
	    padding: 4.5rem 0 5.5rem;
	}
	.head-middle-eng {
	    position: static;
	    height: auto;
	    writing-mode: tb-lr;
	    writing-mode: horizontal-tb;
	    letter-spacing: 0.1em;
	    font-size: 2rem;
	}
	
	.top-sports-item .insurance-foucs {
		left: auto;
		right: 3.5rem;
		top: 14rem;
	}
	.top-sports-item .display {
	    display: block;
	    gap: 0;
		margin-top: 1.6rem;
	}
	.top-sports-item .display .img {
	    margin: 0 0 3rem -3rem;
		width: auto;
	}
	.top-sports-item .display .img .img-con {
		margin-left: 0;
		width: 100%;
		height: auto;
		border-radius: 0 2.6rem 2.6rem 0;
	}
	.top-sports-item .display .info {
		width: auto;
	}
	.top-sports-item .display .head {
	    margin-bottom: 1.6rem;
	    font-size: 2.3rem;
	}
	.top-sports-item .display .common-txt {
	    min-height: inherit;
	}
	.top-sports-item .btn-detail .btn {
		display: none;
	}
	
	.top-reasons {
	    padding: 6.8rem 0 16.5rem;
	}
	.top-reasons:before {
	    top: 0.7rem;
	    bottom: 0.7rem;
	}
	.top-reasons .head-small {
		margin-bottom: 3rem;
		text-align: center;
	}
	.top-reasons .check-points {
		margin: 0 auto;
		max-width: 26.5rem;
	}
	.top-reasons .people1 {
	    right: 1.8rem;
	    bottom: -0.1rem;
	    width: 100%;
		max-width: 33rem;
	}
	
	.top-banner {
		height: 20rem;
	}
	
	.top-recovery {
	    padding: 3.5rem 0 6rem;
	}

	.top-recovery .head-large {
		padding-left: 3rem;
	}

	.recovery-display {
	    padding: 4rem 0 5.5rem;
	    margin-left: 2.5rem;
	    border-radius: 2rem 0 0 2rem;
	}
	.recovery-display + .recovery-display {
	    margin-top: 3rem;
	}
	.recovery-display .display {
	    display: block;
	    padding: 0 2.5rem 0 3.5rem ;
	}
	.recovery-display .display .info {
	    max-width: 100%;
	}
	.recovery-display .display .img {
		margin: 1rem -2.5rem 0 0;
	    width: auto;
	    height: auto;
	}
	.recovery-display .display .img .img-con,
	.recovery-display .display .img img {
		height: auto;
	    border-radius: 2.8rem 0 0 2.8rem;
	}
	.recovery-display .head {
		display: inline-block;
	    margin-bottom: 2rem;
	    margin-left: 3.5rem;
	    font-size: 3.4rem;
	}
	.recovery-display .head:before {
	    content: "";
	    position: absolute;
		right: auto;
	    left: calc(100% + 1.8rem);
		top: 0.4rem;
	    height: 3rem;
	    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0.5rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0) 0.9rem, rgba(0, 0, 0, 0.2) 0.9rem);
	}

	.recovery-display.orange-st .head:before {
		background: linear-gradient(90deg, rgba(255, 110, 0, 1) 0.5rem, rgba(255, 110, 0, 0) 0.5rem, rgba(255, 110, 0, 0) 0.9rem, rgba(255, 110, 0, 1) 0.9rem);
	}

	.recovery-display .head-eng {
	    position: static;
		margin-top: 1rem;
	    font-size: 2.6rem;
	}
	.recovery-display .display .tit {
	    margin-bottom: 1.5rem;
	    font-size: 2.3rem;
	}
	.recovery-display .display .foucs-cate {
	    margin-top: 2rem;
	}
	.foucs-cate span {
	    padding: 0.9rem 1.4rem;
	    border-radius: 0.7rem;
	    font-size: 1.6rem;
	}
	
	.top-voice {
	    padding: 5.5rem 0 2rem;
	    background: linear-gradient(0deg, #ebe3ca 4rem, transparent 4rem, transparent 100%);
		background: linear-gradient(0deg, #ebe3ca 2.5rem, transparent 2.5rem, transparent 100%);
	}
	.top-voice .head {
	    margin-bottom: 3.2rem;
	    text-align: center;
	}
	.top-voice .head .cate {
	    padding: 1.5rem 5.5rem;
		line-height: 1.25;
	    font-size: 2.4rem;
	}
	.top-voice .head .jap {
		margin-top: 3.2rem;
	    font-size: 1.6rem;
	}
	.voice-list {
	    grid-template-columns: repeat(2, 1fr);
	    gap: 1.5rem;
	}
	.voice-list li {
		display: none;
	}
	.voice-list li:nth-of-type(1),
	.voice-list li:nth-of-type(2),
	.voice-list li:nth-of-type(3),
	.voice-list li:nth-of-type(4) {
		display: block;
	}
	.top-voice .link {
	    margin-top: 5rem;
	}
	.top-voice .link a {
	    gap: 0 0.8rem;
	    padding: 0 2.2rem 0 2.8rem;
	    height: 4.4rem;
	    font-size: 1.8rem;
	}
	.top-voice .link a:before {
	    width: 2rem;
	    height: 2rem;
	}
	.top-voice .bottom img {
	    max-width: 100%;
	}
	.top-voice .bottom {
	    margin: 3.6rem 2rem 0;
	}
	
	.top-price-information {
	    padding: 6.4rem 0 7.5rem;
	}
	.top-price-information .head-small2 {
	    margin-bottom: 3rem;
	}
	.top-price-information .sub {
	    margin-bottom: 1.6rem;
		line-height: 1.625;
	    text-align: center;
	    font-size: 1.6rem;
	}
	.top-price-information .price-info {
	    padding: 0;
		border-width: 1px 0;
	}
	.price-info li {
		padding: 2.4rem 0;
		font-size: 1.7rem;
	}
	.price-info li .tr {
	    display: block;
	}
	.price-info li .th {
		padding: 0 0 0.5rem 2rem;
		width: auto;
	}
	.price-info li .th:before {
	    left: 0;
	}
	.price-info li .td {
		width: auto;
		padding-left: 2rem;
	}
	.price-info li .row {
		flex-wrap: wrap;
		gap: 0.6rem;
	}
	.price-info li .row + .row {
		margin-top: 0.6rem;
	}
	.price-info li .row .full {
		width: 100%;
	}
	.price-info li .price-cate {
		padding: 0.2rem 1.4rem;
		min-width: 13rem;
		border-radius: 0.5rem;
		font-size: 1.4rem;
	}
	.price-info .btn-detail {
	    margin-top: 1rem;
	}
	.price-info li .note {
		font-size: 1.3rem;
	}
	.price-info .btn-detail .btn {
		display: none;
	}
	
	.top-greeting {
	    padding: 5rem 0 6rem;
	}
	.top-greeting .display {
	    display: block;
	    font-size: 1.4rem;
	}
	.top-greeting .display .info {
	    width: auto;
		line-height: 1.857;
	}
	.top-greeting .head {
		margin-bottom: 2rem;
		line-height: 1.5;
		font-size: 2.3rem;
	}
	.serial-number li {
	    padding-left: 2rem;
	    line-height: 1.5;
	}
	.serial-number li + li {
		margin-top: 1.2rem;
	}
	.serial-number li:before {
	    top: 0.4rem;
	    width: 1.4rem;
	    height: 1.4rem;
	    font-size: 0.8rem;
	}
	.top-greeting .display .img {
	    gap: 1rem 0;
		margin: 4rem auto 0;
	    width: 20rem;
		font-size: 1.3rem;
	}
	.top-greeting .display .name {
	    margin-top: 0.6rem;
	}
	.top-greeting .display .name .jap {
	    letter-spacing: 0.2em;
	    font-size: 2rem;
	}
	.top-greeting .display .name .eng {
	    margin-left: 1.4rem;
	    font-size: 1.4rem;
	}
	
	.top-consultation-hours {
	    padding: 5rem 0 9.5rem;
	}
	.top-consultation-hours .schedule table {
		border-color: #b4b4b4;
	}
	.top-consultation-hours .schedule th {
	    height: 5.4rem;
		border-color: #b4b4b4;
	    font-size: 1.4rem;
		font-weight: 400;
		line-height: 1;
	}
	.top-consultation-hours .schedule tbody th {
		width: 3.2rem;
	    height: 4.2rem;
	}
	.top-consultation-hours .schedule td {
	    width: 4rem;
	    height: 4.2rem;
		border-color: #b4b4b4;
	}
	.top-consultation-hours .schedule td.none {
	    background-image: url(../img/common/icon_line_none_sp.png);
	}
	
	.top-consultation-hours .schedule .times {
		display: flex;
		justify-content: center;
		gap: 0 1rem;
		margin-top: 2.4rem;
		line-height: 1.5625;
		font-size: 1.6rem;
	}
	.top-consultation-hours .schedule .times:before {
		content: "［時間］";
	}
	
	.contact-section .head {
	    margin-bottom: 2.4rem;
	}
	.contact-section .head h2 {
	    line-height: 1.4;
	    font-size: 3.8rem;
	}
	.contact-section .head .icon-people {
	    right: auto;
		left: 0.5rem;
	    top: -2.5rem;
	    width: 12.9rem;
	}
	.contact-section .sub {
	    margin-bottom: 2.2rem;
		text-align: center;
	    font-size: 1.8rem;
	}
	.contact-section .head2 {
		flex-direction: column;
		gap: 1rem;
	    margin: 0 auto 2rem;
	    padding-bottom: 2rem;
		max-width: 30rem;
	    border-bottom-width: 1px;
		text-align: center;
	}
	.contact-section .head2 .jap {
		line-height: 1.29;
	    font-size: 3.4rem;
	}
	.btn-linkline a {
		width: 100%;
	}
	.btn-linkline .btn {
	    gap: 0 1.4rem;
	    padding: 1rem 2.4rem;
	    height: 5.6rem;
	    font-size: 2.3rem;
	}
	.btn-linkline .btn:before {
		width: 3.2rem;
	}
	.contact-info {
	    padding: 3.2rem 0 6rem;
	}
	.contact-info .flow {
		align-items: center;
		flex-wrap: wrap;
	    gap: 0.5rem;
		margin: 0 auto;
		width: 23rem;
	}
	.contact-info .flow li {
	    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 1.4rem), calc(50% + 1.2rem) calc(100% - 1.4rem), 50% 100%, calc(50% - 1.2rem) calc(100% - 1.4rem), 0% calc(100% - 1.4rem));
	    padding: 0.8rem 1rem 2.2rem;
	    width: 100%;
	    font-size: 1.6rem;
	}
	.contact-info .flow li:before {
	    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 1.4rem), calc(50% + 1.1rem) calc(100% - 1.4rem), 50% calc(100% - 0.1rem), calc(50% - 1.1rem) calc(100% - 1.4rem), 0% calc(100% - 1.4rem));
	}
	.contact-info .flow li:last-child {
	    padding: 1rem ;
	    width: 100%;
	}
	.contact-info .contact-tel {
	    display: flex;
	    margin-top: 5.6rem;
	    line-height: 1.4;
	}
	.contact-tel .con {
	    padding-left: 0;
	}
	.contact-tel .tit {
		padding-left: 2.8rem;
	    font-size: 2.1rem;
	}
	.contact-tel .tit:before {
		left: 0;
	    top: 0.5rem;
	    width: 2rem;
	    height: 2rem;
	}
	.contact-tel .tel {
		width: 30rem;
		padding: 1rem 0;
	}
	.contact-tel .time {
		padding-left: 7.5rem;
		text-indent: -7.5rem;
	    font-size: 1.5rem;
	}
	
	.top-access {
	    padding: 6rem 0 0;
	    background: linear-gradient(0deg, #fff 20rem, transparent 20rem, transparent 100%);
	    font-size: 1.6rem;
	}
	.top-access .head-small2 {
		margin-bottom: 3rem;
		text-align: center;
	}
	.top-access .display {
	    display: block; 
	}
	.top-access .display .info {
		width: auto;
		text-align: center;
	}
	.top-access .display .img {
	    margin: 4rem -3rem 0 0;
		width: auto;
	    border-radius: 2.6rem 0 0 2.6rem;
	}
	.top-access .display .traffic {
	    margin-bottom: 1.8rem;
	    line-height: 1.75;
	}
	.top-access .display .parking {
	    padding: 0.7rem 1.8rem;
	    border-radius: 0.6rem;
	    font-size: 1.8rem;
	}
	.top-access .display .place-pic {
		flex-wrap: wrap;
		gap: 1.8rem 0;
		margin: 3rem auto 0;
		width: 23rem;
	}
	.top-access .access-map {
	    margin-top: 7.2rem;
	    font-size: 1.4rem;
	}
	.access-map .map {
	    margin-bottom: 1.2rem;
	    border-radius: 0.8rem;
	}
	.access-map iframe { 
	    height: 25rem;
	}
	
}


#inju #wrapper {
	background: #40cfd7;
}
#inju #teaser {
	background: linear-gradient(180deg, #009ba6 39rem, transparent 39rem, transparent 100%);
}
#inju #teaser .head .eng {
	color: #009ba6;
}

.case-display {
	padding: 15rem 0 0;
	background: #fffbed;
}
.case-display.st2 {
	padding: 15rem 0;
}
.case-display .display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 5rem;
}
.case-display .display .img {
	overflow: hidden;
	width: calc(40% - 2rem);
	border-radius: 3.8rem;
}
.case-display .display .info {
	width: calc(50% + 3rem);
}
.case-display .bottom {
	padding: 5.6rem 5rem 0;
	border-bottom: 4rem solid #ebe3ca;
}
.case-display .bottom img {
	margin-bottom: -1rem;
}

.top-sports-item .display .img2 {
	overflow: hidden;
	width: 37.5%;
	border-radius: 2.6rem;
}
.top-sports-item .example-info {
	display: flex;
	align-items: center;
	gap: 0 6.8rem;
	width: 55%;
}
.example-info .tit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32rem;
	height: 32rem;
	border-radius: 50%;
	text-align: center;
	line-height: 1.5625;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
}
.example-info li {
	font-size: 2.8rem;
}
.example-info li + li {
	margin-top: 1.6rem;
}
.example-info li:before {
	content: "●";
	margin-right: 0.8rem;
}

.top-sports-item.bluegreen2-st {
	background: #b1eff2;
}
.bluegreen2-st .head-middle,
.bluegreen2-st .head-middle:before {
	background: #009ba6;
}
.bluegreen2-st .example-info .tit {
	background: #40cfd7;
}
.bluegreen2-st .example-info li:before {
	color: #009ba6;
}

.inju-treatment {
	padding: 15rem 0 19.2rem;
}
.inju-treatment .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 2rem;
	margin-bottom: 3.4rem;
	border-bottom: 1px solid #a0a0a0;
}
.inju-treatment .head .head-small {
	margin-bottom: 0;
	font-size: 4.8rem;
}

.inju-treatment-healed {
	overflow: hidden;
	margin-top: 5rem;
	padding: 10rem 9rem;
	background: #ffa419;
	border: 1rem solid #ff7100;
}
.inju-treatment-healed .head-middle {
	margin-bottom: 3.6rem;
	background: #ff7100;
}
.inju-treatment-healed .head-middle:before {
	background: #ff7100;
}
.has-people.btn-link {
	margin-top: 1.6rem;
	text-align: center;
}
.has-people.btn-link a {
	display: inline-block;
	position: relative;
	padding-top: 14rem;
}
.has-people.btn-link a:before {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 24rem;
	height: 15rem;
	background: url(../img/common/icon_btn_people.png) no-repeat center;
	background-size: 100%;
}

/* pc */
@media (min-width: 768px) {
	.has-people.btn-link a:hover:before {
		background-image: url(../img/common/icon_btn_people_on.png);
	}
	
}
/* sp */
@media (max-width: 767px) {
	#inju #teaser {
	    background: linear-gradient(180deg, #009ba6 calc(100% - 10.5rem), transparent calc(100% - 10.5rem), transparent 100%);
	}
	
	.case-display {
	    padding-top: 4rem;
	}
	.case-display.st2 {
	    padding: 4rem 0 4.8rem;
	}
	.case-display .display {
	    display: block;
	}
	.case-display .display .img {
		margin-bottom: 3.2rem;
	    width: auto;
	    border-radius: 1.8rem;
	}
	.case-display .display .info {
		width: auto;
	}
	.case-display .display .head-small {
		text-align: center;
	}
	.case-display .display .check-points {
		margin: 0 auto;
		max-width: 27rem;
	}
	.case-display .bottom {
	    padding: 2.5rem 1.8rem 0;
		border-bottom-width: 2.5rem;
	}
	.case-display .bottom img {
	    margin-bottom: -0.6rem;
	}
	
	.top-sports-item .example-info {
	    display: block;
	    width: auto;
	}
	.example-info .tit {
		margin: 0 auto 1.6rem;
	    width: 15rem;
	    height: 15rem;
	    font-size: 1.8rem;
	}
	.example-info ul {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 1rem 2rem;
		margin: 0 auto;
		max-width: 26rem;
	}
	.example-info li {
		width: calc(50% - 1rem);
		font-size: 1.6rem;
	}
	.example-info li + li {
	    margin-top: 0;
	}
	.top-sports-item .display .img2 {
	    overflow: hidden;
		margin: 2.5rem auto 0;
	    width: 27rem;
	    border-radius: 1.5rem;
	}
	
	.inju-treatment {
	    padding: 4.8rem 0 6rem;
	}
	
	.inju-treatment .head {
	    padding-bottom: 1rem;
	    margin-bottom: 1.8rem;
	}
	.inju-treatment .head .head-small {
	    font-size: 2.2rem;
	}
	.inju-treatment-healed {
	    margin-top: 5rem;
	    padding: 4rem 2.4rem 5rem;
	    border-width: 0.6rem;
	}
	.inju-treatment-healed .head-middle {
		margin-bottom: 2rem;
		font-size: 2.2rem;
	}
	.has-people.btn-link {
	    margin-top: 2.6rem;
	}
	.has-people.btn-link a:before {
		width: 14.4rem;
		height: 9rem;
	}

	.has-people.btn-link a {
		padding-top: 8.6rem;
	}

	.has-people.btn-link .btn {
		padding: 0.7rem 5rem;
		background-color: #ff7100;
		background-position: right 1.5rem center;
		background-size: 3rem;
		border-color: #ff7100;
		font-size: 1.5rem;
	}

	.inju-wrap .head-middle {
		margin-bottom: 2.5rem;
	}
}

/* chiro.html
------------------------------------------------------*/
#chiro #wrapper {
	background: #ffa419;
}
#chiro #teaser {
	background: linear-gradient(180deg, #ff7100 39rem, transparent 39rem, transparent 100%);
}
#chiro #teaser .head .eng {
	color: #ff7100;
}

.support-age-purpose {
	padding: 13rem 16rem;
}
.support-age-purpose .head {
	margin-bottom: 6.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid;
	text-align: center;
	color: #877351;
	font-size: 4.8rem;
	font-weight: 700;
}
.support-age-purpose .head2 {
	margin-top: 8rem;
	text-align: center;
	line-height: 1.6;
	color: #787878;
	font-size: 4rem;
	font-weight: 700;
}
.support-age-purpose .supports {
	display: flex;
	justify-content: center;
}
.support-age-purpose .supports li {
	display: flex;
	align-items: center;
	gap: 0 3.5rem;
	font-size: 3.2rem;
}
.support-age-purpose .supports li + li {
	margin-top: 3rem;
}
.support-age-purpose .supports .th {
	padding: 1.7rem 1rem;
	width: 46rem;
	border-radius: 0.9rem;
	text-align: center;
	color: #fff;
	font-weight: 500;
}

.top-sports-item .sports-imgs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	margin-top: 5.6rem;
}
.top-sports-item .sports-imgs li {
	overflow: hidden;
	border-radius: 2.6rem;
}

.top-sports-item.yellow-st {
	background: #ffdc38;
}
.yellow-st .head-middle, 
.yellow-st .head-middle:before {
    background: #ff7100;
}

.chiro-wrap .top-price-information .inner {
	max-width: 100rem;
}
.chiro-wrap .price-info li:nth-of-type(3n + 1) .th:before {
    color: #ffa419;
}
.chiro-wrap .top-price-information .common-end {
    margin-top: 8rem;
}
 
/* pc */
@media (min-width: 768px) {
}
/* sp */
@media (max-width: 767px) {
	#chiro #teaser {
		background: linear-gradient(180deg, #ff7100 calc(100% - 10.5rem), transparent calc(100% - 10.5rem), transparent 100%);
	}
	
	.support-age-purpose {
	    padding: 5rem 0 6.8rem;
	}
	.support-age-purpose .head {
	    margin-bottom: 4rem;
	    padding-bottom: 1.2rem;
	    font-size: 2.2rem;
	}
	.support-age-purpose .head2 {
	    margin-top: 4rem;
	    font-size: 2rem;
	}
	.support-age-purpose .supports li {
		display: block;
		text-align: center;
	    font-size: 1.8rem;
	}
	.support-age-purpose .supports li + li {
	    margin-top: 2.2rem;
	}
	.support-age-purpose .supports .th {
		margin-bottom: 0.8rem;
		padding: 0.6rem 1rem;
		width: 27rem;
	}
	
	.top-sports-item .sports-imgs {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 2.5rem;
	    margin: 3.6rem auto 0;
		max-width: 27rem;
	}
	.top-sports-item .sports-imgs li {
	    border-radius: 1.5rem;
	}
	
	.chiro-wrap .price-info li {
		display: flex;
		justify-content: center;
	}
	
	.chiro-wrap .head-middle {
		margin-bottom: 2.5rem;
	}
}


/* news.html
------------------------------------------------------*/
#news {
	background: #fff;
}

#news #teaser {
	padding: 0;
}
#news #teaser .info {
	position: absolute;
	bottom: 9.2rem; 
	left: 0;
	width: 100%;
	text-align: center;
}
#teaser .head-small2 {
	display: inline-block;
	margin-bottom: 0;
	padding: 2.5rem 10.8rem;
	background: #41afff;
	border-radius: 10rem;
	line-height: 1.3;
}
#teaser .head-small2 .jap {
	color: #fff;
}
#teaser .head-small2 .eng {
    color: #ffcd2d;
}

.news-wrap {
	padding: 0 0 40rem;
}

.news-wrap .head-wrap .logo {
    transform: translateY(0%);
    margin: 5rem 0 10rem;
    text-align: right;
}
 
.news-introd-list {
	padding: 0 5rem;
	border-top: 2px solid #dcdcdc;
}
.news-introd-list .part {
	padding: 8.8rem 0 10rem;
	border-bottom: 2px solid #dcdcdc;
}
.news-introd-list .title {
	margin-bottom: 4rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed #bebebe;
}
.news-introd-list .title h2 {
	margin-bottom: 2rem;
	color: #877351;
	font-size: 4.2rem;
	font-weight: 700;
}
.news-introd-list .title .date {
	color: #6e6e6e;
	font-size: 2rem;
}
.news-introd-list .foucs {
	color: #ff8723;
	font-weight: 700;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.6rem;
	margin-top: 19rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-width: 6rem;
	height: 6rem;
	border: 1px solid #41afff;
	color: #41afff;
}
.wp-pagenavi .pages {
	padding: 0 1rem;
	background: #41afff;
	color: #fff;
}
.wp-pagenavi .pages,
.wp-pagenavi .last {
	width: 11rem;
}
.wp-pagenavi .nextpostslink {
	font-size: 0;
}
.wp-pagenavi .nextpostslink:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 1.5rem solid #41afff;
	border-top: 0.9rem solid transparent;
	border-bottom: 0.9rem solid transparent;
}
.wp-pagenavi .current {
	background: #41afff;
	border-color: #41afff !important;
	color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink {
	display: none;
}


/* pc */
@media (min-width: 768px) {
	.wp-pagenavi a:hover {
		background: #41afff;
		border-color: #41afff !important;
		color: #fff;
	}
	.wp-pagenavi .nextpostslink:hover:after {
		border-left-color: #fff;
	}
}
/* sp */
@media (max-width: 767px) {
	
	#news #teaser .info {
	    position: static;
		margin-top: 3.2rem;
	}
	#teaser .head-small2 {
	    padding: 0.8rem 4rem;
	}
	#teaser .head-small2 .jap {
		font-size: 2rem;
	}
	#teaser .head-small2 .eng {
		font-size: 1.2rem;
	}
	
	.news-wrap {
		padding: 7.4rem 0 15.5rem;
	}
	.news-wrap .head-wrap .logo {
	    transform: translateY(0%);
	    margin: 5rem 0 10rem;
	    text-align: right;
	}
	
	.news-introd-list {
	    padding: 0;
	}
	.news-introd-list .part {
	    padding: 4rem 0 4.8rem;
	    border-bottom-width: 1px;
	}
	.news-introd-list .title {
	    margin-bottom: 2.4rem;
	    padding-bottom: 1rem;
	}
	.news-introd-list .title h2 {
	    margin-bottom: 1.4rem;
	    font-size: 2.4rem;
	}
	.news-introd-list .title .date {
		font-size: 1.3rem;
	}
	
	.wp-pagenavi {
		gap: 0.8rem;
		margin-top: 7rem;
	}
	.wp-pagenavi a, 
	.wp-pagenavi span {
	    min-width: 3rem;
	    height: 3rem;
		font-size: 1.2rem;
	}
	.wp-pagenavi a.is-pc {
		display: none;
	}
	.wp-pagenavi .pages, 
	.wp-pagenavi .last {
	    width: 5.5rem;
	}
	
	.wp-pagenavi .nextpostslink:after {
		border-width: 0.45rem 0 0.45rem 0.8rem;
	}
}


/* recovery.html */
.teaser-banner {
	overflow: hidden;
    position: relative;
    padding: 55rem 0 0;
    margin-bottom: -12rem;
    height: 91rem;
    width: 100%;
    background: no-repeat center;
    background-size: cover;
}
#oxy .teaser-banner {
	background-image: url(../img/recovery/recovery_oxy/teaser.jpg);
}
#nail .teaser-banner {
	background-image: url(../img/recovery/recovery_nail/teaser.jpg);
}
#hydr .teaser-banner {
	background-image: url(../img/recovery/recovery_hydr/teaser.jpg);
}
.teaser-banner .foucs-cate {
	position: absolute;
	right: 7rem;
	top: 6rem;
}

.teaser-st.head-middle {
	padding: 1rem 15rem 1rem 0;
	text-align: right;
	font-size: 6rem;
}
#oxy .teaser-st.head-middle,
#oxy .teaser-st.head-middle:before {
	background: #1349bf;
}
#hydr .teaser-st.head-middle,
#hydr .teaser-st.head-middle:before {
	background: #00a7cd;
}
#nail .teaser-st.head-middle,
#nail .teaser-st.head-middle:before {
	background: #ff6400;
}
 
.recovery-wrap {
}

.recovery-sports .head {
	margin-bottom: 2rem;
	text-align: center;
	letter-spacing: 0.06em;
	font-size: 6rem;
	font-weight: 200;
}
#oxy .recovery-sports .head {
	color: #2864e6;
}
#hydr .recovery-sports .head {
	color: #00a7cd;
}
#nail .recovery-sports .head {
	color: #ff6e00;
}

.top-sports-item.blue-st {
    background: #2864e6;
	color: #fff;
}
.top-sports-item.blue2-st {
    background: #598eff;
	color: #fff;
}
.blue-st .head-middle, 
.blue-st .head-middle:before,
.blue2-st .head-middle, 
.blue2-st .head-middle:before {
    background: #1349bf;
}

.movie-section {
	padding: 15rem 0;
}
.movie-section .inner {
	max-width: 106rem;
}
.movie-section .movie {
	position: relative;
	padding-top: 56.25%;
}
.movie-section .movie iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.movie-section .tit {
	margin-top: 5rem;
	text-align: center;
	line-height: 2;
	font-size: 2.5rem;
}
.movie-section .tit2 {
	margin-top: 8rem;
	padding: 3.8rem 2rem;
	background: #ff8c00;
	border-radius: 10rem;
	line-height: 1.4857;
	text-align: center;
	color: #fff;
	font-size: 3.5rem;
	font-weight: 700;
}

.sports-chiropractic .peoples {
	position: relative;
	z-index: 2;
	padding: 1rem 5rem 0;
	margin-bottom: -1.6rem;
	text-align: center;
}

#hydr .sports-chiropractic .peoples {
	padding-top: 6.8rem;
}

.sports-chiropractic .top-sports-item {
	padding: 10rem 0 8rem;
}
.sports-chiropractic .top-sports-item.orange-st {
	background: linear-gradient(90deg, #2864e6 50%, #ffa419 50%);
}
.sports-chiropractic .head-middle {
	padding: 1.6rem 11rem 1.6rem 0;
	max-width: 114rem;
	text-align: right;
	font-size: 6rem;
}
.top-sports-item .display.reverse-st .info {
    width: calc(50% - 5rem);
	color: #fff;
}
.top-sports-item .display.reverse-st .img {
	width: 49rem;
}
.top-sports-item .display.reverse-st .img .img-con {
	object-fit: cover;
	margin-left: 0;
	max-width: unset;
	height: 50rem;
	width: calc(100% + 50vw - 60rem);
    border-radius: 5rem 0 0 5rem;
}
.sports-chiropractic .foucs-cate {
	margin-top: 1rem;
}


.benefits-foryour {
	margin-top: 15rem;
}
.benefits-foryour .head {
	margin-bottom: 1.6rem;
	text-align: center;
	color: #ff7100;
	font-size: 3.8rem;
	font-weight: 700;
}
.benefits-foryour .box {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	padding: 5rem 4rem 5.6rem;
	max-width: 104rem;
	background: linear-gradient(90deg, #2c82fa 0%, #5ad0d7 15%, #8cff64 25%, #a0ff1e 30%, #f5f52d 45%, #ffcd2d 60%, #ffaa28 75%, #ff8723 85%, #ff5082 100%);
	text-align: center;
	color: #1e1e1e;
}
.benefits-foryour .box:before {
	content: "";
	position: absolute;
	left: 2rem;
	right: 2rem;
	top: 2rem;
	bottom: 2rem;
	z-index: -1;
	background: #fff;
}
.benefits-foryour .first {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 18rem;
	height: 18rem;
	background: #ff5082;
	border-radius: 50%;
	line-height: 1.25;
	text-align: center;
	color: #fff;
	font-size: 4rem;
	font-weight: 700;
}
.benefits-foryour .special-price {
	line-height: 1.3;
}
.benefits-foryour .special-price .tit {
	font-size: 4.2rem;
	font-weight: 700;
}
.benefits-foryour .special-price .price {
	font-size: 5.5rem;
	font-weight: 900;
}
.benefits-foryour .special-price .price .num {
	font-size: 8rem;
	font-weight: 700;
}
.benefits-foryour .note {
	margin-top: 1rem;
	font-weight: 300;
}

.top-sports-item.bluegreen3-st {
	background: #25cce6;
	color: #fff;
}
.bluegreen3-st .head-middle,
.bluegreen3-st .head-middle:before {
	background: #00a7cd;
}

.recovery-hydr-three-effects {
	padding: 20rem 0;
}
.recovery-hydr-three-effects .head {
	overflow: hidden;
	margin-bottom: 6.5rem;
	text-align: center;
	color: #00a7cd;
	font-size: 4.8rem;
	font-weight: 700;
}
.recovery-hydr-three-effects .head .con {
	position: relative;
	padding: 0 5.5rem;
}
.recovery-hydr-three-effects .head .con:before,
.recovery-hydr-three-effects .head .con:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 100rem;
	border-top: 2px solid #c8c8c8;
}
.recovery-hydr-three-effects .head .con:before {
	right: 100%;
}
.recovery-hydr-three-effects .head .con:after {
	left: 100%;
}
.recovery-hydr-three-effects .head .num {
	margin: 0 0.5rem;
	font-size: 7.4rem;
}
.recovery-hydr-three-effects ul {
	display: flex;
	justify-content: center;
	gap: 1rem 12.5rem;
	text-align: center;
}
.recovery-hydr-three-effects li .sign {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 2.6rem;
	width: 27rem;
	height: 27rem;
	background: #25cce6;
	border-radius: 50%;
	line-height: 1.2;
	color: #fff;
	font-size: 4.6rem;
	font-weight: 700;
}
.recovery-hydr-three-effects li .tit {
	line-height: 1.76;
	font-size: 2.5rem;
}

.recovery-hydr-about {
	padding: 8rem 0;
	background: url(../img/recovery/recovery_hydr/bg_hydrogen.jpg)no-repeat center;
	background-size: cover;
}
.recovery-hydr-about .inner {
	max-width: 118rem;
}
.recovery-hydr-about .head-small4 {
	color: #fff;
}
.recovery-hydr-about .effectives li + li {
	padding-top: 4.6rem;
	background: url(../img/common/icon_arrow_blue.svg)no-repeat 20rem top;
	background-size: auto 4.6rem;
}
.recovery-hydr-about .effectives .con {
	display: inline-block;
	padding: 0.8rem 4rem;
	min-width: 42rem;
	background: #fff;
	border-radius: 1rem;
	border: 2px solid #009abd;
	text-align: center;
	line-height: 1.45;
	font-size: 2.5rem;
}

#hydr .sports-chiropractic .top-sports-item.orange-st {
    background: linear-gradient(90deg, #25cce6 50%, #ffa419 50%);
}

.case-display2 .display {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.case-display2 .display .info {
	width: calc(50% + 2rem);
}
.case-display2 .display .img {
	overflow: hidden;
	width: calc(45% - 2rem);
	border-radius: 1.8rem;
}

#nail .top-sports-item.yellow-st {
    background: #ffb005;
}

.top-sports-item .display2 {
    display: flex;
	justify-content: space-between;
	align-items: flex-start;
    gap: 0 5rem;
}
.top-sports-item .display2 .info {
	width: 54%;
}
.top-sports-item .display2 .img {
	overflow: hidden;
	width: calc(40% + 2rem);
	border-radius: 3.8rem;
}
.top-sports-item .display2 .head-middle {
	margin-bottom: 6rem;
}

.recovery-nail-spange {
	padding: 12rem 0 17rem;
	background: #fffbed;
}
.recovery-nail-spange .points li {
	padding-left: 1.4em;
	text-indent: -1.4em;
	line-height: 1.4285;
	font-size: 2.8rem;
}
.recovery-nail-spange .points li + li {
	margin-top: 1.2rem;
}
.recovery-nail-spange .points li:before {
	content: "●";
	margin-right: 0.6rem;
	color: #00d200;
}
.recovery-nail-spange .imgs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 4rem;
	margin-top: 10rem;
}
.recovery-nail-spange .imgs li {
	overflow: hidden;
	border-radius: 1.8rem;
}

#nail .case-display .bottom {
	border-bottom: 0;
}

/* sp */
@media (max-width: 767px) {
	.teaser-banner {
		padding: 0;
		margin-bottom: -4rem;
		height: 24rem;
		width: 100%;
	} 
	.teaser-st.head-middle {
		padding: 1rem 0;
		margin-bottom: 3rem;
		font-size: 2.6rem;
		text-align: center;
	}
	.teaser-banner .foucs-cate {
		right: 2.5rem;
		top: 16rem;
	}
	
	.recovery-sports .head {
		margin-bottom: 1rem;
		font-size: 2.2rem;
	}
	
	.movie-section {
	    padding: 5rem 0;
	}
	.movie-section .tit {
	    margin-top: 2rem;
	    line-height: 1.625;
	    font-size: 1.6rem;
	}
	.movie-section .tit2 {
		margin-top: 4rem;
		padding: 1.8rem 2rem;
		line-height: 1.4;
	    font-size: 1.7rem;
	}
	
	.sports-chiropractic .peoples {
	    padding: 1rem 2.5rem 0;
	    margin-bottom: -0.6rem;
	}

	#hydr .sports-chiropractic .peoples {
		padding-top: 3rem;
	}

	.sports-chiropractic .top-sports-item {
	    padding: 0 0 5rem;
	}
	.sports-chiropractic .top-sports-item.orange-st {
	    background: linear-gradient(90deg, #2864e6 75%, #ffa419 75%);
	}
	.sports-chiropractic .head-middle {
	    padding: 3.2rem 1rem 3.6rem;
		margin: 0 auto 3rem;
	    max-width: 23rem;
		border-radius: 0 0 5rem 5rem;
	    text-align: center;
	    font-size: 2.6rem;
	}
	.sports-chiropractic .head-middle:before {
		content: none;
	}
	.top-sports-item .display.reverse-st .info {
	    width: auto;
	}
	.top-sports-item .display.reverse-st .img {
	    margin: 3rem -3rem 0 0;
		width: auto;
	}
	.top-sports-item .display.reverse-st .img .img-con {
		width: 100%;
		height: auto;
		border-radius: 2.6rem 0 0 2.6rem;
	}
	
	.benefits-foryour {
	    margin-top: 6.4rem;
	}
	.benefits-foryour .head {
	    margin-bottom: 5.6rem;
	    font-size: 2.2rem;
	}
	.benefits-foryour .box {
	    padding: 5rem 2.5rem 3.6rem;
	    max-width: 28rem;
	}
	.benefits-foryour .box:before {
	    left: 0.9rem;
	    right: 0.9rem;
	    top: 0.9rem;
	    bottom: 0.9rem;
	}
	.benefits-foryour .first {
		left: 50%;
	    width: 9.6rem;
	    height: 9.6rem;
	    font-size: 2.4rem;
	}
	.benefits-foryour .special-price .tit {
	    font-size: 2.4rem;
	}
	.benefits-foryour .special-price .price {
	    font-size: 3.2rem;
	}
	.benefits-foryour .special-price .price .num {
	    font-size: 4.6rem;
	}
	
	.recovery-hydr-three-effects {
	    padding: 5rem 0;
	}
	.recovery-hydr-three-effects .head {
	    margin-bottom: 3.2rem;
	    font-size: 2.2rem;
	}
	.recovery-hydr-three-effects .head .con {
	    padding: 0 1.6rem;
	}
	.recovery-hydr-three-effects .head .num {
	    margin: 0 0.5rem;
	    font-size: 3.5rem;
	}
	
	.recovery-hydr-three-effects ul {
		flex-direction: column;
	    gap: 3.2rem;
	}
	.recovery-hydr-three-effects li .sign {
	    margin: 0 auto 1rem;
	    width: 13.5rem;
	    height: 13.5rem;
	    font-size: 2.3rem;
	}
	.recovery-hydr-three-effects li .tit {
	    line-height: 1.6667;
	    font-size: 1.5rem;
	}
	
	.recovery-hydr-about {
	    padding: 4rem 0 5rem;
	}
	.recovery-hydr-about .head-small4 {
		text-align: center;
	}
	
	.recovery-hydr-about .effectives li {
		text-align: center;
	}
	.recovery-hydr-about .effectives li + li {
	    padding-top: 2.5rem;
	    background-position: center top;
	    background-size: auto 2.5rem;
	}
	.recovery-hydr-about .effectives .con {
	    padding: 0.5rem 2rem;
	    min-width: 22rem;
	    border-radius: 1rem;
	    border-width: 1px;
	    line-height: 1.45;
	    font-size: 1.3rem;
	}
	
	#hydr .sports-chiropractic .top-sports-item.orange-st {
		background: linear-gradient(90deg, #25cce6 75%, #ffa419 75%);
	}
	
	.case-display2 .display {
	    display: block;
	}
	.case-display2 .display .info {
	    width: auto;
	}
	.case-display2 .display .img {
		margin: 2rem auto 0;
	    width: 26rem;
		border-radius: 0.8rem;
	}
	
	.top-sports-item .display2 {
	    display: block;
	    gap: 0 8rem;
	}
	.top-sports-item .display2 .info {
		width: auto;
	}
	.top-sports-item .display2 .img {
		margin: 3rem auto 0;
		width: 25rem;
		border-radius: 1.8rem;
	}
	.top-sports-item .display2 .head-middle {
		margin-bottom: 2.2rem;
	}
	
	.recovery-nail-spange {
		padding: 5rem 0;
	}
	.recovery-nail-spange .head-small5,
	.case-display .head-small5 {
		text-align: center;
	}
	.recovery-nail-spange .points li {
		font-size: 1.4rem;
	}
	.recovery-nail-spange .points li + li {
		margin-top: 1rem;
	}
	.recovery-nail-spange .imgs {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.4rem 1.3rem;
		margin-top: 3.2rem;
	}
	.recovery-nail-spange .imgs li {
		border-radius: 0.8rem;
	}
	
	
	.recovery-wrap .head-middle {
		margin-bottom: 2.5rem;
	}

	.recovery-wrap .has-people.btn-link {
		margin-top: 4rem;
	}
	
	
	
}