@charset "UTF-8";
/*---------------------*/
/*max-width: 1200px ←画面全体が縮小する幅*/
/*max-width: 979px ←タブレット版*/
/*max-width: 767px ←スマホ版*/
/*max-width: 425px ←スマホ版さらに小さい幅に対応*/
/*構成*/
/*
FONT
COMMON
MAIN
HEADER
ARTICLE
ELEMENT
COTENTS
 L
UTILITY
*/
/*---------------------*/

/* ========== FONT ========== */

/* DM Sans */
.dm-sans {
  font-family: "DM Sans", "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}



/* ========== COMMON ========== */

body{
  overflow-x: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*可変幅表示にて使用*/
#page-body {
  overflow: hidden;
  width: 100%;
}

/* SMP表示での左右の余白を削除 */
@media (max-width: 979px) {
  #page-body {
    width: 100vw;
    margin: 0 -10px;
  }
}
@media (max-width: 767px) {
  #page-body {
    width: 100vw;
    margin: 0 -5px;
  }
}

/* 背景色がある場合フッターのマージンを削除 */
#footer_banner {
	margin-top: 0;
}
#lp_main_wrap .lp_main {
	padding-bottom: 80px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_main {
		padding-bottom: 40px;
	}
}

/* 注意文言調整 */
@media (min-width: 768px) {
	#lp_main_wrap .attention-txt-pc {
		margin-top: 3%;
	}
}


/* ========== MAIN ========== */

#lp_main_wrap {
  width: 100%;
  margin: 0 auto;
	word-wrap: break-word;
	color: #424242;
	background-color: #f1f2f6;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0em;
}
#lp_main_wrap * {
	box-sizing: border-box;
}
#lp_main_wrap li,
#lp_main_wrap dt,
#lp_main_wrap dd,
#lp_main_wrap img {
	line-height: 1;
}
#lp_main_wrap p {
	margin-bottom: 0;
}
#lp_main_wrap a {
	transition: all 0.5s ease 0s;
	color: inherit;
	opacity: 1;
	text-decoration: none;
}
#lp_main_wrap a:hover,
#lp_main_wrap a:active {
	color: inherit;
	opacity: 0.6;
	text-decoration: none;
}



/* ========== HEADER ========== */

/* lp_mv */
#lp_main_wrap .lp_mv-smp {
	display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_mv-pc {
		display: none;
	}
	#lp_main_wrap .lp_mv-smp {
		display: block;
	}
}

/* lp_mv-pc */
#lp_main_wrap .lp_mv-pc {
	width: 100%;
	position: relative;
	overflow: hidden;
}
#lp_main_wrap .lp_mv-pc_img {
	display: flex;
}
#lp_main_wrap .lp_mv-pc_img > li {
	width: 25%;
}
#lp_main_wrap .lp_mv-pc_img img {
	width: 100%;
}
#lp_main_wrap .lp_mv-pc_text {
	width: 42%;
	position: absolute;
	z-index: 2;
	bottom: 5%;
	left: 50%;
	transform: translate(-48.2%, 0);
}
#lp_main_wrap .lp_mv-pc_text img {
	width: 100%;
}

/* lp_mv-smp */
@media (max-width: 767px) {
	#lp_main_wrap .lp_mv-smp {
		width: 100%;
		position: relative;
		overflow: hidden;
	}
	#lp_main_wrap .lp_mv-smp_img {
		display: flex;
	}
	#lp_main_wrap .lp_mv-smp_img > li {
		width: 50%;
	}
	#lp_main_wrap .lp_mv-smp_img img {
		width: 100%;
	}
	#lp_main_wrap .lp_mv-smp_text {
		width: 82%;
		position: absolute;
		z-index: 2;
		bottom: 2%;
		left: 50%;
		transform: translate(-50%, 0);
	}
}

/* lp_mv_img */
#lp_main_wrap .lp_mv_img_01 {
	clip-path: inset(100% 0 0% 0);
	animation: mvClip01 1s ease-out 0.2s forwards;
}
#lp_main_wrap .lp_mv_img_02 {
		clip-path: inset(0% 0 100% 0);
	animation: mvClip02 1s ease-out 0.2s forwards;
}
#lp_main_wrap .lp_mv_img_img {
	animation: mvZoom 4s ease-out 0.2s forwards;
}

/* lp_mv_text */
#lp_main_wrap .lp_mv_text {
	opacity: 0;
	animation: mvFadein 1s ease-out 1s forwards;
}

/* lp_mv animation */
@keyframes mvClip01 {
	0% {
		clip-path: inset(100% 0 0% 0);
	}
	100% {
		clip-path: inset(0);
	}
}
@keyframes mvClip02 {
	0% {
		clip-path: inset(0% 0 100% 0);
	}
	100% {
		clip-path: inset(0);
	}
}
@keyframes mvZoom {
	0% {
		opacity: 0;
		transform: scale(1.1);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: scale(1.005);
	}
}
@keyframes mvFadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}



/* ========== ARTICLE ========== */

/* lp_main */
#lp_main_wrap .lp_main {
	width: calc(100% - 100px);
	max-width: 1340px;
	margin: 0 auto;
}
@media (max-width: 979px) {
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_main {
		width: calc(100% - 20px);
	}
}



/* ========== SWIPER ========== */

/* swiper */
@media (max-width: 767px) {
	#lp_main_wrap .swiper {
		overflow: hidden;
		position: relative;
	}
	#lp_main_wrap .swiper-wrapper {
		display: flex;
		justify-content: space-between;
		position: relative;
		width: 100%;
		max-width: 100%;
	}
	#lp_main_wrap .swiper-slide {
		width: calc((100% - 9px) / 2);
		flex-shrink: 0;
		margin-right: 9px;
	}
	#lp_main_wrap .swiper-container-horizontal > .swiper-scrollbar {
		position: relative;
		left: 0;
		bottom: 4px;
		z-index: 50;
		width: 96%;
		height: 4px;
		margin: 20px auto 0;
	}
	#lp_main_wrap .swiper-scrollbar {
		background-color: #fff;
	}
	#lp_main_wrap .swiper-scrollbar-drag {
		background-color: #cecece;
	}
}




/* ========== OVERLAY ========== */

/* lp_overlay */
#lp_main_wrap .lp_overlay {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
}
#lp_main_wrap .lp_overlay .lp_overlay_img {
  position: relative;
	z-index: 1;
  width: 100%;
}
#lp_main_wrap .lp_overlay .lp_overlay_img img {
  width: 100%;
}
#lp_main_wrap .lp_overlay .lp_overlay_btn {
  position: absolute;
	z-index: 3;
  bottom: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
}
#lp_main_wrap .lp_overlay .lp_overlay_text {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 14px 6%;
  flex-direction: column;
  gap: 3px;
  background: rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#lp_main_wrap .lp_overlay .lp_overlay_text.open {
  opacity: 1;
  transform: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_overlay .lp_overlay_btn {
		position: absolute;
		z-index: 3;
		bottom: 15px;
		right: 15px;
		width: 25px;
		height: 25px;
	}
	#lp_main_wrap .lp_overlay .lp_overlay_text {
		padding: 15px 28px;
		gap: 2px;
	}
}

/* lp_overlay_text */
#lp_main_wrap .lp_overlay .lp_overlay_text li {
  color: #fff;
  font-family: "DM Sans", "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 0.05em;
}
#lp_main_wrap .lp_overlay .lp_overlay_text a,
#lp_main_wrap .lp_overlay .lp_overlay_text span {
  text-decoration: none;
  display: inline-block;
  position: relative;
}
#lp_main_wrap .lp_overlay .lp_overlay_text a {
  cursor: pointer;
}
#lp_main_wrap .lp_overlay .lp_overlay_text a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
#lp_main_wrap .lp_overlay .lp_overlay_text a:hover::after {
  width: 100%;
}
#lp_main_wrap .lp_overlay .lp_overlay_text span.lp_overlay_text_sub {
	font-size: 11px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_overlay .lp_overlay_text li {
		font-size: 12px;
	}
	#lp_main_wrap .lp_overlay .lp_overlay_text span.lp_overlay_text_sub {
		font-size: 10px;
	}
}



/* ========== LEAD ========== */

/* lp_lead */
#lp_main_wrap .lp_lead {
	width: 90%;
	margin: 90px auto;
	padding: 0;
	text-align: center;
}
#lp_main_wrap .lp_lead p {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_lead {
		margin: 10% auto;
	}
	#lp_main_wrap .lp_lead p {
		font-size: 14px;
		line-height: 1.75;
	}
}



/* ========== BRAND ========== */

/* lp_brand */
#lp_main_wrap .lp_brand {
	width: 90%;
	margin: 0 auto 82px;
	padding: 0;
	text-align: center;
}
#lp_main_wrap .lp_brand .lp_brand_title {
	width: 128px;
	margin: 0 auto 30px;
}
#lp_main_wrap .lp_brand .lp_brand_subtitle {
	margin-bottom: 24px;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.04em;
}
#lp_main_wrap .lp_brand p {
	font-size: 13px;
	line-height: 2.15;
	letter-spacing: 0.05em;
}
#lp_main_wrap .lp_brand p + p {
	margin-top: 24px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_brand {
		margin: 10% auto 12%;
	}
	#lp_main_wrap .lp_brand .lp_brand_title {
		width: 92px;
		margin: 0 auto 18px;
	}
	#lp_main_wrap .lp_brand .lp_brand_subtitle {
		margin-bottom: 16px;
		font-size: 14px;
		line-height: 1.2;
		letter-spacing: 0.04em;
	}
	#lp_main_wrap .lp_brand p {
		font-size: 14px;
		line-height: 1.75;
	}
	#lp_main_wrap .lp_brand p + p {
		margin-top: 22px;
	}
}



/* ========== ITEM ========== */

/* lp_item */
#lp_main_wrap .lp_item {
	width: 100%;
	margin: 0 auto 160px;
	position: relative;
}
#lp_main_wrap .lp_item_inner {
	width: 100%;
	margin: 0;
	padding: 70px 4.5%;
	position: relative;
	background: #fff;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item {
		margin: 0 auto 20%;
	}
	#lp_main_wrap .lp_item_inner {
		margin: 0;
		padding: 14% 0 14%;
	}
}

/* lp_item_text */
#lp_main_wrap .lp_item_text {
	width: 100%;
	background: url("//ds-assets.s3.amazonaws.com/e-look.jp/2025/e-shopplus/2025_midiumi_topscollection/noteline-pc.png");
	padding: 0 4px 1px;
}
#lp_main_wrap .lp_item_text p {
	font-size: 16px;
	line-height: 34px;
	letter-spacing: 0.02em;
	color: #283e60;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item_text {
		background: url("//ds-assets.s3.amazonaws.com/e-look.jp/2025/e-shopplus/2025_midiumi_topscollection/noteline-smp.png");
		padding: 0 2px 1px;
	}
	#lp_main_wrap .lp_item_text p {
		font-size: 15px;
		line-height: 30px;
	}
}




/* ========== ITEM01 ========== */

/* lp_item01 */
#lp_main_wrap .lp_item01 {
	padding-top: 40px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01 {
		padding-top: 8%;
	}
}

/* lp_item01_title */
#lp_main_wrap .lp_item01_title {
	width: 364px;
	position: absolute;
	top: -40px;
	left: 28px;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01_title {
		width: 57.9%;
		position: absolute;
		margin-top: -7.2%;
		top: 0;
		left: 8px;
		z-index: 5;
	}
}

/* lp_item01_row01 */
#lp_main_wrap .lp_item01_row01 {
	display: flex;
	justify-content: space-between;
	position: relative;
}
#lp_main_wrap .lp_item01_row01_1 {
	position: relative;
	width: 41%;
}
#lp_main_wrap .lp_item01_row01_2 {
	position: relative;
	width: 55.4%;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01_row01 {
		display: block;
	}
	#lp_main_wrap .lp_item01_row01_1 {
		width: 100%;
	}
	#lp_main_wrap .lp_item01_row01_2 {
		width: 100%;
	}
}

/* lp_item01_img01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01_img01 {
		margin: 0 auto 11%;
	}
}

/* lp_item01_img02 */
#lp_main_wrap .lp_item01_img02 {
	display: flex;
	justify-content: space-between;
	gap: 9px;
	position: relative;
}
#lp_main_wrap .lp_item01_img02 .lp_item_img {
	width: 100%;
}
@media (max-width: 767px) {
}

/* lp_item01_text01 */
#lp_main_wrap .lp_item01_text01 {
	width: 74%;
	max-width: 454px;
	margin: 14.4% 0 15%;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01_text01 {
		width: 90%;
		max-width: unset;
		margin: 0 auto 24%;
	}
}

/* lp_item01_obj01 */
#lp_main_wrap .lp_item01_obj01 {
	width: 38%;
	position: absolute;
	margin-bottom: 78.4%;
	bottom: 0;
	right: -14.5%;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01_obj01 {
		width: 35%;
		position: absolute;
		margin-bottom: 77.2%;
		right: -6.4%;
		z-index: 5;
	}
}

/* lp_item01_obj02 */
#lp_main_wrap .lp_item01_obj02 {
	width: 20%;
	position: absolute;
	margin-bottom: 65%;
	bottom: 0;
	right: -13.5%;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item01_obj02 {
		width: 18%;
		position: absolute;
		margin-bottom: 65.6%;
		right: -5.4%;
		z-index: 5;
	}
}



/* ========== ITEM02 ========== */

/* lp_item02 */
#lp_main_wrap .lp_item02 {
	padding-top: 64px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item02 {
		padding-top: 8%;
	}
}

/* lp_item02_title */
#lp_main_wrap .lp_item02_title {
	width: 338px;
	position: absolute;
	top: -54px;
	left: 31px;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item02_title {
		width: 54%;
		margin-top: -8%;
		position: absolute;
		top: 0;
		left: 8px;
		z-index: 5;
	}
}

/* lp_item02_row01 */
#lp_main_wrap .lp_item02_row01 {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	position: relative;
}
#lp_main_wrap .lp_item02_row01_1 {
	position: relative;
	width: 41%;
}
#lp_main_wrap .lp_item02_row01_2 {
	position: relative;
	width: 55.4%;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item02_row01 {
		display: block;
	}
	#lp_main_wrap .lp_item02_row01_1 {
		width: 100%;
	}
	#lp_main_wrap .lp_item02_row01_2 {
		width: 100%;
	}
}

/* lp_item02_img01 */
#lp_main_wrap .lp_item02_img01 {
	margin-top: -100px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item02_img01 {
		margin: 0 auto 11%;
	}
}

/* lp_item02_img02 */
#lp_main_wrap .lp_item02_img02 {
	display: flex;
	justify-content: space-between;
	gap: 9px;
	position: relative;
}
#lp_main_wrap .lp_item02_img02 .lp_item_img {
	width: 100%;
}
@media (max-width: 767px) {
}

/* lp_item02_text01 */
#lp_main_wrap .lp_item02_text01 {
	width: 90%;
	max-width: 580px;
	margin: 1.8% 0 12.5%;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item02_text01 {
		width: 90%;
		max-width: unset;
		margin: 0 auto 11%;
	}
}

/* lp_item02_obj01 */
#lp_main_wrap .lp_item02_obj01 {
	width: 15%;
	position: absolute;
	margin-bottom: -94px;
	bottom: 0;
	right: -0.4%;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item02_obj01 {
		width: 25%;
		position: absolute;
		margin-bottom: -19%;
		bottom: 0;
		right: 2.2%;
		z-index: 5;
	}
}



/* ========== ITEM03 ========== */

/* lp_item03 */
#lp_main_wrap .lp_item03 {
	padding-top: 72px;
}
@media (min-width: 768px) {
	#lp_main_wrap .lp_item03 .lp_item_inner {
		padding-bottom: 110px;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03 {
		padding-top: 10.2%;
	}
}

/* lp_item03_title */
#lp_main_wrap .lp_item03_title {
	width: 181px;
	position: absolute;
	top: -36px;
	left: 43px;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_title {
		width: 30%;
		margin-top: -9%;
		position: absolute;
		top: 0;
		left: 12px;
		z-index: 5;
	}
}

/* lp_item03_row01-pc */
#lp_main_wrap .lp_item03_row01-pc {
	width: 90%;
	margin: 0 auto 100px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	position: relative;
}
#lp_main_wrap .lp_item03_row01-pc .lp_item03_row01_1 {
	position: relative;
	width: 64%;
}
#lp_main_wrap .lp_item03_row01-pc .lp_item03_row01_2 {
	position: relative;
	width: 31%;
}
@media (max-width: 979px) {
	#lp_main_wrap .lp_item03_row01-pc {
		width: 100%;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_row01-pc {
		display: none;
	}
}

/* lp_item03_row01-pc lp_item03_img01 */
#lp_main_wrap .lp_item03_row01-pc .lp_item03_img01 {
	margin: 0 auto;
	translate: 2.4% -70px;
	rotate: -5deg;
}

/* lp_item03_row01-pc lp_item03_img02 */
#lp_main_wrap .lp_item03_row01-pc .lp_item03_img02 {
	margin: 142px auto 0;
}

/* lp_item03_row01-pc lp_item03_text01 */
#lp_main_wrap .lp_item03_row01-pc .lp_item03_text01 {
	width: 80%;
	max-width: 540px;
	margin: -3% 1% 0 auto;
}

/* lp_item03_row02-pc */
#lp_main_wrap .lp_item03_row02-pc {
	width: 72%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}
#lp_main_wrap .lp_item03_row02-pc .lp_item03_row02_1 {
	position: relative;
	width: 45.5%;
}
@media (max-width: 979px) {
	#lp_main_wrap .lp_item03_row02-pc {
		width: 86%;
	}
	#lp_main_wrap .lp_item03_row02-pc .lp_item03_row02_1 {
		width: 47%;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_row02-pc {
		display: none;
	}
}

/* lp_item03_row01-pc lp_item03_img03 */
#lp_main_wrap .lp_item03_row02-pc .lp_item03_img03 {
	margin: 0 auto 20px;
}

/* lp_item03_row01-pc lp_item03_img04 */
#lp_main_wrap .lp_item03_row02-pc .lp_item03_img04 {
	margin: 0 auto 20px;
}

/* lp_item03_row01-pc lp_item03_text03 */
#lp_main_wrap .lp_item03_row01-pc .lp_item03_text03 {
	width: 100%;
}

/* lp_item03_row01-pc lp_item03_text04 */
#lp_main_wrap .lp_item03_row01-pc .lp_item03_text04 {
	width: 100%;
}

/* lp_item03_row01-pc lp_item03_obj01 */
#lp_main_wrap .lp_item03_row02-pc .lp_item03_obj01 {
	width: 22.6%;
	position: absolute;
	margin-top: -90px;
	top: 0;
	right: -29.2%;
	z-index: 5;
}
@media (max-width: 979px) {
	#lp_main_wrap .lp_item03_row02-pc .lp_item03_obj01 {
		right: -20%;
	}
}

/* lp_item03_row01-smp */
#lp_main_wrap .lp_item03_row01-smp {
	display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_row01-smp {
		display: block;
		position: relative;
	}
}

/* lp_item03_row01-smp lp_item03_img01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_row01-smp .lp_item03_img01 {
		margin: 0 auto 11%;
	}
}

/* lp_item03_row01-smp lp_item03_text01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_row01-smp .lp_item03_text01 {
		width: 90%;
		max-width: unset;
		margin: 0 auto 15%;
	}
}

/* lp_item03_row01-smp lp_item03_obj01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item03_row01-smp .lp_item03_obj01 {
		width: 30.6%;
		position: absolute;
		margin-bottom: 72%;
		bottom: 0;
		right: -8%;
		z-index: 5;
	}
}



/* ========== ITEM04 ========== */

/* lp_item04 */
#lp_main_wrap .lp_item04 {
	padding-top: 60px;
}
@media (min-width: 768px) {
	#lp_main_wrap .lp_item04 .lp_item_inner {
		padding-bottom: 110px;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04 {
		padding-top: 10%;
	}
}

/* lp_item04_title */
#lp_main_wrap .lp_item04_title {
	width: 210px;
	position: absolute;
	top: -60px;
	left: 41px;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_title {
		width: 33%;
		margin-top: -9%;
		position: absolute;
		top: 0;
		left: 12px;
		z-index: 5;
	}
}

/* lp_item04_row01-pc */
#lp_main_wrap .lp_item04_row01-pc {
	margin-bottom: 134px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
#lp_main_wrap .lp_item04_row01-pc .lp_item04_row01_1 {
	position: relative;
	width: 41%;
}
#lp_main_wrap .lp_item04_row01-pc .lp_item04_row01_2 {
	position: relative;
	width: 55.4%;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_row01-pc {
		display: none;
	}
}

/* lp_item04_img02 */
#lp_main_wrap .lp_item04_row01-pc .lp_item04_img02 {
	display: flex;
	justify-content: space-between;
	gap: 9px;
	position: relative;
}
#lp_main_wrap .lp_item04_row01-pc .lp_item04_img02 .lp_item_img {
	width: 100%;
}

/* lp_item04_text01 */
#lp_main_wrap .lp_item04_row01-pc .lp_item04_text01 {
	width: 86%;
	max-width: 530px;
	margin: 9.4% 0 14.6%;
}

/* lp_item04_obj01 */
#lp_main_wrap .lp_item04_row01-pc .lp_item04_obj01 {
	width: 30.4%;
	position: absolute;
	margin-bottom: 62.2%;
	bottom: 0;
	right: -13.5%;
	z-index: 5;
}

/* lp_item04_row02-pc */
#lp_main_wrap .lp_item04_row02-pc {
	width: 72%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}
#lp_main_wrap .lp_item04_row02-pc .lp_item04_row02_1 {
	position: relative;
	width: 45.5%;
}
@media (max-width: 979px) {
	#lp_main_wrap .lp_item04_row02-pc {
		width: 86%;
	}
	#lp_main_wrap .lp_item04_row02-pc .lp_item04_row02_1 {
		width: 47%;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_row02-pc {
		display: none;
	}
}

/* lp_item04_img03 */
#lp_main_wrap .lp_item04_img03 {
	margin: 0 auto 20px;
}

/* lp_item04_img04 */
#lp_main_wrap .lp_item04_img04 {
	margin: 0 auto 20px;
}

/* lp_item04_text03 */
#lp_main_wrapc .lp_item04_text03 {
	width: 100%;
}

/* lp_item04_text04 */
#lp_main_wrap .lp_item04_text04 {
	width: 100%;
}


/* lp_item04_row01-smp */
#lp_main_wrap .lp_item04_row01-smp {
	display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_row01-smp {
		display: block;
		position: relative;
	}
}

/* lp_item04_img01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_row01-smp .lp_item04_img01 {
		margin: 0 auto 11%;
	}
}

/* lp_item04_text01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_row01-smp .lp_item04_text01 {
		width: 90%;
		max-width: unset;
		margin: 0 auto 11%;
	}
}

/* lp_item04_obj01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item04_row01-smp .lp_item04_obj01 {
		width: 29%;
		position: absolute;
		margin-bottom: -25%;
		bottom: 0;
		right: unset;
		z-index: 5;
		left: 4.4%;
	}
}



/* ========== ITEM05 ========== */

/* lp_item05 */
#lp_main_wrap .lp_item05 {
	padding-top: 64px;
}
@media (min-width: 768px) {
	#lp_main_wrap .lp_item05 .lp_item_inner {
		padding-bottom: 110px;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05 {
		padding-top: 7%;
	}
}

/* lp_item05_title */
#lp_main_wrap .lp_item05_title {
	width: 243px;
	position: absolute;
	top: -67px;
	right: 69px;
	z-index: 5;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_title {
		width: 30%;
		margin-top: -7%;
		position: absolute;
		top: 0;
		right: unset;
		left: 5px;
		z-index: 5;
	}
}

/* lp_item05_row01-pc */
#lp_main_wrap .lp_item05_row01-pc {
	width: 92.4%;
	margin: 0 auto 100px;
}
@media (max-width: 979px) {
	#lp_main_wrap .lp_item05_row01-pc {
		width: 100%;
	}
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row01-pc {
		display: none;
	}
}

/* lp_item05_row01_1 */
#lp_main_wrap .lp_item05_row01-pc .lp_item05_row01_1 {
	width: 100%;
	margin: 0 auto 40px;
	display: flex;
	justify-content: space-between;
	gap: 9px;
	position: relative;
}
#lp_main_wrap .lp_item05_row01-pc .lp_item05_row01_1 > div {
	width: 100%;
}

/* lp_item05_row01_2 */
#lp_main_wrap .lp_item05_row01-pc .lp_item05_row01_2 {
	width: 100%;
	max-width: 740px;
	padding: 0 6px;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row01-pc .lp_item05_row01_2 {
		max-width: unset;
		padding: 0;
	}
}

/* lp_item05_row02-pc */
#lp_main_wrap .lp_item05_row02-pc {
	display: flex;
	justify-content: space-between;
	position: relative;
}
#lp_main_wrap .lp_item05_row02-pc .lp_item05_row02_1 {
	position: relative;
	width: 41%;
}
#lp_main_wrap .lp_item05_row02-pc .lp_item05_row02_2 {
	position: relative;
	width: 55.4%;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-pc {
		display: none;
	}
}

/* lp_item05_img05 */
#lp_main_wrap .lp_item05_row02-pc .lp_item05_img05 {
	display: flex;
	justify-content: space-between;
	gap: 9px;
	position: relative;
}
#lp_main_wrap .lp_item05_row02-pc .lp_item05_img05 .lp_item_img {
	width: 100%;
}

/* lp_item05_text02 */
#lp_main_wrap .lp_item05_row02-pc .lp_item05_text02 {
	width: 80%;
	max-width: 520px;
	margin: 11% 0 7.8%;
}

/* lp_item05_obj01 */
#lp_main_wrap .lp_item05_row02-pc .lp_item05_obj01 {
	width: 20.4%;
	position: absolute;
	margin-top: -4.8%;
	top: 0;
	right: -6.7%;
	z-index: 5;
}

/* lp_item05_obj02 */
#lp_main_wrap .lp_item05_row02-pc .lp_item05_obj02 {
	width: 11%;
	position: absolute;
	margin-top: 6.2%;
	top: 0;
	right: -6.5%;
	z-index: 5;
}

/* lp_item05_row01-smp */
#lp_main_wrap .lp_item05_row01-smp {
	display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row01-smp {
		display: block;
		position: relative;
	}
}

/* lp_item05_img */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row01-smp .lp_item05_img01 {
		margin: 0 auto 11%;
	}
}

/* lp_item05_text01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row01-smp .lp_item05_text01 {
		width: 90%;
		max-width: unset;
		margin: 0 auto 27%;
	}
}

/* lp_item05_img04 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row01-smp .lp_item05_img04 {
		margin: 0 auto 11%;
	}
}

/* lp_item05_row02-smp */
#lp_main_wrap .lp_item05_row02-smp {
	display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-smp {
		display: block;
		position: relative;
	}
}

/* lp_item05_img04 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-smp .lp_item05_img04 {
		margin: 0 auto 11%;
	}
}

/* lp_item05_img05 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-smp .lp_item05_img05 {
		display: flex;
		justify-content: space-between;
		gap: 9px;
		position: relative;
	}
	#lp_main_wrap .lp_item05_row02-smp .lp_item05_img05 .lp_item_img {
		width: 100%;
	}
}

/* lp_item05_text02 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-smp .lp_item05_text02 {
		width: 90%;
		max-width: unset;
		margin: 0 auto 11%;
	}
}

/* lp_item05_obj01 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-smp .lp_item05_obj01 {
		width: 35.2%;
		position: absolute;
		margin-top: -28%;
		top: 0;
		right: -5.5%;
		z-index: 5;
	}
}

/* lp_item05_obj02 */
@media (max-width: 767px) {
	#lp_main_wrap .lp_item05_row02-smp .lp_item05_obj02 {
		width: 18%;
		position: absolute;
		margin-top: -11%;
		top: 0;
		right: -4.4%;
		z-index: 5;
	}
}

















/* ========== BTN ========== */

/* lp_btn-arrow */
#lp_main_wrap .lp_btn-arrow {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#lp_main_wrap .lp_btn-arrow a {
  display: block;
  width: 100%;
	max-width: 800px;
	margin: -40px auto 0;
  position: relative;
  padding: 24px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #343434;
  color: #fff;
}
#lp_main_wrap .lp_btn-arrow a::after {
  display: block;
  content: '';
  width: 9px;
  height: 9px;
  position: absolute;
  top: calc(50% - 4px);
  right: 22px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  #lp_main_wrap .lp_btn-arrow {
  	width: 90%;
    margin: 29% auto 6%;
  }
	#lp_main_wrap .lp_btn-arrow .lp_btn_content {
		margin-bottom: 5%;
	}
	#lp_main_wrap .lp_btn-arrow a {
    padding: 20px;
    font-size: 14px;
	}
	#lp_main_wrap .lp_btn-arrow a::after {
		width: 6px;
		height: 6px;
		top: calc(50% - 3px);
		right: 12px;
	}
}





/* ========== UTILITY ========== */

#lp_main_wrap .lp_viewpc_block {
  display: block;
}
#lp_main_wrap .lp_viewpc_inline {
  display: inline;
}
#lp_main_wrap .lp_viewpc_inline-block {
  display: inline-block;
}
#lp_main_wrap .lp_viewpc_none {
  display: none;
}
#lp_main_wrap .lp_viewsmp_block,
#lp_main_wrap .lp_viewsmp_inline,
#lp_main_wrap .lp_viewsmp_inline-block {
  display: none;
}
#lp_main_wrap .lp_viewxs_block,
#lp_main_wrap .lp_viewxs_inline,
#lp_main_wrap .lp_viewxs_inline-block {
  display: none;
}
@media (max-width: 767px) {
	#lp_main_wrap .lp_viewpc_block,
	#lp_main_wrap .lp_viewpc_inline,
	#lp_main_wrap .lp_viewpc_inline-block {
	  display: none;
	}
	#lp_main_wrap .lp_viewsmp_block {
	  display: block;
	}
	#lp_main_wrap .lp_viewsmp_inline {
	  display: inline;
	}
	#lp_main_wrap .lp_viewsmp_inline-block {
	  display: inline-block;
	}
	#lp_main_wrap .lp_viewsmp_none {
	  display: none;
	}
}
@media (max-width: 425px) {
	#lp_main_wrap .lp_viewxs_block {
	  display: block;
	}
	#lp_main_wrap .lp_viewxs_inline {
	  display: inline;
	}
	#lp_main_wrap .lp_viewxs_inline-block {
	  display: inline-block;
	}
	#lp_main_wrap .lp_viewxs_none {
	  display: none;
	}
}
