@charset 'utf-8';

body {
  margin: 0;
  padding: 0;
  color: #222;
}
.header {
  background: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.1));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
.header__logo {
  max-width: 960px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.header__logo img {
  width: 60px;
}
.header__title {
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 550px;
}
.title__first {
  font-size: 1.5rem;
  font-weight: bold;
}
.title__second {
  font-size: 1.5rem;
  font-weight: bold;
}
.title__third {
  opacity: 0.6;
  font-size: 0.84rem;
  margin-top: 0.1rem;
}
.title__subtitle {
  display: block;
  font-size: 0.9rem;
}
@media screen and (max-width: 769px) {
  .header {
    position: relative;
    padding: 1rem;
  }
  .header__logo {
    margin: 0;
  }
  .header__logo img {
    width: 2rem;
  }
  .header__title {
    margin-left: 0.8rem;
    width: 100%;
    justify-content: start;
  }
  .title__first {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
  .title__second {
    font-size: 1.2rem;
  }
  .title__third {
    opacity: 0.6;
    font-size: 0.7rem;
    margin-top: 0.1rem;
  }
  .title__third br {
    display: none;
  }
  .title__subtitle {
    font-size: 0.7rem;
  }
}
/*---------------------------
globalnav
---------------------------*/
@media screen and (min-width: 770px) {
  .menu-globalnav-wrap {
    width: 100%;
  }
  #menu-globalnav {
    display: flex;
    max-width: 960px;
    justify-content: center;
    margin: 0 auto;
  }
  #menu-globalnav > .menu-item {
    width: 20%;
    position: relative;
  }
  #menu-globalnav > .menu-item > a:visited,
  #menu-globalnav > .menu-item > a:link {
    text-decoration: none;
    color: #222;
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0;
  }
  #menu-globalnav > .menu-item > a > span {
    display: block;
    font-size: 0.8em;
    font-weight: normal;
    letter-spacing: 1px;
    margin: -3px 0 6px 0;
  }
  #menu-globalnav > .menu-item > a::after {
    content: '';
    display: block;
    border-bottom: 3px solid #222;
    margin: 0 auto;
    width: 0;
    transition: all 0.3s;
  }
  #menu-globalnav > .menu-item > a:hover::after {
    width: 100%;
  }
  #menu-globalnav > .menu-item:hover > .sub-menu {
    display: block;
  }
  .sub-menu {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    top: 100%;
    padding: 1rem;
    display: none;
  }
  .sub-menu > .menu-item {
    border-bottom: 1px dotted #999;
  }
  .sub-menu > .menu-item > a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0.6em;
    position: relative;
  }
  .sub-menu > .menu-item > a::after {
    content: '';
    display: block;
    border-bottom: 3px solid #222;
    margin: 0 auto;
    width: 0;
    transition: all 0.3s;
    position: absolute;
    top: 100%;
    left: 0%;
  }
  .sub-menu > .menu-item > a:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 769px) {
  .menu-globalnav-wrap {
    background: rgba(255, 255, 255, 0.9);
    z-index: 100;
    height: 100vh;
    width: 90%;
    overflow-x: none;
    overflow-y: auto;
    top: 0px;
    right: -90%;
    position: fixed;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
    padding-top: 3rem;
  }
  #menu-globalnav {
  }
  #menu-globalnav > .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  #menu-globalnav > .menu-item > a {
    text-decoration: none;
    color: #222;
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    padding: 1rem;
    margin: 0;
  }
  #menu-globalnav > .menu-item > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  #menu-globalnav > .menu-item > a > span {
    display: none;
  }
  #menu-globalnav > .menu-item:hover > .sub-menu {
    display: block;
  }
  .sub-menu {
    padding: 0 1rem 1rem;
  }
  .sub-menu > .menu-item {
    border-bottom: 1px dotted #999;
  }
  .sub-menu > .menu-item:last-of-type {
    border: none;
  }
  .sub-menu > .menu-item > a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0.6em;
    position: relative;
  }
  .sub-menu > .menu-item > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .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 0.4s;
    transition: all 0.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;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sp_nav_trigger.active::after {
    content: 'CLOSE';
    bottom: -25px;
    color: #000;
  }
  .sp_nav_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
    background: #000;
  }
  .sp_nav_trigger.active span:nth-of-type(2) {
    opacity: 0;
    background: #000;
  }
  .sp_nav_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    background: #000;
  }
}

/*---------------------------
bodyer
---------------------------*/
.bodyer {
  background-color: #eef8ff;
  padding: 240px 0 60px;
}
.bodyer__inner {
  width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bodyer__inner._center {
  justify-content: center;
}
@media screen and (max-width: 769px) {
  .bodyer {
    width: 100%;
    margin: 0;
    padding: 3rem 1rem;
  }
  .bodyer__inner {
    width: 100%;
  }
  .bodycontent--middleer {
    width: 100%;
  }
}
/*---------------------------
side
---------------------------*/
.side--middle {
  width: 230px;
}
.side_head {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.6em 0.8em;
}
.side_nav_list a {
  padding: 0.4em;
  display: block;
}
.side_nav_list li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 769px) {
  .side--middle {
    width: 100%;
    margin-top: 2rem;
  }
}
/*---------------------------
content
---------------------------*/
.main_img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin: 0 !important;
}
@media screen and (max-width: 769px) {
  .main_img img {
    height: 30vh;
  }
}
/*---------------------------
content
---------------------------*/
.page_content.content {
  background-color: #eef8ff;
}
.content {
  width: 100%;
  padding: 100px 0;
}
.content.bg--blue {
  background-color: #eef8ff;
}
.content--wide {
  width: 960px;
}
.content--middle {
  width: 700px;
}
.content_area {
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 30px 30px;
  background-color: #fff;
}
.content_area h2 {
  display: block;
  margin: 0 auto;
  font-size: 1.5em;
  position: relative;
  text-align: center;
}
.content_area h2 span {
  display: block;
  font-size: 0.6em;
  letter-spacing: 2px;
  margin: -4px auto 0;
  color: #757575;
}
.content_area h3 {
  font-size: 1.4em;
  margin: 1.4rem 0 1em;
  position: relative;
  border-bottom: 3px solid #eef8ff;
  padding: 0 0.2em 0.2em;
}
.content_area h3::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 4em;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}
.content_area h4 {
  font-size: 1.3em;
  margin: 1.2rem 0 0.6em;
}
.content_area h5 {
  font-size: 1.2em;
  margin: 10px 0;
}
@media screen and (max-width: 769px) {
  .page_content.content {
    padding: 30px 10px 30px;
  }
  .content--middle {
    width: 100%;
  }
}
/*---------------------------
about
---------------------------*/
.about h2 {
  margin-bottom: 5rem;
}
.about h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -25px;
  height: 8px;
  width: 100%;
  background: #d0d0d0;
  width: 70%;
  margin: auto;
  left: 0;
  right: 0;
}
.content_area p {
  margin: 1em 0 0;
  text-indent: 1em;
}
.news {
  background: #ededed;
}
.news_area {
  margin-top: 30px;
  width: 95%;
  margin: 0 auto;
}
.news_table {
  width: 100%;
  font-size: 1.1em;
}

.news_table tr td {
  padding: 16px 0 4px 0;
  border-bottom: 1px solid #bbb;
}
.news_table tr td time::before {
  font-family: FontAwesome;
  content: '\f140';
  font-size: 0.8em;
  margin-right: 2px;
  color: #9d9d9d;
  margin-right: 5px;
}
.news_area_date {
  width: 140px;
}
footer {
  background: #222;
}
footer p {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-size: 0.9em;
  line-height: 6;
}

/*---------------------------
下層ページ
---------------------------*/
#page_header {
  padding-top: 10px;
  filter: drop-shadow(5px 0px 5px rgba(0, 0, 0, 0.1));
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 769px) {
  .content {
    padding: 50px 0;
  }
  .content_area p {
    font-size: 1.1em;
  }
  .news_table tr td {
    vertical-align: top;
  }
  .news_table tr td time {
    margin-right: 10px;
  }
  footer p {
    line-height: 4;
  }
  /*---------------------------
下層ページ
---------------------------*/
  #page_header {
    position: relative;
  }
  #page_header + .content {
    padding: 3rem 1rem;
  }
}
.banner {
  background-color: #fff;
  padding: 60px 0;
}
.banner__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner__item + .banner__item {
  margin-left: 2rem;
}
.banner__item img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 600px) {
  .banner__list {
    display: block;
    text-align: center;
  }
  .banner__item + .banner__item {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.heading--lebel1 {
  font-size: 1.6rem;
  padding-bottom: 0.2em;
  text-align: center;
}
.heading--lebel1WithSubTitle {
  display: block;
  margin: 0 auto;
  font-size: 1.5em;
  position: relative;
  text-align: center;
}
.heading--lebel1WithSubTitle span {
  display: block;
  font-size: 0.6em;
  letter-spacing: 2px;
  margin: -4px auto 0;
  color: #757575;
}
.card__button {
  display: block;
}
.card__button:hover {
  opacity: 0.8;
}
.card__thumnail {
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  background-color: #efefef;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
.card__thumnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card__caption {
  font-size: 0.96rem;
}
@media screen and (max-width: 600px) {
  .card__thumnail {
    height: 120px;
  }
}
.toPage {
  display: flex;
  justify-content: center;
  align-items: center;
}
a.toPage__button {
  display: block;
  padding: 1em 1em;
  color: #fff;
  text-decoration: none;
  background-color: #333;
}
a.toPage__button:hover {
  opacity: 0.8;
}
