@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
	--main:#222;
	--gray: #535353;
	--lightgray:#a7a7a7;
	--itemcolor:#333;
	--green:#61897b;
	--blue:#7a8fa0;
	--brown:#c59d64;
    --pink:#a44f46;
	--bgcolor01: #ebe5dd;
	--bgcolor02: #e3c7bd;
	--font01:'Zen Kaku Gothic New', sans-serif;
	--font02: "Corinthia", cursive;
	--font03:"Noto Sans JP", sans-serif;
	--font04:'Josefin Sans', sans-serif;
	--size_content--l: 1520px;
	--size_content--full: 100%;
	--box-shadow:.8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #ebe5dd;
}
*:focus {
	outline: none;
}
a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	cursor:pointer;
}
@media only screen and (max-width: 599px) {
	.sp_only {
		display: block;
	}
	.sp_tablet_only {
		display: block;
	}
	.tablet_only {
		display: none;
	}
	.pc_only {
		display: none;
	}
	.pc_tablet_only {
		display:none !important;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.sp_only {
		display: none !important;
	}
	.sp_tablet_only {
		display: block;
	}
	.tablet_only {
		display: block;
	}
	.pc_only {
		display: block;
	}
	.pc_tablet_only {
		display:block;
	}
}
@media only screen and (min-width: 1025px) {
	.sp_only {
		display: none !important;
	}
	.sp_tablet_only {
		display: none;
	}
	.tablet_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	.pc_tablet_only {
		display:block;
	}
}


main {
    position: relative;
    background-color: var(--bgcolor01);
    overflow-x: clip;
    max-width: 100%;
    font-family: var(--font01);
    z-index: 4;
}
@media only screen and (max-width:750px) {
	main {
		margin: 740px auto 0;
	}
}
@media only screen and (min-width:751px) and (max-width:888px) {
	main {
		margin: 380px auto 0;
	}
}
@media only screen and (min-width:889px) and (max-width:1024px) {
	main {
		margin: 460px auto 0;
	}
}
@media only screen and (min-width: 1025px) {
	main {
		margin: 929px auto 0;
	}
}


.change-time1{
  animation-duration: 1s;
}
.change-time15{
  animation-duration: 1.5s;
}
.change-time2{
  animation-duration: 2s;
}

.delay-time1{
animation-delay: 1s;
}
.delay-time15{
animation-delay: 1.5s;
}
.delay-time2{
animation-delay: 2s;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-fill-mode:forwards;
    opacity:0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeInAnime{
	from {
		opacity: 0;
	}
	to {
	opacity: 1;
	}
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}


/* ------------------------------------------

 - opening

------------------------------------------ */
body.loading {
    overflow: hidden;
}
.opening-screen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #a44f46;
	z-index: 11;
}

.opening_logo {
	width: 200px;
	opacity: 0;
	transform: scale(0.8);
}


/* -------------------------------------------------

 - header_menu

------------------------------------------------- */
.header_menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;

	transition: all 0.3s;
	z-index: 99;
}
.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 27px;
}
@media only screen and (max-width:599px) {
	.header_inner {
		padding: 20px 18px;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	
}
@media only screen and (min-width:1025px) {
    
}

/* 
 header_logo
---------------------------- */
.header_logo {
	text-align: left;
}
.header_logo img {
	width: 58%;
}
@media only screen and (max-width:599px) {
	
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	
}
@media only screen and (min-width:1025px) {
	
}

/*
  header_nav
---------------------------- */
.header_nav ul {
	display: flex;
	gap: 30px;
}
.header_nav a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	color: var(--pink);
	font-family: var(--font04);
}
@media only screen and (max-width:599px) {
	.header_nav {
		display: none;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	
}
@media only screen and (min-width:1025px) {

    
}

/*
  hamburger
---------------------------- */
.hamburger {
	display: none;
	position: relative;
	width: 62px;
	height: 62px;
	border-radius: 48% 62% 52% 48% / 50% 48% 52% 50%;
	background: #777976;
	background: var(--pink);
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.15);
	z-index: 11;
}
.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	margin: 4px 0;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s;
}
.hamburger:hover span:nth-child(1) { 
	transform: translateX(2px); 
}
.hamburger:hover span:nth-child(2) { 
	transform: translateX(-2px); 
}
.hamburger:hover span:nth-child(3) { 
	transform: translateX(2px); 
}
.header_menu.open .hamburger span:nth-child(1) {
	transform: rotate(45deg) translate(5px,5px); 
}
.header_menu.open .hamburger span:nth-child(2) { 
	opacity: 0; 
}
.header_menu.open .hamburger span:nth-child(3) { 
	transform: rotate(-45deg) translate(5px,-5px); 
}
.header_menu.scrolled .header_nav {
	display: none;
}
.header_menu.scrolled .hamburger {
	display: flex;
}
@media only screen and (max-width:599px) {
	.hamburger {
		display: flex;
		width: 60px;
		height: 57px;
		border-radius: 48% 62% 52% 48% / 50% 48% 52% 50%;
		background: var(--pink);
	}
    .hamburger span {
		width: 30px;
		height: 1px;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	
}
@media only screen and (min-width:1025px) {
    
}
/*
  drawer
---------------------------- */
.drawer {
	position: fixed;
	top: 0;
	right: -250px;
	width: 110px;
	height: 100vh;
    background: linear-gradient(to bottom, #d3b1a573, #ebe5dd);
	transition: right 0.3s;
	padding: 140px 20px;
	box-shadow: -2px 0 5px rgba(0,0,0,0.2);
	z-index: 10;
}
.drawer ul {
	list-style: none;
	padding: 0;
}
.drawer li {
	margin-bottom: 20px;
}
.drawer a {
	text-decoration: none;
	color: #a44f46;
	font-size: 16px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	font-family: var(--font04);
}
.drawer.open {
	right: 0;
}
@media only screen and (max-width:599px) {
	.drawer {
		width: 94px;
		background: #e1cfc766;
		background: linear-gradient(to top, #d3b1a5b0, #ebe5ddbf);
		padding:120px 20px;
	}
	.drawer li {
		margin-bottom: 50px;
	}
	.drawer a {
		font-size: 14px;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.drawer {
		width: 154px;
		background: #e1cfc766;
	}
	.drawer a {
		font-size: 18px;
	}
}
@media only screen and (min-width:1025px) {
    
}



/* -------------------------------------------------

 - MV

------------------------------------------------- */
/* 
 bg-slider
---------------------------- */
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
.bg_swiper .swiper-slide-active .swiper-img,
.bg_swiper .swiper-slide-duplicate-active .swiper-img,
.bg_swiper .swiper-slide-prev .swiper-img {
	animation: zoomUp 9s linear 0s normal both;
}
.bg-slider {
    position: fixed;
    width: 100%;
    height: 90vh;
    top: 0;
    left: 0;
    z-index: 0;
}
.bg_swiper {
    filter:brightness(0.9);
}
.swiper-img {
	filter: none;	
}
@media only screen and (max-width:750px) {
	.swiper-slide img {
		max-width:100%;
	}
}
@media only screen and (min-width:751px) and (max-width:1024px) {
	.swiper-slide img {
		max-width:100%;
	}
}
@media only screen and (min-width:1025px) {

}


/* -------------------------------------------------

- main_title_area

------------------------------------------------- */
@media only screen and (max-width:599px) {
	.main_title_area {
		position: fixed;
		transform: translate(-50%, -50%);
		z-index: 2;
		left:50%;
		top: 45%;
		width: 100%;
		}
    .main_title_area h1 {
        width: 100%;
    }
	 .main_title_area h1 img {
		 width: 70%;
		 max-width:100%;
	}
}
@media only screen and (min-width:600px) and (max-width:750px) {
	.main_title_area {
		position: fixed;
		transform: translate(-50%, -50%);
		z-index: 2;
		left:50%;
		top: 40%;
		width: 100%;
		}
    .main_title_area h1 {
        width: 100%;
    }
	 .main_title_area h1 img {
		 width: 45%;
		 max-width:100%;
	}
}
@media only screen and (min-width:751px) and (max-width:1024px) {
	.main_title_area {
		position: fixed;
		transform: translate(-50%, -50%);
		z-index: 2;
		left:50%;
		top:20%;
		}
    .main_title_area h1 {
        width: 100%;
    }
	 .main_title_area h1 img {
		 width: 60%;
		 max-width:100%;
	}
}

@media only screen and (min-width:1025px) {
    .main_title_area {
		position: fixed;
		transform: translate(-50%, -50%);
		z-index: 2;
		left:50%;
		top:50%;
		}
    .main_title_area h1 {
        width: 100%;
    }
	 .main_title_area h1 img {
		 width: 70%;
		 max-width:100%;
	}
}

/* -------------------------------------------------

- arrow-Bottom

------------------------------------------------- */
@media only screen and (max-width:599px) {
	.arrow-bottom {
		position: absolute;
		width: 22px;
		height: 22px;
		margin: auto;
		top: 42px;
		border-left: 2px solid var(--gray);
		border-top: 2px solid var(--gray);
		z-index: 2;
		left: 50%;
		transform: rotate(-135deg) translateX(-50%);
		animation: move-y 0.8s infinite alternate ease-in-out;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.arrow-bottom {
		position: absolute;
		width: 26px;
		height: 25px;
		margin: auto;
		top: 58px;
		border-left: 2px solid #222;
		border-top: 2px solid #222;
		z-index: 5;
		left: 50%;
		transform: rotate(-135deg) translateX(-50%);
		animation: move-y 1s infinite alternate ease-in-out;
	}
}
@media only screen and (min-width:1025px) {
	.arrow-bottom {
		position: absolute;
		width: 20px;
		height: 20px;
		margin: auto;
		top: 1.1%;
		border-left: 2px solid var(--gray);
		border-top: 2px solid var(--gray);
		z-index: 5;
		left: 50%;
		transform: rotate(-135deg) translateX(-50%);
		animation: move-y 1s infinite alternate ease-in-out;
	}
}
@keyframes move-y {
	0% {
    	transform: translateX(-50%) translateY(0) rotate(-135deg);
		opacity:0.1;
	}
	50% {
		opacity:0.5;
	}
	
	100% {
		transform: translateX(-50%) translateY(15px) rotate(-135deg);
		opacity:1;
	}
}



/* ------------------------------------------ 
	
 - lead_area

------------------------------------------  */
.lead_area {
	width: 100%;
	position:relative;
	background: linear-gradient(to bottom, #d3b1a5, #ebe5dd);
}
.lead {
	width:100%;
	margin:0 auto;
	background:none;
	backdrop-filter:none;
	text-align:center;
}
.lead .small_tit {
	position:relative;
	padding-bottom:1.8rem;
	margin-bottom: 3rem;
	color: #737373;
	font-family: var(--font04);
}
.lead .small_tit::after {
	content: "";
	display: block;
	background-image: url(/idc_recommend/2025aw/images/icon.jpg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.lead > h2 {
	line-height:1;
	text-align:center;
	font-family: var(--font02);
	color: #737373;
	letter-spacing: 1px;
}
.lead > p {
	text-align:center;
	color: var(--gray);
}
@media only screen and (max-width: 599px) {
    .lead_area {
		padding: 120px 7vw 100px;
	}
	.lead .small_tit {
		padding-bottom: 2.8rem;
		margin-bottom: 3rem;
	}
	.lead .small_tit::after {
		width: 40px;
		height: 40px;
		top: 100%;
		left: 50%;
	}
	.lead > h2{
		font-size: 1.7rem;
		letter-spacing: 1px;
	}
	.lead > p{
		font-size: 16px;
		line-height: 2.2;
		margin-top: 3rem;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .lead_area {
		padding: 160px 7vw 100px;
	}
	.lead .small_tit {
		padding-bottom: 2.8rem;
		margin-bottom: 5rem;
	}
	.lead .small_tit::after {
		width: 40px;
		height: 40px;
		top: 100%;
		left: 50%;
	}
	.lead > h2{
		font-size: 1.7rem;
		letter-spacing: 1px;
	}

	.lead > p{
		font-size: 18px;
		line-height: 2.2;
		margin-top: 3rem;
	}
}
@media only screen and (min-width: 1025px) {
	.lead_area {
		padding: 13rem 7vw 8rem;
	}
	.lead .small_tit {
		padding-bottom: 3rem;
		margin-bottom: 3rem;
	}
	.lead .small_tit::after {
		width: 40px;
		height: 40px;
		top: 100%;
		left: 50%;
	}
	.lead > h2{
		font-size: 2rem;
		letter-spacing: 1px;
	}
	.lead > p{
		font-size: 22px;
		line-height: 2.2;
		margin-top: 3rem;
	}
}

/* ----------------------------------------------

- sleep_well_area / sec01

----------------------------------------------- */
.sleep_well_area {
    background-image: url(/idc_recommend/2025aw/images/sec_lead_bg.jpg);
    background-repeat: repeat;
    background-size: auto;
}
@media only screen and (max-width: 599px) {
    .sleep_well_area {
        padding: 0 0 20px;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .sleep_well_area {
        padding: 55px 0 0;
 }
}
@media only screen and (min-width: 1025px) {
	.sleep_well_area {
        background-size: auto;
    }
}


/* ----------------------------------------------

- living_well_area / sec02

----------------------------------------------- */
@media only screen and (max-width: 599px) {
    .living_well_area {
        padding: 0 0 20px;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    
}
@media only screen and (min-width: 1025px) {

}


/* ----------------------------------------------

- alonetime_well_area / sec03

----------------------------------------------- */
@media only screen and (max-width: 599px) {
    
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    
}
@media only screen and (min-width: 1025px) {

}



/* --------------------------------
  cat_contents / common
-------------------------------- */
.cat_contents {
	position:relative;
}
.cat_contents__image {
	overflow: hidden;
	max-height: 100%;
	position: relative;
	background-size: cover;
	background-repeat:no-repeat;
}
.cat_contents__lead {
    width: 90%;
    position: absolute;
    text-align: left;
	color: var(--gray);
    line-height: 1.7;
    padding: 2rem 2rem;
}
.cat_contents__subheadding {
	 display:block;
	 font-family: var(--font04);
}
.sec01 .cat_contents__subheadding {
	 color: var(--green);
}
.sec02 .cat_contents__subheadding {
	color: var(--blue);
}
.sec03 .cat_contents__subheadding {
	color: var(--brown);
}
.cat_contents__title {
	font-size: 35px;
	font-size: clamp(10px, 35px, 36px);
	font-weight: normal;
	display: flex;
	position:relative;
}
.cat_contents__subtitle::after {
	position: absolute;
	content: '';
	background: #737373;
	margin: 0 auto;
	display: block;
}
.cat_contents__text {
	font-size: 18px;
	font-size: clamp(10px, 18px, 19px);
}
@media only screen and (max-width: 599px) {
	.cat_contents {
        background: var(--bgcolor01);
    }
    .cat_contents__image {
        width: 100%;
        height: 60vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .sec01 .cat_contents__image {
        background-image: url(/idc_recommend/2025aw/images/sec01_lead_item_sp.jpg);
    }
	.sec02 .cat_contents__image {
        background-image: url(/idc_recommend/2025aw/images/sec02_lead_item_sp.jpg);
    }
	.sec03 .cat_contents__image {
        background-image: url(/idc_recommend/2025aw/images/sec03_lead_item_sp.jpg);
    }
	.cat_contents__lead {
	    width: 87%;
	    padding: 7vh 5vw 0;
	    text-align: center;
	    background: var(--bgcolor01);
	    position: relative;
	    left: 50%;
	    transform: translate(-50%, -50%);
	    color: var(--gray);
	    line-height: 1.7;
	    -webkit-mask-composite: source-in;
	    mask-image:
			radial-gradient(circle 8px at 90% 10%, transparent 99%, black 100%);
	    mask-repeat: no-repeat;
	    mask-composite: intersect;
}
	.sleep_well_area .cat_contents__lead {
		top: 110px;
	}
	.living_well_area .cat_contents__lead {
		top: 125px;
	}
	.me_time_well_area .cat_contents__lead {
		top: 108px;
	}
	.cat_contents__subheadding {
		margin-bottom: 30px;
	}
	.cat_contents__title {
		font-size: 22px;
		flex-direction: column;
		margin-bottom: 18px;
	}
	.cat_contents__subtitle {
		font-size: 13px;
		padding-top: 6px;
	}
	.cat_contents__text {
		font-size: 14px;
		line-height: 2.5;
		border-bottom: 1px dashed var(--lightgray);
		display: inline;
		padding-bottom: 5px;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .cat_contents {
        background: var(--bgcolor01);
    }
    .cat_contents__image {
        width: 100%;
        height:550px;
        background-size: cover;
        background-position: center 30%;
        background-repeat: no-repeat;
    }
    .sec01 .cat_contents__image {
        background-image: url(/idc_recommend/2025aw/images/sec01_lead_item_sp.jpg);
    }
	.sec02 .cat_contents__image {
        background-image: url(/idc_recommend/2025aw/images/sec02_lead_item_sp.jpg);
    }
	.sec03 .cat_contents__image {
        background-image: url(/idc_recommend/2025aw/images/sec03_lead_item_sp.jpg);
    }
	.cat_contents__lead {
		width: 90%;
		padding: 6vh  6vw 0;
		text-align: center;
		background: var(--bgcolor01);
		position: relative;
		top: 50px;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-mask-composite: source-in;
	    mask-image:
			radial-gradient(circle 14px at 95% 15%, transparent 99%, black 100%),
			radial-gradient(circle 14px at 5% 15%, transparent 99%, black 100%);
	    mask-repeat: no-repeat;
	    mask-composite: intersect;
	}
	.cat_contents__subheadding {
		margin-bottom: 10px;
	}
	.cat_contents__title {
		font-size: 24px;
		flex-direction: column;
		margin-bottom: 18px;
	}
	.cat_contents__subtitle {
		font-size: 14px;
		padding-top: 6px;
	}
	.cat_contents__text {
		font-size: 16px;
		line-height: 1.7;
	}
}
@media only screen and (min-width: 1025px) {
    section:nth-child(even) .cat_contents {
		flex-direction: row-reverse;
	}
	.sec01 .cat_contents__image {
		background: url(/idc_recommend/2025aw/images/sec01_lead_item.webp);
	}
	.sec02 .cat_contents__image {
		background: url(/idc_recommend/2025aw/images/sec02_lead_item.webp);
	}
	.sec03 .cat_contents__image {
		background: url(/idc_recommend/2025aw/images/sec03_lead_item.webp);
	}
	.cat_contents__image {
		width: 66.6666%;
		height: 770px;
		max-height: 770px;
		background-size: cover;
		background-position: center;
	}
    .cat_contents__lead {
		width: 540px;
		background: #ebe5dd;
		bottom: 3%;
		right: 4%;
		padding: 4rem 4.5rem;
		transition-delay: 0.2s;
		}
	 .cat_contents__subheadding {
		 margin-bottom: 30px;
	}
	.cat_contents__title {
		font-size: 35px;
		font-size: clamp(10px, 35px, 36px);
		line-height: 1.5;
		letter-spacing: 0.5px;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: flex-start;
	}
    .cat_contents__subtitle {
		font-size: 14px;
        font-size: clamp(10px, 14px, 14px);
        margin: 10px 0 40px;
    }
	.cat_contents__subtitle::after {
		width: 20%;
		height: 1px;
		left: 0;
		top:100%;
		display: none;
	}
    .cat_contents__text {
		font-size: 18px;
        font-size: clamp(10px, 18px, 19px);
        margin-top: 26px;
        line-height: 2.2;
        border-bottom: 1px dashed var(--lightgray);
        display: inline;
        padding-bottom: 7px;
    }
}


/* --------------------------------
 grid_container 
-------------------------------- */
.grid_container {
	display: flex;
	margin: 0 auto;
	background-image: url(/idc_recommend/2025aw/images/sec_lead_bg.jpg);
	background-repeat: repeat;
	background-size: auto;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.grid_container_item__image img {
	max-width:100%;
	margin-left: 0;
}
.grid_container_item_link {
	display: block;
}
.grid_container_item_col {
	display:flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	align-items: stretch;
	text-align: left;
	font-weight:normal;
	color: var(--itemcolor);
}
.grid_container_item__text {
	text-align: left;
	line-height: 1.7;
}
.grid_container_item__name .circle {
	display:inline-block;
}
.sec01 .grid_container_item__name .circle {
	color: var(--green);
}
.sec02 .grid_container_item__name .circle {
	color: var(--blue);
}
.sec03 .grid_container_item__name .circle {
	color: var(--brown);
}
@media only screen and (max-width: 599px) {
    .grid_container {
		flex-direction:column;
        padding: 0 7vw 2vh;
	}
	.grid_container_item {
		margin-bottom:30px;
		padding-bottom:30px;
		border-bottom: 1px dashed var(--lightgray);
		border-left: none;
		width: 100%;
	}
	.grid_container_item__image {
	   margin-bottom: 16px;
	}
	.grid_container_item__text {
		font-size: 14px;
		text-align: left;
		line-height: 1.7;
		margin-bottom:20px;
	}
	.grid_container_item__name {
		font-size: 18px;
		margin-bottom:15px;
		text-indent: -4px;
		padding-left: 7px;
	}
	.grid_container_item__name .circle {
		font-size:14px;
	}
	.grid_container_item__name span {
		font-size:13px;
	}
	.grid_container_item__size {
	}
	.grid_container_item__price {
		font-size:16px;
		margin-bottom: 20px;
	}
	.grid_container_item__price span {
		font-size:13px;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .grid_container {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .grid_container_item {
        width: 50%;
        border-bottom: 1px dashed #bdb8b7;
    }
	.grid_container_item:last-child {
		border-bottom:none;
	}
	.sleep_well_area .grid_container_item:nth-last-of-type(odd),
	.living_well_area .grid_container_item:nth-last-of-type(odd),
	.me_time_well_area .grid_container_item:nth-last-of-type(odd){
        border-right: 1px dashed #bdb8b7;
        border-top:none;
	}
    .grid_container_item__image {
        padding: 5vh 5vw 0;
    }
	.grid_container_item_col {
		flex-direction: column;
		flex-wrap: wrap;
		align-content: center;
		align-items: stretch;
		padding: 5vh 5vw 5vh;
	}
    .grid_container_item__text {
		text-align: left;
		font-size: 14px;
		/*margin-bottom: 20px;*/
		line-height: 1.7;
    }
	.grid_container_item__name {
		font-size: 18px;
		margin-bottom: 7px;
		line-height: 1.6;
		text-indent: -3px;
		padding-left: 6px;
	}
    .grid_container_item__name .circle {
		display:inline-block;
		font-size:14px;
	}
    .grid_container_item__name span{
		font-size:14px;
	}
	.grid_container_item__size {
		font-size:14px;
	}
    .grid_container_item__price {
		font-size: 16px;
		text-align: right;
		margin-bottom: 20px;
	}
	.grid_container_item__price span {
		font-size:13px;
	}
}
@media only screen and (min-width: 1025px) {
    .grid_container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .grid_container_item {
        width: 33.3%;
        border-bottom: 1px dashed #bdb8b7;
        border-left: 1px dashed #bdb8b7;
    }
    .sec01 .grid_container_item:nth-child(7),
	.sec01 .grid_container_item:nth-child(8),
	.sec02 .grid_container_item:nth-child(7),
	.sec02 .grid_container_item:nth-child(8){
		border-bottom:none;
	}
    .grid_container_item__image {
        padding: 8vh 5vw 0;
    }
	.grid_container_item_col {
		flex-direction: column;
		flex-wrap: wrap;
		align-content: center;
		align-items: stretch;
		padding: 5vh 5vw 7vh;
	}
    .grid_container_item__text {
		text-align: left;
		font-size: 14px;
		/*margin-bottom: 40px;*/
		line-height: 1.7;
    }
	.grid_container_item__name {
		font-size: 18px;
		margin-bottom: 12px;
		line-height: 1.6;
		text-indent: -3px;
		padding-left: 6px;
	}
    .grid_container_item__name .circle {
		display:inline-block;
		font-size:14px;
	}
    .grid_container_item__name span{
		font-size:14px;
	}
	.grid_container_item__size {
		font-size:14px;
	}
    .grid_container_item__price {
		font-size: 16px;
		text-indent: 13px;
		text-align: right;
		margin-bottom: 30px;
	}
	.grid_container_item__price span {
		font-size:13px;
	}
}



@media (max-width: 599px) {
  .grid_container_item.fade-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }

  .grid_container_item.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
}


/*
 grid_container_item__link_btn
---------------------------- */
.grid_container_item__link_btn {
	position: relative;
	display: inline;
	width: 100%;
	height: 100%;
}
.grid_container_item__link_btn::before {
	content: "";
	position: fixed;
	width: 0;
	height: 0;
	transform: translate(50%, 50%);
	z-index:3;
	color:#fff;
}
.grid_container_item__link_btn::after {
	content: "";
	position: fixed;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 80px 80px 0 0;
	border-color: transparent #d3b67a transparent transparent;
	transition: border-color 0.3s ease;
	transform: translate(50%, 50%);
	z-index:2;
}
.grid_container_item__link_btn:hover::after {
	border-color: transparent #fff transparent transparent;
}
.sec01 .grid_container_item__link_btn:hover::before {
	color:var(--green);
}
.sec02 .grid_container_item__link_btn:hover::before {
	color:var(--blue);
}
.sec03 .grid_container_item__link_btn:hover::before {
	color:var(--brown);
}
.sec01 .grid_container_item__link_btn::after {
	border-color: transparent var(--green) transparent transparent;
}
.sec02 .grid_container_item__link_btn::after {
	border-color: transparent var(--blue) transparent transparent;
}
.sec03 .grid_container_item__link_btn::after {
	border-color: transparent var(--brown) transparent transparent;
}
.grid_container_item__link_btn:hover::after {
	border-color: transparent #fff transparent transparent;
}
@media only screen and (max-width:599px) {
	.grid_container_item__link_btn::before {
		content:"more";
		bottom: 27px;
		right: 41px;
		font-size: 14px;
	}
	.grid_container_item__link_btn::after {
		bottom: 34px;
		right: 39px;
		border-width: 68px 78px 0 0;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.grid_container_item__link_btn::before {
		content:"more";
		bottom: 27px;
		right: 41px;
		font-size: 14px;
	}
	.grid_container_item__link_btn::after {
		bottom: 34px;
		right: 39px;
		border-width: 68px 78px 0 0;
	}
}
@media only screen and (min-width:1025px) {
	.grid_container_item__link_btn::before {
		content:"more";
		bottom: 30px;
		right: 48px;
		font-family: var(--font04);
		font-size: 16px;
	}
	.grid_container_item__link_btn::after {
		bottom: 40px;
		right: 44px;
		border-width: 80px 90px 0 0;
	}
    .sec01 .grid_container_item__link_btn:hover::before {
		color:var(--green);
	}
	.sec02 .grid_container_item__link_btn:hover::before {
		color:var(--blue);
	}
    .sec03 .grid_container_item__link_btn:hover::before {
		color:var(--brown);
	}
    .sec01 .grid_container_item__link_btn::after {
		border-color: transparent var(--green) transparent transparent;
	}
	.sec02 .grid_container_item__link_btn::after {
		border-color: transparent var(--blue) transparent transparent;
	}
    .sec03 .grid_container_item__link_btn::after {
		border-color: transparent var(--brown) transparent transparent;
	}
	.grid_container_item__link_btn:hover::after {
		border-color: transparent #fff transparent transparent;
	}
}


/*
 grid_container_item line
---------------------------- */
@media only screen and (max-width:599px) {
	
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	
}
@media only screen and (min-width:1025px) {
	
}

/*
 owl-dots
---------------------------- */
.owl-dots{
	display: flex;
	justify-content: flex-start;
	bottom: 19px;
	position: absolute;
	right: 8px;
}
.owl-dots button{
	font-size: 0;
	background: transparent;
	border:transparent;
	position: relative;
	display: block;
	height : 2px;
	width: 31px;
	margin-right: 10px;
	padding: 0;
	background-color: rgba(255, 255, 255, 73%) !important;
	cursor: pointer;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}
.owl-dots button.active{
	background-color: #737373 !important;
}
.owl-nav {
    display:none;
}



/* ------------------------------------------ 
	
 - TO TOP

------------------------------------------ */
@media only screen and (max-width: 599px) {
	#page-top a {
		display: block;
		transition:all 0.3s;
	}
	#page-top a img {
		width: 16%;
	}
	#page-top a:hover {
	}
	#page-top {
		position: fixed;
		right: 5%;
		bottom: 6px;
		z-index: 10;
		opacity: 0;
		text-align: right;
	}
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
	#page-top a {
		display: block;
		transition:all 0.3s;
	}
	#page-top a img {
		width: 30%;
	}
	#page-top a:hover {
	}
	#page-top {
		position: fixed;
		right: 4%;
		bottom:14px;
		z-index: 10;
		opacity: 0;
		text-align: right;
	}
}
@media only screen and (min-width: 1025px) {
	#page-top a {
		display: block;
		transition:all 0.3s;
	}
	#page-top a img {
		width: 20%;
	}
	#page-top a:hover {
	}
	#page-top {
		position: fixed;
		right: 1.7%;
		bottom: 14px;
		z-index: 10;
		opacity: 0;
		text-align: right;
	}
}

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }

  to {
    opacity: 1;
  transform: translateY(100px);
  }
}




/* ------------------------------------------ 
	
 - SNS FOOOTER

------------------------------------------ */
/*
 snsicon_wrap
---------------------------- */
.snsicon_wrap {
	z-index: 3;
	position: absolute;
	width: 100%;
	text-align: center;
	padding: 4rem 0 1.5rem;
}
.snsicon_wrap img {
	width: 26px;
}
.snsicon_wrap ul {
	text-align: center;
	display: flex;
	flex-flow:row nowrap;
	align-items: center;
	width: 380px;
}
.snsicon_wrap ul li {
	width: 7%;
}
@media only screen and (max-width:599px) {
	.snsicon_wrap {
		padding: 2rem 0 1.5rem;
	}
	.snsicon_wrap ul {
		justify-content: space-evenly;
		padding: 0 26px;
	}	
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.snsicon_wrap {
		padding: 3rem 0 1.5rem;
	}
	.snsicon_wrap ul {
		justify-content:space-around;
		margin: 0.5em auto 0;
	}
}
@media only screen and (min-width:1025px) {	
	.snsicon_wrap ul {
		justify-content:space-around;
		margin: 0.5em auto 0;
	}
}

/*
 footer
---------------------------- */
footer {
	position: absolute;
	width: 100%;
	height:8vh;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(to bottom,  #ebe5dd, #d3b1a5);
}
footer p img {
	width:30%;
}
@media only screen and (max-width:599px) {
	footer {
        padding-top: 104px;
        padding-bottom: 110px;
    }
	footer p:first-child {
		margin-top:0;
	}
	footer p:last-child {
		margin-top:0.5rem;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	footer {
		padding-top: 120px;
		padding-bottom: 110px;
		height: 25vh;
	}
	footer p:first-child {
		margin-top:0;
	}
	footer p:last-child {
		margin-top:1rem;
	}
}
@media only screen and (min-width:1025px) {
	footer {
        padding-top: 130px;
        padding-bottom: 110px;
    }
}





/* ------------------------------------------ 

 - showroom_area

 ------------------------------------------  */
/*
 showroom_area
---------------------------- */
@media only screen and (max-width:599px) {
	.showroom_area {
        padding: 10px 0 44px;
    }
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.showroom_area {
		padding-top: 70px;
		}
}
@media only screen and (min-width:1025px) {
	.showroom_area {
		padding-top: 120px;
    }
}
/*
 showroom_area_tit
---------------------------- */
.showroom_area_tit {
	font-family: var(--font04);
	color: var(--gray);
}
@media only screen and (max-width:599px) {
	.showroom_area_tit {
		font-size: 26px;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.showroom_area_tit {
		font-size: 26px;
	}
}
@media only screen and (min-width:1025px) {
	.showroom_area_tit {
	    font-size: 40px;
	    letter-spacing: 6px;
	}
}

/*
 showroom_slider
---------------------------- */
.showroom_slider {
	overflow: hidden;
}
.showroom_slider .swiper {
	overflow: visible;
}

/*
 l-section / l-inner
---------------------------- */
.l-section {
}
.l-section .l-inner {
	position: relative;
	box-sizing: content-box;	
	margin: 0 auto;
}

@media only screen and (max-width:599px) {
	.l-section .l-inner {
		padding: 28px 46px 70px;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.l-section .l-inner {
		max-width: 1024px;
		padding: 38px 46px 71px;
	}
}
@media only screen and (min-width:1025px) {
	.l-section .l-inner {
		max-width: 1400px;
		padding: 80px 200px 80px;
	}
}
/*
 swiper-slide
---------------------------- */
.swiper-slide {
    height: auto;
}

/*
 slide
---------------------------- */
.showroom_slider .slide {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.1s ease;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    height: 100%;
    background: #fff;
}
.showroom_slider .swiper-slide:not(.swiper-slide-visible) .slide {
    pointer-events: none;
    opacity: 0.3;
}
.showroom_slider .slide:hover {
      -webkit-transform: translateY(-12px);
              transform: translateY(-12px);
}

/*
 slide-media
---------------------------- */
.showroom_slider .slide-media {
	position: relative;
	overflow: hidden;
	padding-top: 62.5%;
}
.showroom_slider .slide-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	height: calc(100% + 16px);
}


/*
 slide-content
---------------------------- */
.showroom_slider .slide-content {
    padding: 24px 24px 26px;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.showroom_slider .showroom_name {
	line-height: 1.6;
	overflow: hidden;
	margin-bottom: 20px;
	padding: 0 23px;
	font-size: 18px;
}
.showroom_slider .showroom_address {
	font-size: 13px;
	margin-bottom: 24px;
}
.showroom_slider .showroom_hours {
	font-size: 14px;
	margin-bottom: 3px;
}
.showroom_slider .showroom_phonenumber {
	font-size: 14px;
}
@media only screen and (max-width:599px) {
	
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	
}
@media only screen and (min-width:1025px) {
	
}


/*
 button-prev / button-next
---------------------------- */
.showroom_slider .swiper-button-prev, 
.showroom_slider .swiper-button-next {
    display: grid;
    place-content: center;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
 }
.showroom_slider .swiper-button-prev::before,
.showroom_slider .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0px;
    content: "";
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}
.showroom_slider .swiper-button-prev::after {
    transform: rotate(0deg);
    font-size: 2rem;
    color: #fff;
	padding-right:5px;
}
.showroom_slider .swiper-button-next::after {
    transform: rotate(0deg);
    font-size: 2rem;
    color: #fff;
	padding-left:5px;
}
.showroom_slider .swiper-button-prev,
.showroom_slider .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
}
.showroom_slider .swiper-button-prev::before,
.showroom_slider .swiper-button-next::before {
    background-color: rgb(164 79 70 / 66%);
}
.showroom_slider .swiper-button-prev::after, 
.showroom_slider .swiper-button-next::after {
    border-color: #fff;
}
.showroom_slider .swiper-button-prev {
    right: calc(80% - 1.6rem);
}
.showroom_slider .swiper-button-next {
    left: calc(80% - 1.6rem);
}
@media only screen and (max-width:599px) {
	.showroom_slider .swiper-button-prev {
      right: calc(100% - 5.2rem);
    }
    .showroom_slider .swiper-button-next {
      left: calc(100% - 5.2rem);
    }
	.showroom_slider .swiper-button-prev, 
	.showroom_slider .swiper-button-next {
		width: 3rem;
		height: 3rem;
	}
	.showroom_slider .swiper {
      padding: 0;
    }
}
@media only screen and (min-width:600px) and (max-width:1024px) {
    .showroom_slider .swiper-button-prev, 
	.showroom_slider .swiper-button-next {
		width: 4rem;
		height: 4rem;
	}
	.showroom_slider .swiper {
      padding: 0 3.2rem;
    }
}
@media only screen and (min-width:1025px) {
	
}


/*
 pagination
---------------------------- */
.showroom_slider .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--pink);
}
/*
 swiper-button-disabled
---------------------------- */
.showroom_slider .swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}
  

  
@media only screen and (max-width:599px) {
	.note{
		font-size: 12px;
		text-align: left;
		padding: 2em;
	}
}
@media only screen and (min-width:600px) and (max-width:1024px) {
	.note{
		font-size: 12px;
		text-align: left;
		padding: 2em;
	}
}
@media only screen and (min-width:1025px) {
	.note{
		font-size: 12px;
		text-align: right;
		padding: 2vw 5vw;
	}
}
  
  
  


  



  

