@charset "UTF-8";

#content-wrap {
	.content-title {
		text-align: center;
		font-weight: 600;
		font-size: var(--font-5xl);
		line-height: 1.4;
		padding-bottom: 1em;
		margin-bottom: 0;
		>* {
			font-weight: 600;
		}
		.sub-Title {
			display: block;
			font-weight: 400;
			font-size: var(--font-3xl);
			padding-bottom: .5em;
		}
	}
	.inner-title {
		display: flex;
		align-items: center;
		text-align: center;
		font-size: var(--font-3xl);
		font-weight: 500;
		padding-bottom: .5em;
		&:before,
		&:after {
			background-color: #000;
			content: "";
			flex-grow: 1;
			height: 1px;
		}
		&:before {
			margin-right: 15px;
		}
		&:after {
			margin-left: 15px;
		}
	}
	.inner-title02 {
		display: flex;
		align-items: center;
		text-align: center;
		font-size: var(--font-xl);
		font-weight: 600;
		padding-bottom: .5em;
		margin-bottom: 0;
		&:before,
		&:after {
			background-color: #000;
			content: "";
			flex-grow: 1;
			height: 1px;
		}
		&:before {
			margin-right: 10px;
		}
		&:after {
			margin-left: 10px;
		}
	}
	@media (min-width: 768px) {
		.content-title {
			padding-bottom: 1.25em;
		}
	}
}
.content-box {
	padding: 40px 4%;
	&.bd {
		border-top: 1px solid var(--color-border-1);
	}
	@media (min-width: 768px) {
		padding: 80px 0;
	}
}
@media (min-width: 992px) {
	.container-narrow {
		max-width: 800px;
		margin: 0 auto;
	}
}
/*
#top-mainvisual
---------------------------*/
#top-mainvisual {
	position: relative;
	background-image: linear-gradient(0deg, #fff, #d0e8f4);
	padding-top: 20px;
	.top-mainvisual-inner {
		background-image: url(../img/top/main-visual-bg-sp.png);
		background-size: 100% auto;
		background-position: center bottom;
		background-repeat: no-repeat;
	}
	.mvtext-box {
		text-align: center;
		padding-bottom: 35vh;
	}
	.mv-text {
		width: 70%;
	}
	.read {
		display: inline-block;
		background-color: #fff;
		color: var(--color-primary);
		font-size: var(--font-5xl);
		padding: 10px;
	}
	.main-visual-bg {
		display: none;
	}
	
	/* スマホ用画像の追加 */
	.main-visual-sp {
		display: block;
		width: 100%;
		height: auto;
	}
	
	/* スマホでは背景とmvtext-boxを非表示 */
	@media (max-width: 767px) {
		.top-mainvisual-inner {
			background-image: none !important;
		}
		.mvtext-box {
			display: none !important;
		}
	}
	
	@media (min-width: 768px) {
		padding-top: 0;
		.top-mainvisual-inner {
			background-image: none;
			>div {
				position: absolute;
				top: 0;
				bottom: 0;
				left: 0;
				right: 0;
				margin: auto;
			}
		}
		.mvtext-box {
			height: 100%;
			text-align: center;
			padding-bottom: 0;
		}
		.mv-text {
			width: auto;
		}
		.main-visual-bg {
			display: block;
		}
		/* PC版ではスマホ用画像を非表示 */
		.main-visual-sp {
			display: none !important;
		}
	}
}
@media (max-width: 767px) {
	#top-mainvisual {
		padding-top: 0px;
	}
}


/*
#about
---------------------------*/
#about {
	padding: 20px 4%;
	.about-inner {
		padding-top: 20px;
	}
	.inner-box {
		background-color: #fff;
		border-radius: 20px;
		padding: 20px 4%;
	}
	.content-title {
		padding-bottom: .75em;
	}
	.about-image {
		border-radius: 20px;
	}
	.btnBase {
		a {
			font-size: var(--font-2xl);
		}
	}
	.info {
		font-size: var(--font-l);
	}
	.line-btnbox {
		.info {
			position: relative;
			display: inline-block;
			color: var(--color-line);
			font-weight: 600;
			padding: 0 30px;
			margin-bottom: .5em;
			&:before,
			&:after {
				position: absolute;
				top: 0;
				bottom: 0;
				left: 0;
				content: "";
				display: block;
				width: 1px;
				height: 25px;
				background-color: var(--color-line);
				transform: rotate(-45deg);
				margin: auto;
			}
			&:after {
				left: auto;
				right: 0;
				transform: rotate(45deg);
			}
		}
	}
	@media (min-width: 768px) {
		padding: 40px 0;
		.about-inner {
			padding-top: 0;
		}
		.inner-box {
			padding: 40px 20px;
		}
		.content-title {
			text-align: left;
			font-size: var(--font-3xl);
		}
	}
}
/*
#report
---------------------------*/
#report {
	padding-left: 0;
	padding-right: 0;
	.report-box {
		position: relative;
	}
	.report-image {
		aspect-ratio: 1 / 1;
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	.report-detail {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background-color: rgba(0, 78, 167, 0.5);
		color: #fff;
		text-align: left;
		p {
			margin-bottom: 0;
		}
		.report-title {
			font-weight: 600;
		}
	}
	@media (min-width: 768px) {
		.report-image {
			aspect-ratio: 3 / 2;
		}
		.report-detail {
			.person {
				font-size: var(--font-s);
			}
		}
	}
}

/*
#report2
---------------------------*/
#report2 {
	padding-left: 0;
	padding-right: 0;
	.report-box {
		position: relative;
	}
	.report-image {
		aspect-ratio: unset;
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	.report-detail {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background-color: rgba(0, 78, 167, 0.5);
		color: #fff;
		text-align: left;
		p {
			margin-bottom: 0;
		}
		.report-title {
			font-weight: 600;
		}
	}
	@media (min-width: 768px) {
		.report-image {
			aspect-ratio: unset;
		}
		.report-detail {
			.person {
				font-size: var(--font-s);
			}
		}
	}
}

/*
#member
---------------------------*/
#member {
	.member-box-inner {
		background-color: #fff;
		border-radius: 20px;
		border: 2px solid var(--color-primary);
		&.type02 {
			border: 2px solid var(--color-accent);
			.member-detail {
				dl {
					border-bottom: 1px solid var(--color-accent);
					dt {
						background-color: var(--color-accent);
					}
				}
			}
		}
	}
	.member-box {
		&:nth-of-type(2) {
			.member-title {
				&:after {
					background-image: url(../img/top/member-icon02.svg);
				}
			}
		}
		&:nth-of-type(3) {
			.member-title {
				&:after {
					background-image: url(../img/top/member-icon03.svg);
				}
			}
		}
		&:nth-of-type(4) {
			.member-title {
				&:after {
					background-image: url(../img/top/member-icon04.svg);
				}
			}
		}
	}
	.member-title {
		position: relative;
		font-weight: 600;
		text-align: left;
		padding-left: 50px;
		&:after {
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			content: "";
			display: block;
			width: 40px;
			height: 40px;
			background-image: url(../img/top/member-icon01.svg);
			background-size: contain;
			background-position: center;
			margin: auto;
		}
		p {
			font-size: var(--font-2xl);
		}
	}
	.member-detail {
		dl {
			text-align: left;
			display: flex;
			border-bottom: 1px solid var(--color-primary);
			dt, dd {
				display: flex;
				flex-wrap: wrap;
				align-items: center;
				margin-bottom: 0;
				font-weight: 600;
				padding: 5px 10px;
			}
			dt {
				width: 30%;
				background-color: var(--color-primary);
				color: #fff;
				justify-content: center;
				border-top-left-radius: 10px;
			}
			dd {
				width: 70%;
			}
		}
	}
	@media (min-width: 768px) {
		.member-box-inner {
			border-radius: 40px;
		}
		.member-title {
			padding-left: 80px;
			&:after {
				width: 60px;
				height: 60px;
			}
		}
	}
	@media (min-width: 992px) {
		.member-detail {
			>div {
				width: 80%;
				margin: auto;
			}
		}
	}
}
/*
#features
---------------------------*/
#features {
	.features-inner {
		padding-top: 20px;
	}
	.inner-box {
		font-size: var(--font-ms);
		background-color: #fff;
		border-radius: 20px;
		padding: 10px 4% 20px;
		&+.inner-box {
			margin-top: 20px;
		}
	}
	.features-title {
		font-weight: 600;
		font-size: var(--font-5xl);
		padding-bottom: .5em;
		margin-bottom: 0;
		span {
			font-weight: 600;
			display: block;
			color: var(--color-primary);
			font-size: var(--font-3xl);
			padding-bottom: .5em;
		}
	}
	.pr-text {
		font-size: var(--font-l);
		padding-top: .5em;
	}
	@media (min-width: 768px) {
		.features-inner {
			padding-top: 0;
		}
		.inner-box {
			padding: 40px 20px;
			&+.inner-box {
				margin-top: 40px;
			}
		}
		.features-title {
			span {
				padding-bottom: 1em;
			}
		}
	}
}

/*
#point
---------------------------*/
#point {
	.point-box {
		font-size: var(--font-ms);
		background-color: rgba(255,255,255,.5);
		border-radius: 20px;
		padding: 20px 4%;
		border: 3px solid var(--color-primary);
	}
	.reason {
		p {
			font-weight: 600;
			>* {
				font-weight: 600;
			}
		}
	}
	@media (min-width: 768px) {
		.point-box {
			padding: 40px;
			border-radius: 40px;
		}
	}
}

/*
#flow
---------------------------*/
#flow {
	.flow-detail {
		dt {
			font-weight: 600;
			font-size: var(--font-xxl);
			padding-bottom: .5em;
		}
	}
	.message {
		font-size: var(--font-2xl);
	}
}
/*
#price
---------------------------*/
#price {
	.price-box-wrap {
		border: 2px solid var(--color-primary);
	}
	.price-box {
		margin-bottom: 0;
		border-top: 2px solid var(--color-primary);
		&:first-of-type {
			border-top: none;
		}
		dt, dd {
			padding: 15px 4%;
		}
		dt {
			background-color: var(--color-primary);
			color: #fff;
			font-size: var(--font-3xl);
			font-weight: 600;
		}
		.price-detail {
			p {
				color: var(--color-accent);
				font-size: var(--font-3xl);
				font-weight: 600;
				margin-bottom: 0;
			}
			.tax {
				font-size: var(--font-m);
				font-weight: 400;
			}
			&.type02 {
				p {
					color: var(--color-primary);
				}
			}
		}
		.note {
			text-align: left;
			font-size: var(--font-s);
			border-top: 1px solid var(--color-border-1);
			padding: 10px 10px 0;
			margin-top: 10px;
			p {
				&:last-of-type {
					margin-bottom: 0;
				}
			}
		}
	}
	.message {
		display: inline-block;
		position: relative;
		font-size: var(--font-2xl);
		margin-top: 30px;
		padding-bottom: 100px;
		&:before,
		&:after {
			content: "";
			display: block;
			width: 229px;
			height: 86px;
			background-image: url(../img/top/message-illust-sp.png);
			background-position: center center;
			background-size: cover;
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			margin: auto;
		}
	}
	@media (min-width: 768px) {
		.price-box {
			dt, dd {
				padding: 30px 40px;
			}
			dt {
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: var(--font-4xl);
			}
			.price-detail {
				p {
					font-size: var(--font-6xl);
				}
			}
		}
	}
	@media (min-width: 992px) {
		.message {
			padding: 0 150px;
			&:before,
			&:after {
				content: "";
				display: block;
				width: 114px;
				height: 86px;
				background-image: url(../img/top/message-illust01.png);
				background-position: center center;
				background-size: cover;
				position: absolute;
				top: 0;
				bottom: 0;
				right: auto;
				left: 0;
				margin: auto;
			}
			&:after {
				background-image: url(../img/top/message-illust02.png);
				left: auto;
				right: 0;
			}
		}
	}
	@media (min-width: 1200px) {
		.message {
			padding: 0 250px;
			margin-top: 50px;
			&:before,
			&:after {
				width: 228px;
				height: 172px;
			}
		}
	}
}

#faq {
	.qa-box {
		background-color: #fff;
		border-radius: 10px;
		padding: 10px 4%;
		border: 1px solid var(--color-primary);
		dt {
			font-weight: 600;
			padding-bottom: .5em;
			margin-bottom: .5em;
			border-bottom: 1px solid var(--color-primary);
		}
		&+.qa-box {
			margin-top: 10px;
		}
	}
	@media (min-width: 768px) {
		.qa-box {
			padding: 15px 18px;
			&+.qa-box {
				margin-top: 20px;
			}
		}
	}
}

.report-slide2 .report-image {
    aspect-ratio: unset;
}

/*タブ切り替え*/
.tab-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px; /* gap を小さく */
}

.tab-button {
	background: none;
	border: none;
	font-size: inherit;
	font-weight: inherit;
	cursor: pointer;
	padding: 5px 10px;
	transition: opacity 0.3s;
	color: inherit;
}

/* スマホ版でフォントサイズと余白を調整 */
@media (max-width: 767px) {
	.tab-button {
		font-size: 1.25rem; /* フォントサイズを少し小さく */
		padding: 5px 5px; /* 左右の余白を減らす */
	}
	
	.separator {
		margin: 0 2px; /* 区切り文字の左右余白も減らす */
	}
}

.tab-button:hover {
	opacity: 0.7;
}

.tab-button.active {
	color: var(--color-accent);
	position: relative;
}

.tab-button.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--color-accent);
}

.separator {
	color: #999;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.news-item {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 15px 0;
}

.news-item:last-child {
	border-bottom: none;
}

.news-item time {
	display: block;
	color: #666;
	font-size: 0.9em;
	margin-bottom: 5px;
}

.news-item h3 {
	font-size: 1.1em;
	margin: 0;
}

.news-item h3 a {
	color: inherit;
	text-decoration: none;
}

.news-item h3 a:hover {
	text-decoration: underline;
}