@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}
/* flex */
.flex, .flex-a, .flex-b, .flex-c {
	display: flex;
	flex-wrap: wrap;
}
.flex-a {
	justify-content: space-around;
}
.flex-b {
	justify-content: space-between;
}
.flex-c {
	justify-content: center;
}
/* font */
.barlow {
	font-family: "Barlow Semi Condensed", sans-serif;
}
/*------------------------------------------------------------
	mail-form
------------------------------------------------------------*/
.mail-form {
	padding: 0.5rem;
	border-radius: 1.6rem;
	background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
	box-shadow: 0 4.8rem 9.6rem 0 rgba(0, 0, 0, 0.10);
}
.mail-form .inner-wrap {
	padding: 4.4rem 5.5rem;
	background: #fff;
	border-radius: 1.1rem;
}
.mail-form .form-list dt {
	margin-bottom: 0.7rem;
	font-weight: 700;
}
.mail-form .form-list dt .must {
	margin-left: 0.6rem;
	padding-bottom: 0.1rem;
	width: 3.2rem;
	height: 1.6rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	vertical-align: 0.2rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1;
	background: #EE3971;
	border-radius: 0.2rem;
}
.mail-form .form-list dd {
	margin-bottom: 1.5rem;
}
.mail-form .form-list dd:last-child {
	margin-bottom: 0;
}
.mail-form .form-list input[type="text"],
.mail-form .form-list input[type="tel"],
.mail-form .form-list input[type="email"],
.mail-form .form-list textarea {
	margin: 0;
	padding: 0.5rem 1.4rem;
	width: 100%;
	height: 3.4rem;
	color: #222;
	font-size: 1.4rem;
	box-sizing: border-box;
	background: #fff;
	border-radius: 0.8rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.20);
	-webkit-appearance: none;
	appearance: none;
}
.mail-form .form-list textarea {
	padding: 1rem 1.4rem;
	height: 12rem;
	resize: vertical;
}
.mail-form .form-list::placeholder {
	opacity: 0.5;
	color: #222;
}
.mail-form .form-list .is_error input,
.mail-form .form-list .is_error textarea {
	border-color: #EE3972;
	background: linear-gradient(0deg, rgba(238, 57, 113, 0.10) 0%, rgba(238, 57, 113, 0.10) 100%), #FFF;
}
.mail-form .form-list .is_checked input,
.mail-form .form-list .is_checked textarea {
	border-color: #2CABDE;
	background: #fff;
}
.mail-form .form-list .error-msg {
	margin-top: 0.5rem;
	color: #EE3971;
	padding-left: 2.1rem;
	background: url(../../img/common/icon02.png) no-repeat left top 0.5rem / 1.6rem;
}
.mail-form .form-list .name-wrap {
	display: flex;
	gap: 1rem;
}
.mail-form .form-list .name-wrap input {
	flex: 1;
}
.mail-form .form-list {
	margin-bottom: 1.5rem;
}
.mail-form .privacy {
	margin-bottom: 1.6rem;
	font-size: 1.2rem;
}
.mail-form .privacy a {
	color: #0873C1;
	text-decoration: underline;
}
.mail-form .privacy a::after {
	width: 1.2rem;
	display: inline-block;
	vertical-align: middle;
	background: url(../../img/common/icon01.png) no-repeat center center / 100%;
	aspect-ratio: 1;
	content: '';
}
.mail-form .submit li {
	border-radius: 10rem;
}
.mail-form .submit input {
	padding: 0;
	width: 100%;
	height: 6rem;
	color: #fff;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	text-align: center;
	border-radius: 10rem;
	border: none;
	background: #8D52FF;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: 0.3s;
	display: none;
}
.mail-form .submit input:disabled {
	display: block;
	cursor: default;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.20);
}
.mail-form .submit .on input {
	display: block;
}
.mail-form .submit .on input:disabled {
	display: none;
}
@media all and (min-width: 768px) {
	.mail-form .privacy a:hover {
		color: #2CABDE;
		text-decoration: none;
	}
	.mail-form .submit .on {
		background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
	}
	.mail-form .submit input:hover {
		background: transparent;
	}
}
@media all and (max-width: 767px) {
	.mail-form .inner-wrap {
		padding: 1.6rem 2.5rem 2.5rem;
	}
	.mail-form .form-list dt {
		font-size: 1.6rem;
	}
	.mail-form .form-list input[type="text"],
	.mail-form .form-list input[type="tel"],
	.mail-form .form-list input[type="email"],
	.mail-form .form-list textarea {
		padding: 1.1rem 1.9rem;
		height: 4.6rem;
		font-size: 1.4rem;
	}
	.mail-form .form-list textarea {
		height: 14rem;
	}
	.mail-form .form-list {
		margin-bottom: 1.3rem;
	}
}
/*------------------------------------------------------------
	com-modal
------------------------------------------------------------*/
.mfp-bg {
	background: rgba(34, 34, 34, 0.80);
	opacity: 1;
}
.mfp-container {
	padding: 0;
}
.mfp-fade .mfp-container,
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-fade.mfp-ready .mfp-container {
	opacity: 1;
}
.mfp-fade.mfp-ready.mfp-bg {
	opacity: 1;
}
.mfp-fade.mfp-removing .mfp-container,
.mfp-fade.mfp-removing.mfp-bg {
	opacity: 0;
}
.com-modal {
	margin: 2rem auto;
	width: 96rem;
	max-width: calc(100% - 4rem);
	position: relative;
}
.com-modal .close-btn {
	width: 4rem;
	position: absolute;
	right: -1rem;
	top: -1rem;
	border-radius: 100%;
	background: #fff;
	cursor: pointer;
	aspect-ratio: 1;
	z-index: 10;
	transition: 0.3s;
}
.com-modal .close-btn::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
	content: '';
	opacity: 0;
	transition: 0.3s;
}
.com-modal .close-btn span {
	width: 1.5rem;
	height: 0.15rem;
	position: absolute;
	left: 50%;
	top: 50%;
	background: #2CABDE;
	transform: translate(-50%, -50%) rotate(45deg);
	z-index: 1;
}
.com-modal .close-btn span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.com-modal .modal-title {
	margin-bottom: 2.8rem;
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
	color: #2CABDE;
}
.modal-download .download-inner {
	display: flex;
}
.modal-download .download-inner .col01,
.modal-download .download-inner .col02 {
	width: 50%;
}
.modal-download .download-inner .col01 {
	padding-right: 3.9rem;
	border-right: 0.1rem solid rgba(0, 0, 0, 0.20);
}
.modal-download .download-inner .col02 {
	padding-left: 4rem;
}
.modal-download .heading {
	margin-bottom: 2.6rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.18;
}
.modal-download .image {
	margin-bottom: 2.3rem;
}
.modal-download .image img {
	width: 100%;
	border-radius: 1.6rem;
}
.modal-download .text-box .ttl {
	color: #2CABDE;
	font-weight: 700;
	margin-bottom: 0.8rem;
}
.modal-download .text-box .text-list li {
	padding-left: 1.5em;
	position: relative;
	letter-spacing: 0.02em;
}
.modal-download .text-box .text-list li::before {
	width: 0.4rem;
	height: 0.4rem;
	position: absolute;
	left: 0.65em;
	top: 0.8em;
	border-radius: 100%;
	background: currentColor;
	content: '';
}
.modal-download .mail-form .inner-wrap {
	padding-bottom: 5.5rem;
}
@media all and (min-width: 768px) {
	.com-modal .close-btn:hover::before {
		opacity: 1;
	}
	.com-modal .close-btn:hover span {
		background: #fff;
	}
}
@media all and (max-width: 767px) {
	.com-modal .modal-title {
		margin-bottom: 1.9rem;
		font-size: 2rem;
	}
	.modal-download .download-inner {
		display: block;
	}
	.modal-download .download-inner .col01,
	.modal-download .download-inner .col02 {
		width: auto;
	}
	.modal-download .download-inner .col01 {
		padding: 0 0 2.5rem;
		border-right: none;
		border-bottom: 0.1rem solid rgba(0, 0, 0, 0.20);
	}
	.modal-download .download-inner .col02 {
		padding: 2.5rem 0 0;
	}
	.modal-download .heading {
		margin-bottom: 2.6rem;
		font-size: 1.6rem;
		line-height: 1.25;
	}
	.modal-download .image img {
		border-radius: 1.2rem;
	}
	.modal-download .text-box .ttl {
		font-size: 1.6rem;
		margin-bottom: 0.9rem;
	}
	.modal-download .mail-form .inner-wrap {
		padding-bottom: 2.5rem;
	}
}
/*------------------------------------------------------------
	fixed-btn
------------------------------------------------------------*/
.fixed-btn {
	padding: 0.5rem;
	width: 100%;
	display: flex;
	gap: 0.5rem;
	position: fixed;
	left: 0;
	bottom: 0;
	background: rgba(34, 34, 34, 0.50);
	z-index: 100;
}
.fixed-btn a {
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	background: #2CABDE;
	border-radius: 10rem;
}
.fixed-btn a span {
	padding: 0 0 0.2rem 2.9rem;
	display: inline-block;
	background: url(../../img/common/icon03.png) no-repeat left center / 2.4rem;
	position: relative;
	z-index: 1;
}
.fixed-btn .cta-btn {
	background-color: #8D52FF;
}
.fixed-btn .cta-btn span {
	background-image: url(../../img/common/icon04.png);
}
@media all and (min-width: 1200px) {
	.fixed-btn {
		display: none !important;
	}
}
@media all and (min-width: 768px) {
	.fixed-btn a::before {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		border-radius: inherit;
		background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
		content: '';
		opacity: 0;
		transition: 0.3s;
	}
	.fixed-btn a:hover::before {
		opacity: 1;
	}
}
/*------------------------------------------------------------
	com-btn
------------------------------------------------------------*/
.com-btn {
	width: 43rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.com-btn p {
	margin-bottom: 1.7rem;
	width: fit-content;
	padding: 0 1.9rem;
	position: relative;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
}
.com-btn p::before {
	margin-top: 0.1rem;
	width: 0.1rem;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: rotate(-45deg);
	background: currentColor;
	content: '';
}
.com-btn p::after {
	margin-top: 0.1rem;
	width: 0.1rem;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotate(45deg);
	background: currentColor;
	content: '';
}
.com-btn a {
	padding: 0 3.5rem;
	width: 100%;
	height: 7.6rem;
	display: flex;
	align-items: center;
	position: relative;
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	border-radius: 10rem;
	background: #2CABDE;
	box-shadow: 0 0.8rem 0.8rem 0 rgba(0, 0, 0, 0.15);
}
.com-btn a .txt {
	padding-left: 3.8rem;
	padding-bottom: 0.3rem;
	display: inline-block;
	background: url(../../img/common/icon03.png) no-repeat left center / 2.8rem;
	position: relative;
	z-index: 1;
}
.com-btn a .image {
	width: 13.8rem;
	position: absolute;
	right: -0.4rem;
	top: -2.7rem;
	z-index: 2;
}
.com-btn-cta a {
	padding-left: 4.4rem;
	background: #8D52FF;
}
.com-btn-cta a .txt {
	background-image: url(../../img/common/icon04.png);
}
.com-btn-cta a .image {
	width: 13rem;
	top: -0.7rem;
	right: 0;
}
@media all and (min-width: 768px) {
	.com-btn a::before {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(90deg, #2CABDE 0%, #8D52FF 100%);
		border-radius: inherit;
		content: '';
		opacity: 0;
		transition: 0.3s;
	}
	.com-btn a:hover {
		border-radius: 10rem;
		box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.15);
	}
	.com-btn a:hover::before {
		opacity: 1;
	}
}
@media all and (max-width: 767px) {
	.com-btn p {
		margin-bottom: 1.3rem;
		padding: 0 1.6rem;
		font-size: 1.2rem;
	}
	.com-btn a {
		height: 5.6rem;
		font-size: 1.6rem;
	}
	.com-btn a .txt {
		padding-left: 2.9rem;
		padding-bottom: 0.1rem;
		background-size: 2.4rem;
	}
	.com-btn a .image {
		width: 8.8rem;
		top: -0.5rem;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 100rem;
	max-width: calc(100% - 8rem);
}
@media all and (max-width: 767px) {
	.content {
		margin: 0 2rem;
		width: auto !important;
		max-width: none !important;
	}
}
/*------------------------------------------------------------
	com-headline01
------------------------------------------------------------*/
.com-headline01 {
	margin-bottom: 6.5rem;
	padding: 5.3rem 0 4rem;
	position: relative;
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.02em;
	background: url(../../img/common/ttl_bg.png) no-repeat center bottom / 9rem;
}
.com-headline01 .en {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}
.com-headline01 .en img {
	width: auto;
	height: 8.7rem;
}
.com-headline01 .logo {
	width: 44.8rem;
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
}
@media all and (max-width: 767px) {
	.com-headline01 {
		margin-bottom: 3rem;
		padding: 1.8rem 0 2.5rem;
		font-size: 2.4rem;
		background-size: 4.5rem auto;
	}
	.com-headline01 .en img {
		height: 3.5rem;
	}
	.com-headline01 .logo {
		width: 27.6rem;
	}
}
/*------------------------------------------------------------
	com-headline02
------------------------------------------------------------*/
.com-headline02 {
	margin-bottom: 2.6rem;
	padding-left: 1.6rem;
	position: relative;
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.com-headline02::before {
	margin-top: 0.2rem;
	width: 0.6rem;
	height: 68.8%;
	position: absolute;
	left: 0;
	top: 50%;
	border-radius: 1rem;
	background: linear-gradient(180deg, #2CABDE 0%, #8D52FF 100%);
	transform: translateY(-50%);
	content: '';
}
@media all and (max-width: 767px) {
	.com-headline02 {
		margin-bottom: 2.8rem;
		font-size: 2rem;
	}
	.com-headline02::before {
		margin-top: 0;
		height: 83.5%;
	}
}