﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
textarea,
p,
th,
td,
img {
  margin: 0;
  /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
  padding: 0;
  /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
  border: 0;
  /*境界線指定*/
}

* {
  box-sizing: border-box
}

html {
  font-size: 62.5%;
}

body {
  line-height: 2;
  /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  color: #333333;
  /*文字色指定*/
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  font-feature-settings: "palt";

}

ol,
ul {
  list-style: none;
  /*リストマーカーの種類指定(noneはなし)*/
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.color1 {
  color: #FF0033;
  /*文字色指定*/
}

.sp {
  display: none;
}

.ssp {
  display: none;
}

@media screen and  (max-width:500px) {
  .sp {
    display: contents;
  }

  .ssp {
    display: block;
  }

  .pc {
    display: none;
  }
}


/* ヘッダー */
.navbar{
  width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1em;
}


/*  スライダー  */
.slider {
  margin-bottom: em;
  height: auto;
}

/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
  color: #000;
}

/*左右の矢印の位置を変える*/
.slick-next {
  right: 18%;
  z-index: 99;
}

.slick-prev {
  left: 18%;
  z-index: 100;
}

@media screen and  (max-width:1280px) {
  .slick-next {
    right: 7%;
  }

  .slick-prev {
    left: 7%;
  }
}

/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
  color: #666;
}

/*スライド画像の横幅可変*/
img {
  max-width: 100%;
  height: auto;
}

.slick-slide:not(.slick-center) {
  -webkit-filter: opacity(50%);
  -moz-filter: opacity(50%);
  -o-filter: opacity(50%);
  -ms-filter: opacity(50%);
  filter: opacity(50%);
  transition: 0.2s linear;
}


.slick01 {
  opacity: 0;
  /* overflow: visible;
 */
}

.slick-initialized {
  opacity: 1;
  transition: opacity .3s linear;
}


@media screen and  (max-width:500px) {
  .slider {
    margin-bottom: 4rem;
    height: 100%;
  }

  .slick-slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
  }

  .slick-slide:not(.slick-center) {
    -webkit-filter: opacity(100%);
    -moz-filter: opacity(100%);
    -o-filter: opacity(100%);
    -ms-filter: opacity(100%);
    filter: opacity(100%);
    transition: 0.2s linear;
  }

}

/* ----- レイアウト ----- */
#container {
  max-width: 1100px;
  margin: 5rem auto;
  display: flex;
  width: 100%;
  overflow-x: hidden;
}

#container a:hover img {
  /*画像にマウスをのせた時半透明にする*/
  filter: Alpha(opacity=70);
  /*視覚効果(IE独自) Alphaは透過表示 opacityは開始透明度*/
  opacity: 0.7;
  /*要素の透明度*/
}

#content {
  margin: 0 auto;
}

@media screen and  (max-width:767.98px) {
  #content {
    width: 98%;
    margin: 0 auto 3rem auto;
  }
}


  .infooter {
    padding: 1rem
  }

  .infooter ul {
    flex-wrap: wrap;
    font-size: 90%;
    width: 100%;
  }

  .copy {
    font-size: 80%;
    text-align: right
  }

  #container {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }




/* ----- コンテンツ ----- */
section {
  margin-bottom: 40px;
}
footer section {
  margin-bottom: 0px;
}

ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 auto 10em auto;
  width: 90%;
}

ul.menu li {
  width: 45%;
  height: 120px;
  border: #359ECA 4px solid;
  border-radius: 10px;
  margin-bottom: 1.5em;
  padding: 1em 1.5em;
  box-sizing: border-box;
  font-size: 1.2em;
}

@media screen and  (max-width:500px) {
  ul.menu {
    width: 100%;
  }
  
  ul.menu li {
    width: 45%;
    height: 100px;
    border: none;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 1.5em;
    padding: 0.2em 0.5em;
    box-sizing: border-box;
    font-size: 0.8em;
  }
}

ul.menu li p:first-child {
  font-weight: bolder;
}

ul.menu li:first-child {
  background-image: url(../img/b-cleaner.png);
  background-size: 25%;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: top;
}

ul.menu li:nth-child(2) {
  background: url(../img/ionea.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
}

ul.menu li:nth-child(3) {
  background-image: url(../img/co2-2.png);
  background-size: 25%;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: top;
}

ul.menu li:nth-child(4) {
  background-image: url(../img/poster2.jpg), url(../img/poster1.jpg);
  background-size: 25%;
  background-repeat: no-repeat, no-repeat;
  background-position-x: 62%, 98%;
  background-position-y: -30%;
}

ul.menu li:nth-child(5) {
  background-image: url(../img/pen-mask.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: center;
}

ul.menu li:nth-child(6) {
  background-image: url(../img/stand.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: center;
}


@media screen and  (max-width:500px) {
  ul.menu li {
    display: flex;
    flex-direction: column;
    padding-top: 10%;
  }

  ul.menu li p {
    line-height: 1.0em;
    padding: 0.2em 0.5em;
    margin-bottom: 0.25em;
    display: inline-block;
    width: fit-content;
    background: #FFF;
  }

  ul.menu li:first-child {
    background-size: 40%;
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: -10%;
  }

  ul.menu li:nth-child(2) {
    background-size: cover;
  }

  ul.menu li:nth-child(3) {
    background-image: url(../img/co2-1.png);
    background-size: 35%;
    background-position-x: 90%;
    background-position-y: center;
  }

  ul.menu li:nth-child(4) {
    background-image: url(../img/poster2.jpg);
    background-size: 45%;
    background-position-x: 90%;
    background-position-y: center;
  }
  ul.menu li:nth-child(5) {
    background-size: 50%;
    background-position-x: right;
    background-position-y: center;
  }
  
  ul.menu li:nth-child(6) {
    background-size: 50%;
    background-position-x: right;
    background-position-y: center;
  }
  
}

.waku {
  width: 84%;
  border-radius: 10px;
  border: #359ECA 2px solid;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  box-sizing: border-box;
  position: relative;
  font-size: 1.2em;
  padding-bottom: 2.5em;

}

.waku h2 {
  color: #FFF;
  width: 100%;
  text-align: center;
  background-color: #359ECA;
  border-radius: 7px 7px 0 0;
  margin-bottom: 1em;
  padding: 0.3em;
}

.waku p {
  margin-left: 9%;
}

.waku img {
  width: 38%;
  border-radius: 25px;
  height: auto;
  margin-bottom: 1em;
}

.waku a {
  width: 70%;
  background-color: #359ECA;
  border: #359ECA 2px solid;
  color: #FFF;
  text-align: center;
  padding: 0.8em 1em;
  margin: 1em auto 1em auto;
  border-radius: 50px;
}
.waku a:hover{
  background-color: #f3fbff;
  color: #359ECA;
}

section{
  margin-bottom: 10em;
}

@media screen and  (max-width:500px) {
  section{
    margin-bottom: 5em;
  }
  
  .waku {
    flex-direction: column;
    width: 95%;
  }

  .waku h2 {
    font-size: 1.20em;
    line-height: 1.5em;
  }

  .waku p {
    text-align: center;
    font-size: 0.8em;
    width: 100%;
    padding: 0 1em 1em 1em ;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .waku img {
    width: 100%;
    border-radius: 25px;
    height: auto;
    padding: 0.5em 1em;
    margin: 1em auto;
  }

  .waku img.simg {
    width: 50% !important;
    height: auto;
    margin: 0 auto;
    object-fit: scale-down;
  }
}

@media screen and  (max-width:500px) {
.waku a {
  width: 90%;
font-size: 0.8em;
}
}
/* b-cleaner */
.title-p {
  position: absolute;
  top: -25%;
  left: -8%;
  width: 23% !important;
  transform: rotate(10deg);
}

div.size{
  width: 100%;
  text-align: center;
  margin-bottom: 1em;

}
div.size p{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center !important;
  width: 100%;
  display: inline;
  background: linear-gradient(transparent 60%, #f7ff60 0%);
  word-spacing : 1.25em;
  }
  
  @media screen and  (max-width:500px) {
    .title-p {
      top: -5%;
      left: -8%;
      width: 25% !important;
      transform: rotate(10deg);
    }
  
  div.size p{
    text-align: center;
    padding: 0;
    font-size: 2rem;
    width: fit-content;
    margin: 0 auto;
    }
  }


/* イオニアミスト */
.title-p2 {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;
  border-radius: 50% !important;
}

@media screen and  (max-width:500px) {
  .title-p2 {
    top: -5%;
    left: -8%;
    width: 25% !important;
    transform: rotate(10deg);
  }
}
/* co2マネージャー */
.title-p3 {
  position: absolute;
  top: -25%;
  left: -10%;
  width: 23% !important;
}
@media screen and  (max-width:500px) {
  .title-p3 {
    top: -5%;
    left: -8%;
    width: 25% !important;
    transform: rotate(10deg);
  }
}
/* チラシ・ポスター */
.title-p4{
  position: absolute;
  top: -15%;
  right: -10%;
  width: 19% !important;
  transform: rotate(5deg);
  border-radius: 0 !important;
}

div.poster{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
width: 80%;
margin:0 auto 0 auto;
}

div.poster img{
  width: 23%;
  height: auto;
  border-radius: 0px;
  border: #aaa 1px solid;
  padding: 0;
}

p.pos{
width: 100%;
text-align: center;
margin-left: 0;
}

@media screen and  (max-width:500px) {
  .title-p4{
    top: -5%;
    right: -8%;
    width: 25% !important;
    transform: rotate(-10deg);
  }

  div.poster img{
    width: 45%;
    height: auto;
    margin: 0 auto 0.5em auto;
  }

  div.poster img:first-child{
    width: 94% !important;
    margin-bottom: 0.5em;
  }
}

/* オリジナルグッズ */
.title-p5 {
  position: absolute;
  top: -10%;
  left: -8%;
  width: 23% !important;
}
@media screen and  (max-width:500px) {
  .title-53 {
    top: -5%;
    left: -8%;
    width: 25% !important;
    transform: rotate(10deg);
  }
}
/* その他 */
.banner{
  width: 70%;
  margin: 0 auto;
}
.banner a{
  padding: 0;
  border: none;
  background-color: initial;
  border-radius: 0px;
  margin-bottom: 1em;
  width: 100%;
}
.banner a img{
  border-radius: 0;
  margin: 0 auto!important;
  width: 100%;
  height: auto;
}
@media screen and  (max-width:500px) {
.banner{
  width: 100%;
}
}
/* フッター */
.footer-copyright {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background-color:#009FB8;
  text-align: center;
  color: #FFF;
}
@media screen and  (max-width: 991.98px) {
  .footer-logo {
    width: 100%;
  }
  }

  .bg-lightgreen {
    background-color: #e6ede9;
  }
  .bg-green{background-color:#009FB8;}
  .heading {
    border-left: 6px solid #aaa;
    padding: 0 0 0 10px;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    content: ">"
  }
  .py-5 {
    padding-bottom: 3rem!important;
}
.pt-5, .py-5 {
    padding-top: 3rem!important;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1200px){
.container {
    max-width: 1140px;
}
}

@media screen and (min-width: 992px){
.container {
  max-width: 960px;
}
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.small, small {
  font-size: 80%;
  font-weight: 400;
}
@media screen and (min-width: 768px){
.mb-md-0, .my-md-0 {
    margin-bottom: 0!important;
}
}
@media screen and (min-width: 768px){
.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
}
@media screen and (min-width: 768px){
.mb-md-0, .my-md-0 {
    margin-bottom: 0!important;
}
.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
}
}
@media screen and (min-width: 768px){
.order-md-2 {
    -ms-flex-order: 2;
    order: 2;
}
}
@media screen and (min-width: 768px){
.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
}
@media screen and (min-width: 768px){
.order-md-1 {
    -ms-flex-order: 1;
    order: 1;
}
.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
}

.card {
  background-color: rgba(255,255,255,0.7);
}
.mb-3, .my-3 {
  margin-bottom: 1rem!important;
}
.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
}
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}
.gmap iframe {
  position: absolute;
  left: 3%;
  top: 3%;
  height: 94%;
  width: 94%;
}

.underline{background: linear-gradient(transparent 60%, #FCEE21 0%);padding:0;}
.asterisk{vertical-align: super;font-size:60%;}
.no-gutter > [class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}
.bg-lightgreen {
	background-color: #e6ede9;
}
.bg-green{background-color:#009FB8;}
.heading {
	border-left: 6px solid #aaa;
	padding: 0 0 0 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">"
}
header{
	position:fixed;
	width:100vw;
	background:#fff;
	top:0;
	margin:0;
	z-index:100;
}
.footer-copyright {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background-color:#009FB8;
}
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 75%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 3%;
top: 3%;
height: 94%;
width: 94%;
}
#page-top{
    position: fixed;
    bottom: 3em;
    right: 3em;
    left: auto;
    margin: 0 0 0 auto;
}
#page-top a{
	width: 60px;
  height: 60px;
  padding: 20px;
  background: #009FB8;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  position: relative;
  display: block;
}
#page-top a i {
  font-size: 150%;
  line-height: 75px;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: 0;
  position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    height: fit-content;
}
#page-top a:hover i {
  line-height: 55px;
}
.contact{
	margin:3em 0;
	/*background:url("../img/contact_bg.jpg") no-repeat fixed;*/	
}
.contact a.btn {
	color: #000;
	font-size:130%;
	padding:0.5em 2em;
	background-color: #fff100;
	border-bottom: 5px solid #ccc100;
	border-radius: 100vh;
}

.contact a.btn:hover {
  margin-top: 3px;
  color: #000;
  background: #fff20a;
  border-bottom: 2px solid #ccc100;
}

.h1title {
	position: relative;
	padding: 0 45px;
	text-align: center;
	color:#009FB8;
}
.h1title:before, .h1title:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 44px;
	height: 2px;
	background-color: #009FB8;
	transform: rotate(-70deg);
}
.h1title:before {
	left:0;
}
.h1title:after {
	right: 0;
}

/* 大デバイス（デスクトップ, 992px 未満）
============================================== */
@media screen and (max-width: 991.98px) {
.footer-logo {
	width: 100%;
}
} /* END */

/* 中デバイス（タブレット, 768px 未満）
============================================== */
@media screen and (max-width: 767.98px) {
.gnav-item {
	display: block;
	width: 100%;
	border: none;
}
.gnav-item+ .gnav-item {
	border: none;
}
table th, table td {
	padding: .25rem !important;
}
table th:first-child {
	width: 25%;
}
 
#page-top{
    bottom: 1em;
    right: 1em;
}
}
/* END */

/* 小デバイス（縦向きモバイル, 576px 以上 デスクトップ, 992px 未満）
============================================== */
@media screen and (min-width: 576px) and (max-width: 991.98px) {
 #sec2  {
     height: 500px;
 } 
 
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上）
============================================== */
@media screen and (min-width: 576px) {
 #sec2 .message {
    position: absolute;
     left: 0;
 } 
	.contact a.btn{font-size:100%;}
} 
@media screen and (max-width: 575px) {
	.contact a.btn{font-size:100%;}
}/* END */