
body {
  margin: 0;
	height: 100%;/*高さを100%にして描画エリアをとる*/
}

h1 {
  font-family: "Zen Kurenaido";
//  font-family: "Kokoro";
}
p {
//  font-family: "Zen Kurenaido";
}

.boxGreeting{
  animation: bgchange 20s ease infinite;
  background: #f0ffff;
  box-sizing:border-box;
}
@keyframes bgchange{
      0%   {background:#f0ffff;}
      25%  {background:#fffff0;}
      50%  {background:#fff5ee;}
      75%  {background:#f5fffa;}
      90%  {background:#f0fff0;}
      100% {background:#f0f8ff;}
 }

.boxService{
//	margin:20px;
	padding:20px;
	width: 100%;
//	max-width: 500px;
//	height:500px;
	border-radius:30px;
	//box-shadow: 0 5px 5px #666666;
	background: #f0ffff;
	color:#ffffff;
}

.imgService{
	width: 100%;
	max-width: 250px; 
	height auto; 
//	box-shadow: 0 5px 5px #666666;  
	border-radius:50%;
}


/************************************** */
/* table
/************************************** */
table {
  margin: 20px auto;
}
.tbl-r02 th {
  background: #a9a9a9;
  border: solid 1px #ccc;
  color: #fff;
  font-weight: normal;
  padding: 10px;
}
.tbl-r02 td {
　border: solid 1px #ccc;
  padding: 10px;
}

 

@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}

/************************************** */
/* Navbar & Navmenu color */
/************************************** */
:root {
  --background-navbar: rgba(255, 255, 255, 0.7);
}

.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--background-navbar);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 100;

}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}
.logo {
  font-size: 1.25em;
  font-weight: bold;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #006400;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 70%;
  max-width:500px;
  height: 400px;
//  animation: bgchange 20s ease infinite;
  background-color: white;
//  background: rgba(255, 255, 255, 0.9);
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: #006400;
  font-weight:bold;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}


/************************************** */
/* フェードイン  */
.fadeIn{
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger{
    opacity: 0;
}


/************************************** */
/* スライドイン  */

.slide-in {
  overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}


/************************************** */
.wave{
position:relative;
height:50px;
}
canvas{
position: absolute;
bottom: 0;
left:0;
width: 100%;
}

/************************************** */

@media screen and (max-width: 479px){


}

