@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--color-prime: #30d5c7;
	--color-bg: #e7fffd;
	--color-header-bg: #30d5c7;
	--color-body-bg: #ffffff;
	--font-quick: 'Quicksand', sans-serif;
}

body {
	color: #333;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.4rem;
	font-weight: 300;
	letter-spacing: 0.06em;
	line-height: 1.6;
	background: var(--color-body-bg);
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.6rem;
	}
}

a {
	color: #333;
}



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
	font-size: 0.833vw;
}

@media screen and (max-width: 768px) {
	html {
		font-size: 1.303vw;
	}
}

@media screen and (max-width: 540px) {
	html {
		font-size: 1.851vw;
	}
}

@media screen and (max-width: 414px) {
	html {
		font-size: 2.415vw;
	}
}

@media screen and (min-width: 1401px) {
	html {
		font-size: 0.714vw;
	}
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 5rem;
	background: var(--color-header-bg);
}

header h1 {
	width: 20rem;
	line-height: 1;
}

@media screen and (max-width: 768px) {
	header {
		height: 6rem;
		padding: 0;
	}

	header h1 {
		width: 12rem;
		margin: 0 auto;
	}
}



/*  ----------------------------------------------------------

main

----------------------------------------------------------  */
main {
	background: var(--color-body-bg);
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
	display: flex;
	align-items: center;
}

ul.gnav-menu>li {
	white-space: nowrap;
	position: relative;
}

ul.gnav-menu>li:not(:first-child) {
	margin-left: 3.5rem;
}

ul.gnav-menu>li a:hover {
	opacity: 0.5;
}

ul.gnav-menu>li.current a::before {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	background: #fff;
	position: absolute;
	bottom: -1.4rem;
	left: calc(50% - 0.3rem);
	border-radius: 50%;
}

ul.gnav-menu .more {
	width: auto;
	height: 4rem;
	padding: 0 4rem 0 3rem;
}



/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
	background: #30d5c7;
	color: #fff;
	padding: 4rem 12rem;
}

footer a {
	color: #fff;
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
}

footer .logo {
	width: 20rem;
}

footer nav ul {
	display: flex;
}

footer nav ul li:not(:last-child) {
	margin-right: 3rem;
}

footer small {
	display: block;
	font-size: 1.2rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 6rem 3rem;
	}

	footer .wrap {
		display: block;
		margin-bottom: 5rem;
	}

	footer .logo {
		width: 20rem;
		margin: 0 auto 5rem auto;
	}

	footer nav ul {
		display: block;
	}

	footer nav ul li {
		text-align: center;
	}

	footer nav ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 1.5rem;
	}

	footer small {
		text-align: center;
	}
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(../img/top-kv1.jpg) no-repeat center bottom / cover;
	position: relative;
}

.page-ttl>div {
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30rem;
	padding-top: 1.5rem;
}

.page-ttl h2 {
	color: #fff;
	font-size: 3.2rem;
	line-height: 1;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.15em;
}

.page-ttl h2 span {
	display: block;
	font-family: var(--font-quick);
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	letter-spacing: 0.08em;
	text-transform: capitalize;
	margin-top: 1.2rem;
	color: var(--color-prime);
}

@media screen and (max-width: 768px) {
	.page-ttl h2 span {
		font-size: 1.8rem;
	}
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* ttl */
.container h3 {
	background: var(--color-prime);
	color: #fff;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
	padding: 0.5rem 1.5rem 0.8rem 1.5rem;
	margin-bottom: 3rem;
}

.ttl {
	border-bottom: solid 1px rgba(0, 0, 0, 0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}

.ttl:after {
	border-bottom: solid 4px var(--color-prime);
	bottom: -4px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}

@media screen and (max-width: 768px) {
	.container h3 {
		font-size: 1.8rem;
		padding: 0.5rem 1rem 0.7rem 1rem;
	}

	.ttl:after {
		width: 40%;
	}
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
	border-top: solid 0.12rem #dadada;
}

dl.detail dt {
	font-weight: bold;
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	background: var(--color-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: solid 0.12rem #dadada;
	color: var(--color-prime);
}

dl.detail dd {
	padding: 1.5rem;
	width: 75%;
	border-bottom: solid 0.12rem #dadada;
}

@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}

	dl.detail dt {
		width: 100%;
		justify-content: flex-start;
		padding: 1.2rem 2rem;
	}

	dl.detail dd {
		width: 100%;
		padding: 1.2rem 2rem;
	}
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;
}

.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.gnav-sp-menu li {
	text-align: center;
}

.gnav-sp-menu li a {
	display: block;
	font-size: 1.8rem;
	padding: 1.5rem 0;
	white-space: nowrap;
}

.gnav-sp-menu li:last-child {
	width: 28rem;
	margin: 0 auto 0 auto;
}

.gnav-sp-menu .more {
	height: 5.4rem;
	padding: 0 0 0.1rem 0;
	display: flex;
	align-items: center;
}

/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: #18a498;
}

.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}

.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}

/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}

.open .toggle-btn span {
	background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem
}

.container .wrap {
	display: flex;
	justify-content: space-between;
}

.container .wrap.reverse {
	flex-direction: row-reverse;
}

.container .wrap>figure {
	width: 35%;
}

.container .wrap>div {
	width: 60%;
}

.container h4:not(.ttl) {
	font-size: 1.7rem;
	margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}

	.container .wrap {
		display: block;
	}

	.container .wrap>figure {
		width: 100%;
		margin-bottom: 2rem;
	}

	.container .wrap>div {
		width: 100%;
	}

	.container h4:not(.ttl) {
		font-size: 1.8rem;
	}
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
	position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;
}

#page-top a {
	background: #fff;
	color: var(--color-prime);
	border: solid 0.2rem var(--color-prime);
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.4rem;
	padding-left: 0.1rem;
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a.line {
	text-decoration: underline;
}

a:hover.line {
	text-decoration: none;
}

a:hover {
	opacity: 0.5;
}

@media screen and (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

@media screen and (max-width: 768px) {
	a[href^="tel:"] {
		text-decoration: underline;
	}
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* more */
.more {
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.6rem;
	font-family: var(--font-quick);
	color: #fff;
	background: url(../img/arrow.png) no-repeat right 1.5rem center;
	background-size: 1.4rem auto;
	background-color: var(--color-prime);
	border-radius: 10rem;
	width: 22rem;
	margin: 0 auto;
}

.more.jp {
	font-family: 'M PLUS 1p', sans-serif;
}

@media screen and (max-width: 768px) {
	.more {
		width: 100%;
	}
}

/* position */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}

/* map */
.gmap iframe {
	width: 100%;
	height: 40rem;
}

/* margin */
.mb-10 {
	margin-bottom: 1rem !important;
}

.mb-15 {
	margin-bottom: 1.5rem !important;
}

.mb-20 {
	margin-bottom: 2.0rem !important;
}

.mb-25 {
	margin-bottom: 2.5rem !important;
}

.mb-30 {
	margin-bottom: 3.0rem !important;
}

.mb-35 {
	margin-bottom: 3.5rem !important;
}

.mb-40 {
	margin-bottom: 4.0rem !important;
}

.mb-45 {
	margin-bottom: 4.5rem !important;
}

.mb-50 {
	margin-bottom: 5.0rem !important;
}

.mb-55 {
	margin-bottom: 5.5rem !important;
}

.mb-60 {
	margin-bottom: 6.0rem !important;
}

.mb-65 {
	margin-bottom: 6.5rem !important;
}

.mb-70 {
	margin-bottom: 7.0rem !important;
}

.mb-75 {
	margin-bottom: 7.5rem !important;
}

.mb-80 {
	margin-bottom: 8.0rem !important;
}

.mb-85 {
	margin-bottom: 8.5rem !important;
}

.mb-90 {
	margin-bottom: 9.0rem !important;
}

.mb-95 {
	margin-bottom: 9.5rem !important;
}

.mb-100 {
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

@-ms-keyframes fadeInUp {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation: fadeInUp 0.6s ease;
	-moz-animation: fadeInUp 0.6s ease;
	-ms-animation: fadeInUp 0.6s ease;
	animation: fadeInUp 0.6s ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both
}

.fade {
	opacity: 0;
}

.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}

.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}

.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}

.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}

.w100 {
	width: 100% !important;
}

/*  ----------------------------------------------------------

news

----------------------------------------------------------  */
.top-news .CMS-NEWS-INDEX {
	border-top: 1.5px dotted var(--main-color);
	border-bottom: 1.5px dotted var(--main-color);
	margin-bottom: 6rem;
}

.top-news .CMS-NEWS-ITEM {
	border-bottom: 1.5px dotted var(--main-color);
}

.top-news .CMS-NEWS-ITEM:last-of-type {
	border-bottom: none;
}

.top-news .CMS-NEWS-ITEM a {
	transition: all 0.3s;
	padding: 2rem 0;
	display: flex;
	align-items: center;
}

.top-news .CMS-NEWS-ITEM a:hover {
	opacity: 0.6;
}

.top-news .CMS-NEWS-TIME {
	color: var(--main-color);
	font-size: 1.6rem;
	padding-left: 1rem;
	width: 16rem;
	display: block;
	font-weight: bold;
}

.top-news .CMS-NEWS-LINK {
	display: block;
	line-height: 1.6;
	width: calc(100% - 16rem);
}

.CMS-NEWS-TITLE {
	border-bottom: solid 1px rgba(0, 0, 0, 0.2);
	font-size: 2.4rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: bold;
}

.CMS-NEWS-TITLE:after {
	border-bottom: solid 3px var(--main-color);
	bottom: -3px;
	content: ' ';
	display: block;
	position: absolute;
	width: 25%;
}

.CMS-NEWS-CONTENT img {
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto 20px auto;
}

.news .CMS-NEWS-ITEM {
	margin-bottom: 3rem;
}

.news .CMS-NEWS-ITEM a {
	display: flex;
	align-items: center;
	transition: all 0.3s;
	justify-content: flex-start;
	border: 1px solid #ddd;
	padding: 2rem;
}

.news .CMS-NEWS-ITEM a:hover {
	opacity: 0.8;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.news .CMS-NEWS-ITEM img {
	width: 30%;
	height: auto;
}

.news .CMS-NEWS-TIME {
	color: var(--sub-color);
	font-size: 1.6rem;
	width: 30%;
	display: block;
	text-align: center;
	font-weight: bold;
}

.news .CMS-NEWS-LINK {
	display: block;
	line-height: 1.6;
	width: 70%;
}

.CMS-NEWS-MORE-READ {
	background: var(--main-color);
	border: none;
	border-radius: 0.2rem;
	text-align: center;
	padding: 2rem 0;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	margin: 4rem auto 0 auto;
	width: 24rem;
	display: block;
	transition: all 0.3s;
	display: none;
}

.CMS-NEWS-MORE-READ:hover {
	cursor: pointer;
	opacity: 0.6;
}

.top-news .CMS-NEWS-MORE-READ {
	display: none;
}


@media screen and (min-width: 768px) {
	.CMS-NEWS-WRAP {
		display: flex;
		align-items: center;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.top-news .CMS-NEWS-INDEX {
		margin-bottom: 4rem;
	}

	.top-news .CMS-NEWS-ITEM {
		border-bottom: 1px solid #cad7ec;
	}

	.top-news .CMS-NEWS-ITEM a {
		display: block;
		padding: 2rem 1rem;
	}

	.top-news .CMS-NEWS-TIME {
		padding-left: 0;
		width: 100%;
	}

	.top-news .CMS-NEWS-LINK {
		width: 100%;
	}

	.CMS-NEWS-CONTENT img {
		width: 100%;
	}

	.CMS-NEWS-ITEM a {
		display: block;
	}

	.CMS-NEWS-ITEM a:hover {
		opacity: 0.8;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	}

	.CMS-NEWS-ITEM img {
		width: 100%;
		height: auto;
		margin-bottom: 1.5rem;
	}

	.news .CMS-NEWS-TIME {
		font-size: 1.6rem;
		width: 100%;
		text-align: left;
	}

	.news .CMS-NEWS-LINK {
		width: 100%;
	}

	.CMS-NEWS-WRAP {
		margin-left: 10px;
	}
}

/*  ----------------------------------------------------------

blog

----------------------------------------------------------  */
.top-article .CMS-ARTICLE-INDEX {
	border-top: 2px solid #cad7ec;
	border-bottom: 2px solid #cad7ec;
	margin-bottom: 6rem;
}

.top-article .CMS-ARTICLE-ITEM {
	border-bottom: 1px solid #cad7ec;
}

.top-article .CMS-ARTICLE-ITEM:last-of-type {
	border-bottom: none;
}

.top-article .CMS-ARTICLE-ITEM a {
	transition: all 0.3s;
	padding: 2rem 0;
	display: flex;
	align-items: center;
}

.top-article .CMS-ARTICLE-ITEM a:hover {
	opacity: 0.6;
}

.top-article .CMS-ARTICLE-TIME {
	color: var(--sub-color);
	font-size: 1.6rem;
	padding-left: 1rem;
	width: 16rem;
	display: block;
	font-weight: bold;
}

.top-article .CMS-ARTICLE-LINK {
	display: block;
	line-height: 1.6;
	width: calc(100% - 16rem);
}

.CMS-ARTICLE-TITLE {
	border-bottom: solid 1px rgba(0, 0, 0, 0.2);
	font-size: 2.4rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: bold;
}

.CMS-ARTICLE-TITLE:after {
	border-bottom: solid 3px var(--main-color);
	bottom: -3px;
	content: ' ';
	display: block;
	position: absolute;
	width: 25%;
}

.CMS-ARTICLE-CONTENT img {
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto 20px auto;
}

.article .CMS-ARTICLE-ITEM {
	margin-bottom: 3rem;
}

.article .CMS-ARTICLE-ITEM a {
	display: flex;
	align-items: center;
	transition: all 0.3s;
	justify-content: flex-start;
	border: 1px solid #ddd;
	padding: 2rem;
}

.article .CMS-ARTICLE-ITEM a:hover {
	opacity: 0.8;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.article .CMS-ARTICLE-ITEM img {
	width: 30%;
	height: auto;
}

.article .CMS-ARTICLE-TIME {
	color: var(--sub-color);
	font-size: 1.6rem;
	width: 30%;
	display: block;
	text-align: center;
	font-weight: bold;
}

.article .CMS-ARTICLE-LINK {
	display: block;
	line-height: 1.6;
	width: 70%;
}

.CMS-ARTICLE-MORE-READ {
	background: var(--main-color);
	border: none;
	border-radius: 0.2rem;
	text-align: center;
	padding: 2rem 0;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	margin: 4rem auto 0 auto;
	width: 24rem;
	display: block;
	transition: all 0.3s;
	display: none;
}

.CMS-ARTICLE-MORE-READ:hover {
	cursor: pointer;
	opacity: 0.6;
}

.top-article .CMS-ARTICLE-MORE-READ {
	display: none;
}


@media screen and (min-width: 768px) {
	.CMS-ARTICLE-WRAP {
		display: flex;
		align-items: center;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.top-article .CMS-ARTICLE-INDEX {
		margin-bottom: 4rem;
	}

	.top-article .CMS-ARTICLE-ITEM {
		border-bottom: 1px solid #cad7ec;
	}

	.top-article .CMS-ARTICLE-ITEM a {
		display: block;
		padding: 2rem 1rem;
	}

	.top-article .CMS-ARTICLE-TIME {
		padding-left: 0;
		width: 100%;
	}

	.top-article .CMS-ARTICLE-LINK {
		width: 100%;
	}

	.CMS-ARTICLE-CONTENT img {
		width: 100%;
	}

	.CMS-ARTICLE-ITEM a {
		display: block;
	}

	.CMS-ARTICLE-ITEM a:hover {
		opacity: 0.8;
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	}

	.CMS-ARTICLE-ITEM img {
		width: 100%;
		height: auto;
		margin-bottom: 1.5rem;
	}

	.article .CMS-ARTICLE-TIME {
		font-size: 1.6rem;
		width: 100%;
		text-align: left;
	}

	.article .CMS-ARTICLE-LINK {
		width: 100%;
	}

	.CMS-ARTICLE-WRAP {
		margin-left: 10px;
	}
}

.course-dtl__discount-title {
	display: none;
}

.ready {
	width: 100%;
	text-align: center;
	font-size: 2rem;
	padding: 150px 0;
}

.uberimg {
	width: 3vw;
	max-width: 30px;
	vertical-align: middle;
	padding-bottom: 5px;
}

.link-action-box {
	display: none;
}

.top_ct_img {
	width: 95%;
	max-width: 600px;
	text-align: center;
	margin: 0 auto 50px;
}

.top_ct_img img {
	width: 100%;
}

.menu_bt {
	width: 100%;
}

.menu_bt img {
	width: 100%;
}

.fa-twitter:before {
	content: '𝕏' !important;
	font-family: unset;
	font-weight: bold;
}

.tblg-coupon-btn-wrap {
	display: none;
}

@media only screen and (max-width: 767px) {
	.uberimg {
		width: 25px;
		max-width: 30px;
		vertical-align: middle;
		padding-bottom: 5px;
	}

	.menu_bt {
		width: 95%;
		margin: auto;
	}


}

@media screen and (min-width: 768px) {
	.rstdtl-course-list__option {
		display: block !important;
	}
}

@media screen and (max-width: 768px) {
	.rstdtl-menu-lst__img {
		display: table-cell;
		padding: 20px 0px 0px 0;
		width: 60% !important;
		text-align: left !important;
	}

	.rstdtl-menu-lst__img img {
		width: 100% !important;
		height: auto;
	}

	.rstdtl-course-list__option {
		display: block !important;
	}
}

.menu_list li .head_tx+p {
	margin: 25px 0 30px;
	min-height: 255px;
}

.fixed_wrap a {
	text-decoration: none !important;
}

.course-dtl__coupon-btn {
	display: none;
}

.rstdtl-course-list__price-before {
	font-size: 1.1rem !important;
}

/*=============== top-insta ===========*/

.top-insta {
	padding: 12.4rem 12rem 12.4rem;
}

.top-insta__container {
	margin: 0 auto;
	max-width: 99.7rem;
	padding: 0 2rem;
	position: relative;
	z-index: 5;
}


.CMS-INSTAGRAM-LIST {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}

.CMS-INSTAGRAM-LIST>* {
	margin-right: 1.7%;
	width: 32.2%;
}

.CMS-INSTAGRAM-LIST>*:nth-of-type(3n) {
	margin-right: 0;
}

.CMS-INSTAGRAM-LIST>*:nth-of-type(n + 4) {
	margin-top: 1.7%;
}

.CMS-INSTAGRAM-LIST>*:nth-of-type(n + 7) {
	display: none;
}

@media screen and (max-width: 768px) {
	.top-insta {
		padding: 10rem 3rem;
	}
}


/*topページSNS埋め込み*/
/* =========================================================
   Shark Style Gym
   初めての方へページ専用CSS
   ========================================================= */

:root {
	--guide-primary: #35c9c2;
	--guide-primary-dark: #159f9a;
	--guide-primary-light: #e9fbfa;
	--guide-navy: #163f4a;
	--guide-text: #333333;
	--guide-gray: #6d7476;
	--guide-border: #dbe8e8;
	--guide-bg: #f7fbfb;
	--guide-white: #ffffff;
	--guide-shadow: 0 14px 35px rgba(19, 73, 79, 0.1);
}

/* ---------------------------------------------------------
   共通
   --------------------------------------------------------- */

.guide-page {
	color: var(--guide-text);
	overflow-x: clip;
}

.guide-page *,
.guide-page *::before,
.guide-page *::after {
	box-sizing: border-box;
}

.guide-page .container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.guide-page img {
	display: block;
	width: 100%;
	height: auto;
}

.guide-section {
	padding: 100px 0;
}

.section-heading {
	max-width: 820px;
	margin: 0 auto 55px;
	text-align: center;
}

.section-en {
	margin-bottom: 12px;
	color: var(--guide-primary-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.5;
}

.section-heading h2,
.guide-about h2,
.guide-cta h2 {
	margin: 0 0 22px;
	color: var(--guide-navy);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.04em;
}

.section-heading>p:last-child {
	color: var(--guide-gray);
	font-size: 16px;
	line-height: 2;
}

.section-button {
	margin-top: 45px;
	text-align: center;
}

/* ---------------------------------------------------------
   ボタン
   --------------------------------------------------------- */

.btn-primary,
.btn-secondary,
.btn-line,
.btn-tel {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	padding: 15px 32px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		color 0.25s ease;
}

.btn-primary {
	border: 1px solid var(--guide-primary);
	background: var(--guide-primary);
	color: var(--guide-white);
	box-shadow: 0 10px 24px rgba(53, 201, 194, 0.25);
}

.btn-primary:hover {
	background: var(--guide-primary-dark);
	box-shadow: 0 14px 28px rgba(21, 159, 154, 0.28);
	transform: translateY(-2px);
}

.btn-secondary {
	border: 1px solid var(--guide-primary-dark);
	background: var(--guide-white);
	color: var(--guide-primary-dark);
}

.btn-secondary:hover {
	background: var(--guide-primary-light);
	transform: translateY(-2px);
}

.btn-line {
	border: 1px solid #06c755;
	background: #06c755;
	color: var(--guide-white);
}

.btn-line:hover {
	background: #04ad49;
	transform: translateY(-2px);
}

.btn-tel {
	border: 1px solid var(--guide-navy);
	background: var(--guide-navy);
	color: var(--guide-white);
}

.btn-tel:hover {
	background: #0e3038;
	transform: translateY(-2px);
}

/* ---------------------------------------------------------
   ファーストビュー
   --------------------------------------------------------- */

.guide-hero {
	position: relative;
	padding: 100px 0;
	background:
		linear-gradient(115deg,
			rgba(235, 252, 250, 0.98) 0%,
			rgba(255, 255, 255, 0.98) 52%,
			rgba(231, 249, 249, 0.9) 100%);
}

.guide-hero::before {
	position: absolute;
	top: -150px;
	right: -150px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(53, 201, 194, 0.12);
	content: "";
}

.guide-hero .container {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
}

.guide-hero__body {
	min-width: 0;
}

.guide-en {
	margin-bottom: 18px;
	color: var(--guide-primary-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.guide-hero h2 {
	margin: 0 0 30px;
	color: var(--guide-navy);
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
}

.guide-hero__lead {
	margin-bottom: 18px;
	color: var(--guide-text);
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
}

.guide-hero__body>p:not(.guide-en):not(.guide-hero__lead) {
	color: var(--guide-gray);
	font-size: 16px;
	line-height: 2;
}

.guide-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 35px;
}

.guide-hero__image {
	position: relative;
	overflow: hidden;
	border-radius: 4px 80px 4px 80px;
	box-shadow: var(--guide-shadow);
}

.guide-hero__image::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.guide-hero__image img {
	width: 100%;
	height: 580px;
	object-fit: cover;
}

/* ---------------------------------------------------------
   お悩み
   --------------------------------------------------------- */

.guide-worries {
	background: var(--guide-white);
}

.guide-worries__list {
	display: grid;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	list-style: none;
}

.guide-worries__list li {
	position: relative;
	padding: 22px 25px 22px 58px;
	border: 1px solid var(--guide-border);
	border-radius: 14px;
	background: var(--guide-white);
	box-shadow: 0 7px 22px rgba(22, 63, 74, 0.05);
	font-size: 16px;
	line-height: 1.7;
}

.guide-worries__list li::before {
	position: absolute;
	top: 50%;
	left: 22px;
	display: grid;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--guide-primary);
	color: var(--guide-white);
	content: "✓";
	font-size: 13px;
	font-weight: 700;
	place-items: center;
	transform: translateY(-50%);
}

.guide-message {
	margin-top: 45px;
	padding: 42px 30px;
	border-radius: 20px;
	background:
		linear-gradient(135deg,
			var(--guide-primary-dark),
			var(--guide-primary));
	color: var(--guide-white);
	text-align: center;
	box-shadow: var(--guide-shadow);
}

.guide-message__small {
	margin-bottom: 10px;
	font-size: 14px;
	letter-spacing: 0.15em;
}

.guide-message__main {
	margin: 0;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.65;
}

/* ---------------------------------------------------------
   Shark Style Gymとは
   --------------------------------------------------------- */

.guide-about {
	background: var(--guide-bg);
}

.guide-about .container {
	max-width: 1200px;
}

.guide-about .wrap {
	display: grid !important;
	width: 100% !important;
	max-width: none !important;
	align-items: center;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 70px;
}

.guide-about .wrap.reverse figure {
	order: 2;
}

.guide-about .wrap.reverse>div {
	order: 1;
	width: 100% !important;
	max-width: none !important;
}

.guide-about figure {
	width: 100% !important;
	height: 560px;
	margin: 0;
	overflow: hidden;
	border-radius: 70px 8px 70px 8px;
	background: transparent;
	box-shadow: 0 18px 45px rgba(18, 69, 78, 0.14);
}

.guide-about figure img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center center;
}

.text-link {
	position: relative;
	display: inline-block;
	margin-top: 15px;
	padding-right: 30px;
	color: var(--guide-primary-dark);
	font-weight: 700;
	text-decoration: none;
}

.text-link::after {
	position: absolute;
	top: 50%;
	right: 3px;
	width: 17px;
	height: 1px;
	background: currentColor;
	content: "";
	transform: translateY(-50%);
	transition: right 0.25s ease;
}

.text-link:hover::after {
	right: -3px;
}

/* ---------------------------------------------------------
   初心者向けポイント
   --------------------------------------------------------- */

.guide-points {
	background: var(--guide-white);
}

.guide-points__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px;
}

.guide-point {
	position: relative;
	overflow: hidden;
	padding: 38px 35px;
	border: 1px solid var(--guide-border);
	border-radius: 18px;
	background: var(--guide-white);
	box-shadow: 0 10px 30px rgba(22, 63, 74, 0.06);
}

.guide-point::after {
	position: absolute;
	right: -45px;
	bottom: -65px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: rgba(53, 201, 194, 0.09);
	content: "";
}

.guide-point__number {
	margin: 0 0 15px;
	color: var(--guide-primary);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.guide-point h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 16px;
	color: var(--guide-navy);
	font-size: 21px;
	line-height: 1.6;
}

.guide-point p:last-child {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--guide-gray);
	font-size: 15px;
	line-height: 1.9;
}

/* ---------------------------------------------------------
   トレーニング
   --------------------------------------------------------- */

.guide-training {
	background: var(--guide-bg);
}

.guide-training__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.guide-training__card {
	display: block;
	overflow: hidden;
	border-radius: 18px;
	background: var(--guide-white);
	color: inherit;
	box-shadow: var(--guide-shadow);
	text-decoration: none;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.guide-training__card:hover {
	box-shadow: 0 18px 42px rgba(22, 63, 74, 0.15);
	transform: translateY(-6px);
}

.guide-training__card figure {
	overflow: hidden;
}

.guide-training__card figure {
	overflow: hidden;
	height: 380px;
}

.guide-training__card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.guide-training__card figure {
	overflow: hidden;
	height: 420px;
}

.guide-training__card:hover figure img {
	transform: scale(1.04);
}

.guide-training__card>div {
	padding: 22px 28px 28px;
}

.guide-training__card h3 {
	margin: 0 0 12px;
	color: var(--guide-navy);
	font-size: 21px;
}

.guide-training__card p {
	margin: 0;
	color: var(--guide-gray);
	font-size: 15px;
	line-height: 1.85;
}

/* =========================================================
   無料体験の流れ・横スライダー
========================================================= */

.trial-flow {
	--flow-primary: #30cec5;
	--flow-primary-dark: #0e9e99;
	--flow-navy: #123f49;
	--flow-text: #6d7476;
	--flow-border: #cfe5e4;
	--flow-bg: #f8fcfb;

	position: relative;
	padding: 110px 0 105px;
	overflow: hidden;
	background:
		linear-gradient(180deg,
			#ffffff 0%,
			#fbfefd 48%,
			#f5fbfa 100%);
}

/* 見出し */

.trial-flow__heading {
	width: min(900px, calc(100% - 40px));
	margin: 0 auto 65px;
	text-align: center;
}

.trial-flow__en {
	margin: 0 0 15px;
	color: var(--flow-primary-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

.trial-flow__heading h2 {
	margin: 0 0 22px;
	color: var(--flow-navy);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.trial-flow__lead {
	margin: 0;
	color: var(--flow-text);
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.04em;
}

/* スライダー外側 */

.trial-flow__slider-wrap {
	position: relative;
	width: 100%;
}

/* スライダー本体 */

.trial-flow__slider {
	display: flex;
	gap: 24px;
	width: 100%;
	padding:
		18px max(40px, calc((100vw - 1440px) / 2)) 35px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-padding-left: max(40px, calc((100vw - 1440px) / 2));
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.trial-flow__slider::-webkit-scrollbar {
	display: none;
}

/* 各カード */

.trial-flow__card {
	position: relative;
	flex: 0 0 360px;
	overflow: hidden;
	border: 1px solid var(--flow-border);
	border-radius: 24px;
	background: #ffffff;
	box-shadow:
		0 18px 45px rgba(18, 63, 73, 0.08),
		0 3px 10px rgba(18, 63, 73, 0.04);
	scroll-snap-align: start;
	transition:
		transform 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}

.trial-flow__card:hover {
	border-color: rgba(48, 206, 197, 0.65);
	box-shadow:
		0 25px 55px rgba(18, 63, 73, 0.14),
		0 5px 14px rgba(18, 63, 73, 0.06);
	transform: translateY(-8px);
}

/* 写真 */

.trial-flow__image {
	position: relative;
	height: 235px;
	margin: 18px 18px 0;
	overflow: hidden;
	border-radius: 17px;
	background: #eaf7f6;
}

.trial-flow__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

.trial-flow__card:hover .trial-flow__image img {
	transform: scale(1.055);
}

/* 円形番号 */

.trial-flow__number {
	position: absolute;
	top: -2px;
	left: -2px;
	z-index: 3;
	display: grid;
	width: 58px;
	height: 58px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	background:
		linear-gradient(135deg,
			var(--flow-primary-dark),
			var(--flow-primary));
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	place-items: center;
	box-shadow: 0 7px 18px rgba(21, 159, 154, 0.24);
}

/* カード本文 */

.trial-flow__content {
	min-height: 245px;
	padding: 27px 30px 32px;
}

.trial-flow__step {
	margin: 0 0 9px;
	color: var(--flow-primary-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.17em;
	line-height: 1.5;
}

.trial-flow__content h3 {
	margin: 0 0 16px;
	padding: 0;
	background: none;
	color: var(--flow-navy);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.025em;
}

.trial-flow__content>p:last-child {
	margin: 0;
	color: var(--flow-text);
	font-size: 14px;
	line-height: 1.95;
	letter-spacing: 0.025em;
}

/* 左右ボタン */

.trial-flow__arrow {
	position: absolute;
	top: 50%;
	z-index: 8;
	display: grid;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background:
		linear-gradient(135deg,
			var(--flow-primary-dark),
			var(--flow-primary));
	color: #ffffff;
	cursor: pointer;
	font-size: 21px;
	line-height: 1;
	place-items: center;
	transform: translateY(-50%);
	box-shadow: 0 12px 28px rgba(21, 159, 154, 0.28);
	transition:
		transform 0.25s ease,
		opacity 0.25s ease,
		box-shadow 0.25s ease;
}

.trial-flow__arrow:hover {
	opacity: 1;
	box-shadow: 0 16px 34px rgba(21, 159, 154, 0.36);
	transform: translateY(-50%) scale(1.07);
}

.trial-flow__arrow--prev {
	left: 18px;
}

.trial-flow__arrow--next {
	right: 18px;
}

/* 進捗バー */

.trial-flow__progress {
	width: min(520px, calc(100% - 60px));
	height: 4px;
	margin: 12px auto 0;
	overflow: hidden;
	border-radius: 999px;
	background: #dcebea;
}

.trial-flow__progress span {
	display: block;
	width: 20%;
	height: 100%;
	border-radius: inherit;
	background:
		linear-gradient(90deg,
			var(--flow-primary-dark),
			var(--flow-primary));
	transition: width 0.2s ease;
}

/* 下ボタン */

.trial-flow__button {
	margin-top: 45px;
	text-align: center;
}

/* =========================================================
   大型モニター
========================================================= */

@media screen and (min-width: 1600px) {
	.trial-flow__card {
		flex-basis: 390px;
	}

	.trial-flow__image {
		height: 250px;
	}
}

/* =========================================================
   タブレット
========================================================= */

@media screen and (max-width: 1024px) {
	.trial-flow {
		padding: 90px 0;
	}

	.trial-flow__heading {
		margin-bottom: 50px;
	}

	.trial-flow__slider {
		gap: 20px;
		padding-right: 40px;
		padding-left: 40px;
	}

	.trial-flow__card {
		flex-basis: 340px;
	}

	.trial-flow__arrow {
		width: 52px;
		height: 52px;
	}

	.trial-flow__arrow--prev {
		left: 8px;
	}

	.trial-flow__arrow--next {
		right: 8px;
	}
}

/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 768px) {
	.trial-flow {
		padding: 72px 0;
	}

	.trial-flow__heading {
		width: calc(100% - 30px);
		margin-bottom: 38px;
	}

	.trial-flow__en {
		margin-bottom: 10px;
		font-size: 11px;
	}

	.trial-flow__heading h2 {
		margin-bottom: 15px;
		font-size: 32px;
	}

	.trial-flow__lead {
		font-size: 14px;
		line-height: 1.9;
	}

	.trial-flow__slider {
		gap: 15px;
		padding: 12px 15px 28px;
		scroll-padding-left: 15px;
	}

	.trial-flow__card {
		flex-basis: min(84vw, 340px);
		border-radius: 20px;
	}

	.trial-flow__image {
		height: 215px;
		margin: 13px 13px 0;
		border-radius: 14px;
	}

	.trial-flow__number {
		width: 53px;
		height: 53px;
		font-size: 16px;
	}

	.trial-flow__content {
		min-height: 225px;
		padding: 23px 24px 27px;
	}

	.trial-flow__content h3 {
		margin-bottom: 12px;
		font-size: 20px;
	}

	.trial-flow__content>p:last-child {
		font-size: 14px;
		line-height: 1.85;
	}


}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.guide-faq {
	background: var(--guide-white);
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid var(--guide-border);
	border-radius: 14px;
	background: var(--guide-white);
}

.faq-item summary {
	position: relative;
	display: flex;
	min-height: 76px;
	align-items: center;
	padding: 20px 65px 20px 24px;
	color: var(--guide-navy);
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary>span {
	display: inline-grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin-right: 14px;
	border-radius: 50%;
	background: var(--guide-primary);
	color: var(--guide-white);
	font-family: Georgia, "Times New Roman", serif;
	place-items: center;
}

.faq-item summary::before,
.faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 25px;
	width: 18px;
	height: 2px;
	background: var(--guide-primary-dark);
	content: "";
	transition: transform 0.3s ease;
}

.faq-item summary::before {
	transform: translateY(-50%);
}

.faq-item summary::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
	display: flex;
	padding: 0 30px 28px 24px;
	color: var(--guide-gray);
}

.faq-answer>span {
	display: inline-grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin-right: 14px;
	border-radius: 50%;
	background: var(--guide-navy);
	color: var(--guide-white);
	font-family: Georgia, "Times New Roman", serif;
	place-items: center;
}

.faq-answer p {
	margin: 3px 0 0;
	font-size: 15px;
	line-height: 1.9;
}

/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.guide-cta {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background:
		linear-gradient(135deg,
			#0d5960 0%,
			var(--guide-primary-dark) 55%,
			var(--guide-primary) 100%);
	color: var(--guide-white);
	text-align: center;
}

.guide-cta::before,
.guide-cta::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	content: "";
}

.guide-cta::before {
	top: -180px;
	left: -130px;
	width: 420px;
	height: 420px;
}

.guide-cta::after {
	right: -100px;
	bottom: -230px;
	width: 500px;
	height: 500px;
}

.guide-cta .container {
	position: relative;
	z-index: 1;
}

.guide-cta .section-en,
.guide-cta h2 {
	color: var(--guide-white);
}

.guide-cta>.container>p:not(.section-en):not(.guide-cta__access) {
	font-size: 16px;
	line-height: 2;
}

.guide-cta__buttons {
	display: flex;
	max-width: 900px;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin: 38px auto 0;
}

.guide-cta__buttons a {
	min-width: 230px;
}

.guide-cta .btn-primary {
	border-color: var(--guide-white);
	background: var(--guide-white);
	color: var(--guide-primary-dark);
}

.guide-cta .btn-primary:hover {
	background: var(--guide-primary-light);
}

.guide-cta .btn-tel {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.1);
}

.guide-cta__access {
	margin-top: 25px;
	font-size: 14px;
	letter-spacing: 0.05em;
}

/* ---------------------------------------------------------
   スクロールアニメーション
   common.jsのfadeと重複しない場合に使用
   --------------------------------------------------------- */

.js-guide-fade {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
}

.js-guide-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------------------------------------------------------
   タブレット
   --------------------------------------------------------- */

@media screen and (max-width: 1024px) {
	.guide-section {
		padding: 80px 0;
	}

	.guide-hero {
		padding: 80px 0;
	}

	.guide-hero .container,
	.guide-about .wrap {
		gap: 40px;
	}

	.guide-hero__image img {
		height: 470px;
	}

	.guide-about figure img {
		height: 420px;
	}

	.guide-flow__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guide-flow__item:not(:last-child)::after {
		display: none;
	}

	.guide-belongings__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ---------------------------------------------------------
   スマートフォン
   --------------------------------------------------------- */

@media screen and (max-width: 767px) {
	.guide-page .container {
		width: min(100% - 30px, 600px);
	}

	.guide-section {
		padding: 65px 0;
	}

	.section-heading {
		margin-bottom: 38px;
		text-align: left;
	}

	.section-heading h2,
	.guide-about h2,
	.guide-cta h2 {
		margin-bottom: 18px;
		font-size: 27px;
		line-height: 1.5;
	}

	.section-heading>p:last-child {
		font-size: 14px;
		line-height: 1.9;
	}

	.guide-hero {
		padding: 55px 0 70px;
	}

	.guide-hero .container {
		display: flex;
		flex-direction: column;
		gap: 35px;
	}

	.guide-hero__body {
		order: 2;
	}

	.guide-hero__image {
		order: 1;
		width: 100%;
		border-radius: 4px 45px 4px 45px;
	}

	.guide-hero__image img {
		height: 330px;
	}

	.guide-hero h2 {
		margin-bottom: 20px;
		font-size: 34px;
	}

	.guide-hero__lead {
		font-size: 16px;
		line-height: 1.9;
	}

	.guide-hero__body>p:not(.guide-en):not(.guide-hero__lead) {
		font-size: 14px;
		line-height: 1.9;
	}

	.guide-hero__buttons {
		display: grid;
		grid-template-columns: 1fr;
	}

	.guide-hero__buttons a {
		width: 100%;
	}

	.guide-worries__list,
	.guide-points__grid,
	.guide-training__grid,
	.guide-flow__list,
	.guide-belongings__grid {
		grid-template-columns: 1fr;
	}

	.guide-worries__list li {
		padding: 18px 18px 18px 50px;
		font-size: 14px;
	}

	.guide-worries__list li::before {
		left: 17px;
	}

	.guide-message {
		padding: 32px 20px;
	}

	.guide-message__main {
		font-size: 22px;
	}

	.guide-about .wrap {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.guide-about .wrap.reverse figure,
	.guide-about .wrap.reverse>div {
		order: initial;
	}

	.guide-about figure {
		border-radius: 40px 4px 40px 4px;
	}

	.guide-about figure img {
		height: 330px;
	}

	.guide-about p:not(.section-en) {
		font-size: 14px;
		line-height: 1.9;
	}

	.guide-point {
		padding: 30px 25px;
	}

	.guide-training__card figure img {
		height: 230px;
	}

	.guide-training__card>div {
		padding: 24px;
	}

	.guide-flow__item {
		min-height: auto;
	}



	.faq-item summary {
		min-height: 70px;
		padding: 18px 52px 18px 16px;
		font-size: 14px;
	}

	.faq-item summary>span,
	.faq-answer>span {
		flex-basis: 30px;
		width: 30px;
		height: 30px;
		margin-right: 10px;
	}

	.faq-item summary::before,
	.faq-item summary::after {
		right: 18px;
		width: 15px;
	}

	.faq-answer {
		padding: 0 18px 22px 16px;
	}

	.faq-answer p {
		font-size: 14px;
	}

	.guide-cta {
		padding: 75px 0;
		text-align: left;
	}

	.guide-cta__buttons {
		display: grid;
		grid-template-columns: 1fr;
	}

	.guide-cta__buttons a {
		width: 100%;
		min-width: 0;
	}

	.guide-cta__access {
		text-align: center;
	}
}

/* ---------------------------------------------------------
   動きを減らす設定
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

	.guide-page *,
	.guide-page *::before,
	.guide-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* =========================================================
   初めての方へ ファーストビュー
   HTML：first-guide-hero対応版
   ========================================================= */

.first-guide-hero {
	--first-primary: #30cec5;
	--first-primary-dark: #129f9a;
	--first-light: #e7faf8;
	--first-navy: #123f49;
	--first-text: #344b50;
	--first-gray: #6c797c;

	position: relative;
	width: 100%;
	padding: 75px 0 70px;
	overflow: hidden;
	background:
		radial-gradient(circle at 76% 28%,
			rgba(48, 206, 197, 0.12) 0,
			rgba(48, 206, 197, 0.04) 30%,
			transparent 58%),
		linear-gradient(115deg,
			#edfcfb 0%,
			#ffffff 48%,
			#effbf9 100%);
}

.first-guide-hero *,
.first-guide-hero *::before,
.first-guide-hero *::after {
	box-sizing: border-box;
}

.first-guide-hero__inner {
	position: relative;
	z-index: 3;
	display: grid;
	width: min(1480px, calc(100% - 100px));
	margin: 0 auto;
	align-items: center;
	grid-template-columns: minmax(470px, 0.9fr) minmax(620px, 1.1fr);
	gap: 75px;
}

/* 左側テキスト */

.first-guide-hero__content {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.first-guide-hero__label {
	display: flex;
	max-width: 490px;
	align-items: center;
	gap: 20px;
	margin: 0 0 30px;
}

.first-guide-hero__label span {
	flex-shrink: 0;
	color: var(--first-primary-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1;
}

.first-guide-hero__label i {
	display: block;
	width: 210px;
	height: 1px;
	background: rgba(18, 159, 154, 0.55);
}

.first-guide-hero__title {
	margin: 0;
	color: var(--first-navy);
	font-size: clamp(44px, 4.1vw, 68px);
	font-weight: 700;
	line-height: 1.42;
	letter-spacing: 0.015em;
	word-break: keep-all;
}

.first-guide-hero__brush {
	display: block;
	width: min(440px, 80%);
	height: 18px;
	margin: 8px 0 30px 130px;
	border-top: 5px solid rgba(48, 206, 197, 0.32);
	border-radius: 50%;
	transform: rotate(-4deg);
}

.first-guide-hero__lead {
	max-width: 670px;
	margin: 0 0 20px;
	color: var(--first-text);
	font-size: 17px;
	font-weight: 500;
	line-height: 2.1;
	letter-spacing: 0.03em;
}

.first-guide-hero__text {
	max-width: 680px;
	margin: 0;
	color: var(--first-gray);
	font-size: 15px;
	line-height: 2.1;
	letter-spacing: 0.025em;
}

/* ボタン */

.first-guide-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 36px;
}

.first-guide-btn {
	display: inline-flex;
	min-width: 235px;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 14px 25px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		color 0.25s ease,
		opacity 0.25s ease;
}

.first-guide-btn:hover {
	opacity: 1;
	transform: translateY(-3px);
}

.first-guide-btn--primary {
	border: 1px solid var(--first-primary);
	background:
		linear-gradient(135deg,
			#35d2ca 0%,
			#20bab5 100%);
	color: #ffffff;
	box-shadow: 0 13px 28px rgba(35, 190, 184, 0.25);
}

.first-guide-btn--primary:hover {
	background:
		linear-gradient(135deg,
			#24beb9 0%,
			#129e99 100%);
	box-shadow: 0 16px 34px rgba(35, 190, 184, 0.32);
}

.first-guide-btn--outline {
	border: 1.5px solid var(--first-primary-dark);
	background: rgba(255, 255, 255, 0.88);
	color: var(--first-primary-dark);
}

.first-guide-btn--outline:hover {
	background: var(--first-light);
}

.first-guide-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.first-guide-btn__arrow {
	margin-left: 3px;
	font-size: 18px;
	transition: transform 0.25s ease;
}

.first-guide-btn:hover .first-guide-btn__arrow {
	transform: translateX(5px);
}

/* 右側写真 */

.first-guide-hero__photo {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 690px;
	margin: 0;
	overflow: hidden;
	border-radius: 95px 14px 95px 14px;
	background: #ffffff;
	box-shadow:
		0 25px 65px rgba(25, 92, 99, 0.15),
		0 8px 22px rgba(25, 92, 99, 0.07);
}

.first-guide-hero__photo img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	margin: 0;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.7s ease;
}

.first-guide-hero__photo:hover img {
	transform: scale(1.025);
}

.first-guide-hero__photo::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

/* 右上背景円 */

.first-guide-hero__circle {
	position: absolute;
	top: -260px;
	right: -180px;
	z-index: 1;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background:
		linear-gradient(135deg,
			rgba(48, 206, 197, 0.08),
			rgba(48, 206, 197, 0.2));
}

/* 左下の西海岸風装飾 */

.first-guide-hero__palm {
	position: absolute;
	bottom: -145px;
	left: -85px;
	z-index: 1;
	width: 360px;
	height: 430px;
	opacity: 0.08;
	transform: rotate(-10deg);
}

.first-guide-hero__palm::before {
	position: absolute;
	bottom: 0;
	left: 48%;
	width: 10px;
	height: 290px;
	border-radius: 50%;
	background: var(--first-primary-dark);
	content: "";
	transform: rotate(12deg);
	transform-origin: bottom;
}

.first-guide-hero__palm::after {
	position: absolute;
	top: 25px;
	left: 65px;
	width: 235px;
	height: 170px;
	border-radius: 50%;
	background:
		repeating-conic-gradient(from 8deg,
			var(--first-primary-dark) 0deg 10deg,
			transparent 10deg 28deg);
	content: "";
	transform: rotate(-15deg);
}

/* =========================================================
   common.cssの影響を上書き
   ========================================================= */

.guide-page .first-guide-hero__inner {
	margin-top: 0;
	margin-bottom: 0;
}

.guide-page .first-guide-hero__photo {
	width: 100%;
}

.guide-page .first-guide-hero__content {
	width: 100%;
}

.guide-page .first-guide-hero__title {
	background: none;
	padding: 0;
}

.guide-page .first-guide-hero p {
	margin-top: 0;
}

.guide-page .first-guide-btn {
	width: auto;
	color: inherit;
}

.guide-page .first-guide-btn--primary {
	color: #ffffff;
}

.guide-page .first-guide-btn--outline {
	color: var(--first-primary-dark);
}

/* =========================================================
   ノートPC
   ========================================================= */

@media screen and (max-width: 1350px) {

	.first-guide-hero {
		padding: 65px 0;
	}

	.first-guide-hero__inner {
		width: min(1180px, calc(100% - 60px));
		grid-template-columns: minmax(410px, 0.92fr) minmax(520px, 1.08fr);
		gap: 50px;
	}

	.first-guide-hero__title {
		font-size: clamp(42px, 4vw, 58px);
	}

	.first-guide-hero__photo {
		height: 600px;
	}

	.first-guide-hero__lead {
		font-size: 16px;
	}

	.first-guide-hero__text {
		font-size: 14px;
	}
}

/* =========================================================
   タブレット
   ========================================================= */

@media screen and (max-width: 1024px) {

	.first-guide-hero {
		padding: 55px 0 65px;
	}

	.first-guide-hero__inner {
		display: flex;
		width: min(850px, calc(100% - 50px));
		flex-direction: column;
		gap: 45px;
	}

	.first-guide-hero__content,
	.first-guide-hero__photo {
		width: 100%;
	}

	.first-guide-hero__title {
		font-size: clamp(42px, 7vw, 60px);
	}

	.first-guide-hero__photo {
		height: 580px;
		border-radius: 75px 12px 75px 12px;
	}

	.first-guide-hero__brush {
		margin-left: 80px;
	}
}

/* =========================================================
   スマートフォン
   ========================================================= */

@media screen and (max-width: 768px) {

	.first-guide-hero {
		padding: 42px 0 55px;
	}

	.first-guide-hero__inner {
		width: calc(100% - 30px);
		gap: 34px;
	}

	.first-guide-hero__content {
		order: 1;
	}

	.first-guide-hero__photo {
		order: 2;
		height: 370px;
		border-radius: 48px 7px 48px 7px;
	}

	.first-guide-hero__label {
		gap: 12px;
		margin-bottom: 23px;
	}

	.first-guide-hero__label span {
		font-size: 11px;
		letter-spacing: 0.17em;
	}

	.first-guide-hero__label i {
		width: 80px;
	}

	.first-guide-hero__title {
		font-size: 34px;
		line-height: 1.48;
	}

	.first-guide-hero__brush {
		width: 70%;
		height: 10px;
		margin: 4px 0 24px 50px;
		border-top-width: 3px;
	}

	.first-guide-hero__lead {
		margin-bottom: 16px;
		font-size: 15px;
		line-height: 1.95;
	}

	.first-guide-hero__text {
		font-size: 14px;
		line-height: 1.95;
	}

	.first-guide-hero__buttons {
		display: grid;
		margin-top: 28px;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.first-guide-btn {
		width: 100% !important;
		min-width: 0;
		min-height: 58px;
		font-size: 14px;
	}

	.first-guide-hero__circle {
		top: -220px;
		right: -240px;
		width: 440px;
		height: 440px;
	}

	.first-guide-hero__palm {
		display: none;
	}
}

/* =========================================================
   お悩みセクション スクロールアニメーション
   ========================================================= */

/* 初期状態 */
.guide-worries .section-heading,
.guide-worries .guide-worries__list li,
.guide-worries .guide-message {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.75s ease,
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 表示状態 */
.guide-worries.is-visible .section-heading,
.guide-worries.is-visible .guide-worries__list li,
.guide-worries.is-visible .guide-message {
	opacity: 1;
	transform: translateY(0);
}

/* 見出し */
.guide-worries.is-visible .section-heading {
	transition-delay: 0.05s;
}

/* カードを順番に表示 */
.guide-worries.is-visible .guide-worries__list li:nth-child(1) {
	transition-delay: 0.12s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(2) {
	transition-delay: 0.20s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(3) {
	transition-delay: 0.28s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(4) {
	transition-delay: 0.36s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(5) {
	transition-delay: 0.44s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(6) {
	transition-delay: 0.52s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(7) {
	transition-delay: 0.60s;
}

.guide-worries.is-visible .guide-worries__list li:nth-child(8) {
	transition-delay: 0.68s;
}

.guide-worries.is-visible .guide-message {
	transition-delay: 0.76s;
}

/* カードのホバー */
.guide-worries__list li {
	transition:
		opacity 0.75s ease,
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		background-color 0.3s ease;
}

.guide-worries__list li:hover {
	border-color: rgba(48, 206, 197, 0.65);
	background: #f7ffff;
	box-shadow: 0 14px 35px rgba(20, 108, 105, 0.12);
	transform: translateY(-5px);
}

/* チェックアイコン */
.guide-worries__list li::before {
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.guide-worries__list li:hover::before {
	box-shadow: 0 6px 16px rgba(48, 206, 197, 0.32);
	transform: translateY(-50%) scale(1.12) rotate(-5deg);
}

/* スマホでは動きを少し短く */
@media screen and (max-width: 768px) {

	.guide-worries .section-heading,
	.guide-worries .guide-worries__list li,
	.guide-worries .guide-message {
		transform: translateY(22px);
		transition-duration: 0.6s;
	}

	.guide-worries.is-visible .guide-worries__list li:nth-child(n) {
		transition-delay: 0.1s;
	}
}

/* 動きを減らす設定の方への配慮 */
@media (prefers-reduced-motion: reduce) {

	.guide-worries .section-heading,
	.guide-worries .guide-worries__list li,
	.guide-worries .guide-message {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.guide-worries .section-heading,
.guide-worries .guide-worries__list li,
.guide-worries .guide-message {
	opacity: 0;
	transform: translateY(32px);
}

.guide-worries.is-visible .section-heading,
.guide-worries.is-visible .guide-worries__list li,
.guide-worries.is-visible .guide-message {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================
   SHARK STYLE GYM FOOTER 完成版
========================================================= */

.shark-footer,
.shark-footer * {
	box-sizing: border-box;
}

.shark-footer {
	width: 100%;
	margin: 0 !important;
	padding: 48px 0 0;
	overflow: hidden;
	background: #07171b !important;
	color: #ffffff;
}

.shark-footer a {
	color: inherit;
	text-decoration: none;
}

.shark-footer__inner {
	width: min(1500px, calc(100% - 80px));
	margin: 0 auto;
}

/* 上段 */
.shark-footer__top {
	display: grid;
	grid-template-columns: 250px 1fr;
	align-items: start;
	gap: 65px;
	padding-bottom: 32px;
}

.shark-footer__brand {
	min-width: 0;
}

.shark-footer__logo {
	display: block;
	width: 220px;
	margin-bottom: 18px;
}

.shark-footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.shark-footer__catch {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.8;
}

/* SNS */
.shark-footer__sns {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.shark-footer__sns a {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #ffffff;
	font-size: 17px;
	transition:
		border-color 0.3s ease,
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.shark-footer__sns a:hover {
	border-color: #30cec5;
	background: #30cec5;
	color: #08282e;
	transform: translateY(-3px);
}

/* メニュー */
.shark-footer__menus {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 45px;
}

.shark-footer__column h3 {
	position: relative;
	margin: 0 0 18px;
	padding-bottom: 11px;
	color: #62e2dc;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.shark-footer__column h3::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 34px;
	height: 2px;
	background: #30cec5;
	content: "";
}

.shark-footer__column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shark-footer__column li+li {
	margin-top: 10px;
}

.shark-footer__column li a {
	position: relative;
	display: inline-block;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.7;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.shark-footer__column li a:hover {
	color: #62e2dc;
	transform: translateX(4px);
}

/* 住所 */
.shark-footer__address {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	line-height: 1.7;
}

/* 無料体験CTA */
.shark-footer__cta {
	display: flex;
	min-height: 105px;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	padding: 20px 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
}

.shark-footer__cta>div>span {
	display: block;
	margin-bottom: 5px;
	color: #62e2dc;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.shark-footer__cta h2 {
	margin: 0;
	padding: 0;
	background: none;
	color: #ffffff;
	font-size: 27px;
	line-height: 1.45;
}

.shark-footer__cta>a {
	display: flex;
	min-width: 260px;
	min-height: 58px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 22px;
	background: #30cec5;
	color: #08282e;
	font-size: 14px;
	font-weight: 700;
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
}

.shark-footer__cta>a:hover {
	background: #ffffff;
	color: #08282e;
}

.shark-footer__cta>a span {
	margin: 0;
	color: inherit;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.shark-footer__cta>a:hover span {
	transform: translateX(5px);
}

/* 最下部 */
.shark-footer__bottom {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.shark-footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.shark-footer__bottom-links a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	transition: color 0.3s ease;
}

.shark-footer__bottom-links a:hover {
	color: #62e2dc;
}

.shark-footer__bottom small {
	color: rgba(255, 255, 255, 0.42);
	font-size: 11px;
	letter-spacing: 0.12em;
}

/* =========================================================
   ノートPC
========================================================= */

@media screen and (max-width: 1100px) {
	.shark-footer__inner {
		width: calc(100% - 50px);
	}

	.shark-footer__top {
		grid-template-columns: 220px 1fr;
		gap: 42px;
	}

	.shark-footer__menus {
		gap: 26px;
	}

	.shark-footer__column li a {
		font-size: 13px;
	}
}

/* =========================================================
   タブレット
========================================================= */

@media screen and (max-width: 900px) {
	.shark-footer {
		padding-top: 42px;
	}

	.shark-footer__top {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.shark-footer__menus {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 30px;
	}

	.shark-footer__cta {
		padding-right: 25px;
		padding-left: 25px;
	}
}

/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 600px) {
	.shark-footer {
		padding-top: 38px;
	}

	.shark-footer__inner {
		width: calc(100% - 30px);
	}

	.shark-footer__top {
		gap: 34px;
		padding-bottom: 28px;
	}

	.shark-footer__logo {
		width: 175px;
		margin-bottom: 15px;
	}

	.shark-footer__catch {
		font-size: 13px;
		line-height: 1.75;
	}

	.shark-footer__sns {
		margin-top: 17px;
	}

	.shark-footer__menus {
		grid-template-columns: 1fr 1fr;
		gap: 30px 18px;
	}

	.shark-footer__column h3 {
		margin-bottom: 15px;
		font-size: 11px;
	}

	.shark-footer__column li+li {
		margin-top: 8px;
	}

	.shark-footer__column li a {
		font-size: 12px;
	}

	.shark-footer__address {
		margin-top: 13px;
		font-size: 11px;
	}

	.shark-footer__cta {
		min-height: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		padding: 24px 0;
	}

	.shark-footer__cta h2 {
		font-size: 23px;
	}

	.shark-footer__cta>a {
		width: 100%;
		min-width: 0;
	}

	.shark-footer__bottom {
		min-height: 100px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 14px;
	}

	.shark-footer__bottom-links {
		gap: 18px;
	}
}

/* =========================================================
   SPメニュー：公式SNSアコーディオン
========================================================= */

@media screen and (max-width: 768px) {

	.sp-sns-menu {
		width: 100%;
	}

	.sp-sns-toggle {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 1.5rem 0;
		border: 0;
		background: transparent;
		color: #333333;
		cursor: pointer;
		font-family: inherit;
		font-size: 1.8rem;
		line-height: 1.6;
	}

	.sp-sns-toggle .arrow {
		display: inline-block;
		color: #18a498;
		font-size: 2rem;
		font-weight: 400;
		line-height: 1;
		transition: transform 0.3s ease;
	}

	.sp-sns-list {
		display: none;
		width: 100%;
		margin: 0;
		padding: 0 0 1rem;
		list-style: none;
	}

	.sp-sns-list li {
		width: 100% !important;
		margin: 0 !important;
		border-top: 1px solid #eeeeee;
	}

	.sp-sns-list li:last-child {
		border-bottom: 1px solid #eeeeee;
	}

	.sp-sns-list li a {
		display: block;
		width: 100%;
		padding: 1.3rem 0;
		color: #555555;
		font-size: 1.6rem;
		line-height: 1.5;
		text-align: center;
		text-decoration: none;
	}

	.sp-sns-list li a:hover {
		background: #f5fbfa;
		color: #18a498;
		opacity: 1;
	}

	.sp-sns-menu.open .sp-sns-list {
		display: block;
	}

	.sp-sns-menu.open .sp-sns-toggle .arrow {
		transform: rotate(45deg);
	}
}

@media screen and (max-width: 768px) {

	.sp-sns-list {
		display: none;
	}

	.sp-sns-menu.open .sp-sns-list {
		display: block;
	}

	.sp-sns-toggle .arrow {
		display: inline-block;
		transition: transform 0.3s ease;
	}

	.sp-sns-menu.open .sp-sns-toggle .arrow {
		transform: rotate(45deg);
	}
}

/* =========================================================
   TOP リング付きパーソナルジム
========================================================= */

.top-ring-gym {
	position: relative;
	z-index: 10;

	background: #0f3c43;

	margin-top: -60px;

	padding: 120px 0;

	overflow: visible;
}

.top-ring-gym:before {
	content: "";
	position: absolute;
	left: 0;
	top: -60px;
	width: 100%;
	height: 60px;
	background: #0f3c43;
}

.top-ring-gym__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
	width: min(1520px, calc(100% - 80px));
	margin: 0 auto;
}

/* 写真側 */
.top-ring-gym__visual {
	position: relative;
	z-index: 30;
	transform: translateY(-45px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.top-ring-gym__content {
	padding-top: 40px;
}

.top-ring-gym__visual img {
	width: 100%;
	height: 100%;
	min-height: 760px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.8s ease;
}

.top-ring-gym:hover .top-ring-gym__visual img {
	transform: scale(1.025);
}

.top-ring-gym__visual-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(1, 25, 31, 0.08) 35%,
			rgba(1, 25, 31, 0.65) 100%),
		linear-gradient(0deg,
			rgba(1, 25, 31, 0.4) 0,
			rgba(1, 25, 31, 0) 45%);
}

.top-ring-gym__vertical {
	position: absolute;
	left: 28px;
	bottom: 42px;
	margin: 0;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.32em;
	writing-mode: vertical-rl;
	opacity: 0.9;
}

.top-ring-gym__badge {
	position: absolute;
	top: 38px;
	right: 0;
	padding: 20px 26px;
	background: rgba(6, 47, 56, 0.92);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.04em;
	backdrop-filter: blur(8px);
}

.top-ring-gym__badge span {
	display: block;
	margin-bottom: 5px;
	color: #32c8c5;
	font-size: 11px;
	letter-spacing: 0.24em;
}

/* テキスト側 */
.top-ring-gym__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 72px 72px 72px 82px;
	color: #fff;
}

.top-ring-gym__en {
	margin: 0 0 22px;
	color: #32c8c5;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.28em;
}

.top-ring-gym__heading h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(38px, 3.2vw, 62px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
}

.top-ring-gym__lead {
	position: relative;
	margin: 42px 0 26px;
	padding-left: 28px;
	color: #fff;
	font-size: clamp(21px, 1.55vw, 28px);
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.02em;
}

.top-ring-gym__lead::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 0;
	width: 4px;
	border-radius: 10px;
	background: #32c8c5;
}

.top-ring-gym__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	line-height: 2.15;
	letter-spacing: 0.03em;
}

/* 特別訴求 */
.top-ring-gym__special {
	position: relative;
	margin-top: 34px;
	padding: 28px 30px;
	overflow: hidden;
	border: 1px solid rgba(50, 200, 197, 0.42);
	background: rgba(255, 255, 255, 0.045);
}

.top-ring-gym__special::after {
	content: "02";
	position: absolute;
	right: 16px;
	bottom: -25px;
	color: rgba(50, 200, 197, 0.08);
	font-family: Arial, sans-serif;
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
}

.top-ring-gym__special-label {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: #32c8c5;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
}

.top-ring-gym__special-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.65;
}

.top-ring-gym__special-note {
	position: relative;
	z-index: 1;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.9;
}

/* ポイント */
.top-ring-gym__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 34px 0 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	list-style: none;
}

.top-ring-gym__points li {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 64px;
	padding: 14px 18px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.top-ring-gym__points li span {
	color: #32c8c5;
	font-family: Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
}

/* ボタン */
.top-ring-gym__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 350px);
	min-height: 68px;
	margin-top: 42px;
	padding: 0 20px 0 30px;
	border-radius: 999px;
	background: #32c8c5;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	transition:
		background 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.top-ring-gym__button-arrow {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: #159e9c;
	font-size: 18px;
	transition:
		transform 0.3s ease,
		background 0.3s ease;
}

.top-ring-gym__button:hover {
	background: #fff;
	color: #06323a;
	transform: translateY(-3px);
}

.top-ring-gym__button:hover .top-ring-gym__button-arrow {
	background: #32c8c5;
	color: #fff;
	transform: translateX(4px);
}

@media screen and (max-width: 767px) {

	.top-ring-gym__lead {
		font-size: 18px;
		white-space: normal;
	}

}

/* リングセクションのキャッチコピーを2行固定 */
.top-ring-gym__lead span {
	display: block;
	white-space: nowrap;
}

.top-ring-gym__lead {
	font-size: clamp(19px, 1.45vw, 27px) !important;
	letter-spacing: 0 !important;
}

/* =========================================================
   TOP あなたのお悩みありませんか？
========================================================= */
.top-worries {
	position: relative;
	overflow: hidden;
	padding: 130px 0 110px;
	background: #f3fafa;
}

.top-worries::before {
	content: "CONCERNS";
	position: absolute;
	top: 40px;
	right: -35px;
	color: rgba(47, 199, 196, 0.055);
	font-family: Arial, sans-serif;
	font-size: clamp(100px, 13vw, 240px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
	pointer-events: none;
}

.top-worries::after {
	content: "";
	position: absolute;
	left: -140px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(47, 199, 196, 0.16);
	border-radius: 50%;
	pointer-events: none;
}

.top-worries__inner {
	position: relative;
	z-index: 1;
	width: min(1420px, calc(100% - 80px));
	margin: 0 auto;
}

/* 見出し */
.top-worries__heading {
	text-align: center;
}

.top-worries__mark {
	position: relative;
	width: 58px;
	height: 58px;
	margin: 0 auto 22px;
}

.top-worries__mark span {
	position: absolute;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
}

.top-worries__mark span:nth-child(1) {
	top: 0;
	left: 0;
	background: #40d5d1;
}

.top-worries__mark span:nth-child(2) {
	top: 5px;
	right: 0;
	background: #d9f5f4;
}

.top-worries__mark span:nth-child(3) {
	right: 8px;
	bottom: 0;
	background: #139d9b;
}

.top-worries__en {
	margin: 0 0 14px;
	color: #2fc7c4;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.28em;
}

.top-worries__heading h2 {
	margin: 0;
	color: #073c45;
	font-size: clamp(38px, 4vw, 64px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.top-worries__sub {
	margin: 24px 0 0;
	color: #6e8287;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

/* カード */
.top-worries__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-top: 68px;
}

.top-worries__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 255px;
	padding: 38px 24px 32px;
	overflow: hidden;
	border: 1px solid rgba(16, 108, 116, 0.14);
	border-radius: 0 0 42px 0;
	background: #fff;
	color: #073c45;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 16px 38px rgba(20, 85, 91, 0.055);
	transition:
		transform 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		background 0.35s ease;
}

.top-worries__card::before {
	content: "";
	position: absolute;
	right: -45px;
	bottom: -45px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #edfafa;
	transition:
		transform 0.4s ease,
		background 0.4s ease;
}

.top-worries__number {
	position: absolute;
	top: 20px;
	left: 22px;
	color: #2fc7c4;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.top-worries__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: #ebf9f8;
	color: #1fb9b6;
	font-size: 28px;
	transition:
		transform 0.35s ease,
		background 0.35s ease,
		color 0.35s ease;
}

.top-worries__title {
	position: relative;
	z-index: 1;
	color: #073c45;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.05em;
}

.top-worries__arrow {
	position: absolute;
	right: 24px;
	bottom: 20px;
	z-index: 1;
	color: #2fc7c4;
	font-size: 21px;
	line-height: 1;
	transition: transform 0.35s ease;
}

/* カードホバー */
.top-worries__card:hover {
	border-color: #2fc7c4;
	background: #fbffff;
	box-shadow: 0 24px 48px rgba(20, 118, 123, 0.14);
	transform: translateY(-7px);
}

.top-worries__card:hover::before {
	background: #dff8f7;
	transform: scale(1.18);
}

.top-worries__card:hover .top-worries__icon {
	background: #2fc7c4;
	color: #fff;
	transform: scale(1.08);
}

.top-worries__card:hover .top-worries__arrow {
	transform: translateX(5px);
}

/* 下部メッセージ */
.top-worries__support {
	position: relative;
	margin-top: 76px;
	padding: 58px 50px 52px;
	overflow: hidden;
	border-radius: 38px;
	background: #fff;
	text-align: center;
	box-shadow: 0 22px 50px rgba(19, 83, 89, 0.07);
}

.top-worries__support::before,
.top-worries__support::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.top-worries__support::before {
	top: -75px;
	left: -65px;
	width: 180px;
	height: 180px;
	background: rgba(47, 199, 196, 0.09);
}

.top-worries__support::after {
	right: -55px;
	bottom: -80px;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(47, 199, 196, 0.18);
}

.top-worries__support-small {
	position: relative;
	z-index: 1;
	margin: 0 0 12px;
	color: #6b8589;
	font-size: 14px;
	letter-spacing: 0.08em;
}

.top-worries__support-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #073c45;
	font-size: clamp(25px, 2.5vw, 40px);
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.04em;
}

.top-worries__support-title strong {
	color: #22bebb;
	font-weight: 700;
}

.top-worries__support-text {
	position: relative;
	z-index: 1;
	margin: 20px auto 0;
	color: #708489;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.03em;
}

.top-worries__scroll {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 390px);
	min-height: 78px;
	margin: 34px auto 0;
	padding: 0 18px 0 34px;
	border-radius: 999px;
	background: #2fc7c4;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 14px 30px rgba(47, 199, 196, 0.24);
	transition:
		background 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.top-worries__scroll-text {
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.06em;
}

.top-worries__scroll-arrow {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	color: #20aaa8;
	font-size: 20px;
	transition:
		color 0.3s ease,
		background 0.3s ease,
		transform 0.3s ease;
}

.top-worries__scroll:hover {
	background: #073c45;
	box-shadow: 0 18px 38px rgba(7, 60, 69, 0.22);
	transform: translateY(-4px);
}

.top-worries__scroll:hover .top-worries__scroll-arrow {
	background: #2fc7c4;
	color: #fff;
	transform: translateY(4px);
}

.sp-only {
	display: none;
}

/* =========================================================
   ノートPC
========================================================= */
@media screen and (min-width: 1025px) and (max-width: 1500px) {

	.top-worries {
		padding: 100px 0 90px;
	}

	.top-worries__inner {
		width: min(1260px, calc(100% - 48px));
	}

	.top-worries__grid {
		gap: 16px;
		margin-top: 52px;
	}

	.top-worries__card {
		min-height: 220px;
		padding: 34px 18px 26px;
	}

	.top-worries__icon {
		width: 62px;
		height: 62px;
		margin-bottom: 18px;
		font-size: 24px;
	}

	.top-worries__title {
		font-size: 16px;
	}

	.top-worries__support {
		margin-top: 58px;
		padding: 48px 40px;
	}
}

/* =========================================================
   タブレット
========================================================= */
@media screen and (max-width: 1024px) {

	.top-worries {
		padding: 90px 0 80px;
	}

	.top-worries__inner {
		width: calc(100% - 48px);
	}

	.top-worries__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.top-worries__card {
		min-height: 225px;
	}
}

/* =========================================================
   スマホ
========================================================= */
@media screen and (max-width: 767px) {

	.top-worries {
		padding: 70px 0 64px;
	}

	.top-worries::before {
		top: 80px;
		right: -15px;
		font-size: 72px;
	}

	.top-worries__inner {
		width: calc(100% - 30px);
	}

	.top-worries__mark {
		transform: scale(0.82);
		margin-bottom: 14px;
	}

	.top-worries__en {
		margin-bottom: 10px;
		font-size: 11px;
		letter-spacing: 0.23em;
	}

	.top-worries__heading h2 {
		font-size: 29px;
		line-height: 1.45;
	}

	.top-worries__sub {
		margin-top: 16px;
		font-size: 14px;
	}

	.top-worries__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 11px;
		margin-top: 38px;
	}

	.top-worries__card {
		min-height: 170px;
		padding: 30px 10px 20px;
		border-radius: 0 0 28px 0;
	}

	.top-worries__number {
		top: 12px;
		left: 13px;
		font-size: 9px;
	}

	.top-worries__icon {
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
		font-size: 20px;
	}

	.top-worries__title {
		font-size: 14px;
		line-height: 1.55;
		letter-spacing: 0.02em;
	}

	.top-worries__arrow {
		right: 13px;
		bottom: 12px;
		font-size: 16px;
	}

	.top-worries__support {
		margin-top: 42px;
		padding: 38px 18px 32px;
		border-radius: 26px;
	}

	.top-worries__support-title {
		font-size: 23px;
		line-height: 1.6;
	}

	.top-worries__support-text {
		margin-top: 16px;
		font-size: 13px;
		line-height: 1.9;
	}

	.top-worries__scroll {
		min-height: 68px;
		margin-top: 26px;
		padding: 0 12px 0 24px;
	}

	.top-worries__scroll-text {
		font-size: 12px;
	}

	.top-worries__scroll-arrow {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.sp-only {
		display: block;
	}
}

/* =========================================================
   TOP お悩みセクション
   SHARK STYLE ワイルドデザイン
========================================================= */

.top-worries {
	position: relative;
	overflow: hidden;
	padding: 130px 0 120px;
	background:
		linear-gradient(135deg,
			rgba(25, 199, 196, 0.08) 0%,
			transparent 35%),
		#052f38;
}

/* 背景の巨大文字 */
.top-worries::before {
	content: "CONCERNS";
	position: absolute;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.035);
	font-family: Arial, sans-serif;
	font-size: clamp(130px, 18vw, 330px);
	font-weight: 900;
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.04em;
	white-space: nowrap;
	pointer-events: none;
}

/* 斜めの装飾線 */
.top-worries::after {
	content: "";
	position: absolute;
	right: -160px;
	bottom: -120px;
	width: 650px;
	height: 260px;
	border-top: 2px solid rgba(47, 199, 196, 0.18);
	border-bottom: 2px solid rgba(47, 199, 196, 0.1);
	transform: rotate(-15deg);
	pointer-events: none;
}

.top-worries__inner {
	position: relative;
	z-index: 2;
}

/* =========================================================
   見出し
========================================================= */

.top-worries__mark {
	display: none;
}

.top-worries__en {
	position: relative;
	display: inline-block;
	margin: 0 0 22px;
	padding: 0 40px;
	color: #2fd1cd;
	font-size: 14px;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0.32em;
}

.top-worries__en::before,
.top-worries__en::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 28px;
	height: 2px;
	background: #2fd1cd;
}

.top-worries__en::before {
	left: 0;
}

.top-worries__en::after {
	right: 0;
}

.top-worries__heading h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(42px, 5vw, 76px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0.02em;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.top-worries__sub {
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

/* =========================================================
   カード
========================================================= */

.top-worries__grid {
	gap: 18px;
	margin-top: 72px;
}

.top-worries__card {
	position: relative;
	min-height: 250px;
	padding: 38px 24px 32px;
	overflow: hidden;
	border: 1px solid rgba(47, 209, 205, 0.22);
	border-radius: 0;
	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.035) 0%,
			rgba(255, 255, 255, 0) 55%),
		#082f37;
	color: #fff;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	clip-path: polygon(0 0,
			calc(100% - 28px) 0,
			100% 28px,
			100% 100%,
			28px 100%,
			0 calc(100% - 28px));
}

/* 斜めアクセント */
.top-worries__card::before {
	content: "";
	position: absolute;
	top: 0;
	right: -85px;
	width: 190px;
	height: 6px;
	background: #2fd1cd;
	transform: rotate(45deg);
	transform-origin: center;
	transition: width 0.4s ease;
}

/* 背景の巨大番号 */
.top-worries__card::after {
	content: attr(data-number);
	position: absolute;
	right: 10px;
	bottom: -28px;
	color: rgba(255, 255, 255, 0.035);
	font-family: Arial, sans-serif;
	font-size: 110px;
	font-weight: 900;
	font-style: italic;
	line-height: 1;
	pointer-events: none;
}

.top-worries__number {
	top: 22px;
	left: 24px;
	color: #2fd1cd;
	font-size: 12px;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0.18em;
}

/* アイコン */
.top-worries__icon {
	width: 78px;
	height: 78px;
	margin-bottom: 26px;
	border: 1px solid rgba(47, 209, 205, 0.45);
	border-radius: 0;
	background: rgba(47, 209, 205, 0.08);
	color: #2fd1cd;
	font-size: 28px;
	clip-path: polygon(25% 0,
			75% 0,
			100% 25%,
			100% 75%,
			75% 100%,
			25% 100%,
			0 75%,
			0 25%);
	box-shadow:
		inset 0 0 20px rgba(47, 209, 205, 0.08),
		0 0 0 rgba(47, 209, 205, 0);
}

.top-worries__title {
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.top-worries__arrow {
	right: 22px;
	bottom: 20px;
	color: #2fd1cd;
	font-size: 24px;
}

/* 下部の牙・波風ライン */
.top-worries__card .top-worries__arrow::before {
	content: "";
	position: absolute;
	right: 32px;
	top: 50%;
	width: 42px;
	height: 1px;
	background: rgba(47, 209, 205, 0.45);
}

/* ホバー */
.top-worries__card:hover {
	border-color: #2fd1cd;
	background:
		linear-gradient(145deg,
			rgba(47, 209, 205, 0.15) 0%,
			rgba(47, 209, 205, 0.02) 55%),
		#073943;
	box-shadow:
		0 24px 58px rgba(0, 0, 0, 0.34),
		0 0 24px rgba(47, 209, 205, 0.15);
	transform: translateY(-9px);
}

.top-worries__card:hover::before {
	width: 260px;
}

.top-worries__card:hover .top-worries__icon {
	background: #2fd1cd;
	color: #052f38;
	transform: scale(1.08) rotate(-4deg);
	box-shadow:
		0 0 24px rgba(47, 209, 205, 0.35);
}

.top-worries__card:hover .top-worries__arrow {
	transform: translateX(6px);
}

/* =========================================================
   下部メッセージ
========================================================= */

.top-worries__support {
	margin-top: 78px;
	padding: 58px 50px;
	border: 1px solid rgba(47, 209, 205, 0.24);
	border-radius: 0;
	background:
		linear-gradient(115deg,
			rgba(47, 209, 205, 0.1),
			transparent 45%),
		#072a31;
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
	clip-path: polygon(0 0,
			calc(100% - 45px) 0,
			100% 45px,
			100% 100%,
			45px 100%,
			0 calc(100% - 45px));
}

.top-worries__support::before {
	width: 240px;
	height: 240px;
	background: transparent;
	border: 1px solid rgba(47, 209, 205, 0.12);
}

.top-worries__support::after {
	background: rgba(47, 209, 205, 0.055);
	border: none;
}

.top-worries__support-small {
	color: #2fd1cd;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.top-worries__support-title {
	color: #fff;
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 800;
}

.top-worries__support-title strong {
	color: #2fd1cd;
}

.top-worries__support-text {
	color: rgba(255, 255, 255, 0.67);
}

.top-worries__scroll {
	background: #2fd1cd;
	color: #042b32;
	font-weight: 800;
	box-shadow:
		0 16px 34px rgba(47, 209, 205, 0.18);
}

.top-worries__scroll-arrow {
	background: #052f38;
	color: #fff;
}

.top-worries__scroll:hover {
	background: #fff;
	color: #052f38;
}

.top-worries__scroll:hover .top-worries__scroll-arrow {
	background: #2fd1cd;
	color: #052f38;
}

/* =========================================================
   全ページ共通 PCヘッダー
========================================================= */
@media screen and (min-width: 769px) {

	body>header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 150px;
		padding: 18px 40px;
		box-sizing: border-box;
	}

	body>header h1 {
		flex: 0 0 220px;
		width: 220px;
		margin: 0;
		line-height: 1;
	}

	body>header h1 a,
	body>header h1 img {
		display: block;
		width: 100%;
		height: auto;
	}

	body>header .gnav {
		flex: 1;
		min-width: 0;
		margin-left: 45px;
	}

	body>header .gnav-menu {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	body>header .gnav-menu>li {
		flex: 0 0 auto;
	}

	body>header .gnav-menu>li:not(:first-child) {
		margin-left: 38px;
	}

	body>header .gnav-menu>li>a {
		display: block;
		font-size: 16px;
		line-height: 1.5;
		white-space: nowrap;
	}
}

/* =========================================================
   全ページ共通 ノートPCヘッダー
========================================================= */
@media screen and (min-width: 769px) and (max-width: 1500px) {

	body>header {
		min-height: 125px;
		padding: 15px 26px;
	}

	body>header h1 {
		flex-basis: 175px;
		width: 175px;
	}

	body>header .gnav {
		margin-left: 28px;
	}

	body>header .gnav-menu>li:not(:first-child) {
		margin-left: 24px;
	}

	body>header .gnav-menu>li>a {
		font-size: 13px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1150px) {

	body>header {
		padding-right: 18px;
		padding-left: 18px;
	}

	body>header h1 {
		flex-basis: 145px;
		width: 145px;
	}

	body>header .gnav {
		margin-left: 18px;
	}

	body>header .gnav-menu>li:not(:first-child) {
		margin-left: 15px;
	}

	body>header .gnav-menu>li>a {
		font-size: 11px;
		letter-spacing: 0;
	}
}

/* =========================================================
   全ページ共通 PCヘッダーサイズ調整
========================================================= */
@media screen and (min-width: 769px) {

	header {
		width: 100%;
		min-height: 0 !important;
		height: 170px !important;
		padding: 15px 40px !important;
		box-sizing: border-box;
	}

	header h1 {
		flex: 0 0 210px !important;
		width: 210px !important;
		margin: 0 !important;
	}

	header h1 a,
	header h1 img {
		display: block;
		width: 100%;
		height: auto;
	}

	header .gnav {
		flex: 1;
		min-width: 0;
		margin-left: 45px;
	}

	header ul.gnav-menu {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	header ul.gnav-menu>li:not(:first-child) {
		margin-left: 42px !important;
	}

	header ul.gnav-menu>li>a {
		font-size: 16px !important;
		line-height: 1.5;
		white-space: nowrap;
	}
}

/* =========================================================
   全ページ共通 ノートPCヘッダー
========================================================= */
@media screen and (min-width: 769px) and (max-width: 1500px) {

	header {
		height: 130px !important;
		padding: 12px 28px !important;
	}

	header h1 {
		flex-basis: 175px !important;
		width: 175px !important;
	}

	header .gnav {
		margin-left: 28px;
	}

	header ul.gnav-menu>li:not(:first-child) {
		margin-left: 24px !important;
	}

	header ul.gnav-menu>li>a {
		font-size: 13px !important;
	}
}

.trial-flow__content>p:last-child {
	font-size: 14px;
	line-height: 1.85;
}

/* スマホでも左右矢印を表示 */
.trial-flow__arrow {
	display: grid;
	width: 42px;
	height: 42px;
	border: 2px solid #ffffff;
	font-size: 17px;
	z-index: 20;
}

.trial-flow__arrow--prev {
	left: 4px;
}

.trial-flow__arrow--next {
	right: 4px;
}

.trial-flow__progress {
	width: calc(100% - 50px);
	margin-top: 5px;
}

.trial-flow__button {
	margin-top: 35px;
	padding: 0 15px;
}


/* ← スマホ用メディアクエリを閉じる。必ず残す */

/* =========================================================
   GUIDE ABOUT
   西海岸スタイル
========================================================= */

.guide-about {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 130px 0 145px;
	background:
		linear-gradient(115deg,
			rgba(255, 255, 255, 0.74) 0%,
			rgba(255, 255, 255, 0.4) 48%,
			rgba(255, 250, 238, 0.55) 100%),
		#f4efe3;
}

/* 上部のターコイズライン */
.guide-about::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 9px;
	background:
		linear-gradient(90deg,
			#29c9c3 0%,
			#29c9c3 42%,
			#f1b86b 42%,
			#f1b86b 63%,
			#163f4a 63%,
			#163f4a 100%);
	content: "";
}

/* 背景の斜めストライプ */
.guide-about::after {
	position: absolute;
	top: -80px;
	right: -150px;
	z-index: -2;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(36, 183, 180, 0.22);
	border-radius: 50%;
	content: "";
}

/* 夕日 */
.guide-about__sun {
	position: absolute;
	top: 62px;
	right: 7%;
	z-index: -1;
	width: 165px;
	height: 165px;
	border-radius: 50%;
	background:
		linear-gradient(180deg,
			#f4c177 0%,
			#f3aa70 100%);
	opacity: 0.8;
}

/* 波型 */
.guide-about__wave {
	position: absolute;
	right: -40px;
	bottom: 38px;
	z-index: -1;
	width: 50%;
	height: 115px;
	border-top: 22px solid rgba(47, 201, 197, 0.18);
	border-radius: 50% 50% 0 0;
	transform: rotate(-4deg);
}

.guide-about .container {
	position: relative;
	z-index: 3;
	width: min(1240px, calc(100% - 70px));
	max-width: none;
	margin: 0 auto;
}

.guide-about .wrap {
	display: grid !important;
	grid-template-columns:
		minmax(420px, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 105px;
}

.guide-about .wrap.reverse figure {
	order: 2;
}

.guide-about .wrap.reverse>div {
	order: 1;
}

/* =========================================================
   テキスト
========================================================= */

.guide-about__content {
	position: relative;
	z-index: 3;
	width: 100% !important;
	max-width: 570px !important;
}

.guide-about .section-en {
	margin-bottom: 17px;
	color: #159f9a;
	font-size: 13px;
	letter-spacing: 0.24em;
}

.guide-about__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 27px;
}

.guide-about__tags span {
	display: inline-flex;
	min-height: 29px;
	align-items: center;
	padding: 4px 12px;
	border: 1px solid rgba(21, 159, 154, 0.48);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.6);
	color: #157f7b;
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.guide-about h2 {
	position: relative;
	margin: 0 0 32px;
	color: #123e48;
	font-size: clamp(42px, 4vw, 62px);
	font-weight: 800;
	line-height: 1.42;
	letter-spacing: 0.025em;
	word-break: keep-all;
}

/* 見出し下のサンセットライン */
.guide-about h2::after {
	display: block;
	width: 92px;
	height: 5px;
	margin-top: 25px;
	background:
		linear-gradient(90deg,
			#2fc9c5 0 68%,
			#efad6d 68% 100%);
	content: "";
}

.guide-about__lead {
	margin-bottom: 17px !important;
	color: #244c54 !important;
	font-size: 17px !important;
	font-weight: 600;
	line-height: 2.05 !important;
}

.guide-about p:not(.section-en) {
	color: #53696d;
	font-size: 15px;
	line-height: 2.05;
}

/* リンク */
.guide-about__link {
	display: inline-flex;
	min-width: 285px;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	margin-top: 27px;
	padding: 0 10px 0 27px;
	border-radius: 999px;
	background: #163f4a;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 13px 28px rgba(22, 63, 74, 0.18);
}

.guide-about__link i {
	display: grid;
	flex: 0 0 43px;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: #30cec5;
	color: #103a43;
	font-style: normal;
	font-size: 18px;
	place-items: center;
	transition: transform 0.3s ease;
}

.guide-about__link:hover {
	color: #fff;
	opacity: 1;
	transform: translateY(-3px);
}

.guide-about__link:hover i {
	transform: translateX(4px);
}

/* =========================================================
   写真
========================================================= */

.guide-about__photo {
	position: relative;
	width: 100% !important;
	height: 575px !important;
	margin: 0 !important;
	overflow: visible !important;
	border-radius: 0 !important;
	background: transparent;
	box-shadow: none !important;
	transform: rotate(1.8deg);
}

.guide-about__photo::before {
	position: absolute;
	inset: 17px -17px -17px 17px;
	z-index: -1;
	border-radius: 72px 8px 72px 8px;
	background: #2fc9c5;
	content: "";
}

.guide-about__photo::after {
	position: absolute;
	top: -23px;
	right: 60px;
	z-index: 4;
	width: 115px;
	height: 38px;
	background: rgba(243, 223, 176, 0.84);
	content: "";
	transform: rotate(-5deg);
	box-shadow: 0 3px 8px rgba(68, 53, 38, 0.08);
}

.guide-about__photo img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	border: 12px solid #fff;
	border-radius: 72px 8px 72px 8px;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 25px 55px rgba(18, 69, 78, 0.16);
	filter: saturate(1.07) contrast(1.02);
}

.guide-about__photo-label {
	position: absolute;
	top: 27px;
	left: -30px;
	z-index: 5;
	padding: 10px 20px;
	background: #163f4a;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.17em;
	transform: rotate(-3deg);
}

.guide-about__photo-caption {
	position: absolute;
	right: 26px;
	bottom: -31px;
	z-index: 5;
	color: #163f4a;
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

/* 背景の巨大文字 */
.guide-about__big-text {
	position: absolute;
	bottom: -65px;
	left: -20px;
	z-index: -1;
	margin: 0;
	color: rgba(22, 63, 74, 0.045);
	font-family: Arial, sans-serif;
	font-size: clamp(120px, 15vw, 255px);
	font-weight: 900;
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.05em;
	white-space: nowrap;
	pointer-events: none;
}

/* =========================================================
   GUIDE ABOUT スマートフォン
========================================================= */
@media screen and (max-width: 767px) {

	.guide-about {
		padding: 82px 0 95px;
	}

	.guide-about .container {
		width: calc(100% - 36px);
	}

	.guide-about .wrap {
		display: flex !important;
		flex-direction: column !important;
		gap: 48px;
	}

	/* スマホは写真を先に表示 */
	.guide-about .wrap.reverse figure {
		order: 1 !important;
	}

	.guide-about .wrap.reverse>div {
		order: 2 !important;
	}

	.guide-about__photo {
		width: calc(100% - 15px) !important;
		height: 330px !important;
		margin-left: 0 !important;
		transform: rotate(1.2deg);
	}

	.guide-about__photo::before {
		inset: 10px -10px -10px 10px;
		border-radius: 42px 5px 42px 5px;
	}

	.guide-about__photo img {
		border-width: 7px;
		border-radius: 42px 5px 42px 5px;
	}

	.guide-about__photo::after {
		top: -16px;
		right: 35px;
		width: 82px;
		height: 27px;
	}

	.guide-about__photo-label {
		top: 22px;
		left: -10px;
		padding: 8px 13px;
		font-size: 8px;
	}

	.guide-about__photo-caption {
		right: 5px;
		bottom: -26px;
		font-size: 8px;
	}

	.guide-about__content {
		max-width: none !important;
	}

	.guide-about__tags {
		gap: 6px;
		margin-bottom: 20px;
	}

	.guide-about__tags span {
		min-height: 25px;
		padding: 3px 9px;
		font-size: 8px;
	}

	.guide-about h2 {
		margin-bottom: 24px;
		font-size: 34px;
		line-height: 1.45;
	}

	.guide-about h2::after {
		width: 74px;
		margin-top: 19px;
	}

	.guide-about__lead {
		font-size: 15px !important;
		line-height: 1.95 !important;
	}

	.guide-about p:not(.section-en) {
		font-size: 14px;
		line-height: 1.95;
	}

	.guide-about__link {
		width: 100%;
		min-width: 0;
		min-height: 60px;
		margin-top: 23px;
	}

	.guide-about__sun {
		top: 38px;
		right: -35px;
		width: 120px;
		height: 120px;
	}

	.guide-about__wave {
		right: -100px;
		bottom: 20px;
		width: 100%;
	}

	.guide-about__big-text {
		bottom: -20px;
		font-size: 82px;
	}
}

/* =========================================================
   GUIDE POINTS
   西海岸スタイル
========================================================= */

.guide-points {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 125px 0 140px;
	background:
		linear-gradient(120deg,
			rgba(255, 255, 255, 0.74),
			rgba(255, 249, 236, 0.65)),
		#f3eddf;
}

/* 上のカラーバー */
.guide-points::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 8px;
	background:
		linear-gradient(90deg,
			#163f4a 0 27%,
			#30cec5 27% 68%,
			#efa866 68% 100%);
	content: "";
}

/* 背景の薄いストライプ */
.guide-points::after {
	position: absolute;
	top: 0;
	right: -150px;
	z-index: -2;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(47, 201, 197, 0.22);
	border-radius: 50%;
	content: "";
}

.guide-points .container {
	position: relative;
	z-index: 3;
	width: min(1160px, calc(100% - 70px));
	margin: 0 auto;
}

/* =========================================================
   見出し
========================================================= */

.guide-points .section-heading {
	position: relative;
	max-width: 760px;
	margin-bottom: 68px;
}

.guide-points .section-en {
	color: #159f9a;
	letter-spacing: 0.24em;
}

.guide-points .section-heading h2 {
	margin-bottom: 22px;
	color: #123e48;
	font-size: clamp(38px, 4vw, 54px);
	font-weight: 800;
	line-height: 1.42;
}

/* 見出し下ライン */
.guide-points .section-heading h2::after {
	display: block;
	width: 92px;
	height: 5px;
	margin: 23px auto 0;
	background:
		linear-gradient(90deg,
			#30cec5 0 70%,
			#efa866 70% 100%);
	content: "";
}

.guide-points .section-heading>p:last-child {
	color: #65767a;
}

/* =========================================================
   カード
========================================================= */

.guide-points__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.guide-point {
	position: relative;
	min-height: 285px;
	overflow: hidden;
	padding: 44px 42px 39px;
	border: 0;
	border-radius: 4px 42px 4px 42px;
	background:
		linear-gradient(145deg,
			rgba(255, 255, 255, 0.96),
			rgba(246, 252, 249, 0.92));
	box-shadow:
		0 20px 45px rgba(22, 63, 74, 0.1),
		0 3px 8px rgba(22, 63, 74, 0.04);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

/* カード上部の細いライン */
.guide-point::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background:
		linear-gradient(90deg,
			#30cec5 0 72%,
			#efa866 72% 100%);
	content: "";
}

/* カード背景の夕日 */
.guide-point::after {
	position: absolute;
	right: -45px;
	bottom: -60px;
	width: 175px;
	height: 175px;
	border: 22px solid rgba(47, 201, 197, 0.09);
	border-radius: 50%;
	background: transparent;
	content: "";
}

/* 交互に色を少し変える */
.guide-point:nth-child(even)::before {
	background:
		linear-gradient(90deg,
			#163f4a 0 28%,
			#30cec5 28% 100%);
}

.guide-point:hover {
	box-shadow:
		0 28px 58px rgba(22, 63, 74, 0.16),
		0 5px 12px rgba(22, 63, 74, 0.06);
	transform: translateY(-8px) rotate(-0.4deg);
}

/* =========================================================
   番号
========================================================= */

.guide-point__number {
	position: absolute;
	top: 27px;
	right: 30px;
	z-index: 1;
	margin: 0;
	color: rgba(22, 63, 74, 0.08);
	font-family: Arial, sans-serif;
	font-size: 86px;
	font-weight: 900;
	font-style: italic;
	line-height: 1;
}

/* 小さい英字 */
.guide-point__en {
	position: relative;
	z-index: 2;
	margin: 0 0 18px;
	color: #159f9a;
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

/* =========================================================
   見出しと本文
========================================================= */

.guide-point h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 21px;
	padding: 0 0 20px;
	background: none;
	color: #123e48;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.55;
}

/* 見出し下ライン */
.guide-point h3::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 62px;
	height: 3px;
	background: #30cec5;
	content: "";
}

.guide-point p:last-child {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #66797d;
	font-size: 15px;
	line-height: 1.95;
}

/* =========================================================
   背景装飾
========================================================= */

.guide-points__sun {
	position: absolute;
	top: 80px;
	left: 7%;
	z-index: -1;
	width: 145px;
	height: 145px;
	border-radius: 50%;
	background:
		linear-gradient(180deg,
			rgba(244, 193, 119, 0.72),
			rgba(239, 168, 102, 0.68));
}

.guide-points__wave {
	position: absolute;
	right: -90px;
	bottom: 45px;
	z-index: -1;
	width: 57%;
	height: 120px;
	border-top: 24px solid rgba(47, 201, 197, 0.14);
	border-radius: 50% 50% 0 0;
	transform: rotate(-3deg);
}

.guide-points__big-text {
	position: absolute;
	bottom: -52px;
	left: -20px;
	z-index: -1;
	margin: 0;
	color: rgba(22, 63, 74, 0.045);
	font-family: Arial, sans-serif;
	font-size: clamp(120px, 14vw, 235px);
	font-weight: 900;
	font-style: italic;
	line-height: 1;
	white-space: nowrap;
	pointer-events: none;
}

/* =========================================================
   ボタン
========================================================= */

.guide-points__button {
	display: inline-flex;
	min-width: 320px;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px 0 28px;
	border-radius: 999px;
	background: #163f4a;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 13px 28px rgba(22, 63, 74, 0.18);
}

.guide-points__button i {
	display: grid;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #30cec5;
	color: #103a43;
	font-style: normal;
	font-size: 18px;
	place-items: center;
	transition: transform 0.3s ease;
}

.guide-points__button:hover {
	color: #fff;
	opacity: 1;
	transform: translateY(-3px);
}

.guide-points__button:hover i {
	transform: translateX(4px);
}

/* =========================================================
   GUIDE POINTS ノートPC
========================================================= */
@media screen and (min-width: 1025px) and (max-width: 1500px) {

	.guide-points {
		padding: 105px 0 120px;
	}

	.guide-points .container {
		width: min(1080px, calc(100% - 60px));
	}

	.guide-points .section-heading {
		margin-bottom: 55px;
	}

	.guide-points .section-heading h2 {
		font-size: 43px;
	}

	.guide-points__grid {
		gap: 25px;
	}

	.guide-point {
		min-height: 255px;
		padding: 38px 34px 34px;
	}

	.guide-point h3 {
		font-size: 20px;
	}

	.guide-point p:last-child {
		font-size: 14px;
	}
}

/* =========================================================
   GUIDE POINTS スマートフォン
========================================================= */
@media screen and (max-width: 767px) {

	.guide-points {
		padding: 82px 0 95px;
	}

	.guide-points .container {
		width: calc(100% - 30px);
	}

	.guide-points .section-heading {
		margin-bottom: 38px;
		text-align: left;
	}

	.guide-points .section-heading h2 {
		font-size: 30px;
		line-height: 1.5;
	}

	.guide-points .section-heading h2::after {
		margin-right: 0;
		margin-left: 0;
	}

	.guide-points__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.guide-point {
		min-height: 0;
		padding: 34px 25px 31px;
		border-radius: 4px 30px 4px 30px;
	}

	.guide-point__number {
		top: 24px;
		right: 19px;
		font-size: 68px;
	}

	.guide-point__en {
		margin-bottom: 15px;
		font-size: 9px;
	}

	.guide-point h3 {
		margin-bottom: 17px;
		padding-right: 40px;
		padding-bottom: 17px;
		font-size: 19px;
	}

	.guide-point p:last-child {
		font-size: 14px;
		line-height: 1.9;
	}

	.guide-points__button {
		width: 100%;
		min-width: 0;
		min-height: 60px;
	}

	.guide-points__sun {
		top: 55px;
		left: -40px;
		width: 110px;
		height: 110px;
	}

	.guide-points__wave {
		right: -120px;
		bottom: 25px;
		width: 130%;
	}

	.guide-points__big-text {
		bottom: -15px;
		font-size: 78px;
	}
}

/* =========================================================
   TRAINING
   2×2 INTERACTIVE GRID
========================================================= */

.guide-training {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 125px 0 145px;
	background:
		linear-gradient(120deg,
			rgba(239, 248, 247, 0.97),
			rgba(255, 251, 241, 0.94));
}

/* 背景の巨大英字 */
.guide-training::before {
	position: absolute;
	top: 105px;
	left: -25px;
	z-index: -1;
	color: rgba(22, 63, 74, 0.035);
	content: "MOVE";
	font-family: Arial, sans-serif;
	font-size: clamp(140px, 18vw, 310px);
	font-weight: 900;
	font-style: italic;
	line-height: 1;
	letter-spacing: -0.06em;
	white-space: nowrap;
}

/* 夕日 */
.guide-training::after {
	position: absolute;
	top: 65px;
	right: 5%;
	z-index: -1;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background:
		linear-gradient(180deg,
			rgba(244, 193, 119, 0.78),
			rgba(239, 168, 102, 0.66));
	content: "";
}

.guide-training .container {
	position: relative;
	z-index: 2;
	width: min(1160px, calc(100% - 70px));
	margin: 0 auto;
}

/* =========================================================
   見出し
========================================================= */

.guide-training .section-heading {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 68px;
	text-align: center;
}

.guide-training .section-heading h2 {
	margin: 0 0 22px;
	color: #123e48;
	font-size: clamp(38px, 3.4vw, 52px);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.02em;
	word-break: keep-all;
	white-space: nowrap;
}

.guide-training .section-heading h2::after {
	display: block;
	width: 92px;
	height: 5px;
	margin: 24px auto 0;
	background:
		linear-gradient(90deg,
			#30cec5 0 68%,
			#efa866 68% 100%);
	content: "";
}

.guide-training .section-heading>p:last-child {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

/* =========================================================
   4枚を同じ大きさで配置
========================================================= */

.guide-training__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

/* =========================================================
   カード
========================================================= */

.guide-training__card {
	position: relative;
	display: block;
	height: 390px;
	min-width: 0;
	overflow: hidden;
	border-radius: 5px 46px 5px 46px;
	background: #123e48;
	color: #ffffff;
	box-shadow:
		0 20px 45px rgba(22, 63, 74, 0.13),
		0 4px 10px rgba(22, 63, 74, 0.05);
	text-decoration: none;
	transform: translateZ(0);
	transition:
		transform 0.45s ease,
		box-shadow 0.45s ease;
}

/* 写真 */
.guide-training__card figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	margin: 0;
	overflow: hidden;
}

.guide-training__card figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.5s ease;
}

/* 通常時の下部グラデーション */
.guide-training__card figure::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg,
			rgba(7, 35, 41, 0.02) 28%,
			rgba(7, 35, 41, 0.2) 52%,
			rgba(7, 35, 41, 0.9) 100%);
	content: "";
	transition: background 0.5s ease;
}

/* =========================================================
   中央コンテンツ
========================================================= */

.guide-training__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-end;
	padding: 34px 36px;
	background: transparent;
	text-align: left;
	transition:
		background-color 0.45s ease,
		padding 0.45s ease;
}

.guide-training__en {
	margin: 0 0 9px;
	color: #30cec5 !important;
	font-family: Arial, sans-serif;
	font-size: 10px !important;
	font-weight: 800;
	line-height: 1.5 !important;
	letter-spacing: 0.2em;
}

.guide-training__card h3 {
	margin: 0;
	padding: 0;
	background: none;
	color: #ffffff;
	font-size: 27px;
	font-weight: 800;
	line-height: 1.4;
}

/* 通常時は説明文と詳細リンクを隠す */
.guide-training__description,
.guide-training__more {
	max-height: 0;
	margin: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(18px);
	transition:
		max-height 0.5s ease,
		margin 0.5s ease,
		opacity 0.4s ease,
		transform 0.5s ease;
}

.guide-training__description {
	max-width: 390px;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 14px !important;
	line-height: 1.9 !important;
}

.guide-training__more {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
}

.guide-training__more i {
	display: grid;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background: #30cec5;
	color: #123e48;
	font-style: normal;
	place-items: center;
}

/* =========================================================
   ホバー・キーボードフォーカス
========================================================= */

.guide-training__card:hover,
.guide-training__card:focus-visible {
	opacity: 1;
	box-shadow:
		0 30px 65px rgba(22, 63, 74, 0.23),
		0 8px 18px rgba(22, 63, 74, 0.08);
	transform: translateY(-7px);
}

.guide-training__card:hover figure img,
.guide-training__card:focus-visible figure img {
	filter: saturate(1.05) contrast(1.06);
	transform: scale(1.1);
}

.guide-training__card:hover figure::after,
.guide-training__card:focus-visible figure::after {
	background:
		linear-gradient(135deg,
			rgba(10, 48, 56, 0.9),
			rgba(16, 69, 76, 0.82));
}

/* カーソルを合わせたら中央表示 */
.guide-training__card:hover .guide-training__content,
.guide-training__card:focus-visible .guide-training__content {
	align-items: center;
	justify-content: center;
	padding: 45px;
	background: rgba(7, 41, 48, 0.12);
	text-align: center;
}

.guide-training__card:hover .guide-training__en,
.guide-training__card:focus-visible .guide-training__en {
	margin-bottom: 12px;
}

.guide-training__card:hover h3,
.guide-training__card:focus-visible h3 {
	font-size: 31px;
}

/* 説明を表示 */
.guide-training__card:hover .guide-training__description,
.guide-training__card:focus-visible .guide-training__description {
	max-height: 130px;
	margin-top: 17px;
	opacity: 1;
	transform: translateY(0);
}

.guide-training__card:hover .guide-training__more,
.guide-training__card:focus-visible .guide-training__more {
	max-height: 60px;
	margin-top: 23px;
	opacity: 1;
	transform: translateY(0);
}

@media screen and (min-width: 1025px) and (max-width: 1500px) {

	.guide-training {
		padding: 105px 0 120px;
	}

	.guide-training .container {
		width: min(1060px, calc(100% - 60px));
	}

	.guide-training .section-heading h2 {
		font-size: 43px;
	}

	.guide-training__card {
		height: 350px;
	}

	.guide-training__card h3 {
		font-size: 24px;
	}

	.guide-training__card:hover h3,
	.guide-training__card:focus-visible h3 {
		font-size: 28px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

	.guide-training .container {
		width: calc(100% - 50px);
	}

	.guide-training__grid {
		gap: 18px;
	}

	.guide-training__card {
		height: 330px;
	}

	.guide-training__content {
		padding: 28px;
	}

	.guide-training__card h3 {
		font-size: 22px;
	}

	.guide-training__description {
		max-height: 90px;
		margin-top: 11px;
		opacity: 1;
		font-size: 12px !important;
		line-height: 1.7 !important;
		transform: none;
	}
}

@media screen and (max-width: 767px) {

	.guide-training {
		padding: 82px 0 95px;
	}

	.guide-training .container {
		width: calc(100% - 30px);
	}

	.guide-training .section-heading {
		margin-bottom: 40px;
		text-align: left;
	}

	.guide-training .section-heading h2 {
		font-size: 30px;
		line-height: 1.45;
		white-space: normal;
	}

	.guide-training .section-heading h2::after {
		margin-right: 0;
		margin-left: 0;
	}

	.guide-training__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.guide-training__card {
		height: 330px;
		border-radius: 4px 32px 4px 32px;
	}

	.guide-training__content {
		justify-content: flex-end;
		padding: 25px 23px;
		text-align: left;
	}

	.guide-training__card h3 {
		font-size: 23px;
	}

	.guide-training__description {
		max-height: 100px;
		margin-top: 11px;
		opacity: 1;
		font-size: 13px !important;
		line-height: 1.75 !important;
		transform: none;
	}

	.guide-training__more {
		max-height: 55px;
		margin-top: 16px;
		opacity: 1;
		transform: none;
	}

	/* スマホではホバーによる中央移動を無効化 */
	.guide-training__card:hover .guide-training__content {
		align-items: flex-start;
		justify-content: flex-end;
		padding: 25px 23px;
		text-align: left;
	}

	.guide-training__card:hover h3 {
		font-size: 23px;
	}
}

/* =========================================================
   TRIAL FLOW
   WEST COAST ROAD TRIP STYLE
========================================================= */

.trial-flow {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 125px 0 130px;
	background:
		linear-gradient(135deg,
			#123e48 0%,
			#0c343d 100%);
}

/* 巨大英字 */
.trial-flow::before {
	position: absolute;
	top: 25px;
	right: -35px;
	z-index: -1;
	color: rgba(255, 255, 255, 0.035);
	content: "FIRST VISIT";
	font-family: Arial, sans-serif;
	font-size: clamp(100px, 13vw, 225px);
	font-weight: 900;
	font-style: italic;
	white-space: nowrap;
}

/* 海岸線 */
.trial-flow::after {
	position: absolute;
	bottom: 65px;
	left: -8%;
	z-index: -1;
	width: 116%;
	height: 150px;
	border-top: 25px solid rgba(48, 206, 197, 0.12);
	border-radius: 50%;
	content: "";
	transform: rotate(-2deg);
}

.trial-flow__heading {
	position: relative;
	z-index: 3;
}

.trial-flow__en {
	color: #30cec5;
}

.trial-flow__heading h2 {
	color: #ffffff;
	font-size: clamp(40px, 4vw, 56px);
}

.trial-flow__lead {
	color: rgba(255, 255, 255, 0.7);
}

/* スライダーに道路ライン */
.trial-flow__slider-wrap::before {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 2px;
	background:
		repeating-linear-gradient(90deg,
			rgba(239, 168, 102, 0.7) 0 30px,
			transparent 30px 54px);
	content: "";
}

/* カード */
.trial-flow__card {
	z-index: 2;
	border: 0;
	border-radius: 4px 34px 4px 34px;
	background: #fffdf8;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.trial-flow__card:nth-child(even) {
	transform: translateY(18px);
}

.trial-flow__card:nth-child(odd) {
	transform: translateY(-8px);
}

.trial-flow__card:hover {
	transform: translateY(-16px);
}

.trial-flow__image {
	border-radius: 3px 26px 3px 26px;
	background: #edf8f6;
}

.trial-flow__number {
	background:
		linear-gradient(135deg,
			#efa866,
			#30cec5);
}

/* 進捗バー */
.trial-flow__progress {
	background: rgba(255, 255, 255, 0.18);
}

.trial-flow__progress span {
	background:
		linear-gradient(90deg,
			#efa866,
			#30cec5);
}

@media screen and (max-width: 767px) {

	.trial-flow {
		padding: 82px 0 95px;
	}

	.trial-flow__heading h2 {
		font-size: 31px;
	}

	.trial-flow__card:nth-child(even),
	.trial-flow__card:nth-child(odd) {
		transform: none;
	}

	.trial-flow__slider-wrap::before {
		display: none;
	}

	.trial-flow::before {
		top: 35px;
		font-size: 78px;
	}
}

/* =========================================================
   FAQ
   SURFBOARD SIGN STYLE
========================================================= */

.guide-faq {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 120px 0 135px;
	background:
		linear-gradient(120deg,
			#f4ede0,
			#fffaf0);
}

/* 夕日 */
.guide-faq::before {
	position: absolute;
	top: 70px;
	left: 6%;
	z-index: -1;
	width: 175px;
	height: 175px;
	border-radius: 50%;
	background:
		linear-gradient(180deg,
			rgba(244, 193, 119, 0.75),
			rgba(239, 168, 102, 0.6));
	content: "";
}

/* 波 */
.guide-faq::after {
	position: absolute;
	right: -80px;
	bottom: 35px;
	z-index: -1;
	width: 60%;
	height: 130px;
	border-top: 24px solid rgba(48, 206, 197, 0.14);
	border-radius: 50%;
	content: "";
	transform: rotate(-3deg);
}

.guide-faq .section-heading {
	margin-bottom: 65px;
}

.guide-faq .section-heading h2 {
	font-size: clamp(38px, 4vw, 54px);
}

/* リスト */
.guide-faq .faq-list {
	max-width: 1000px;
}

/* サーフボード型 */
.guide-faq .faq-item {
	position: relative;
	overflow: hidden;
	margin-bottom: 22px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 32px rgba(22, 63, 74, 0.09);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background-color 0.3s ease;
}

/* 左右にずらしてリズムを出す */
.guide-faq .faq-item:nth-child(odd) {
	margin-right: 55px;
}

.guide-faq .faq-item:nth-child(even) {
	margin-left: 55px;
}

.guide-faq .faq-item summary {
	min-height: 86px;
	padding: 22px 75px 22px 30px;
}

.guide-faq .faq-item summary>span {
	background:
		linear-gradient(135deg,
			#163f4a,
			#30cec5);
}

.guide-faq .faq-item[open] {
	border-radius: 42px;
	background: #163f4a;
	box-shadow: 0 22px 45px rgba(22, 63, 74, 0.2);
}

.guide-faq .faq-item[open] summary {
	color: #ffffff;
}

.guide-faq .faq-item[open] summary::before,
.guide-faq .faq-item[open] summary::after {
	background: #30cec5;
}

.guide-faq .faq-answer {
	padding: 0 45px 30px;
	color: rgba(255, 255, 255, 0.84);
}

.guide-faq .faq-answer>span {
	background: #efa866;
	color: #163f4a;
}

.guide-faq .faq-item:hover {
	box-shadow: 0 18px 40px rgba(22, 63, 74, 0.15);
	transform: translateX(5px);
}

@media screen and (max-width: 767px) {

	.guide-faq {
		padding: 82px 0 95px;
	}

	.guide-faq .section-heading {
		margin-bottom: 38px;
	}

	.guide-faq .section-heading h2 {
		font-size: 29px;
	}

	.guide-faq .faq-item:nth-child(odd),
	.guide-faq .faq-item:nth-child(even) {
		margin-right: 0;
		margin-left: 0;
	}

	.guide-faq .faq-item {
		margin-bottom: 16px;
		border-radius: 30px;
	}

	.guide-faq .faq-item summary {
		min-height: 78px;
		padding: 18px 54px 18px 17px;
		font-size: 14px;
	}

	.guide-faq .faq-item[open] {
		border-radius: 26px;
	}

	.guide-faq .faq-answer {
		padding: 0 20px 24px 17px;
	}
}

/* =========================================================
   SPグローバルメニュー アコーディオン
========================================================= */

@media screen and (max-width: 768px) {

	.sp-accordion-list {
		display: none;
	}

	.sp-accordion-menu.is-open>.sp-accordion-list {
		display: block;
	}

	.sp-accordion-toggle {
		width: 100%;
		border: 0;
		background: transparent;
		color: inherit;
		font: inherit;
		text-align: left;
		cursor: pointer;
	}

	.sp-accordion-toggle .arrow {
		flex-shrink: 0;
	}
}

/* =========================================
   初めての方ページ「このような不安〜」SP1行固定
========================================= */

@media screen and (max-width: 768px) {
	.guide-worries .section-heading h2 {
		width: 100%;
		margin-right: 0;
		margin-left: 0;

		font-size: clamp(18px, 5.2vw, 21px);
		line-height: 1.5;
		letter-spacing: -0.055em;
		white-space: nowrap;
	}
}

/* 320px前後の小さいSP */
@media screen and (max-width: 350px) {
	.guide-worries .section-heading h2 {
		font-size: 17px;
		letter-spacing: -0.065em;
	}
}

/* PCでは改行しない */
.training-sp-break {
	display: none;
}

/* TRAINING見出し SP調整 */
@media screen and (max-width: 767px) {

	.guide-training .section-heading {
		width: 100%;
		overflow: visible;
	}

	.guide-training .section-heading h2 {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		font-size: clamp(26px, 7.5vw, 30px);
		line-height: 1.4;
		letter-spacing: -0.03em;
		white-space: nowrap;
		overflow: visible;
	}

	.guide-training .section-heading h2 .training-sp-break {
		display: block;
	}
}

/* FAQ見出しをSPでも1行にする */
@media screen and (max-width: 767px) {

	.guide-faq .section-heading h2 {
		width: 100%;
		font-size: clamp(21px, 6.2vw, 24px) !important;
		line-height: 1.4;
		letter-spacing: -0.04em;
		white-space: nowrap !important;
		word-break: keep-all;
	}
}