@charset "utf-8";

/*====================================================================================================

  共通部分

====================================================================================================*/

.l-pgTtl h2 {
	background: url("../image/visual.jpg") no-repeat center bottom;
}

.not-top .center-cols{
	width: 100%;
	max-width: 1124px;
	margin: 0 auto 120px;
}

.hdline{
	width: calc(100% - 100px);
	box-sizing: border-box;
	text-align: center;
	font-weight: 500;
	letter-spacing: .1ex;
	line-height: 1.2;
	margin: 0 auto 50px;
}

.hdline .lr-line{
	position: relative;
}
.hdline .lr-line::before{
	content: "";
	position: absolute;
	width: 30px;
	height: 1px;
	background-color: #0f9984;
	top: .75em;
	left: 0;
	-webkit-transform: translateX(-50px);
	transform: translateX(-50px);
}
.hdline .lr-line::after{
	content: "";
	position: absolute;
	width: 30px;
	height: 1px;
	background-color: #0f9984;
	top: .75em;
	right: 0;
	-webkit-transform: translateX(50px);
	transform: translateX(50px);
}

.gallery{
	display: grid;
}

@media screen and (min-width:641px) {
  .gallery{
		grid-template-columns: repeat(2,1fr);
		grid-column-gap: 40px;
		grid-row-gap: 40px;
  }
}

@media screen and (max-width:640px) {
	.hdline {
		width: 100%;
		z-index: 1;
		text-align: center;
	}
	.hdline::before {
		content: "";
		display: block;
		width: 40px;
		height: 4px;
		background-color: #0f9984;
		border-radius: 4px;
		margin: 12px auto;
	}
	.hdline .lr-line{
		position: relative;
		display: inline-block;
	}
	.hdline .lr-line::before,
	.hdline .lr-line::after{
		display: none;
	}
	.gallery{
		margin: 40px 0 80px;
		grid-template-columns: repeat(1,1fr);
		grid-column-gap: 0px;
		grid-row-gap: 30px;
	}
}


/*====================================================================================================

  イントロ

====================================================================================================*/

.pg-intro {	
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.pg-intro p {
	position: relative;
	top: 1em;
	line-height: 2;
	letter-spacing: .1ex;
}

.pg-intro .carefull {
	display: block;
	margin-bottom: .5em;
}

.pg-intro .round-wrap {
  width: 200px;
  height: 200px;
	margin: 0 auto;
	position: absolute;
	z-index: -1;
	top: 0;
	left: calc(50% - 100px);
}
.pg-intro .rotate {
  width: 100%;
  height: 100%;
  animation: rotate-anime 30s linear infinite;
}
@keyframes rotate-anime {
    0%  {transform: rotate(0);}
  100%  {transform: rotate(-360deg);}
}
.pg-intro .round {
  width: 100%;
  height: 100%;
  border-radius: 90% 70% 80% 70% / 90% 70% 80% 70%;
  animation: round_anime3 5s linear infinite;
  background-color: #E2F8F4;
}
@keyframes round_anime {
    0% { border-radius: 90% 70% 80% 70% / 90% 70% 80% 70%;}
   25% { border-radius: 70% 90% 70% 80% / 70% 90% 70% 80%;}
   50% { border-radius: 80% 70% 90% 70% / 80% 70% 90% 70%;}
   75% { border-radius: 70% 80% 70% 90% / 70% 80% 70% 90%;}
  100% { border-radius: 90% 70% 80% 70% / 90% 70% 80% 70%;}
}


/*====================================================================================================

  消毒・洗浄・滅菌サイクル

====================================================================================================*/

.cycle {
	text-align: center;
}

.cycle .desc {
	margin-bottom: 36px;
}


/*====================================================================================================

  感染予防対策 ５つのポイント

====================================================================================================*/

.point {
  background-color: #eafaff;
	padding: 36px;	
}

.point .point-secttl {
	width: 17em;
  background-color: #d4f3fd;
	padding: 0.5em .75em;
	margin: -80px auto 0;
	text-align: center;
	line-height: 1;
	border-radius: 50px;
	letter-spacing: 0.1ex;
}
.point .point-secttlnum {
	margin-left:-0.1em;
	font-size: 150%;
	color: #0f9984;
	letter-spacing: -0.1ex;
}

.point-box {
  background-color: #fff;
  position: relative;
	padding: 36px;
	margin-bottom: 48px;
}

.point-box-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.point-box-inner .point-txt{
	max-width: 640px;
	width: 100%;
	margin-right: 30px;
}
.point-box-inner .point-img{
	max-width: 288px;
}
.point-box-inner .point-img img{
	width: 100%;
}

@media screen and (max-width:1000px) {
.point-box-inner {
flex-wrap: wrap;
justify-content: center;
}
	
.point-box-inner .point-txt{
	max-width: 1000px;
	width: 100%;
	margin-right: 0px;
	margin-bottom: 30px;
}
}

.point-box:first-of-type {
	margin-top: 48px;
}
.point-box:last-of-type {
	margin-bottom: 0;
}

.point-box .point-ttl {
	width: 100%;
	position: relative;
	padding-left: 80px;
  color:#0f9984;
	text-align: left;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: .1ex;
	margin: 0 auto 1em;
}

.point-box .point-ttl::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(63,193,201,0.3);
	font-size: 150%;
}
.point-box .point-ttl::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: rgba(63,193,201,1);
}
    
.point-box .desc {
  margin-bottom: 24px;
  text-align:left;
}

.point-box .point-gallery {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.point-box .point-gallery-box01 {
	width: 100%;
	text-align: center;
}
.point-box .point-gallery-box02 {
	width: calc(50% - 18px);
}
.point-box .point-gallery-box03 {
	width: calc(33.33% - 24px);
}

.point-box .disposable-title {
	display: block;
	margin: 0.5em 0;
	color: #6682e3;
	line-height: 1.4;
}

.point-box .miele,
.point-box .movie-title {
	display: block;
	border-bottom: 1px solid rgba(63,193,201,0.3);
	margin-bottom: .75em;
}

.movie-box {
  position: relative;
  padding-top: 56.25%;
}
.movie-box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:800px) {
	.point .point-secttl {
		font-size: 3rem;
	}
	
	.point-box .point-ttl {
		font-size: 2.6rem;
	}
}

@media screen and (max-width:760px) {
	.point-box .point-gallery {
		flex-wrap: wrap;
	}
	.point-box .point-gallery-box02,
	.point-box .point-gallery-box03 {
		width: 100%;
		margin-bottom: 36px;
	}
	.point-box .point-gallery-box02:last-child,
	.point-box .point-gallery-box03:last-child {
		margin-bottom: 0;
	}
}

@media screen and (max-width:600px) {
	.point .point-secttl {
		width: 10em;
		line-height: 1.2;
		border-radius: 100px;
		margin-top: -100px;
	}
}

@media screen and (max-width:560px) {
	.point-box .point-ttl {
		padding-left: 60px;
	}
}

@media screen and (max-width:500px) {
	.point {
		padding: 20px;	
	}
	.point .point-secttl {
		margin-top: -70px;
	}
	.point-box {
		padding: 20px;
	}
	.point-box .point-ttl::after {
		width: 100%;
	}
}


/* -----------------------------------------------------------------------------
	responsive img-auto-width
 -------------------------------------------------------------------------------*/

.img-auto-width {
	position:relative;
	width:calc(100% + 30px);
}

.img-auto-width img, .img-auto-width figure, .img-auto-width .item {
	width:calc(25% - 30px);
	height:auto;
	margin-right:30px;
	margin-bottom:30px;
	float:left;
	transition:0.3s;
}

.img-auto-width.column3 img, .img-auto-width.column3 figure, .img-auto-width.column3 .item {
	width:calc(33.333% - 30px);
}

/* figure */

@media screen and (max-width: 900px) {
	.img-auto-width img, .img-auto-width figure, .img-auto-width .item { width:calc(33.333% - 30px); }
}

@media screen and (max-width: 800px) {
	.img-auto-width img, .img-auto-width figure, .img-auto-width .item { width:calc(50% - 30px); }
}

@media screen and (max-width: 750px) {
	.img-auto-width { width: 100% !important; }
	.img-auto-width img, .img-auto-width figure, .img-auto-width .item { width:100% !important; }
	.img-auto-width.column4 { width:calc(100% + 30px) !important; }
	.img-auto-width.column4 figure, .img-auto-width.column4 .item { width:calc(50% - 30px) !important; }
}

.img-auto-width figure { text-align:center; }

.img-auto-width figure img {
	width:100% !important;
	height:auto;
	margin-bottom:15px;
}

/* alternative */

.img-auto-width .item a {
	width:100%;
	height:300px !important;
	display:block;
	background-position:center top;
	background-repeat:no-repeat;
	background-size:contain;
}

/* alternative figure */

.img-auto-width .item figure {
	width:100% !important;
}

.img-auto-width .item figure a {
	margin-bottom:15px;
}