@charset "utf-8";
body, div, ul, li, p, a {
	padding: 0;
	margin: 0;
}

/*ページ遷移アニメーション*/
.move .animation-bg {
  background: #ffffff;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.ltr .animation-bg {
  animation-name: PageAnime-ltr;
}
@keyframes PageAnime-ltr {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*ヘッダー*/
.c-header {
    position: fixed;
	top:0;
    align-items: center;
    background-color: #FFFFFF; /* PCヘッダー色 */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding-top: 0px;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 0px;
    width: 100%;
    height: 80px;
    z-index: 100;
    margin-top: 0px;
    margin-bottom: 0px;

}
.c-header__logo img {
    text-align: left;
    display: flex;
    width: 80%;
}
.c-header__logo2 img{
	vertical-align: baseline;
	margin-left: 0px;
	padding-left: 0px;
}
.c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}
.c-header__list-item {
    list-style: none;
    text-decoration: none;
    background-color: #FFFFFF;
}
.c-header__list-link {
	color: #000000; /* ヘッダーメニュー文字色 */
	display: block;
	margin-right: 20px; /* ヘッダーメニュー文字幅 */
	text-decoration: none;
	padding: 10px 0px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(0.7vw + 0.6rem);
}
.c-header__list-link:hover {
	filter: opacity(0.6);
	color: #0207F8;
}
.c-hamburger-menu {
  position: relative;
}
.c-header.c-hamburger-menu {
  position: fixed;
}
@media screen and (max-width: 480px){
.c-header {
	position: fixed;
	align-items: center;
	background: #ffffff; /* PCヘッダー色 */
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	padding-top: 0px;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 0rem;
	width: 100%;
	height: 80px;
	z-index: 100
}
.c-header__logo img {
	text-align: left;
	display: flex;
	width: 60%;
	height: auto;
}
.c-header__logo2 img{
	vertical-align: baseline;
	margin-left: 0px;
	padding-left: 0px;
}	
}


@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background: #ffffff;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; 
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; 
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}
.c-hamburger-menu__input {
  display: none;
}
.c-hamburger-menu__bg { /*メニュー上段*/
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}
.c-hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px;
    justify-content: center;
    width: 32px; 
  }
.c-hamburger-menu__button-mark {
  background-color: #000000; 
  display: block;
  height: 1px; 
  transition: 0.3s; 
  width: 20px;
}
}

@media screen and (max-width: 750px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); 
    transform-origin: 0%; 
  }
	.c-header__list-item {
	width:100%;
	border-bottom: solid #FB0004 1px;
}
}
@media screen and (min-width: 750px) {
	.r-img{
		display: none;
	}
}
/*----------------------------------------*/
/*パンくずリスト*/
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	color: #D7043F;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: calc(0.6vw + 0.4rem);
	
}
.breadcrumb li a{
    text-decoration: none;
    color: #333333;
}
	
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}
/*--------------------------------------------*/
.box_10 {
    max-width: 1500px;
    width: 90%;
    border: solid #047c18 2px;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    background-color: #047C18;
	margin-top:110px;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
    animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 .box_20{
	height: auto;
	background-color: #ffffff;
	border: solid #047c18 2px;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
}
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.box_30 {
    max-width: 1500px;
    width: 90%;
    border: solid #0427F9 2px;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    background-color: #0427F9;
	margin-top:110px;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
    animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 .box_40{
	height: auto;
	background-color: #ffffff;
	border: solid #0427F9 2px;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
}
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.box_50 {
    max-width: 1500px;
    width: 90%;
    border: solid #F8A701 2px;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 110px;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
    animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    background-color: #F8A701;
}
 .box_60{
	height: auto;
	background-color: #ffffff;
	border: solid #F8A701 2px;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
}
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*背景画像*/
body{
	height: 1200px;
	margin:0;
}
body::before{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: "";
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: url(image9/bg5-img.jpg);	
}
/*初期画面*/
.eco-img{
	position:relative;
	width: 100%;
	height:auto; 
	font-size:0;
	text-align: center;
}
.eco-img img{
	width: 100%;
	height: auto;
}
.eco-txt_1{
	width: 100%;
	position:absolute;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
	font-size: calc(0.8vw + 1.0rem);
	top: 40%;
}
.eco-txt_2{
	width: 100%;
	position:absolute;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
    font-size: calc(3vw + 2.5rem);
	-webkit-text-stroke: 2px black;
	top:50%;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.em{
	white-space: nowrap;
}
@media screen and (max-width: 786px) {
	.em{
	display: block;
	}
	.eco-txt_1{
	top: 20%;
	}
}
/*製品一覧*/
.table_design09 {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
  max-width: 1500px;
  border-radius:20px 20px 0px 0px;
  overflow: hidden;
  margin-top:50px;
  text-align: center;
}
.table_design09 tr {
  background-color: #DFF9D7;
}
.table_design09 tr:nth-child(even) {
  background-color: #fff;
}
.table_design09 th, .table_design09 td {
  font-size:calc(0.4vw + 0.6rem);
  padding: 1em;
}
.table_design09 thead th {
  background-color: #047c18;
  color: #fff;
  font-weight: bold;
  text-align:center;
}
.table_design09 tbody th {
	
  color: #047c18;
  white-space: nowrap; 
}
.sp{
	display: block;
}
@media screen and (max-width: 787px) {
  .table_design09 {
    border-radius: 0;
    text-align: left;
  }
  .table_design09 thead {
    display: none;
  }
  .table_design09 tr {
    background-color: unset;
  }
	.table_design09 th{
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #047c18;
	position: relative;
  }
	.table_design09 td {
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #047c18;
	position:relative;
	padding-left:50%;
  }	
  .table_design09 tbody th{
    background: #047c18;
    color: #fff;
    text-align: center;
	
  }
	.table_design09 tbody th a,a:link{
		color:#FFFFFF
	}
	.table_design09 tbody th a,a:visited{
		color:#F3E2E2
	}

  .table_design09 td::before{
    content: attr(data-label);
    background-color: #F3F9F3;
    font-weight: bold;
	font-size: calc(0.4vw + 0.6rem);
    display: inline-block;
    width: 40%;
    min-width: 2em;
    text-align: center;
    margin-right: 0.5em;
    padding: 4px;
    border-radius: 100vh;
	position:absolute;
	left:0;
  }
.sp{
	display: inline-block;
	padding-left:10px;
	}
}
/*アルクア*/
.box_30 {
    max-width: 1500px;
    width: 90%;
    border: solid #0427F9 2px;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    background-color: #0427F9;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
     animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

 .box_40{
	height: auto;
	background-color: #ffffff;
	border: solid #0427F9 2px;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
}
.eco-img{
	position:relative;
	width: 100%;
	height:auto; 
	font-size:0;
	text-align: center;
}
.eco-img img{
	width: 100%;
	height: auto;
	object-fit: cover;
}
.eco-txt_100{
	width: 100%;
	position:absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
	font-size: calc(0.8vw + 1.0rem);
	top: 10%;
}
.eco-txt_20{
    width: 100%;
    position: absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: calc(3vw + 1.8rem);
    -webkit-text-stroke: 2px black;
    top: 40%;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.em{
	white-space: nowrap;
}
@media screen and (max-width: 786px) {
	.em{
	display: block;
	}
	.eco-txt_10{
	top: 20%;
	}
}
/*製品一覧*/
.table_design10 {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
  max-width: 1500px;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  margin-top:50px;
  text-align: center;
}
.table_design10 tr {
  background-color: #B4DEFC;
}
.table_design10 tr:nth-child(even) {
  background-color: #fff;
}
.table_design10 th, .table_design10 td {
  font-size:calc(0.4vw + 0.6rem);
  padding: 1em;
}
.table_design10 thead th {
  background-color: #0427F9;
  color: #fff;
  font-weight: bold;
  text-align:center;
}
.table_design10 tbody th {
	
  color: #0427F9;
  white-space: nowrap; 
}

@media screen and (max-width: 787px) {
  .table_design10 {
    border-radius: 0;
    text-align: left;
  }
  .table_design10 thead {
    display: none;
  }
  .table_design10 tr {
    background-color: unset;
  }
	.table_design10 th{
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #0427F9;
	position:relative;
  }
.table_design10 td {
    font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #0427F9;
	position: relative;
	padding-left:50%;
  }
  .table_design10 tbody th{
    background: #0427F9;
    color: #fff;
    text-align: center;
  }
  .table_design10 tbody th a,a:link{
		color:#FFFFFF
	}
  .table_design10 tbody th a,a:visited{
		color:#F5F09C
	}
	

  .table_design10 td::before{
    content: attr(data-label);
    background-color: #F3F9F3;
    font-weight: bold;
	font-size: calc(0.4vw + 0.6rem);
    display: inline-block;
    width: 40%;
    min-width: 2em;
    text-align: center;
    margin-right: 0.5em;
    padding: 4px;
    border-radius: 100vh;
	position:absolute;
	left:0;
  }
}
/*合成樹脂*/
.box_50 {
    max-width: 1500px;
    width: 90%;
    border: solid #F8A701 2px;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    background-color: #F8A701;
    padding-bottom: 5px;
    box-sizing: border-box;
    margin-bottom: 100px;
     animation: fadeup 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 .box_60{
	height: auto;
	background-color: #ffffff;
	border: solid #F8A701 2px;
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
}
.eco-img{
	position:relative;
	width: 100%;
	height:auto; 
	font-size:0;
	text-align: center;
}
.eco-img img{
	width: 100%;
	height: auto;
}
.eco-txt_100{
	width: 100%;
	position:absolute;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
	font-size: calc(0.8vw + 1.0rem);
	top: 30%;
}
.eco-txt_200{
    width: 100%;
    position: absolute;
    font-family: "Arial Black", Gadget, sans-serif;
    font-weight: bold;
    font-size: calc(3vw + 2rem);
    top: 40%;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
.em{
	white-space: nowrap;
}
@media screen and (max-width: 786px) {
	.em{
	display: block;
	}
	.eco-txt_10{
	top: 20%;
	}
}
/*製品一覧*/
.eco-txt_300{
    font-family: "Arial Black", Gadget, sans-serif;
    font-weight: bold;
    font-size: calc(1vw + 0.8rem);
    margin-top: 50px;
    color: #F8A701;
    text-align: center;
}
.eco-txt_300::before,.eco-txt_300::after {
  content: '';
  background-color: #F8A701;
  height: 0.5px; 
  width:20px;
  display: inline-block;
  vertical-align: middle;
}
.eco-txt_400{
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
    font-size: calc(0.4vw + 0.8rem);
	color: #F8A701;
}
.eco-txt_400::before{
	content: '●';
}
.table_design100 {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
  max-width: 1500px;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  text-align: center;
}
.table_design100 tr {
  background-color: #FBEDD5;
}
.table_design100 tr:nth-child(even) {
  background-color: #fff;
}
.table_design100 th, .table_design100 td {
  font-size:calc(0.4vw + 0.4rem);
  padding: 1em;
}
.table_design100 thead th {
  background-color: #F8A701;
  color: #fff;
  font-weight: bold;
  text-align:center;
}
.table_design100 tbody th {
	
  color: #F8A701;
  white-space: nowrap; 
}
@media screen and (max-width: 787px) {
  .table_design100 {
    border-radius: 0;
    text-align: left;
  }
  .table_design100 thead {
    display: none;
  }
  .table_design100 tr {
    background-color: unset;
  }
  .table_design100 th{
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #F8A701;
	position:relative;
  }
.table_design100 td {
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #F8A701;
	position:relative;
	padding-left:50%;
}

  .table_design100 tbody th{
    background: #F8A701;
    color: #fff;
    text-align: center;
  }

  .table_design100 td::before{
    content: attr(data-label);
    background-color: #F3F9F3;
    font-weight: bold;
	font-size: calc(0.4vw + 0.6rem);
    display: inline-block;
    width: 40%;
    min-width: 2em;
    text-align: center;
    margin-right: 0.5em;
    padding: 4px;
    border-radius: 100vh;
	position:absolute;
	left:0;
  }
}
.eco-txt_500{
    font-family: "Arial Black", Gadget, sans-serif;
    font-weight: bold;
    font-size: calc(1vw + 0.8rem);
    margin-top: 50px;
    color: #335176;
    text-align: center;
}
.eco-txt_500::before,.eco-txt_500::after {
  content: '';
  background-color: #335176;
  height: 0.5px; 
  width:20px;
  display: inline-block;
  vertical-align: middle;
}
.table_design200 {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
  max-width: 1500px;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  text-align: center;
}
.table_design200 tr {
  background-color: #CFD3F8;
}
.table_design200 tr:nth-child(even) {
  background-color: #fff;
}
.table_design200 th, .table_design200 td {
  font-size:calc(0.4vw + 0.4rem);
  padding: 1em;
}
.table_design200 thead th {
  background-color: #335176;
  color: #fff;
  font-weight: bold;
  text-align:center;
}
.table_design200 tbody th {
	
  color: #335176;
  white-space: nowrap; 
}
.kome{
	font-size:calc(0.4vw + 0.3rem);
	text-align: left;
	padding-bottom:30px;
	}

@media screen and (max-width: 787px) {
  .table_design200 {
    border-radius: 0;
    text-align: left;
  }
  .table_design200 thead {
    display: none;
  }
  .table_design200 tr {
    background-color: unset;
  }
	.table_design200 th{
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #335176;
	position:relative;
  }
	.table_design200 td {
	font-size: calc(0.4vw + 0.6rem);
    display: block;
    border: 0;
    border-bottom: 1px solid #335176;
	position:relative;
	padding-left:60%;
	}
	
		
  .table_design200 tbody th{
    background: #335176;
    color: #fff;
    text-align: center;
  }

  .table_design200 td::before{
    content: attr(data-label);
    background-color: #B6BDD6;
    font-weight: bold;
	font-size: calc(0.4vw + 0.6rem);
    display: inline-block;
    width: 45%;
    min-width: 2em;
    text-align: center;
    margin-right: 0.5em;
    padding: 4px;
    border-radius: 100vh;
	position: absolute;
    left:0;
  }
}

/*フッターサイトマップ*/	
#footer {
  position: relative;
  margin-top: 40px;
  color: #333;
}
#footer a {
  text-decoration: none;
  color: #333;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .primary {
  padding: 40px 20px;
}
#footer .primary .flex {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
#footer .primary .flex .left{
  width: 100%;
}
#footer .primary .flex .left .logo{
	width: 100%;
    font-size: 1.4em;  
}
#footer .primary .flex .left .address{
    font-size: calc(0.2vw + 0.8rem);	
}
#footer .primary .flex .right{
  display: flex;
  width: 100%;
  justify-content: start;
}
@media screen and (max-width: 896px) {
#footer .primary .flex .left{
  width: 450px;
}
#footer .primary .flex .left .logo{
    font-size: 18px;  
}
#footer .primary .flex .left .address{
    font-size: 12px;	
}
#footer .primary .flex .right{
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  font-size: 12px;
}
}
@media screen and (max-width: 767px) {
  #footer .primary {
    padding: 20px 20px;
  }
  #footer .primary .flex {
    display: block;
  }
  #footer .primary .flex .left{
    width: 100%;
  }
  #footer .primary .flex .right{
    width: 100%;
    display: block;
  }
}
/* logo */

#footer .logo {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #footer .logo {
    font-size: 16px;
  }
}

/* address */

.address {
  margin: 10px 0 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .address {
    font-size: 12px;
  }
}

/* navi */

.navi-section {
  display: flex;
  flex-direction: column;
  width: 25%;
  margin-left: 20px;
  font-size:calc(0.5vw + 0.5rem);
}
#footer .parent {
  margin: 0 0 16px 0;
  padding: 0;
  font-weight: bold;
}
#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi li {
  margin: 8px 0 0 0;
  padding: 0;
}
#footer .navi li:first-child {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .navi-section {
  display: block;
  width: 100%;
  margin: 40px 0 0;
}
#footer .parent {
  font-size: 12px;
  margin: 0 0 10px;
}
  #footer .navi {
    font-size: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
  }
  #footer .navi li {
    border-top: 1px solid #000000;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 12px;
  }
}

/* sns-navi */

#footer .sns-navi {
  margin: 20px 0 0;
  padding: 0;
}
#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}
#footer .sns-navi li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  #footer .sns-navi {
    margin: 20px 0 0;
    padding: 0;
  }
  #footer .sns-navi li {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 18px;
  }
}

/* sitenavi */

#footer .sitenavi {
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .sitenavi li {
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0;
}
#footer .sitenavi li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  #footer .sitenavi {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}

body {
    font-family: Lato, sans-serif;
    background-repeat: no-repeat;
}

footer {
	width: 100%;
	bottom: 0px;
	background-color: #FAF7D4;
}
footer div {
  margin: -5px 0px 0px 0px;
  padding:0px;
  color: #333;
  text-align:center;
}
svg {
  width:100%;
}



.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #f9c202;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #f9c202;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
    filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}
}
.copyright{
    color: #333333;
    text-align: center;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-size: calc(0.5vw + 0.5rem);
    background-color: #FAF7D4;
}
