@charset "UTF-8";
/*base.css*/
body {
  background: #F5F1E9;
  color: #0F1419;
  width: 100%;
  font-size: 14px;
  font-family: "Avenir Next", Helvetica, Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif; }

a {
  color: #0F1419; }

a:hover {
  color: #02AEDC; }

.wrapper {
  width: 100%; }

/*header.css*/
.l-header {
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e4e6eb;
  width: 100%;
  height: 45px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0; }

.l-header-inner {
  width: 90%;
  height: 45px;
  margin: 0 auto; }

.l-header-inner-left {
  height: 45px;
  line-height: 45px;
  float: left;
  z-index: 102; }

.logo {
  position: absolute;
  z-index: 105;
  -webkit-transition: .3s ease-in-out;
          transition: .3s ease-in-out; }
  @media (max-width: 567px) {
    .logo {
      margin-top: -45px; } }
  @media (min-width: 568px) and (max-width: 767px) {
    .logo {
      margin-top: -45px; } }

.logo:hover {
  opacity: 0.5; }

.l-header-inner-right {
  float: right;
  font-size: 14px;
  height: 45px;
  line-height: 45px; }

.l-header-inner-right li {
  float: left;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out;
  padding: 0 8px; }

.l-header-nav {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out;
  padding: 10px; }

/*top.css*/
.top-contents {
  background-color: #e74c3c;
  animation: bg-color 40s infinite;
  -webkit-animation: bg-color 40s infinite;
  background-size: cover;
  opacity: 0.8;
  width: 100%;
  height: 400px; }
  @media (max-width: 567px) {
    .top-contents {
      height: 200px; } }

@-webkit-keyframes bg-color {
  0% {
    background-color: #e74c3c; }
  20% {
    background-color: #f1c40f; }
  40% {
    background-color: #1abc9c; }
  60% {
    background-color: #3498db; }
  80% {
    background-color: #9b59b6; }
  100% {
    background-color: #e74c3c; } }

@keyframes bg-color {
  0% {
    background-color: #e74c3c; }
  20% {
    background-color: #f1c40f; }
  40% {
    background-color: #1abc9c; }
  60% {
    background-color: #3498db; }
  80% {
    background-color: #9b59b6; }
  100% {
    background-color: #e74c3c; } }

.top-contents-box {
  width: 80%;
  box-sizing: border-box;
  height: 200px;
  margin: 0 auto;
  padding-top: 160px; }
  @media (max-width: 567px) {
    .top-contents-box {
      width: 90%;
      padding-top: 70px; } }

.top-text-copy {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  box-sizing: border-box;
  font-weight: bold;
  padding: 10px;
  line-height: 160%;
  font-size: 20px; }
  @media (max-width: 567px) {
    .top-text-copy {
      width: 100%;
      padding: 8px;
      font-size: 14px; } }
  @media (max-width: 320px) {
    .top-text-copy {
      padding: 5px;
      font-size: 14px; } }

.mainContent {
  width: 90%;
  margin: 50px auto 0;
  text-align: center; }
  @media (max-width: 567px) {
    .mainContent {
      margin: 50px auto 0; } }

.menu {
  float: left;
  box-sizing: border-box;
  color: #237546;
  width: 32%;
  margin-right: 1.33%;
  margin-top: 1.33%;
  -webkit-transition: .3s ease-in-out;
          transition: .3s ease-in-out; }
  @media (max-width: 567px) {
    .menu {
      width: 50%;
      margin-top: 0;
      margin-right: 0; } }

.menu:hover {
  box-shadow: #c4c4c4 0 0 20px 3px;
  box-sizing: border-box;
  opacity: .5; }

.menu a h1 {
  padding: 10px 0;
  height: 100px;
  line-height: 80px;
  border: 3px solid  #333;
  border-radius: 5px;
  font-weight: bold;
  box-sizing: border-box;
  -webkit-transition: background-color 0.5s ease;
          transition: background-color 0.5s ease;
  text-align: center; }
  @media (max-width: 567px) {
    .menu a h1 {
      border: 1px solid #333;
      border-radius: 0; } }

.menu a h1:hover {
  color: #333; }

.menu a h1::before,
.menu a h1::after {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s; }

.menu a h1::before {
  margin-right: 10px;
  content: '•';
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
      transform: translateX(20px); }

.menu a h1::after {
  margin-left: 10px;
  content: '•';
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
      transform: translateX(-20px); }

.menu a h1:hover::before,
.menu a h1:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
      transform: translateX(0px);
  color: #333; }

/*page.css*/
.page-top {
  background-color: #333;
  width: 100%;
  height: 200px; }
  @media (max-width: 567px) {
    .page-top {
      height: 100px; } }

.page-top-text {
  width: 80%;
  box-sizing: border-box;
  line-height: 245px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 20px; }
  @media (max-width: 567px) {
    .page-top-text {
      line-height: 145px; } }

.page-contents {
  width: 80%;
  margin: 30px auto 0;
  line-height: 160%; }

.page-contents-text {
  text-align: center;
  line-height: 160%;
  margin-bottom: 30px;
  font-size: 20px; }
  @media (max-width: 567px) {
    .page-contents-text {
      font-size: 14px; } }

.sub-title {
  font-size: 18px;
  font-weight: bold;
  border-left: 5px solid #000;
  border-bottom: 1px solid #000;
  padding-left: 10px;
  padding-bottom: 5px; }

.sub-text {
  margin: 10px 0;
  line-height: 160%; }

.sub-text-in {
  margin: 10px 0;
  font-weight: bold; }

.page-table {
  width: 50%;
  margin: 10px auto 0; }
  @media (max-width: 567px) {
    .page-table {
      width: 100%; } }

.page-table th, .page-table td {
  border-bottom: 1px dashed #c4c4c4;
  padding: 10px 0;
  padding-left: 10px;
  line-height: 160%; }

.oranglaut {
  text-align: center;
  margin: 30px auto 0; }

.oranglaut-pic {
  width: 300px;
  border-radius: 10px; }
  @media (max-width: 567px) {
    .oranglaut-pic {
      width: 100%; } }

.googlemap {
  width: 100%;
  margin: 0 auto; }

/*footer.css*/
/*sns button*/
.btn-social {
  max-width: 800px;
  margin: 0 auto 0; }

.btn-social {
  width: 94%; }

.btn-social {
  text-align: center; }

.btn-social a {
  display: inline-block;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
  color: #ffffff;
  border-radius: 2px;
  font-size: 12px;
  margin: 0 2px; }

.btn-social a {
  width: 30%; }

.btn-social a:hover {
  position: relative;
  top: 1px;
  opacity: 0.9;
  color: #ffffff; }

.btn-twitter {
  background-color: #00b0ed;
  box-shadow: 0px 2px 0 #0090cd; }

.btn-facebook {
  background-color: #3b5998;
  box-shadow: 0px 2px 0 #1b3978; }

.btn-google {
  background-color: #dd4b39;
  box-shadow: 0px 2px 0 #bd2b19; }

.btn-line {
  background-color: #09B701;
  box-shadow: 0px 2px 0 #093; }

.btn-hatebu {
  background-color: #00a5de;
  box-shadow: 0px 2px 0 #0085be; }

.btn-pocket {
  background-color: #ed4055;
  box-shadow: 0px 2px 0 #cd2035; }

.btn-twitter:hover {
  box-shadow: 0px 1px 0 #0090cd; }

.btn-facebook:hover {
  box-shadow: 0px 1px 0 #1b3978; }

.btn-google:hover {
  box-shadow: 0px 1px 0 #bd2b19; }

.btn-line:hover {
  box-shadow: 0px 1px 0 #093; }

.btn-hatebu:hover {
  box-shadow: 0px 1px 0 #0085be; }

.btn-pocket:hover {
  box-shadow: 0px 1px 0 #cd2035; }

.l-footer {
  background: #E3DECC;
  width: 100%;
  height: 120px;
  padding: 20px 0;
  margin-top: 50px; }

.l-footer-inner {
  width: 90%;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
  line-height: 160%; }

.copyright {
  color: #0F1419; }

/*loading*/
/*button.css*/
.btn, .btn-primary {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 5px; }

.btn-primary {
  background: #c4c4c4;
  color: #000; }

/*state.css*/
.is-error {
  color: #F03; }

.is-strong {
  font-weight: bold; }

.is-large {
  font-size: 18px;
  font-weight: bold; }

.is-small {
  font-size: 12px;
  color: #999; }

.is-color1 {
  color: #ECB935; }

.is-color2 {
  color: #F26964; }

.is-color3 {
  color: #16A6B6; }

/*animation.css*/
@-webkit-keyframes animationLayoutY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes animationLayoutY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes animationLayoutX {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes animationLayoutX {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.animating .animating1 {
  -webkit-animation: animationLayoutY 1s ease 0.1s;
  animation: animationLayoutY 1s ease 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animating .animating2 {
  -webkit-animation: animationLayoutY 1s ease 0.2s;
  animation: animationLayoutY 1s ease 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animating .animating3 {
  -webkit-animation: animationLayoutY 1s ease 0.3s;
  animation: animationLayoutY 1s ease 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animating .animating4 {
  -webkit-animation: animationLayoutY 1s ease 0.4s;
  animation: animationLayoutY 1s ease 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animating .animating5 {
  -webkit-animation: animationLayoutY 1s ease 0.5s;
  animation: animationLayoutY 1s ease 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animating .animating6 {
  -webkit-animation: animationLayoutY 1s ease 0.6s;
  animation: animationLayoutY 1s ease 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }


/*news*/
.news-contents {
  margin-top: 30px;
  text-align: center;
}
.news-contents > a {
  text-decoration: underline;
  color: #000;
}
