@charset "UTF-8";

/* Header Styles */
header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	width: 100%;
	top: 0;
	z-index: 1000;
}
.header-container {
	position: relative;
}
.header-text {
	position: relative;
	margin: 10px 0;
}
.header-text::before {
	content: "";
	position: absolute;
	display: block;
	margin: auto;
	background-color: var(--theme-border-color);
}
.header-text .label {
	display: inline-block;
	background-color: var(--main-accent-color);
	color: #fff;
	padding: .1em .5em;
	border-radius: .8vw;
	font-size: 2.1vw;
}
.header-text .txt {
	font-size: 4.5vw;
	font-weight: bold;
	color: var(--sub-theme-color1);
}
.header-cta-button {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--main-theme-color);
	color: #fff;
	padding: 1em;
	border: none;
	border-radius: 0 0 0 .5em;
	cursor: pointer;
	text-decoration: none;
	transition: background-color .3s;
	font-size: 5vw;
	font-weight: bold;
}
.header-cta-button:hover {
	opacity: 1;
	background-color: var(--sub-theme-color1);
}

@media (max-width: 767px) {
	.inner-header {
		position: static;
		height: auto;
		width: 94%;
	}
	.header-container {
		width: 66%;
		padding: .75em 0 .5em;
	}
	.header-text .label {
		margin-right: .25em;
	}
	.header-text {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		margin: 1em 0 0;
	}
	.header-text::before {
		top: -.3em;
		width: 90%;
		height: 1px;
	}
}
@media (min-width: 768px) {
	.header-container {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 2em;
		flex-wrap: nowrap;
	}
	.logo-consulting {
		max-width: 241px;
		width: 26%;
	}
	.header-text {
		position: relative;
	}
	.header-text::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: -1em;
		display: block;
		margin: auto;
		width: 1px;
		background-color: var(--theme-border-color);
	}
	.header-text .label {
		border-radius: 3px;
		font-size: 10px;
	}
	.header-text .txt {
		font-size: 22px;
	}
	.header-cta-button {
		padding: 1em;
		border-radius: 0 0 10px 10px;
		font-size: 24px;
	}
}

/* Footer */
footer {
	background-color: #152c5a;
	color: #fff;
	text-align: center;
}

/* Hero Section */
.hero-consulting {
	background: url(/data/wp-content/themes/tngr24/img/consulting/bg_lp_showcase.webp) no-repeat center;
	background-size: auto 100%;
	padding: 16vw 8vw 20vw;
	font-weight: bold;
}
.hero-consulting-content {
	max-width: 1040px;
	margin: 0 auto;
}
.hero-consulting .hero-ttl {
	font-size: 6.2vw;
	margin-bottom: 1em;
	line-height: 1.4;
	color: var(--main-theme-color);
}
.hero-consulting .hero-ttl .multiline-highlight {
	background-color: #fff;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: .1em .25em;
}
.hero-consulting-content .hero-txt {
	margin-bottom: 1em;
	text-shadow: 0 0 .1em rgba(255,255,255,.8);
	font-size: 4.8vw;
}
.hero-consulting-content p {
	margin-bottom: 1em;
	text-shadow: 0 0 .1em rgba(255,255,255,.8);
}
.highlight {
	background-color: var(--main-accent-color);
	padding: 0 .25em;
	border-radius: .1em;
	text-shadow: none;
	color: #fff;
}
@media (min-width: 768px) {
	.hero-consulting {
		padding: 110px 20px 140px;
		background-size: cover;
	}
	.hero-consulting .hero-ttl {
		font-size: 39px;
	}
	.hero-consulting-content .hero-txt {
		font-size: 24px;
	}
	.hero-consulting-content p {
		font-size: 18px;
	}
}

/* Features Section */
.features {
	position: relative;
	top: -4em;
}
.features-container {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5em;
}
.feature-card,
.service-card {
	background-color: var(--sub-theme-color1);
	color: #fff;
	padding: 2.25em 1.5em;
	border-radius: var(--theme-radius-sp);
	text-align: center;
}
.feature-icon,
.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 20vw;
	height: 20vw;
	background-color: var(--sub-theme-color1);
	border-radius: 50%;
}
.feature-card h3,
.service-card h3 {
	margin: 1em 0;
	line-height: 1.25;
	font-size: 5vw;
}
.feature-card p {
	line-height: 1.8;
	text-align: left;
}
@media (min-width: 768px) {
	.features-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
	}
	.feature-icon,
	.service-icon {
		width: 80px;
		height: 80px;
	}
	.feature-card,
	.service-card {
		border-radius: var(--theme-radius-pc);
	}
	.feature-card h3,
	.service-card h3 {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 72px;
		font-size: 24px;
	}
}


/* CTA btn */
.cta-button {
	position: relative;
	display: block;
	margin: 2em auto 0;
	padding: 1.25em 3em 1.25em 1em;
	width: 100%;
	background-color: var(--main-theme-color);
	border-radius: var(--theme-radius-sp);
	line-height: 1;
	text-align: center;
	font-size: 6vw;
	font-weight: bold;
	color: #fff;
}
.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2.55em;
	display: block;
	margin: auto;
	width: .4em;
	height: .4em;
	background-color: var(--main-theme-color);
	clip-path: polygon(
		100% 47.37%, 
		92.12% 39.04%, 
		55.59% 77.44%, 
		55.59% 0%, 
		44.41% 0%, 
		44.41% 77.44%, 
		7.92% 39.04%, 
		0% 47.37%, 
		50% 100%
	);
	z-index: 1;
}
.cta-button::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2em;
	display: block;
	margin: auto;
	width: 1.5em;
	height: 1.5em;
	background-color: #fff;
	border-radius: 50%;
}
.cta-button.wht {
	background-color: #fff;
	color: var(--main-theme-color);
}
.cta-button.wht::before {
	background-color: #fff;
}
.cta-button.wht::after {
	background-color: var(--main-theme-color);
}
@media (min-width: 768px) {
	.cta-button {
		max-width: 600px;
		margin-top: 3em;
		padding: 35px 4em 35px 1em;
		border-radius: var(--theme-radius-pc);
		font-size: 30px;
	}
	.cta-button::before {
		right: 4.45em;
	}
	.cta-button::after {
		right: 4em;
		width: 41px;
		height: 41px;
	}
}


.consulting-section {
	padding: 16vw 0;
}
@media (min-width: 768px) {
	.consulting-section {
		padding: 5em 0;
	}
}

.consulting-section .section-title {
	position: relative;
	margin-bottom: 1.5em;
	z-index: 1;
	text-align: center;
}
.consulting-section .section-title::before {
	right: 0;
	margin: auto;
}
.consulting-section .section-title::after {
	content: "";
	font-family: 'Yellowtail', cursive;
	color: var(--main-theme-color);
	/* position: absolute;
	left: 0;
	right: 0; */
	display: block;
	margin-top: .75em;
	line-height: 1;
	font-size: 4.2667vw;
	font-weight: normal;
}
.consulting-section.about-section .section-title::after {
	content: "About Us";
}
.consulting-section.service-content .section-title::after {
	content: "Our Service";
}
.consulting-section.support-section .section-title::after {
	content: "Solution / Support";
}
.consulting-section.flow-section .section-title::after {
	content: "Flow";
}
.consulting-section.voice-section .section-title::after {
	content: "Voice";
}
.consulting-section.faq-section .section-title::after {
	content: "FAQ";
}
.consulting-section.form-section .section-title::after {
	content: "Free Consultation Form";
}
@media (min-width: 768px) {
	.consulting-section .section-title::after {
		font-size: 24px;
	}
}


/* About Section */
.about-section {
	position: relative;
	background-color: #fff;
	border-top: solid 1px #eee;
}
.about-section::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	display: block;
	margin: auto;
	width: 50%;
	background-color: #f8ffe4;
	z-index: 0;
}
.about-container {
	position: relative;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	z-index: 1;
}
.about-text h3 {
	margin-bottom: 1em;
	font-size: 4.8vw;
	color: var(--sub-theme-color1);
}
.about-text p {
	margin-bottom: 1em;
	line-height: 2;
}
.about-text p b {
	font-weight: bold;
	color: var(--sub-theme-color1);
}
.about-logo {
	display: block;
	margin: 2em 0;
	max-width: 300px;
}
.about-image {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.about-image img {
	height: 100%;
	object-fit: cover;
}
@media (max-width: 767px) {
	.about-logo {
		padding: 1em;
		background-color: #fff;
		border-radius: var(--theme-radius-sp);
	}
}
@media (min-width: 768px) {
	.about-container {
		grid-template-columns: 2fr 1fr;
		align-items: center;
	}
	.about-text h3 {
		font-size: 21px;
	}
	.about-image {
		width: 297px;
		height: 445px;
	}
}


/* Service Content Section (Revised) */
.service-content {
	background-color: #fff;
	border-top: solid 1px #eee;
}
.service-container {
	margin: 0 auto;
}
/* Service Cards Grid */
.service-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-bottom: 60px;
}
.service-card-item {
	display: flex;
	flex-direction: column;
	background-color: var(--theme-bg-color);
	border-radius: var(--theme-radius-sp);
}
.service-card {
	padding-bottom: .25em;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.service-text {
	padding: 1.5em 1.85em 2em;
}
.service-text p {
	line-height: 1.8;
}
.service-text p:not(:last-child) {
	margin-bottom: 1em;
}
.service-text img {
	margin-bottom: 1em;
}
.service-text .line-addbtn {
	margin-top: 2em;
}
/* Bottom Section */
.service-bottom {
	margin-top: 60px;
}
.service-tags {
	display: grid;
	/* grid-template-columns: auto 1fr; */
	gap: 1.5em;
	margin-bottom: 1em;
	align-items: center;
}
.service-tag {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	background-color: var(--theme-bg-color);
	border-radius: var(--theme-radius-sp);
	overflow: hidden;
}
.tag-card {
	padding: 1em;
	width: 30%;
	background-color: var(--sub-theme-color1);
	text-align: center;
	color: #fff;
}
.tag-description {
	padding: 1em 1.5em;
	width: 70%;
}
.tag-description p,
.tag-area p {
	margin: 0;
	line-height: 1.8;
}
@media (min-width: 768px) {
	.service-cards-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
	}
	.service-card-item {
		flex-direction: column;
		border-radius: var(--theme-radius-pc);
	}
	.service-text {
		text-align: left;
	}
	.service-text .line-qr {
		width: 110px;
		margin: auto;
	}
	.service-tags {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		margin: 0 auto;
	}
	.service-tag {
		border-radius: var(--theme-radius-pc);
	}
	.tag-card {
		width: auto;
		min-width: 110px;
		min-height: 94px;
		font-size: 18px;
	}
	.tag-description {
		width: auto;
		min-height: 94px;
	}
}


/* Support Section */
.support-section {
	background-color: var(--theme-bg-color);
}
/* Support Items */
.support-item {
	background-color: #fff;
	border: solid 1px var(--sub-theme-color1);
	border-radius: var(--theme-radius-sp);
	margin-bottom: 3em;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.support-number {
	position: absolute;
	top: 4vw;
	left: 4.6vw;
	width: 12vw;
	height: 12vw;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	font-family: var(--theme-num-font);
	font-size: 6.4vw;
	font-weight: bold;
	color: var(--sub-theme-color1);
}
.support-header {
	position: relative;
	background-color: var(--sub-theme-color1);
	color: #fff;
	padding: 1em;
	writing-mode: unset;
}
.support-header h3 {
	line-height: 1.8;
	margin: 0;
	font-size: 5vw;
}
.support-content {
	position: relative;
	padding: 46vw 1.5em 1.5em;
}
.support-intro {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 1em 2em;
	background: url(/data/wp-content/themes/tngr24/img/consulting/bg_support.webp) left center;
	line-height: 1.8;
	font-size: 4vw;
	font-weight: bold;
	color: var(--sub-theme-color1);
}
.support-intro::after {
	content: "";
	position: absolute;
	bottom: -1.667em;
	left: 0;
	right: 0;
	display: block;
	width: 5em;
	height: 1.667em;
	margin: auto;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background-color: var(--main-accent-color);
}
.solution-box {
	background-color: var(--sub-theme-color2);
	padding: 1.5em 2em;
	border-radius: var(--theme-radius-sp);
	margin-bottom: 1em;
}
.solution-title {
	font-size: 4.8vw;
	font-weight: bold;
	color: var(--sub-theme-color1);
	margin-bottom: .5em;
}
.solution-text {
	line-height: 1.8;
}
.solution-text em {
	font-weight: bold;
}
/* Solution Points */
.solution-points {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	margin-top: 2em;
}
.point-item {
	position: relative;
	padding: 1.5em 1.5em 1.5em 2.5em;
	background-color: var(--theme-bg-color);
	border-radius: var(--theme-radius-sp);
}
.point-number {
	position: absolute;
	top: -.5em;
	left: -.5em;
	width: 10vw;
	height: 10vw;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--sub-theme-color1);
	font-family: var(--theme-num-font);
	font-size: 4.6vw;
	font-weight: bold;
	color: #fff;
}
.point-item p {
	line-height: 1.6;
	margin: 0;
	padding-top: 3px;
}
@media (max-width: 767px) {
	.support-header h3 {
		margin-left: 19vw;
	}
}
@media (min-width: 768px) {
	.support-item {
		position: relative;
		flex-direction: row;
		border-radius: var(--theme-radius-pc);
	}
	.support-item.reverse {
		flex-direction: row-reverse;
	}
	.support-number {
		position: absolute;
		top: 20px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 60px;
		height: 60px;
		font-size: 30px;
	}
	.support-header {
		position: relative;
		width: 220px;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		/* writing-mode: vertical-rl;
		text-orientation: mixed; */
		padding: 7em 20px 4em;
		flex-shrink: 0;
	}
	.support-header h3 {
		writing-mode: vertical-rl;
		text-orientation: mixed;
		font-size: 27px;
	}
	.support-content {
		flex: 1;
		padding: 200px 50px 50px;
	}
	.support-intro {
		padding: 2.3em 7%;
		font-size: 18px;
	}
	.solution-box {
		border-radius: var(--theme-radius-pc);
	}
	.solution-title {
		font-size: 24px;
	}
	.solution-points {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
	}
	.point-item {
		flex: 1;
		min-width: 250px;
		border-radius: var(--theme-radius-pc);
	}
	.point-number {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}
/* @media (min-width: 1024px) {
	.support-item {
		position: relative;
	}
	.support-header {
		width: 200px;
	}
	.support-content {
		padding: 50px;
	}
} */


/* Flow Section */
.flow-section {
	background-color: #fff;
}
/* Flow List */
.flow-list {
	position: relative;
}
/* Flow Item */
.flow-item {
	position: relative;
	padding: 1.5em;
	margin-bottom: 3em;
	background-color: var(--theme-bg-color);
	border-radius: 12px;
}
.flow-item:not(:last-of-type)::after {
	content: "";
	position: absolute;
	bottom: -1.667em;
	left: 0;
	right: 0;
	display: block;
	width: 5em;
	height: 1.667em;
	margin: auto;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background-color: var(--main-accent-color);
}
.flow-number {
	background-color: var(--sub-theme-color1);
	color: #fff;
	width: 12vw;
	height: 12vw;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--theme-num-font);
	font-size: 6.4vw;
	font-weight: bold;
	flex-shrink: 0;
}
.flow-content {
	flex: 1;
}
.flow-content h3 {
	font-size: 18px;
	color: var(--sub-theme-color1);
	margin-bottom: .5em;
	font-size: 5vw;
	font-weight: bold;
}
.flow-content p {
	line-height: 1.8;
	margin: 0;
}
@media (max-width: 767px) {
	.flow-number {
		margin: auto;
	}
	.flow-content h3 {
		margin-top: 1em;
		text-align: center;
	}
}
@media (min-width: 768px) {
	.flow-item {
		display: flex;
		align-items: flex-start;
		gap: 30px;
		padding: 35px 32px;
	}
	.flow-number {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}
	.flow-content h3 {
		font-size: 24px;
	}
}


/* Voice Section */
.voice-section {
	background-color: var(--theme-bg-color);
}
.voice-item {
	background-color: #fff;
	border: 1px solid var(--sub-theme-color1);
	border-radius: var(--theme-radius-sp);
	margin-bottom: 3em;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
	overflow: hidden;
}
.voice-profile {
	display: flex;
	align-items: center;
	gap: 1.5em;
	background-color: var(--sub-theme-color2);
	padding: 1em 2em;
	color: var(--sub-theme-color1);
}
.profile-icon {
	width: 15vw;
	height: auto;
	flex-shrink: 0;
}
.profile-info {
	font-weight: bold;
	width: calc(100% - 15vw);
}
.voice-content {
	padding: 0 1.5em;
}
.voice-content p {
	line-height: 1.8;
	margin-bottom: 1em;
}
.voice-content p:last-child {
	margin-bottom: 0;
}
.voice-label {
	padding: 1em 2em;
	align-self: flex-start;
	width: 100%;
	background-color: var(--sub-theme-color1);
	font-weight: bold;
	text-align: center;
	color: #fff;
}
@media (min-width: 768px) {
	.voice-item {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
		padding: 0;
		border-radius: var(--theme-radius-pc);
	}
	.voice-profile {
		width: 220px;
		flex-shrink: 0;
		flex-direction: column;
		justify-content: center;
		gap: 1em;
		margin: 0;
		padding: 1.5em;
		border-radius: 0;
		text-align: center;
	}
	.profile-icon {
		width: 66px;
	}
	.profile-info {
		width: auto;
	}
	.voice-content {
		padding: 35px 40px 88px;
		font-size: 18px;
	}
	.voice-label {
		position: absolute;
		bottom: 0;
		right: 0;
		align-self: auto;
		width: calc(100% - 220px);
		padding: 13px 1em;
		text-align: left;
		font-size: 18px;
	}
}


/* FAQ Section */
.faq-section {
	background-color: #fff;
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0;
}
.faq-item {
	background-color: var(--sub-theme-color2);
	border-radius: var(--theme-radius-sp);
	border: solid 1px var(--sub-theme-color2);
	overflow: hidden;
	transition: all .3s ease;
}
.faq-question {
	display: flex;
	align-items: center;
	gap: 1em;
	padding: .5em 1em;
	cursor: pointer;
	position: relative;
	transition: background-color .3s ease;
}
.faq-question:hover {
	background-color: #c1dbff;
}
.faq-q-label,
.faq-a-label {
	color: #fff;
	width: 12vw;
	height: 12vw;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--theme-num-font);
	font-size: 4.8vw;
	font-weight: bold;
	flex-shrink: 0;
}
.faq-q-label {
	background-color: var(--sub-theme-color1);
}
.faq-question h3 {
	flex: 1;
	font-size: 17px;
	color: var(--sub-theme-color1);
	margin: 0;
	font-weight: bold;
	line-height: 1.6;
}
.faq-toggle {
	color: var(--sub-theme-color1);
	width: 9vw;
	height: 9vw;
	background-color: #fff;
	border-radius: 50%;
	line-height: 2.5;
	text-align: center;
	font-family: var(--theme-num-font);
	font-size: 1em;
	font-weight: bold;
}
/* FAQ Answer */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 1em;
	background-color: #fff;
	transition: max-height .5s ease, padding .5s ease;
}
.faq-answer-content {
	display: flex;
	gap: 1em;
	align-items: flex-start;
	opacity: 0;
	transition: opacity 0.3s ease 0.2s;
}
.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 1em;
}
.faq-item.active .faq-answer-content {
	opacity: 1;
}
.faq-a-label {
	background-color: var(--main-accent-color);
}
.faq-answer p {
	flex: 1;
	line-height: 1.8;
	margin: 0;
}
.consulting-section .faq-item:hover {
	transform: none;
	color: inherit;
}
@media (min-width: 768px) {
	.faq-section {
		padding: 80px 20px;
	}
	.faq-item {
		border-radius: var(--theme-radius-pc);
	}
	.faq-question {
		gap: 2em;
		padding: .5em 2em;
	}
	.faq-q-label,
	.faq-a-label {
		width: 60px;
		height: 60px;
		font-size: 21px;
	}
	.faq-question h3 {
		font-size: 24px;
	}
	.faq-toggle {
		width: 40px;
		height: 40px;
	}
	.faq-answer {
		padding: 0 2em;
	}
	.faq-answer-content {
		gap: 2em;
	}
	.faq-item.active .faq-answer {
		padding: 2em;
	}
	.faq-answer p {
		font-size: 18px;
	}
}



/* CTA Section */
.cta-section {
	position: relative;
	background-color: var(--main-theme-color);
	text-align: center;
	overflow: hidden;
}
.cta-section::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	pointer-events: none;
	background: url(/data/wp-content/themes/tngr24/img/consulting/bg_lp_showcase.webp) no-repeat center;
	background-size: cover;
	mix-blend-mode: multiply;
	opacity: .6;
}
.cta-container {
	position: relative;
	z-index: 1;
}
.cta-section h2 {
	color: #fff;
	font-size: 6vw;
	margin-bottom: 1em;
	font-weight: bold;
	line-height: 1.4;
}
.cta-description {
	color: #fff;
	line-height: 1.8;
	opacity: 0.95;
}
.cta-container .cta-button {
	margin-top: 1.5em;
}
@media (min-width: 768px) {
	.cta-section h2 {
		font-size: 36px;
	}
	.cta-description {
		font-size: 18px;
	}
}

/* Animation on scroll (optional) */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.cta-container > * {
	animation: fadeInUp 0.8s ease forwards;
}
.cta-container h2 {
	animation-delay: 0.1s;
}
.cta-description {
	animation-delay: 0.2s;
}



/* Form Section */
.form-section {
	background-color: var(--sub-theme-color2);
}
.form-container {
	max-width: 692px;
	margin: 0 auto;
	text-align: center;
}
.form-container em {
	background: linear-gradient(transparent 50%, #fed9d9 0%);
}
.form-lead {
	margin-bottom: 2em;
	color: var(--sub-theme-color1);
}
.form-box {
	padding: 2em 1.5em;
	background-color: #fff;
	border-radius: var(--theme-radius-sp);
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.form-group {
	margin-bottom: 2em;
	text-align: left;
}
.form-group label {
	display: block;
	margin-bottom: .5em;
	font-size: 106%;
	font-weight: bold;
}
.form-group label.required::after {
	content: ' *';
	color: #ff4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
	width: 100%;
	padding: .5em;
	/* border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px; */
}
.form-group textarea {
	height: 10em;
	resize: vertical;
}
/* 
.checkbox-group {
	text-align: left;
	margin: 20px 0;
}
.checkbox-group input[type="checkbox"] {
	margin-right: 8px;
}
.checkbox-group a {
	color: #4b7bff;
	text-decoration: none;
}
.submit-button {
	background-color: #4b7bff;
	color: #fff;
	padding: 16px 60px;
	border: none;
	border-radius: 4px;
	font-size: 18px;
	cursor: pointer;
	margin-top: 20px;
	transition: background-color 0.3s;
}
.submit-button:hover {
	background-color: #3865e5;
} */


.form-group .dtl .bfr,
.form-group .dtl .bfr > div,
.form-group .dtl .aft,
.form-group .dtl .aft > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form-group .dtl .bfr .bfr-name {
	width: 10%;
}
.form-group .dtl .bfr .bfr-name + span {
	width: 85%;
}
.form-group .dtl .bfr > div {
	width: 48%;
}
.form-group .dtl .aft {
	justify-content: flex-start;
}
.form-group .dtl .aft > div + div {
	margin-left: 4%;
}
.form-group .dtl .aft .aft-term {
	margin-left: 3%;
}
.form-group .dtl .aft select {
	width: auto;
}
.form-group .dtl .tp > div {
	margin-top: 1em;
}
.form-group .dtl .tp label {
	margin-bottom: 0;
	font-size: 100%;
}
.t360_country_tmp label {
	font-size: 100%;
	font-weight: normal;
}
.form-group .dtl .tp span {
	display: block;
	margin-top: .5em;
}

.form-container .legal {
	text-align: left;
}
.form-container .legal p {
	margin-bottom: 1em;
}
.form-container .legal a {
	text-decoration: underline;
}
.form-container .is-hidden {
	display: none;
}
.form-container input[type='submit'] {
  display: block;
  padding: 1em;
  margin: 2em auto 0;
  width: 100%;
  background: none;
  background-color: var(--main-theme-color);
  border: none;
  border-radius: 2em;
  font-size: 125%;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.form-container input[type='submit']:disabled {
  background-color: #999;
  cursor: not-allowed;
}

@media (min-width: 768px) {
	.form-box {
		padding: 60px;
		border-radius: var(--theme-radius-pc);
	}
	.form-group .dtl .tp {
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.form-group .dtl .tp > div {
		width: 49%;
	}
	.form-group .dtl .bfr .bfr-name {
		width: 5%;
	}
	.form-group .dtl .aft .aft-term {

	}
	.form-group .dtl .bfr .bfr-name + span {
		width: 90%;
	}
	.form-group .dtl .aft span:not(.aft-term) {

	}
	.form-container input[type='submit'] {
		width: auto;
		padding: 1em 3em;
		font-size: 150%;
	}
}


