/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.wrap {
  border-top: 10px solid #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 960px;
  margin: 20px auto;
}

header .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head img {
  width: 400px;
}

header .head .title {
  margin-left: 10px;
}

header .head .title h1 {
  font-size: 1.8em;
}

header .head .title h1 a {
  display: block;
  color: #000;
  text-decoration: none;
}

header .head .title p {
  font-size: 1.3em;
  margin-top: -8px;
}

header .contact {
  text-align: right;
  font-size: 1.3em;
  font-weight: bold;
}

header .contact p {
  margin-bottom: 5px;
}

header .contact a {
  display: block;
  margin-top: -7px;
}

header .contact a:visited, header .contact a:link {
  text-decoration: none;
  color: #000;
}

header.tel::before, header.mail::before {
  font-family: FontAwesome;
  margin-right: 5px;
  vertical-align: middle;
  font-size: 0.7em;
}

header.tel::before {
  content: '\f095';
}

header.mail::before {
  content: '\f0e0';
}

/*----------------------------------------------------------------------------
******************************************************************************
** navigation
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  background-color: #000;
}

nav ul {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px 0 4px 0;
}

nav ul li {
  position: relative;
  width: calc(100% / 8);
  border-left: 1px solid #fff;
}

nav ul li:nth-last-child(1) {
  border-right: 1px solid #fff;
}

nav ul li.current {
  background: rgba(255, 255, 255, 0.2);
}

nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 1.1em;
  text-align: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

nav ul li a:visited, nav ul li a:link {
  color: #fff;
  text-decoration: none;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

nav ul li:hover .sub-menu {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

nav ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}

nav ul li .sub-menu > li {
  position: relative;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

nav ul li .sub-menu > li > a {
  display: block;
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

nav ul li .sub-menu > li > a:hover, nav ul li .sub-menu > li > a.current {
  background-color: #000;
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0;
}

.pager .pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pager .pager_list .page-numbers {
  border: 1px solid #111;
  border-radius: 5px;
  color: #111 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #111;
  color: #FFF !important;
}

.pager .pager_list .page-numbers.dots {
  border-color: #111;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  background: #000;
}

footer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.main_img img {
  width: 100%;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 960px;
  margin: 0 auto;
}

.main .main_area {
  width: 70%;
  margin-bottom: 70px;
  padding-right: 15px;
}

.main .main_area .about_area .about {
  position: relative;
}

.main .main_area .about_area .about h2 {
  position: absolute;
  top: -120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 150px;
  height: 160px;
  padding: 10px;
  background: #000;
  color: #fff;
  font-size: 1.4em;
  text-align: center;
  letter-spacing: 1px;
  margin: 0;
}

.main .main_area .about_area .about .waku {
  margin: 60px 0 50px 40px;
  padding: 70px 30px 30px 30px;
  font-size: 1.3em;
  border: 10px solid #dddddd;
}

.main .news_area {
  width: 30%;
  padding-left: 15px;
}

.main .news_area h2 {
  margin-top: 50px;
  font-size: 1.6em;
  border-bottom: 6px solid #000;
}

.main .news_area .news_scroll {
  max-height: 280px;
  overflow-y: scroll;
}

.main .news_area .news_scroll .news_box {
  border-bottom: 1px dotted #000;
  padding: 15px 5px 15px 5px;
  font-size: 1.1em;
}

.main .news_area .news_scroll .news_box time::before {
  font-family: FontAwesome;
  content: '\f017';
  font-size: 0.8em;
  margin-right: 2px;
}

.main .news_area .news_scroll .news_box p {
  padding: 5px 10px;
}

.link {
  max-width: 960px;
  margin: 0 auto 40px;
}

.link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.link ul li {
  width: calc((100% - 10px * 3) / 4);
}

.link ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #111;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ccc;
}

.link ul li a img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page .main_area {
  width: 100%;
  padding: 15px;
  margin-bottom: 30px;
}

.page .main_area h1 {
  padding: 20px 0;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
}

.page .main_area h2 {
  margin: 55px 0 20px;
  padding-bottom: 5px;
  padding-left: 8px;
  font-size: 1.4em;
  border-bottom: 1px dotted #000;
  border-left: 4px solid #000;
  letter-spacing: 1px;
}

.page .main_area h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 10px;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.page .main_area h3::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  margin: 0 8px 0 0;
  background: #333;
}

.page .main_area .news_list .news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 5px;
  font-size: 1.1em;
  border-bottom: 1px dotted #000;
  border-bottom: 1px dotted #000;
}

.page .main_area .news_list .news_item time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page .main_area .news_list .news_item time::before {
  font-family: FontAwesome;
  content: '\f017';
  font-size: 0.8em;
  margin-right: 2px;
}

/*--- member page ---*/
table.member {
    width: 100%;
}

table.member td {
    padding-bottom: 5px;
	text-align: left;
}

table.member td:nth-child(1) {
    width: 12%;
}


/*--- beyond page ---*/
.icn {
    margin-right: 0.8rem;
    padding-bottom: 4px;
}

.reference_list li a {
    text-decoration: none;
    color: #000;
}

.reference_list li a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 769px) {
  header {
    display: block;
    margin: 0;
    padding: 10px 15px;
    background: #f2f2f2;
  }
  header .head .title {
    width: calc(100% - 20vw);
    margin: 0;
  }
  header .head .title h1 img {
    width: 100%;
    height: auto;
  }
  header .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 10px 0;
    font-size: 1.1em;
  }
  header .contact p, header .contact a {
    margin: 0;
  }
  header .contact p::after {
    content: ":";
  }
  nav .nav {
    position: fixed;
    top: 0px;
    right: -80%;
    z-index: 100;
    overflow-x: none;
    overflow-y: auto;
    width: 80%;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    background: #111;
    color: #fff;
    border-left: 1px solid #fff;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  nav .nav ul {
    display: block;
    width: 100%;
  }
  nav .nav ul > li {
    width: 100%;
    border: none;
  }
  nav .nav ul > li:nth-last-child(1) {
    border-right: none;
  }
  nav .nav ul > li > a {
    position: relative;
    display: block;
    padding: 1em 1em 1em 1.5em;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  nav .nav ul > li > a:hover, nav .nav ul > li > a.current {
    background-color: rgba(255, 255, 255, 0.2);
  }
  nav .nav ul > li .sub-menu > li > a {
    display: block;
    padding: 1em 1em 1em 2em;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  nav .nav ul > li .sub-menu > li > a:hover, nav .nav ul > li .sub-menu > li > a.current {
    background-color: #000;
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  nav .nav ul > li .sub-menu > li .sub-menu > li > a {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 11px;
    padding: 1em 1em 1em 3em;
    text-decoration: none;
  }
  nav .nav ul > li .sub-menu > li .sub-menu > li > a:hover, nav .nav ul > li .sub-menu > li .sub-menu > li > a.current {
    background-color: #000;
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger {
    cursor: pointer;
    z-index: 1000;
    position: fixed !important;
    top: 25px;
    right: 15px;
    margin-top: -5px;
    width: 36px;
    height: 24px;
  }
  .sp_nav_trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    content: 'MENU';
    display: block;
    width: 100%;
    padding-top: 20px;
    color: #000;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sp_nav_trigger.sp_active::after {
    content: 'CLOSE';
    bottom: -25px;
    color: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
    background: #fff;
  }
  .main {
    display: block;
  }
  .main .main_area {
    width: 100%;
    margin: 0;
	margin-bottom: 55px;
    padding: 0 10px;
  }
  .main .about h2 {
    top: -38px !important;
    width: auto !important;
    height: 60px !important;
    padding-top: 10px !important;
    font-size: 1.3em !important;
  }
  .main .about .waku {
    margin: 60px 10px 10px !important;
    padding: 20px !important;
  }
  .main .about .waku p {
    padding: 0;
    font-size: 0.8em;
  }
  .main .link_list {
    margin: 20px;
  }
  .main .news_area {
    width: 100% !important;
    margin-bottom: 30px;
    padding: 10px;
  }
  .main .news_area h2 {
    margin: 45px 0 20px;
  }
  .main .news_area .news_scroll {
    max-height: 30vh;
  }
  .link {
    width: 100%;
    padding: 0 10px;
  }
  .link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .link ul li {
    width: calc((100% - 10px) / 2);
  }
  .link ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #111;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ccc;
  }
  .link ul li a img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    height: auto;
  }
  footer p {
    font-size: 12px;
  }
  .news_list .news_item {
    display: block !important;
  }

/*--- member page ---*/
	
  table.member td {
    display: block;
  }
	
  table.member td:nth-child(1) {
    width: 100%;
  }

  table.member td:nth-child(2) {
    padding-bottom: 30px;
  }
  table.member tr:nth-last-child(1) td:nth-child(2) {
    padding-bottom: 0;
  }
	
/*--- beyond page ---*/
	
  .reference_list li a {
    text-decoration: underline;
    color: #000;
  }

  .reference_list li a:active {
    text-decoration: none;
    color: #000;
  }
}


/*# sourceMappingURL=style.css.map */