@charset "UTF-8";
/*=======================================================
共通
=======================================================*/
.bl_ttl_set {
	display: flex;
	flex-flow: column;
	gap: 32px;
	text-align: center;
}
.el_sec_mainTtl {
	order: 2;
	font-size: 22px;
	letter-spacing: 0.88px;
	line-height: 1.5;
}
.el_sec_subTtl {
	order: 1;
	font-size: 44px;
	color: #815DC6;
	letter-spacing: 2.64px;
	line-height: 1.5;
	position: relative;
}
.el_sec_subTtl::after {
	position: absolute;
	content: "";
	width: 76px;
	height: 7px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #DED3F4;
}
.el_btn {
	width: 320px;
	height: 50px;
	border-radius: 30px;
	display: flex;
	margin: auto;
	justify-content: center;
	align-items: center;
	background: #FF277A;
	color: #fff;
	font-size: 20px;
	position: relative;
}
.el_btn::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	border-style: solid;
	border-width: 5.5px 0 5.5px 9px;
	border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 750px) {
    .el_sec_mainTtl {
	    font-size: 32px;
    }
    .el_sec_subTtl {
	    font-size: 60px;
    }
	.el_btn{
		width: 480px;
		height: 100px;
		border-radius: 60px;
		font-size: 32px;
	}
	.el_btn::after{
		right: 30px;
		border-width: 11px 0 11px 18px;
	}
}
/*=======================================================
MV
=======================================================*/
.ly_mv {
	height: 600px;
    background: url(../images/top/mv-bg.jpg) top center/cover no-repeat;
    padding-top: 100px;
}
.ly_mv .bl_mv_ttl_set {
	display: flex;
	flex-flow: column;
	gap: 16px;
}
.ly_mv .bl_mv_ttl_set .bl_mv_ttl {
	order: 2;
	font-size: 32px;
	line-height: 1.6;
	font-weight: lighter;
}
.ly_mv .bl_mv_ttl_set .bl_mv_ttl > span {
	font-size: 40px;
}
.ly_mv .bl_mv_ttl_set .bl_mv_subTtl {
	order: 1;
	font-size: 26px;
	line-height: 1.5;
}
.ly_mv .bl_mv_ttl_set .bl_mv_subTtl > span {
	display: block;
	font-size: 20px;
	color: #FFFFFF;
	background-color: #815DC6;
	width: 226px;
	padding: 6px 24px 7px;
	margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
    .ly_mv {
	    height: 900px;
        background: url(../images/top/mv-bg-sp.jpg) top center/cover no-repeat;
        padding-top: 96px;
    }
    .ly_mv .bl_mv_ttl_set {
	    gap: 24px;
	    text-align: center;
    }
    .ly_mv .bl_mv_ttl_set .bl_mv_ttl {
	    font-size: 42px;
    }
    .ly_mv .bl_mv_ttl_set .bl_mv_ttl > span {
	    font-size: 50px;
    }
    .ly_mv .bl_mv_ttl_set .bl_mv_subTtl {
	    font-size: 39px;
    }
    .ly_mv .bl_mv_ttl_set .bl_mv_subTtl > span {
	    font-size: 30px;
	    width: 318px;
	    padding: 6px 24px 7px;
	    margin: 0 auto 16px;
    }
}
/*=======================================================
About
=======================================================*/
.bl_about {
	padding: 56px 0;
}
.bl_about_txt {
	text-align: center;
}
.bl_about_txt > p + p{
	margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .bl_about {
	    padding: 64px 0;
    }
	.bl_about_txt > p + p{
	    margin-top: 32px;
    }
}
/*=======================================================
Point
=======================================================*/
.bl_point {
	padding: 56px 0;
	background-color: #F5F0FD;
}
.bl_point .bl_cardUnit {
	gap: 32px;
	margin-bottom: 40px;
}
.bl_point .bl_card {
	display: flex;
	flex-flow: column;
}
.bl_point .bl_card_imgWrapper {
	position: relative;
}
.bl_point .bl_card_imgWrapper::after {
	position: absolute;
	content: "";
	border: 1px solid #B9B9B9;
	width: 320px;
	height: 170px;
	top: 0;
	left: 0;
}
.bl_point .bl_card_imgWrapper > img {
	width: 320px;
	object-fit:cover;
}
.bl_point .bl_card_body {
	flex-grow: 1;
    background-color: #fff;
	border: 1px solid #B9B9B9;
	border-top-style: none;
	padding: 16px 24px 26px;
}
.bl_point .el_card_ttl {
    color: #815DC6;
	font-size: 20px;
	letter-spacing: 0.88px;
	text-align: center;
	margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
    .bl_point {
	    padding: 64px 0;
    }
	.bl_point .bl_cardUnit {
		gap: 40px;
	    margin-bottom: 40px;
    }
	.bl_point .bl_card_imgWrapper::after {
	    width: 100%;
	    height: 366px;
    }
    .bl_point .bl_card_imgWrapper > img {
	    width: 100%;
    }
    .bl_point .bl_card_body {
	    padding: 24px 24px 32px;
    }
    .bl_point .el_card_ttl {
	    font-size: 30px;
	    margin-bottom: 16px;
    }
}
/*=======================================================
Contactlenses
=======================================================*/
.bl_contactlenses {
	padding: 56px 0;
}
.bl_contactlensesTxt {
	margin-bottom: 32px;
    text-align: center;
}
.bl_contactlenses .bl_cardUnit {
	flex-flow: wrap;
	margin-bottom: 32px;
	gap: 32px;
}
.bl_contactlenses .bl_card {
	width: 320px;
	border: 1px solid #815DC6;
	position: relative;
}
.bl_pre_sale_label {
	position: absolute;
	background-color: #FF277A;
	padding: 7px 13px;
	color: #FFFFFF;
	font-size: 14px;
	top: 0;
	left: 0;
}
.bl_contactlenses .bl_card_imgWrapper {
	margin: 20px auto 16px;
}
.bl_contactlenses .bl_card_imgWrapper > img {
	display: flex;
	margin: auto;
	width: 280px;
	height: 140px;
	padding: 23px 15px 22px;
	border: 1px solid #B9B9B9;
}
.bl_contactlenses .bl_card_imgWrapper .bl_no_img {
	width: 280px;
	height: 140px;
	border: 1px solid #B9B9B9;
	padding: 0;
}
.bl_contactlenses .bl_card_body {
	padding: 0 20px 30px;
}
.bl_contactlenses .el_card_ttl {
	font-size: 17px;
	margin-bottom: 8px;
	text-align: start;
}
.bl_contactlenses .el_card_txt {
	font-size: 15px;
	margin-bottom: 16px;
}
.bl_contactlenses .bl_cat_item {
    display: flex;
	flex-flow: wrap;
	gap: 8px;
}
.bl_contactlenses .bl_cat_item .bl_cat_label {
    background-color: #6E6E6E;
	font-size: 14px;
	color: #FFFFFF;
	padding: 1px 16px;
}
.bl_contactlenses .bl_product_card_imgWrapper {
	margin: 0 auto 24px;
}
.bl_contactlenses .bl_product_card_imgWrapper > img {
	display: flex;
	margin: auto;
	width: 448px;
	height: 234px;
	padding: 23px 15px 22px;
	border: 1px solid #B9B9B9;
}
.bl_contactlenses .bl_product_card_imgWrapper .bl_no_img {
	width: 448px;
	height: 234px;
	border: 1px solid #B9B9B9;
	padding: 0;
}
.bl_contactlenses .bl_product_ttl {
	font-size: 20px;
	margin-bottom: 24px;
}
.bl_contactlenses .bl_product_no {
	width: 100%;
	background-color: #EDEDED;
	padding: 16px;
	margin-bottom: 32px;
}
.bl_contactlenses .bl_product_price_def {
	margin-bottom: 24px;
}
.bl_contactlenses .bl_product_price_def > div {
	font-size: 20px;
	letter-spacing: 0.8px;
	justify-content: center;
	display: flex;
	flex-flow: nowrap;
	gap: 16px;
}
.bl_contactlenses .bl_product_price_def > div:first-of-type {
	margin-bottom: 8px;
}
.bl_contactlenses .bl_product_price_def > div .el_tax {
    font-weight: lighter;
	font-size: 17px;
}
@media screen and (max-width: 750px) {
    .bl_contactlenses {
	    padding: 64px 0;
    }
    .bl_contactlenses .bl_cardUnit {
	    margin-bottom: 40px;
	    gap: 32px;
		justify-content: center;
    }
    .bl_pre_sale_label {
	    padding: 7px 13px;
	    font-size: 20px;
    }
    .bl_contactlenses .bl_card_imgWrapper {
	    margin: 32px auto 16px;
    }
    .bl_contactlenses .el_card_ttl {
	    font-size: 20px;
	    text-align: start;
    }
    .bl_contactlenses .el_card_txt {
	    font-size: 17px;
    }
    .bl_contactlenses .bl_cat_item {
	    gap: 16px;
    }
    .bl_contactlenses .bl_cat_item .bl_cat_label {
	    font-size: 18px;
	    padding: 1px 16px 3px;
    }
	.bl_contactlenses .bl_product_card_imgWrapper > img {
	    width: 100%;
	    height: auto;
    }
    .bl_contactlenses .bl_product_card_imgWrapper .bl_no_img {
	    width: 100%;
	    height: auto;
    }
    .bl_contactlenses .bl_product_ttl {
	    font-size: 30px;
    }
    .bl_contactlenses .bl_product_price_def > div {
	    font-size: 30px;
    }
    .bl_contactlenses .bl_product_price_def > div .el_tax {
	    font-size: 24px;
    }
}
/*=======================================================
Glasses
=======================================================*/
.bl_glasses {
	padding: 56px 0;
	background-color: #F5F0FD;
}
.bl_glasses .bl_media {
	margin-bottom: 40px;
}
.bl_glasses .bl_glasses_brand {
	margin: auto;
	width: 900px;
	background-color: #FFFFFF;
	border: 1px solid #815DC6;
	padding: 24px;
}
@media screen and (max-width : 750px){
    .bl_glasses {
	    padding: 64px 0;
    }
	.bl_glasses .el_media_ttl {
	    text-align: center;
    }
    .bl_glasses .bl_glasses_brand {
	    width: 100%;
    }
}
/*=======================================================
Service
=======================================================*/
.bl_service {
	padding: 56px 0;
}
.bl_service .bl_cardUnit {
	gap: 32px;
	margin-bottom: 40px;
}
.bl_service .bl_card {
	display: flex;
	flex-flow: column;
}
.bl_service .bl_card_imgWrapper {
	margin-bottom: 16px;
	position: relative;
}
.bl_service .bl_card_imgWrapper::after {
	position: absolute;
	content: "";
	border: 1px solid #B9B9B9;
	width: 320px;
	height: 200px;
	top: 0;
	left: 0;
}
.bl_service .bl_card_imgWrapper > img {
	width: 320px;
	object-fit:cover;
}
.bl_service .bl_card_body {
	flex-grow: 1;
}
.bl_service .el_card_ttl {
    color: #815DC6;
	font-size: 20px;
	letter-spacing: 0.8px;
	text-align: center;
	margin-bottom: 8px;
}
.bl_service .bl_card_body > p + p{
	margin-top: 24px;
}
@media screen and (max-width: 750px) {
    .bl_service {
	    padding: 64px 0;
    }
	.bl_service .bl_cardUnit {
		gap: 40px;
	    margin-bottom: 40px;
    }
    .bl_service .bl_card_imgWrapper::after {
	    width: 100%;
	    height: 432px;
    }
    .bl_service .bl_card_imgWrapper > img {
	    width: 100%;
    }
    .bl_service .bl_card_body {
	    padding: 24px 24px 32px;
    }
    .bl_service .el_card_ttl {
	    font-size: 30px;
	    margin-bottom: 16px;
    }
	.bl_service .bl_card_body > p + p{
	    margin-top: 32px;
    }
}
/*=======================================================
Campaign
=======================================================*/
.bl_campaign {
	padding: 56px 0;
	background-color: #F5F0FD;
}
@media screen and (max-width: 750px) {
    .bl_campaign {
	    padding: 64px 0;
    }
}
/*=======================================================
Access
=======================================================*/
.bl_access {
	padding: 56px 0;
}
.bl_access .bl_media_imgWrapper {
	display: flex;
	margin-bottom: 24px;
	position: relative;
}
.bl_access .bl_media_imgWrapper::after {
	position: absolute;
	content: "";
	border: 1px solid #B9B9B9;
	width: 480px;
	height: 320px;
	top: 0;
	left: 0;
}
.bl_access .bl_media_imgWrapper > iframe {
	width: 480px;
	height: 320px;
}
.bl_access .bl_access_def {
	display: flex;
	flex-flow: column;
	gap: 20px;
}
.bl_access .bl_access_item {
	display: flex;
}
.bl_access .bl_access_dttl {
	width: 109px;
}
@media screen and (max-width: 750px) {
    .bl_access {
	    padding: 64px 0;
    }
	.bl_access .bl_media_imgWrapper {
	    margin-bottom: 32px;
    }
    .bl_access .bl_media_imgWrapper::after {
	    width: 100%;
	    height: 400px;
    }
    .bl_access .bl_media_imgWrapper > iframe {
	    width: 100%;
	    height: 400px;
    }
	.bl_access .bl_media_body {
		margin-bottom: 40px;
	}
    .bl_access .bl_access_dttl {
	    width: 200px;
    }
}
/*=======================================================
information
=======================================================*/
.bl_info {
	padding: 56px 0;
}
.bl_info .el_btn {
	margin-top: 32px;
}
@media screen and (max-width: 750px) {
    .bl_info {
	    padding: 64px 0;
    }
}