/*産後パターン2,3,4(スワイプ型)*/

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: white!important;
    overflow: hidden;
}

#main {
	max-width: 800px!important;
}

.keni-main_wrap {
	background: white!important;
}

.h1_title {
	display: none;
}

.keni-section_wrap {
	max-width: 800px!important;
}

.keni-main_inner {
	background: white!important;
}

.s2, .s3, .s4 {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    width: 100vw;
    max-width: 100%;
	height: auto;
    min-height: 100vh;
    padding: 0;
	margin: 0 auto;
	margin-bottom: 90px;
	box-sizing: border-box;
	overflow: hidden;
}

.slider1__container {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.slider1 {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

button.slider1__prev, button.slider1__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 7rem;
	cursor: pointer;
	transition: 0.6s;
	z-index: 10;
}

button.slider1__prev:hover, button.slider1__next:hover {
	opacity: 0.7;
}

.slider1 img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.slider1-img {
	position: relative;
	flex: 0 0 100%;
}

.slider1-img img {
	width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: contain;
}

.slick-slide {
	height: auto!important;
}

.footer__contact {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
    display: flex;
    flex-direction: column;
	width: 100%;
    max-width: 450px!important;
    margin-top: auto;
	z-index: 1000!important;
}

.footer__contact img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer__contact-btn {
	transition-duration: 0.6S;
}

.footer__contact-btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	transition-property: all;
}

.keni-footer_wrap {
	display: none!important;
}

@media (min-width: 601px) {
  .slider1__prev {
    left: 10px;
  }

  .slider1__next { 
    right: 10px;
  }
}

@media (max-width: 600px) {
  button.slider1__prev, button.slider1__next {
    display: none!important;
  }

	.footer__contact {
		width: 100%;
	}
}

@media (max-width: 389px) {
	.slider1-img img {
        max-height: 74vh;
    }

    .footer__contact img {
        max-width: 100%;
        max-height: 50px; 
    }
}
/*産後パターン2,3(スワイプ型)　ここまで*/