@charset "UTF-8";
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}
body.page {
  padding-top: 80px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.1));
  transition: 0.3s;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 0;
  transition: 0.3s;
}
header .logo img {
  width: 60px;
}
header .logo .title {
  margin-left: 10px;
}
header .logo .title h1 {
  display: block;
  font-size: 2em;
  font-family: "Noto Sans JP";
  transform: rotate(0.05deg);
}
header .logo .title h1 span {
  display: block;
  text-align: center;
  font-size: 0.7em;
  font-weight: 400;
}
header .logo .title p {
  display: block;
  transform: rotate(0.05deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: 100%;
}
nav ul {
  display: flex;
  justify-content: flex-start;
  max-width: 960px;
  margin: 0 auto;
  transform: rotate(0.05deg);
}
nav ul > li {
  position: relative;
  z-index: 1000;
  width: 100%;
}
nav ul > li a {
  position: relative;
}
nav ul > li a:visited, nav ul > li a:link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.5em 0;
  color: #222;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
nav ul > li a span {
  display: block;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 1px;
  margin: -3px 0 6px 0;
}
nav ul > li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  margin: 0 auto;
  border-bottom: 3px solid #222;
  transition: all 0.3s;
}
nav ul > li a:hover::after, nav ul > li a:focus::after {
  width: 100%;
}
nav ul > li:hover .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
nav ul > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: -moz-max-content;
  width: max-content;
  transition: All 0.5s ease;
}
nav ul > li > .sub-menu > li {
  position: relative;
  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;
  font-size: 1em;
  text-decoration: none;
}
nav ul > li > .sub-menu > li > a:hover, nav ul > li > .sub-menu > li > a:focus, nav ul > li > .sub-menu > li > a.current {
  opacity: 0.8;
}
nav ul > li > .sub-menu > li:hover .sub-menu, nav ul > li > .sub-menu > li:focus .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
nav ul > li > .sub-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
}
nav ul > li > .sub-menu > li > .sub-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
nav ul > li > .sub-menu > li > .sub-menu > li > a {
  display: block;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
}
nav ul > li > .sub-menu > li > .sub-menu > li > a:hover, nav ul > li > .sub-menu > li > .sub-menu > li > a:focus, nav ul > li > .sub-menu > li > .sub-menu > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

/*----------------------------------------------------------------------------
******************************************************************************
** main image
******************************************************************************
----------------------------------------------------------------------------*/
.main_img img {
  width: 100%;
  height: 70vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** contents
******************************************************************************
----------------------------------------------------------------------------*/
.content {
  width: 100%;
  padding: 100px 0;
}

.content_area {
  max-width: 980px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.content_area h1, .about .content_area h2, .news .content_area h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 30px;
  font-size: 1.5em;
  transform: rotate(0.05deg);
}
.content_area h1 span, .about .content_area h2 span, .news .content_area h2 span {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
.content_area h1 span:after, .about .content_area h2 span:after, .news .content_area h2 span:after {
  content: attr(data-subtitle);
  display: block;
  margin: -3px auto 0;
  color: #757575;
  font-size: 0.6em;
  letter-spacing: 2px;
}
.content_area h1::after, .about .content_area h2::after, .news .content_area h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 8px;
  background: #d0d0d0;
  margin: auto;
}
.news .content_area h2 {
  margin-bottom: 0;
}
.news .content_area h2::after {
  display: none;
}
.content_area .mcon h2 {
  position: relative;
  display: block;
  margin: 30px auto 20px;
  padding: 8px 10px;
  background: #ededed;
  font-size: 1.3em;
}
.content_area .mcon h3 {
  position: relative;
  margin: 20px 0;
  padding: 8px 0 3px;
  color: #333;
  font-size: 1.2em;
  text-align: left;
  border-bottom: 1px dotted #AAA;
}
.content_area .mcon h3::before {
  content: "";
  position: relative;
  top: 1px;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 10px 0 0;
  background: #999;
}
.content_area .mcon h4 {
  margin: 20px 0;
  padding-left: 10px;
  color: #333;
  font-size: 1.1em;
  border-left: 5px solid #666;
}
.content_area .mcon iframe {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.content_area .mcon img {
  max-width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.news {
  background: #ededed;
}
.news .news_area {
  width: 100%;
  height: 200px;
  margin: -15px auto 0;
  overflow-y: scroll;
}
.news .news_area .news_list {
  width: 100%;
}
.news .news_area .news_list .news_item {
  display: flex;
  justify-content: flex-start;
  padding: 16px 4px 4px;
  border-bottom: 1px solid #9d9d9d;
}
.news .news_area .news_list .news_item time {
  margin-right: 10px;
}
.news .news_area .news_list .news_item time::before {
  content: "\f140";
  margin-right: 5px;
  font-size: 0.8em;
  color: #9d9d9d;
  font-family: FontAwesome;
}
.news .news_area .news_list .news_item .news_item_ttl .index_news_tbl_icon_new {
  order: -1;
  display: inline-block;
  margin: 0 10px;
  margin-left: 0.3em;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
}
.news .news_area .news_list .news_item .news_item_ttl .index_news_tbl_icon_new::before {
  content: "NEW";
}

.banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.banner_list li {
  width: calc((100% - 2em - 1px) / 3);
  margin: 0 0 1em;
}
.banner_list li a img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.banner_list li a:hover img, .banner_list li a:focus img {
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** news archive
******************************************************************************
----------------------------------------------------------------------------*/
.news_list {
  width: 100%;
}
.news_list .news_item {
  display: flex;
  justify-content: flex-start;
  padding: 16px 4px 4px;
  border-bottom: 1px solid #9d9d9d;
}
.news_list .news_item time {
  margin-right: 10px;
}
.news_list .news_item time::before {
  content: "\f140";
  margin-right: 5px;
  font-size: 0.8em;
  color: #9d9d9d;
  font-family: FontAwesome;
}
.news_list .news_item .news_item_ttl .index_news_tbl_icon_new {
  order: -1;
  display: inline-block;
  margin: 0 10px;
  margin-left: 0.3em;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
}
.news_list .news_item .news_item_ttl .index_news_tbl_icon_new::before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #000;
  border-radius: 5px;
  color: #000 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers:not(.dots):focus, .pager .pager_list .page-numbers.current {
  background: #000;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer {
  margin-top: auto;
  padding: 25px 0;
  background: #222;
}
footer p {
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  letter-spacing: 1px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
#page_header {
  background: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(5px 0px 5px rgba(0, 0, 0, 0.1));
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body.page {
    padding-top: 0;
  }
  header .logo {
    width: calc(100% - 20vw);
    margin: 20px 10px;
    padding: 0;
  }
  header .logo .title h1 {
    font-size: 1.3em;
  }
  header .logo .title h1 span {
    display: block;
    text-align: left;
    font-size: 0.7em;
    font-weight: 400;
  }
  nav {
    position: fixed;
    top: 0;
    right: -70%;
    z-index: 100;
    overflow-x: hidden;
    overflow-y: auto;
    width: 70%;
    height: 100vh;
    background: #333;
    color: #fff;
    transition: All 0.5s ease;
  }
  nav ul {
    display: block;
  }
  nav ul > li {
    position: relative;
    width: 100%;
    border: none;
  }
  nav ul > li:nth-last-child(1) {
    border: none;
  }
  nav ul > li > a {
    position: relative;
    display: block;
    padding: 1em 1em 1em 1.5em !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-align: left !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  nav ul > li > a:hover, nav ul > li > a:focus, nav ul > li > a.current {
    background-color: rgba(0, 0, 0, 0.2);
  }
  nav ul > li > a::after {
    content: attr(data-text);
    display: block;
  }
  nav ul > li > a img {
    display: none;
  }
  nav ul > li > .sub-menu {
    position: relative;
    left: 0;
    transform: translateX(0);
    width: 100%;
  }
  nav ul > li > .sub-menu > li > a {
    display: flex;
    padding: 1em 1em 1em 2em;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  nav ul > li > .sub-menu > li > a:hover, nav ul > li > .sub-menu > li > a:focus, nav ul > li > .sub-menu > li > a.current {
    background-color: #000;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  nav ul > li > .sub-menu > li > .sub-menu {
    position: relative;
  }
  nav ul > li > .sub-menu > li > .sub-menu > li > a {
    display: block;
    padding: 1em 1em 1em 3em;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  nav ul > li > .sub-menu > li > .sub-menu > li > a:hover, nav ul > li > .sub-menu > li > .sub-menu > li > a:focus, nav ul > li > .sub-menu > li > .sub-menu > li > a.current {
    background-color: #000;
    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: 30px;
    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;
    transition: all 0.4s;
    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;
    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) {
    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) {
    transform: translateY(-10px) rotate(45deg);
    background: #fff;
  }
  .main_img img {
    height: 100% !important;
  }
  .content {
    padding: 50px 0;
  }
  .content .content_area .news_area time {
    margin-right: 10px;
  }
  footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  footer p {
    line-height: 2;
  }
  /*---------------------------
  下層ページ
  ---------------------------*/
  #page_header {
    position: fixed;
  }
}/*# sourceMappingURL=style.css.map */