@charset "UTF-8";

/* ------------------------------
main.css 上書き
------------------------------ */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
	font-family: "小塚ゴシック Pro","Kozuka Gothic Pro", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "メイリオ", sans-serif;
	color: #000;
}
body {
	padding-top: 0;
}
a {
	/* color: #f00; */
}
a:hover {
	text-decoration: none;
}
a.no-opacity:hover {
	opacity: 1;
}

/* ------------------------------
共通
------------------------------ */
body {
	/* background-color: #f2ede6; */
	/* background-color: #f8f6f2; */
	/* background-color: #fafafa; */
	background-color: #e2e2e2;
}
.contents {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	/* padding-bottom: 60px; */
}

/* ------------------------------
header
------------------------------ */
/* 高さ調整 */
body>.contents {
	padding-top: 65px;
}

/* header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	padding-top: 15px;
	padding-bottom: 15px;
	z-index: 300;
	opacity: 0.9;
}
#header .gl li .child{
	display: none;
	position: absolute;
	width: 170px;
	box-sizing: border-box;
	left: 2em;
	top: 2.2em;
}
#header .gl {
	display: none;
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #41cfd9;
	padding: 0 0 0 0;
	height: 65px;
}
#header .gl.active {
	display: block;
}
#header .gl > li {
	padding: 0 0 0 0;
}
#header .gl > li + li {
	margin-left: 0;
}
#header .gl li .child {
	position: relative;
	background: #41cfd9;
	padding: 0 ;
	width: 100%;
	left: 0;
	top: 0;
	border-bottom: 1px solid #fff;
}
#header .gl li > a,
#header .gl li > span {
	padding: 21px 0 18px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
	#header {
		/* padding-top: 15px;
		padding-bottom: 15px; */
	}
	#header .gl {
		/* height: 56px; */
	}
	#header .gl li > a,
	#header .gl li > span {
		/* padding: 18px 0 13px; */
	}
}
#header .gl > li:first-child > a,
#header .gl > li:first-child > span {
	border-top: none;
}
#header .gl li a{
	text-align: center;
	font-weight: bold;
	color: #fff;
}
#header .gl > li span:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f107";
	padding-left: 0.5em;
	color: #fff;
}
#header .gl > li span.active:after {
	content: "\f106";
}
#header .gl > li li + li{
	border-top: none;
}
#header .gl li .child li a:hover {
	background: inherit;
}

#header .logo {
	width: auto;
	height: 29px;
	margin: 3px 0 3px 16px;
}
#header .header-registration a {
	font-size: 1.4rem;
	font-size: 14px;
	color: #5b5b5b;
}
#header .badge-appstore {
	width: auto;
	height: 35px;
}
#header .badge-googleplay {
	width: auto;
	height: 35px;
	margin-left: 10px;
}

/* ハンバーガーメニュー */
.btn-sp {
	width: 20px;
	height: 20px;
	margin-left: 0;
	margin-right: 13px;
}
.btn-sp a {
	display: block;
	width: 20px;
	height: 0;
	padding-top: 20px;
	overflow: hidden;
}
.btn-sp a.menu-trigger {
	position: relative;
	width: 20px;
	height: 20px;
	z-index: 99999;
	padding: 0;
	margin: 0;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
	cursor: pointer;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #a3a3a3;
	border-radius: 2px;
	}
.menu-trigger span:nth-of-type(1) {
	top: 1px;
}
.menu-trigger span:nth-of-type(2) {
	top: 8px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 1px;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(6px) rotate(-315deg);
	-ms-transform: translateY(6px) rotate(-315deg);
	transform: translateY(6px) rotate(-315deg);
	background-color: #fff;
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(315deg);
	-ms-transform: translateY(-8px) rotate(315deg);
	transform: translateY(-8px) rotate(315deg);
	background-color: #fff;
}
.layer {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.77);
	z-index: auto;
	cursor: pointer;
}
.layer.active {
	display: block;
}
.scroll-prevent {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}

/* ------------------------------
footer
------------------------------ */
#footer {
	background: #f1f1f1;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
#footer .footer-inner {
	min-height: 160px;
	padding: 0 30px 0;
}
#footer .footer-logo-wrapper {
	/* margin: 0 0 20px 40px; */
}
@media (max-width:959px) {
	#footer .footer-inner {
		padding: 20px 0 0 20px;
	}
	#footer .footer-logo-wrapper {
		margin-top: 15px;
		margin-right: 22px;
	}
}
#footer .footer-logo-wrapper .logo {
	width: auto;
	height: 38px;
	margin: 3px 0 3px 16px;
}
#footer .footer-logo-wrapper small {
	margin-left: 16px;
	margin-bottom: 15px;
	font-size: 1.0rem;
	font-size: 10px;
}
@media (max-width:767px) {
	#footer .footer-logo-wrapper .logo {
		height: 23px;
	}
	#footer .footer-logo-wrapper small {
		margin-top: 0;
		font-size: 0.8rem;
		font-size: 8px;
	}
}
#footer .footer-menu-left li,
#footer .footer-menu-right li {
	font-size: 1.2rem;
	font-size: 12px;
	line-height: 2.4;
}
#footer .footer-menu-left li a,
#footer .footer-menu-right li a {
	color: #5b5b5b;
}
@media (max-width:767px) {
	#footer .footer-menu-left,
	#footer .footer-menu-right {
		margin-left: 20px;
	}
	#footer .footer-menu-left li,
	#footer .footer-menu-right li {
		font-size: 1.1rem;
		font-size: 11px;
		line-height: 2;
	}
}

/* ------------------------------
アイキャッチ
------------------------------ */
.eyecatch-inner {
	max-width: 950px;
	margin-left: 25px;
	margin-right: 25px;
}
@media (max-width:767px) {
	.eyecatch-inner {
		max-width: 747px;
		margin-left: 10px;
		margin-right: 10px;
	}
}
.eyecatch-left {
	/* max-width: 275px; */
	max-width: 28.9473684210526%;
}
.eyecatch-right {
	/* max-width: 645px; */
	max-width: 67.8947368421053%;
	margin-left: 30px;
}
#lp-women .eyecatch-left {
	/* max-width: 290px; */
	max-width: 30.5263157894737%;
}
#lp-women .eyecatch-right {
	/* max-width: 630px; */
	max-width: 66.3157894736842%;
	margin-left: 30px;
}
.eyecatch-inner.sp .lp_image01 {
	margin-top: 10px;
}
.eyecatch-inner.sp .lp_image02 {
	width: 77%;
}
.eyecatch-inner.sp .lp_image03 {
	width: 65%;
}
.eyecatch-inner.sp .lp_image04 {
	width: 85%;
}
.eyecatch-inner.sp .lp_image07 {
	margin-top: 10px;
	width: 70%;
}
.eyecatch-inner.sp .lp_image08 {
	width: 77%;
}
.eyecatch-inner.sp .lp_image09 {
	width: 65%;
}
.eyecatch-inner.sp .lp_image02,
.eyecatch-inner.sp .lp_image03,
.eyecatch-inner.sp .lp_image04,
.eyecatch-inner.sp .lp_image07,
.eyecatch-inner.sp .lp_image08,
.eyecatch-inner.sp .lp_image09 {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.eyecatch .store-badge {
	max-width: 275px;
	display: flex;
}
.eyecatch .store-badge .badge-appstore-wrapper {
	width: 120px;
	/* height: 41px; */
}
.eyecatch .store-badge .badge-googleplay-wrapper {
	width: 138px;
	/* height: 41px; */
}
.eyecatch .store-badge .badge-appstore {
	width: 120px;
	/* height: 41px; */
}
.eyecatch .store-badge .badge-googleplay {
	width: 138px;
	/* height: 41px; */
	margin-left: 12%;
}
@media (max-width: 767px) {
	.eyecatch .store-badge {
		display: flex;
		margin-left: auto;
		margin-right: auto;
	}
	.eyecatch .store-badge .badge-appstore {
		width: 130px;
		margin-right: 20px;
	}
	.eyecatch .store-badge .badge-googleplay {
		width: 134px;
		margin-left: 20px;
	}
	.eyecatch .eyecatch-main-sp {
		min-height: 440px;
		background-image: url(/img/lp_eyecatch05.jpg);
		background-size: cover;
		background-position: center center;
	}
	.eyecatch .logo-eyecatch-main-sp {
		height: 70px;
		margin-bottom: 20px;
	}
}
@media (max-width: 640px) {
	.eyecatch .eyecatch-main-sp {
		min-height: 240px;
	}
	.eyecatch .logo-eyecatch-main-sp {
		height: 36px;
		margin-bottom: 15px;
	}
}

/* ------------------------------
section
------------------------------ */
.section-title-wrapper {
	background: #f1f1f1;
}
.section-title {
	color: #000;
	font-size: 1.8rem;
	font-size: 18px;
	line-height: 1.8;
	margin-top: 10px;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
}
.logo-inline-section-title {
	height: 25px;
	margin-right: 8px;
}
.section-lead {
	color: #5b5b5b;
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1.8;
	margin-top: 20px;
	margin-bottom: 20px;
}
.logo-inline-section-lead {
	height: 22px;
	margin-right: 8px;
}
@media (max-width: 767px) {
	.section-title {
		font-size: 2.0rem;
		font-size: 20px;
		letter-spacing: 0;
		margin-top: 6px;
		margin-bottom: 6px;
		/* font-weight: bold; */
	}
	.logo-inline-section-title {
		height: 28px;
		margin-right: 12px;
	}
	.section-lead {
		font-size: 1.2rem;
		font-size: 12px;
		line-height: 1.6;
		margin-top: 15px;
		margin-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		text-align: center;
	}
	.logo-inline-section-lead {
		height: 17px;
		margin-right: 4px;
	}
}

/* ------------------------------
iMatchが選ばれる理由
------------------------------ */
.reason {
	margin-top: 30px;
}
.reason-inner {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.lp_image_reason-wrapper {
	margin-top: 50px;
	padding-left: 30px;
	padding-right: 30px;
}
@media (max-width: 767px) {
	.reason {
		margin-top: 20px;
	}
	.reason-inner {
		padding-left: 21px;
		padding-right: 21px;
	}
	.lp_image_reason-wrapper {
		margin-top: 30px;
		padding-left: 0;
		padding-right: 0;
	}
}

/* ------------------------------
iMatchで結ばれたカップル
------------------------------ */
.couple {
	margin-top: 50px;
}
.couple-inner {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px) {
	.couple-inner {
		padding-left: 17px;
		padding-right: 17px;
	}
}
.couple-article {
	margin-top: 20px;
}
.couple-article-wrapper {
}
.couple-name {
	margin-top: 10px;
	font-size: 1.3rem;
	font-size: 13px;
	font-weight: bold;
	color: #787777;
	line-height: 1.5;
	text-align: center;
}
.couple-text {
	margin-top: 3px;
	color: #5b5b5b;
	font-size: 1.2rem;
	font-size: 12px;
	line-height: 1.4;

	width: 60%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: center;
}
.couple-image-wrapper {
	margin-top: 20px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.couple-image {
	width: 100%;
	object-fit: cover;
	border-radius: 16px;
}
@media (max-width: 767px) {
	.couple-article {
		margin-top: 15px;
	}
	.couple-image-wrapper {
		margin-top: 15px;
	}
	.couple-name {
		font-size: 1.1rem;
		font-size: 11px;
		/* letter-spacing: -0.1em; */
	}
	.couple-text {
		margin-top: 2px;
		width: 100%;
		font-size: 1.2rem;
		font-size: 12px;
		line-height: 1.4;
	}
	.couple-image {
		border-radius: 12px;
	}
}

/* ------------------------------
理想の相手が簡単に
------------------------------ */
.partner {
	margin-top: 50px;
}
.partner-inner {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px) {
	.partner-inner {
		padding-left: 5px;
		padding-right: 5px;
	}
}
.partner-article-wrapper {
	max-width: 240px;
	margin-left: auto;
	margin-right: auto;
}
.partner-step-number {
	margin-top: 10px;
	font-size: 1.8rem;
	font-size: 18px;
	font-weight: bold;
	color: #41cfd9;
	text-align: center;
}
.partner-step-text {
	margin-top: 10px;
	font-size: 1.8rem;
	font-size: 18px;
	font-weight: bold;
	color: #5b5b5b;
	text-align: center;
	line-height: 1;
	border-top: 2px solid #41cfd9;
	border-bottom: 2px solid #41cfd9;
	padding-top: 10px;
	padding-bottom: 8px;
}
.partner-step-text span span {
	font-size: 1.3rem;
	font-size: 13px;
}
.partner-step-image-wrapper {
	padding-top: 30px;
	padding-bottom: 30px;
}
@media (max-width: 767px) {
	.partner-step-number {
		margin-top: 0;
		font-size: 1.4rem;
		font-size: 14px;
	}
	.partner-step-text {
		margin-top: 0;
		min-height: 24px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.1rem;
		font-size: 11px;
		border-top: 1px solid #41cfd9;
		border-bottom: 1px solid #41cfd9;
	}
	.partner-step-text span span {
		font-size: 1.1rem;
		font-size: 11px;
	}
	.partner-step-image-wrapper {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

/* ------------------------------
安心・安全にご利用いただくために
------------------------------ */
#lp-common .safety {
	background-image: url(/img/lp_safety_common_pc.jpg);
}
#lp-men .safety {
	background-image: url(/img/lp_safety_men_pc.jpg);
}
#lp-women .safety {
	background-image: url(/img/lp_safety_women_pc.jpg);
}
.safety {
	background-size: cover;
	background-position: center center;
}
.safety-inner {
	padding: 25px 80px 50px;
}
@media (max-width: 767px) {
	#lp-common .safety {
		background-image: url(/img/lp_safety_common_sp.jpg);
	}
	#lp-men .safety {
		background-image: url(/img/lp_safety_men_sp.jpg);
	}
	#lp-women .safety {
		background-image: url(/img/lp_safety_women_sp.jpg);
	}
	.safety-inner {
		padding: 15px 20px 20px;
	}
}
.safety .section-title-wrapper {
	background: none;
}
.safety .section-title {
	color: #5b5b5b;
	font-size: 1.8rem;
	font-size: 18px;
	line-height: 1.8;
	margin-top: 10px;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
	text-align: center;
}
.safety-list {
	margin-top: 40px;
}
.safety-list li {
	color: #5b5b5b;
	font-size: 1.5rem;
	font-size: 15px;
	line-height: 1.5;
	margin-top: 4px;
	margin-bottom: 4px;
}
@media (max-width: 767px) {
	.safety .section-title {
		font-size: 1.7rem;
		font-size: 17x;
	}
	.safety-list {
		margin-top: 0;
		margin-left: 35px;
	}
	.safety-list li {
		color: #5b5b5b;
		font-size: 1.2rem;
		font-size: 12px;
		font-weight: bold;
		line-height: 1.5;
		margin-top: 4px;
		margin-bottom: 4px;
	}
}
.safety .store-badge-wrapper {
	max-width: 300px;
	margin-left: auto;
}
.safety .store-badge-title {
	color: #5b5b5b;
	font-size: 2.4rem;
	font-size: 24px;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 20px;
}
.safety .store-badge-notice {
	margin-top: 20px;
	color: #5b5b5b;
	font-size: 1.1rem;
	font-size: 11px;
	line-height: 2.2;
	text-align: center;
}
.safety .store-badge-notice span.red {
	color: #ff3e49;
}
.safety .store-badge {
	max-width: 275px;
	display: flex;
	margin-left: auto;
	margin-right: auto;
}
.safety .store-badge .badge-appstore-wrapper {
	width: 120px;
	/* height: 41px; */
}
.safety .store-badge .badge-googleplay-wrapper {
	width: 138px;
	/* height: 41px; */
}
.safety .store-badge .badge-appstore {
	width: 120px;
	/* height: 41px; */
}
.safety .store-badge .badge-googleplay {
	width: 138px;
	/* height: 41px; */
	margin-left: 12%;
}
@media (max-width: 767px) {
	.safety .store-badge-wrapper {
		margin-top: 50px;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.safety .store-badge-title {
		font-size: 1.6rem;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		margin-bottom: 15px;
	}
	.safety .store-badge-notice {
		margin-top: 15px;
		font-size: 1.1rem;
		font-size: 11px;
		line-height: 1.8;
		text-align: center;
	}
	.safety .store-badge {
	}
	.safety .store-badge .badge-appstore {
		width: 130px;
		margin-right: 20px;
	}
	.safety .store-badge .badge-googleplay {
		width: 134px;
		margin-left: 20px;
	}
}
