@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
}

img {
  max-width: 100%;
}

.header {

  background-color: #ffffff;

}

.page-title {
  color: rgb(16, 65, 122);
  font-size: 1.75rem;
  text-transform: none;
  font-weight: bold;
  font-family: 'Lobster', cursive;
  padding-left: 1.2em;
	

}

.page-title-2 {
  color: #008b80;
  font-size: 12px;
  font-weight: bold;
  /*width: 100%;*/
  padding-bottom:1em;
  padding-left: 2.2em;
	padding-top: 1em;
}

.site-menu ul {
  display: flex;
  border-top: 1px rgb(219, 219, 219) solid;
	padding-top: 0.5em;
	padding-left: 2em;
	padding-bottom: 0;

}

.site-menu ul li {
  margin-right: 15px;
  font-family: 'Ysabeau SC', sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #5c5c5c;
}

.toggle-menu-button {
  display: none;
  background-color: #ffffff;
}



.footer {
  color: #ffffff;
  background-color: #000000;
	padding: 20px auto ;
  display: flex;
  flex-direction: column;
  align-items: center;
	margin: 20px auto 0 ;

}

.site-menu2 ul {
  display: flex;
  line-height: 38px;
}

.site-menu2 ul li {
  margin-right: 20px;
  font-family: 'Ysabeau SC', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #e2e2e2;
}



.copyright {
  line-height: 18px;
  color: #d3d3d3;
	padding-bottom: 20px;

}

@media (max-width: 600px) {
  
  .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
	  height: 4em;
	  display: block;
	    border-bottom: 1px rgb(219, 219, 219) solid;
    }
  
    .header-inner {
      background-color: rgb(255, 255, 255);
      position: relative;
    }
  
    .page-title {
	  display: block;
	  padding: 0.8em 0 0 1em;
      font-size: 18px;
    }
  
    .page-title-2 {
      font-size: 10px;
	  display: block;
	  padding: 0em 0 1.5em 2em;
		margin-bottom: 2em;


    }
  
    .header-site-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      color: #ffffff;
      background-color: #86ad90;
      padding-bottom: 0.2em;
      display: none;      
    }
   
    .site-menu ul {
      display: block;
      text-align: center;

    }
  
    .site-menu ul li {
	  padding: 0.5em 1.5em 1em 0;
      line-height: 1;
      font-size: 16px;
      font-weight: bold;
      margin-right: 0;
      color: #080808;
    }

    .toggle-menu-button {
      display: block;
      width: 14%;
      height: 2em;
      background-image: url(../images/common/icon-menu.png);
      background-size: 50%;
      background-repeat: no-repeat;
      border: none;
      border-radius: 0;
      outline: none;
      margin-left: 90%;
      margin-top: -4%;
      background-color: rgb(253, 253, 253);
    }
  
    .header-site-menu.is-show {
      display: block;
      /*margin-top: 2px;*/
    }
  

  
    .footer {
      display: flex;
      color: aliceblue;
     }

      .site-menu2 ul {
          display: block;
        text-align: center;
        font-size: 12px;
		 padding-bottom: 2em;
      }
    
      .site-menu2 ul li {

		  margin: 1.5em auto;
        line-height: 0.35;
		  
      }

    
      
      .copyright {

		  padding-bottom: 2em;
      }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
      /* Styles for medium-sized screens */

      .header {
        height: 80px;
      }       
      
      .page-title {
        line-height: 11px;
        padding-top: 20px;
        margin-bottom: 15px;
        font-size: 1.5em;
      }
    
      .page-title-2 {
        font-size: 0.8em;
        padding-bottom: 0.3em;
      }

      .site-menu2 ul li {
        margin-right: 20px;
        font-family: 'Ysabeau SC', sans-serif;
        font-size: 14px;
        font-weight: bold;
      }

      .footer {
        margin-top: 65px;
       }
      
      .copyright {
        font-size: 14px;
        padding-bottom: 8px;
      }
    }