@charset "UTF-8";
/*
Theme Name: Lightning Child
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.0.1

header var(--vk-color-custom-1);
footer var(--vk-color-custom-2);
section bg var(--vk-color-custom-3);
*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: style.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	footer
10.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

/* start \*/
html:\66irst-child body {
  font-size: 62.5%;
}

/* end */
body:first-of-type {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none !important;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

caption, th {
  font-weight: normal;
  text-align: left;
}

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  min-width: 1060px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  html,
  body {
    min-width: auto;
  }
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #2F302F;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
a:hover > * {
  text-decoration: none;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}
.right-nav a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
  width: 60px;
  height: 60px;
  background: var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .right-nav a {
    width: 40px;
    height: 40px;
  }
}
.right-nav a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.right-nav img {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .right-nav img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 769px) {
  #drawernav {
    display: none;
  }
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}
img.alignleft {
  float: left;
}
@media screen and (max-width: 768px) {
  img.alignleft {
    float: none;
  }
}
img.alignright {
  float: right;
}
@media screen and (max-width: 768px) {
  img.alignright {
    float: none;
  }
}

div.aligncenter {
  margin: 0 auto;
}
div.alignright {
  float: right;
}
@media screen and (max-width: 768px) {
  div.alignright {
    float: none;
  }
}

.wp-caption-text {
  display: block;
  width: 760px;
  margin: 20px auto 0;
  font-size: 13px !important;
  line-height: 1.76923 !important;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .wp-caption-text {
    width: auto;
    margin: 3% auto 0;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.66667;
  }
}

.box {
  padding: 120px 0 90px;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 10% 0;
  }
}
.box__title {
  position: relative;
  color: var(--vk-color-custom-1);
  font-size: 38px;
  font-weight: bold;
  border: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box__title {
    font-size: 24px;
    font-size: 6.4vw;
  }
}
.box__title__icon {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 65px;
  width: 80px;
  height: 80px;
  margin: auto;
  background: var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .box__title__icon {
    top: 35px;
    width: 40px;
    height: 40px;
  }
}
.box__title__icon.-publications {
  background: #FFF;
}
.box__title__icon img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .box__title__icon img {
    width: 40px;
    height: 40px;
  }
}
.box__inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .box__inner {
    width: 92%;
  }
}

.link-more {
  position: relative;
  z-index: 1;
  width: 280px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .link-more {
    width: 90%;
  }
}
.link-more a {
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 18px;
  text-decoration: none;
}
.link-more a:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  content: "";
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
}
.link-more a.-publications {
  background: #FFF;
  color: var(--vk-color-custom-1);
}
.link-more a.-publications:before {
  border-color: var(--vk-color-custom-1);
}

.breadcrumb-list {
  margin-bottom: 80px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb-list {
    display: none;
  }
}
.breadcrumb-list__item {
  display: inline-block;
}
.breadcrumb-list__item a,
.breadcrumb-list__item span {
  color: #2F302F;
  font-size: 14px;
  text-decoration: none;
}
.breadcrumb-list__item i {
  margin-right: 0.2em;
}
.breadcrumb-list__item:not(:last-child):after {
  content: "＞";
  position: relative;
  top: -1px;
  margin: 0 0.5em;
}

.chapter {
  display: flex;
  flex-wrap: wrap;
  margin: -20px 0 75px;
}
@media screen and (max-width: 768px) {
  .chapter {
    flex-wrap: wrap;
    margin: -5% 4% 8%;
  }
}
.chapter:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .chapter:not(:last-of-type) {
    margin-bottom: 8%;
  }
}
.chapter__item {
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .chapter__item {
    margin: 8% 3% 0 0;
  }
}
.chapter__item a {
  display: block;
  position: relative;
  padding: 10px 30px 10px 17px;
  background: var(--vk-color-custom-3);
  color: var(--vk-color-custom-1);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .chapter__item a {
    padding: 6px 30px 7px 11px;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.chapter__item a:after {
  -moz-box-sizing: initial;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  content: "";
  position: absolute;
  right: 12px;
  top: -3px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 2px solid var(--vk-color-custom-1);
  border-right: 2px solid var(--vk-color-custom-1);
}
.chapter_group_name {
  margin-bottom: 20px;
  padding-left: 15px;
  color: var(--vk-color-custom-1);
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .chapter_group_name {
    margin: 0 4% 1%;
    padding-left: 5px;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}

.section_group_name {
  margin: 25px 0 30px;
  padding-left: 23px;
  color: var(--vk-color-custom-1);
  font-size: 32px;
  font-weight: bold;
  border-left: 6px solid var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .section_group_name {
    margin: 0 4% 4%;
    padding-left: 5px;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

.group_title {
  margin: 25px 0 30px;
  padding-left: 23px;
  color: var(--vk-color-custom-1);
  font-size: 32px;
  font-weight: bold;
  border-left: 6px solid var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .group_title {
    margin: 0 4% 4%;
    padding-left: 5px;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 30000;
    width: 100%;
  }
}
.header__upper {
  position: relative;
  background: var(--vk-color-custom-1);
}
.header__title {
  padding: 21px 0 21px 35px;
  color: #FFF;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header__title {
    padding: 4% 14% 4% 4%;
    font-size: 22px;
    font-size: 5.86667vw;
  }
}
.header__title a {
  color: #FFF;
  font-weight: 600;
}
.header__title a:hover,
.header__title a:hover small {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.header__title small {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .header__title small {
    margin-bottom: 2%;
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.header__link {
  display: flex;
  position: absolute;
  right: 37px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .header__link {
    display: none;
  }
}
.header__link__item {
  margin-bottom: 0;
}
.header__link__item:first-child {
  margin-right: 15px;
}
.header__link__item a {
  display: block;
  position: relative;
  text-decoration: none;
}
.header__link__item a:before {
  content: "";
  position: absolute;
}
.header__link__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  text-decoration: underline;
}
.header__link__item a.-en {
  padding: 15px 17px 15px 0;
  color: #FFF;
  font-size: 14px;
}
.header__link__item a.-en:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  left: -20px;
  top: 16px;
  width: 14px;
  height: 14px;
  background: #FFF;
}
.header__link__item a.-en:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  box-sizing: initial;
  display: inline-block;
  content: "";
  position: absolute;
  left: -16px;
  top: 20px;
  width: 3px;
  height: 3px;
  border-top: 2px solid var(--vk-color-custom-1);
  border-right: 2px solid var(--vk-color-custom-1);
}
.header__link__item a.-contact {
  -moz-border-radius: 14px 14px 0 0;
  -webkit-border-radius: 14px;
  border-radius: 14px 14px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 180px;
  height: 100%;
  padding-left: 15px;
  background: #FFF;
  color: var(--vk-color-custom-1);
  font-size: 16px;
  font-weight: bold;
}
.header__link__item a.-contact:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 23px;
  top: 3px;
  bottom: 0;
  content: "\f0e0";
  color: var(--vk-color-custom-1);
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: normal;
}
.header__lower {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .header__lower {
    display: none;
  }
}
.header__nav__list {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: auto;
}
.header__nav__item,
.header__nav li {
  width: 100%;
  border-right: 1px solid #B4B4B5;
}
.header__nav__item:first-child,
.header__nav li:first-child {
  border-left: 1px solid #B4B4B5;
}
.header__nav__item:hover a,
.header__nav li:hover a {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  background: #999;
  color: #FFF;
}
.header__nav__item a,
.header__nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  color: #2F302F;
  font-size: 16px;
  font-weight: bold;
}
.header__nav__item.-is-active a,
.header__nav li.-is-active a {
  background: #999;
  color: #FFF;
}

.header__upper {
  background: var(--vk-color-custom-1);
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
#content.-contact {
  background: var(--vk-color-custom-3);
}

/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
9.	#footer
----------------------------------------------------------------------*/
.footer {
  background: #082B5E;
  color: #FFF;
}
.footer__inner {
  width: 1000px;
  margin: auto;
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    width: 92%;
    padding: 10% 0;
  }
}
.footer__upper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 768px) {
  .footer__upper {
    display: block;
    margin-bottom: 5%;
    padding-bottom: 5%;
  }
}
.footer__title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer__title {
    margin-bottom: 4%;
    font-size: 22px;
    font-size: 5.86667vw;
  }
}
.footer__title small {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .footer__title small {
    margin-bottom: 8px;
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.footer__sns {
  display: flex;
}
.footer__sns__item:not(:first-child) {
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .footer__sns__item:not(:first-child) {
    margin-left: 4%;
  }
}
@media screen and (max-width: 768px) {
  .footer__sns__item img {
    width: 30px;
    height: 30px;
  }
}
.footer__lower {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__lower {
    display: block;
  }
}
.footer__box {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .footer__box {
    width: auto;
  }
}
.footer__address {
  font-size: 14px;
  line-height: 1.71429;
}
@media screen and (max-width: 768px) {
  .footer__address {
    margin-bottom: 4%;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.footer__address:first-of-type {
  margin-bottom: 20px;
}
.footer__logo {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 70%;
  }
}
.footer__logo__item:not(:first-child) {
  margin-left: 28px;
}
@media screen and (max-width: 768px) {
  .footer__logo__item:not(:first-child) {
    margin-left: 8%;
  }
}

.footer {
  background: var(--vk-color-custom-2);
}

/*----------------------------------------------------------------------
10.	ページ別個別設定
----------------------------------------------------------------------*/
.main__fv {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .main__fv {
    height: auto;
  }
}
.main__fv.-lower {
  display: flex;
  align-items: center;
  position: relative;
  height: 300px;
}
.main__fv.-lower:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .main__fv.-lower {
    display: block;
    height: auto;
  }
}
.main__fv__inner {
  width: 1000px;
  margin: auto;
  padding-top: 445px;
}
@media screen and (max-width: 768px) {
  .main__fv__inner {
    display: flex;
    align-items: center;
    width: auto;
    padding-top: 0;
  }
}
.main__fv__inner.-lower {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .main__fv__inner.-lower {
    justify-content: flex-start;
    height: 200px;
    padding: 0 0 0 8%;
  }
}
.main__fv__title {
  -moz-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  position: relative;
  z-index: 10;
  padding: 20px 28px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main__fv__title {
    margin: 40% 20% 0 0;
    padding: 3% 4%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.4;
  }
}
.main__fv__title.-lower {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  background: none;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .main__fv__title.-lower {
    margin: 0;
    font-size: 28px;
    font-size: 7.46667vw;
  }
}
.main__fv__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
}
.main__fv__bg img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .main__fv__bg img {
    height: auto;
  }
}
.main__fv__bg.-lower img {
  height: 300px;
}
@media screen and (max-width: 768px) {
  .main__fv__bg.-lower img {
    height: 200px;
  }
}
.main__inner {
  width: 900px;
  margin: auto;
  padding: 15px 0 180px;
}
@media screen and (max-width: 768px) {
  .main__inner {
    width: auto;
    padding: 4% 0 20%;
  }
}
.main__inner.-technology {
  width: 1000px;
}
@media screen and (max-width: 768px) {
  .main__inner.-technology {
    width: auto;
    padding-top: 8%;
  }
}
@media screen and (max-width: 768px) {
  .main__inner.-link, .main__inner.-contact {
    padding-top: 8%;
  }
}

.research {
  padding-bottom: 0;
}
.research__title {
  position: relative;
  padding-bottom: 170px;
}

.research__pic {
    width: 300px;
}

@media screen and (max-width: 768px) {
  .research__title {
    padding-bottom: 80px;
  }
}
.research__title:before {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 100vw;
  border-color: transparent transparent transparent var(--vk-color-custom-3);
}
@media screen and (max-width: 768px) {
  .research__title:before {
    border-width: 0 0 100px 100vw;
  }
}
.research__bg {
  padding-bottom: 90px;
  background: var(--vk-color-custom-3);
}
@media screen and (max-width: 768px) {
  .research__bg {
    padding: 3% 0 15%;
  }
}
.research__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 820px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .research__inner {
    display: block;
    width: auto;
    margin: 0 4% 7%;
  }
}
.research__text {
  width: 470px;
  font-size: 16px;
  line-height: 2.125;
}
@media screen and (max-width: 768px) {
  .research__text {
    width: auto;
    margin-bottom: 5%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.85714;
  }
}

.publications {
  padding-bottom: 0;
  background: url("img/publications_bg.png") center center no-repeat var(--vk-color-custom-1);
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.publications__title {
  margin-bottom: 140px;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .publications__title {
    margin-bottom: 80px;
  }
}
.publications__inner {
  position: relative;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .publications__inner {
    padding-bottom: 15%;
  }
}
.publications__list {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  padding: 35px 50px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .publications__list {
    margin-bottom: 30px;
    padding: 3% 4%;
  }
}
.publications__item {
  font-size: 13px;
  line-height: 1.84615;
}
@media screen and (max-width: 768px) {
  .publications__item {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.publications__item:not(:first-child) {
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .publications__item:not(:first-child) {
    padding-top: 3%;
  }
}
.publications__item:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid #C7C4C3;
}
@media screen and (max-width: 768px) {
  .publications__item:not(:last-child) {
    padding-bottom: 3%;
  }
}
.publications__item__link {
  display: inline-block;
  margin-left: 12px;
  line-height: 1;
}
.publications__item__link a {
  display: inline-block;
  padding: 2px 4px 3px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 13px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .publications__item__link a {
    padding: 3px 4px 2px;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.publications__pic {
  position: absolute;
  left: -150px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .publications__pic {
    display: none;
  }
}

.news {
  padding-bottom: 0;
}
.news__title {
  padding-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .news__title {
    padding-bottom: 80px;
  }
}
.news__title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 0 0 100vw;
  border-color: transparent transparent transparent var(--vk-color-custom-3);
}
@media screen and (max-width: 768px) {
  .news__title:before {
    border-width: 100px 0 0 100vw;
  }
}
.news__bg {
  padding: 45px 0 90px;
  background: var(--vk-color-custom-3);
}
@media screen and (max-width: 768px) {
  .news__bg {
    padding: 3% 0 15%;
  }
}
.news__inner {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .news__inner {
    margin-bottom: 30px;
  }
}
.news__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .news__list {
    display: block;
  }
}
.news__item {
  width: 300px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .news__item {
    width: 100%;
  }
}
.news__item:not(:first-child) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .news__item:not(:first-child) {
    margin: 8% 0 0;
  }
}
.news__item a {
  display: block;
  position: relative;
  color: #2F302F;
  text-decoration: none;
}
.news__item__term {
  position: relative;
  height: 0;
  padding-top: 53.33333%;
}
.news__item__term img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}
.news__item__description {
  padding: 22px 20px;
  font-size: 15px;
  line-height: 1.6;
}
.news__item__date {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 12px;
  color: var(--vk-color-custom-1);
  font-size: 15px;
  border-bottom: 1px solid #C7C4C3;
}
.news__item__cate {
  position: absolute;
  right: 0;
  top: 0;
  padding: 4px 12px 6px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .wp-caption {
    width: 100% !important;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 12%;
  }
}
.wp-pagenavi > * {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  border: none !important;
}
.wp-pagenavi > *:not(:last-child) {
  margin-right: 9px;
}
.wp-pagenavi a:hover {
  color: #FFF;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding: 0;
  font-size: 14px;
}
.wp-pagenavi .current {
  padding: 0;
  color: initial;
  background: #DDD;
}
.wp-pagenavi i {
  margin: 0;
}

.recruit {
  padding: 100px 0 150px;
  background: url("img/recruit_bg.png") center center no-repeat var(--vk-color-custom-1);
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 10% 0;
  }
}
.recruit__title {
  display: flex;
  align-items: center;
  width: 1000px;
  margin: 0 auto 40px;
  color: #FFF;
  font-size: 38px;
  font-weight: bold;
  border: none;
}
@media screen and (max-width: 768px) {
  .recruit__title {
    width: 92%;
    margin: 0 auto 5%;
    font-size: 24px;
    font-size: 6.4vw;
  }
}
.recruit__title__icon {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .recruit__title__icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}
.recruit__title__icon img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .recruit__title__icon img {
    width: 40px;
    height: 40px;
  }
}
.recruit__inner {
  position: relative;
}
.recruit p:not(.recruit__pic) {
  position: relative;
  z-index: 1;
  width: 680px;
  margin-bottom: 40px;
  color: #FFF;
  font-size: 16px;
  line-height: 2.125;
}
@media screen and (max-width: 768px) {
  .recruit p:not(.recruit__pic) {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.85714;
	  width: auto;
  }
}
.recruit p:not(.recruit__pic) a {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
}
.recruit__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .recruit__list {
    display: block;
    margin-top: 0;
  }
}
.recruit__item {
  margin: 20px 25px 0 0;
}
@media screen and (max-width: 768px) {
  .recruit__item {
    margin: 0;
  }
}
.recruit__item a {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  position: relative;
  padding: 13px 45px 13px 15px;
  background: #FFF;
  color: var(--vk-color-custom-1);
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .recruit__item a {
    font-size: 14px;
    font-size: 3.73333vw;
    text-decoration: none;
  }
}
.recruit__item a:before, .recruit__item a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.recruit__item a:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  right: 11px;
  width: 18px;
  height: 18px;
  background: var(--vk-color-custom-1);
}
.recruit__item a:after {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  right: 18px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
.recruit__pic {
  position: absolute;
  right: -340px;
  top: -220px;
}
@media screen and (max-width: 768px) {
  .recruit__pic {
    display: none;
  }
}

/* 下層ページ */
.lower .block:not(:last-of-type) {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .lower .block:not(:last-of-type) {
    margin-bottom: 10%;
  }
}
.lower .block__title {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  position: relative;
  margin-bottom: 45px;
  padding: 14px 30px 20px;
  background: var(--vk-color-custom-1);
  background: -moz-linear-gradient(left, var(--vk-color-custom-1) 70%, #ffffff 100%);
  background: -webkit-linear-gradient(left, var(--vk-color-custom-1) 70%, #ffffff 100%);
  color: #FFF;
  font-size: 22px;
  border: none;
}
@media screen and (max-width: 768px) {
  .lower .block__title {
    margin-bottom: 5%;
    padding: 3% 4% 4%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.lower .block__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: #FFF;
}
.lower .block__subtitle {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}
.lower .block p {
  font-size: 15px;
  line-height: 2.13333;
}

.lower .h3_title {
}









@media screen and (max-width: 768px) {
  .lower .block p {
    padding: 0 4%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.85714;
  }
}
.lower .block p:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .lower .block p:not(:first-of-type) {
    margin-top: 5%;
  }
}
.lower .block .pic {
  *zoom: 1;
  display: block;
  margin: 45px -15px;
  text-align: center;
}
.lower .block .pic:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 768px) {
  .lower .block .pic {
    margin: 5% 0;
  }
}
.lower .block .pic:last-child {
  margin-bottom: 0;
}
.lower .block img {
  vertical-align: top;
}
.lower .block__content {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .lower .block__content {
    margin-top: 10%;
  }
}
.lower .block__content > * {
  clear: both;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .lower .block__content > * {
    margin-bottom: 10%;
  }
}
.lower .block__content__title {
  margin-bottom: 32px;
  padding: 7px 0 18px 18px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid var(--vk-color-custom-1);
  border-left: 6px solid var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .lower .block__content__title {
    margin: 0 4% 5%;
    padding: 4px 0 6px 10px;
    font-size: 16px;
    font-size: 4.26667vw;
    border-bottom: 1px solid #005BAC;
    border-left: 4px solid #005BAC;
    line-height: 1.3;
  }
}
.lower .block__content__text {
  font-size: 15px;
  line-height: 2;
}
.lower .block__content__text em {
  font-weight: bold;
}
.lower .block__content__pic {
  margin-top: 65px;
  text-align: center;
}
.lower .group__title {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  position: relative;
  margin-bottom: 45px;
  padding: 14px 30px 20px;
  background: var(--vk-color-custom-1);
  background: -moz-linear-gradient(left, var(--vk-color-custom-1) 70%, #ffffff 100%);
  background: -webkit-linear-gradient(left, var(--vk-color-custom-1) 70%, #ffffff 100%);
  color: #FFF;
  font-size: 22px;
  border: none;
}
@media screen and (max-width: 768px) {
  .lower .group__title {
    margin-bottom: 5%;
    padding: 2% 4% 4%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.lower .group__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: #FFF;
}
.lower .member__group {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .lower .member__group {
    margin-bottom: 10%;
  }
}
.lower .member__group:last-of-type {
  margin-bottom: 0;
}
.lower .member__block:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .lower .member__block:not(:first-of-type) {
    margin-top: 8%;
  }
}
.lower .member__block:not(:last-of-type) {
  padding-bottom: 60px;
  border-bottom: 1px solid #B5B5B5;
}
@media screen and (max-width: 768px) {
  .lower .member__block:not(:last-of-type) {
    margin-top: 8%;
    padding-bottom: 4%;
  }
}
.lower .member__info {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lower .member__info {
    display: block;
    padding: 0 4%;
  }
}
.lower .member__info__pic {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .lower .member__info__pic {
    float: left;
    width: 30%;
    margin-right: 4%;
  }
}
.lower .member__info__description {
  width: 630px;
}
@media screen and (max-width: 768px) {
  .lower .member__info__description {
    width: auto;
  }
}
.lower .member__info__name {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
  font-size: 34px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lower .member__info__name {
    display: block;
    margin-bottom: 4%;
    font-size: 20px;
    font-size: 5.33333vw;
  }
}
.lower .member__info__name .en {
  margin-left: 40px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .lower .member__info__name .en {
    display: block;
    margin: 2% 0 0;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.lower .member__info__degree {
  margin-bottom: 38px;
  color: var(--vk-color-custom-1);
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lower .member__info__degree {
    margin-bottom: 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.lower .member__info__introduction {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lower .member__info__introduction {
    clear: both;
    padding-top: 4%;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.lower .member__history {
  margin: 45px 0 20px;
}
@media screen and (max-width: 768px) {
  .lower .member__history {
    margin: 7% 0 5%;
    padding: 0 4% 3%;
  }
}
.lower .member__history__term {
  margin-bottom: 10px;
  color: var(--vk-color-custom-1);
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lower .member__history__term {
    margin-bottom: 2%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.lower .member__history__description {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lower .member__history__description {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.lower .member__footer {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .lower .member__footer {
    display: block;
    margin: 0 4%;
  }
}
@media screen and (max-width: 768px) {
  .lower .member__footer__mail, .lower .member__footer__website {
    padding-left: 30px;
  }
}
.lower .member__footer__mail:before, .lower .member__footer__mail:after, .lower .member__footer__website:before, .lower .member__footer__website:after {
  content: "";
  position: absolute;
}
.lower .member__footer__mail:before, .lower .member__footer__website:before {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  width: 30px;
  height: 28px;
  background: var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .lower .member__footer__mail:before, .lower .member__footer__website:before {
    width: 24px;
    height: 22px;
  }
}
.lower .member__footer__mail:after, .lower .member__footer__website:after {
  color: #FFF;
  font-family: "Font Awesome 5 Free";
}
.lower .member__footer__mail {
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__mail {
    margin-bottom: 15px;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.lower .member__footer__mail:before {
  left: -40px;
  top: -3px;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__mail:before {
    left: 0;
  }
}
.lower .member__footer__mail:after {
  left: -32px;
  top: 4px;
  bottom: 0;
  content: "\f0e0";
  font-size: 15px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__mail:after {
    font-size: 12px;
    left: 6px;
    top: 3px;
  }
}
.lower .member__footer__mail__notice {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__mail__notice {
    font-size: 11px;
    font-size: 2.93333vw;
  }
}
.lower .member__footer__website {
  position: relative;
  margin-left: 140px;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__website {
    margin: 0 0 25px 0;
  }
}
.lower .member__footer__website:before {
  left: -40px;
  top: -3px;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__website:before {
    left: 0;
  }
}
.lower .member__footer__website:after {
  left: -32px;
  top: 6px;
  bottom: 0;
  content: "\f109";
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__website:after {
    left: 6px;
    top: 3px;
    font-size: 10px;
  }
}
.lower .member__footer__website a {
  color: initial;
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__website a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.lower .member__footer__sns {
  display: flex;
  position: relative;
  top: -4px;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .lower .member__footer__sns {
    position: unset;
    margin: 0 0 0 15px;
  }
}
.lower .member__footer__sns__item {
  width: 34px;
  margin: 0;
}
.lower .member__footer__sns__item:not(:first-child) {
  margin-left: 10px;
}
.lower .member__footer__sns__item img {
  width: 100%;
}
.lower .publications__list {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .lower .publications__list {
    padding: 0 4%;
  }
}
.lower .publications__item {
  position: relative;
  padding-left: 25px;
  list-style-type: none;
  counter-increment: number;
}
.lower .publications__item:before {
  position: absolute;
  left: 0;
  content: counter(number) ".";
  color: var(--vk-color-custom-1);
}
.lower .publications__item:last-child {
  padding-bottom: 25px;
  border-bottom: 1px solid #C7C4C3;
}
.lower .publications__block:not(:last-of-type) {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .lower .publications__block:not(:last-of-type) {
    margin-bottom: 10%;
  }
}
.lower .news__list {
  margin-top: -33.33333px;
}
@media screen and (max-width: 768px) {
  .lower .news__list {
    display: flex;
    justify-content: space-between;
    margin: -8% 4% 0;
  }
}
.lower .news__item {
  width: 200px;
  margin: 33.33333px 33.33333px 0 0;
}
@media screen and (max-width: 768px) {
  .lower .news__item {
    width: 47.5%;
    margin: 8% 0 0;
  }
}
.lower .news__item:not(:first-child) {
  margin-left: 0;
}
.lower .news__item:nth-child(4n) {
  margin-right: 0;
}
.lower .news__item__term {
  padding-top: 65%;
}
.lower .news__item__description {
  padding: 12px 0 0;
  font-size: 14px;
  line-height: 1.71429;
}
.lower .news__item__date {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.lower .news__item__text {
  text-decoration: underline;
}
.lower .news__detail__title {
  margin-bottom: 30px;
  padding: 0px 0 13px 18px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.38462;
  border-bottom: 1px solid var(--vk-color-custom-1);
  border-left: 6px solid var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .lower .news__detail__title {
    margin: 0 4% 4%;
    padding: 4px 0 6px 10px;
    font-size: 16px;
    font-size: 4.26667vw;
    border-bottom: 1px solid var(--vk-color-custom-1);
    border-left: 4px solid var(--vk-color-custom-1);
    line-height: 1.3;
  }
}
.lower .news__detail__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__info {
    margin: 0 4% 7%;
  }
}
.lower .news__detail__date {
  color: var(--vk-color-custom-1);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__date {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.lower .news__detail__cate {
  display: flex;
  align-items: center;
  height: 24px;
  margin-left: 20px;
  padding: 0 12px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__cate {
    height: 16px;
    margin-left: 10px;
    padding: 0 6px;
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.lower .news__detail__content {
  font-size: 15px;
  line-height: 2.13333;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__content {
    padding: 0 4%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.85714;
  }
}
.lower .news__detail__content p {
  margin: 50px 0;
  font-size: 15px;
  line-height: 2.13333;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__content p {
    margin: 7% 0;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.85714;
  }
}
@media screen and (max-width: 768px) {
  .lower .news__detail__content p:first-of-type {
    margin-top: 0;
  }
}
.lower .news__detail__content > div {
  margin: auto;
}
.lower .news__detail__content a {
  color: #2F302F;
  text-decoration: underline;
}
.lower .news__detail__content a:hover {
  text-decoration: none;
}
.lower .news__detail__content img {
  display: block;
  margin: 0 auto;
}
.lower .news__detail__content img + p {
  margin: 30px auto 0;
  font-size: 13px;
  line-height: 1.76923;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__content img + p {
    margin-top: 3% !important;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.lower .news__detail__pagenation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid #CCC;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__pagenation {
    margin: 15% 4% 0;
    padding-top: 5%;
  }
}
.lower .news__detail__pagenation a {
  display: flex;
  align-items: center;
  color: var(--vk-color-custom-1);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__pagenation a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.lower .news__detail__pagenation i {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__pagenation i {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
.lower .news__detail__pagenation__item.-prev i {
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__pagenation__item.-prev i {
    margin-right: 5px;
  }
}
.lower .news__detail__pagenation__item.-next i {
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .lower .news__detail__pagenation__item.-next i {
    margin-left: 5px;
  }
}
.lower .news__detail__pagenation__item.-list a {
  position: relative;
  padding-left: 1.5em;
}
.lower .news__detail__pagenation__item.-list a:before, .lower .news__detail__pagenation__item.-list a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.lower .news__detail__pagenation__item.-list a:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--vk-color-custom-1);
}
.lower .news__detail__pagenation__item.-list a:after {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  left: 7px;
  top: 2px;
  width: 4px;
  height: 4px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
}
.lower .news__detail__pagenation__item a {
  text-decoration: none;
}
.lower .photo__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -40px;
}
@media screen and (max-width: 768px) {
  .lower .photo__list {
    width: 92%;
    margin: -8% auto 0;
  }
}
.lower .photo__item {
  width: 306px;
  margin: 40px 41px 0 0;
}
@media screen and (max-width: 768px) {
  .lower .photo__item {
    width: 100%;
    margin: 8% 0 0;
  }
}
.lower .photo__item:nth-child(3n) {
  margin-right: 0;
}
.lower .photo__item a {
  display: block;
  color: initial;
  text-decoration: none;
}
.lower .photo__item img {
  display: block;
  width: 100%;
  min-width: auto;
  height: 200px;
  object-fit: contain;
  object-position: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .lower .photo__item img {
    height: auto;
    margin: 0 0 3%;
  }
}
.lower .photo__item__term {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.57143;
}
@media screen and (max-width: 768px) {
  .lower .photo__item__term {
    margin-bottom: 2%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.lower .photo__item__description {
  font-size: 13px;
  line-height: 1.76923;
}
@media screen and (max-width: 768px) {
  .lower .photo__item__description {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
@media screen and (max-width: 768px) {
  .lower .link__list {
    padding: 0 4%;
  }
}
.lower .link__item {
  position: relative;
}
.lower .link__item:before, .lower .link__item:after {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.lower .link__item:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  left: 18px;
  width: 18px;
  height: 18px;
  background: var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .lower .link__item:before {
    left: 8px;
    width: 12px;
    height: 12px;
  }
}
.lower .link__item:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  left: 23px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
@media screen and (max-width: 768px) {
  .lower .link__item:after {
    left: 11px;
    width: 3px;
    height: 3px;
    border-width: 1px;
  }
}
.lower .link__item:not(:first-child) {
  margin-top: 11px;
}
.lower .link__item a {
  display: block;
  color: initial;
  text-decoration: none;
}
.lower .link__item a span:after {
  content: "\f35d";
  margin-left: 15px;
  color: #B5B5B5;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lower .link__item a span:after {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.lower .link__item span {
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 50px;
  color: initial;
  font-size: 16px;
  border: 1px solid #e1e1e1;
}
@media screen and (max-width: 768px) {
  .lower .link__item span {
    height: auto;
    padding: 3% 10% 3% 8%;
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.3;
  }
}
.lower .contact__box {
  padding: 50px 90px 60px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .lower .contact__box {
    padding: 5% 4%;
  }
}
.lower .contact__box__notice {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1 !important;
}
@media screen and (max-width: 768px) {
  .lower .contact__box__notice {
    padding: 0 !important;
    font-size: 13px !important;
  }
}
.lower .contact__box__notice .required {
  position: relative;
  top: -1px;
  margin-right: 6px;
}
.lower .contact__box form {
  text-align: center;
}
.lower .contact__box form p {
  margin: 0 !important;
  padding: 18px 0;
  font-size: 15px;
  line-height: 1;
  border-bottom: 1px solid #F0F0F0;
}
.lower .contact__box form p:last-of-type, .lower .contact__box form p:nth-last-of-type(2) {
  border-bottom: none;
  padding: 0;
}
.lower .contact__box form p:nth-last-of-type(2) {
  margin-top: 50px !important;
}
@media screen and (max-width: 768px) {
  .lower .contact__box form p:nth-last-of-type(2) {
    margin-top: 30px !important;
  }
}
.lower .contact__box form p:last-of-type {
  margin-top: 35px !important;
}
@media screen and (max-width: 768px) {
  .lower .contact__box form p:last-of-type {
    margin-top: 25px !important;
  }
}
.lower .contact__box form input,
.lower .contact__box form textarea {
  width: 400px;
  padding: 8px;
  background: #ECEDF2;
  border: none;
}
@media screen and (max-width: 768px) {
  .lower .contact__box form input,
  .lower .contact__box form textarea {
    width: 100%;
  }
}
.lower .contact__box form input[type="checkbox"] {
  position: relative;
  top: 2px;
  width: auto;
  margin-right: 8px;
}
.lower .contact__box form input[type="submit"] {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 240px;
  height: 50px;
  margin: auto;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.lower .contact__box form input[type="submit"]:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.lower .contact__box form textarea {
  height: 120px;
  resize: vertical;
}
.lower .contact__box .required {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 1px 6px 3px;
  background: var(--vk-color-custom-1);
  color: #FFF;
  font-size: 11px;
}
.lower .contact__form__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lower .contact__form__flex {
    display: block;
  }
}
.lower .contact__form__title {
  display: flex;
  justify-content: space-between;
  width: 300px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .lower .contact__form__title {
    display: block;
    width: auto;
    margin: 0 0 3%;
    text-align: left;
  }
}
.lower .contact__form__title .required {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lower .contact__form__title .required {
    position: relative;
    left: 5px;
    top: -1px;
  }
}
.lower .access__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lower .access__flex {
    display: block;
  }
}
.lower .access__flex > dl {
  width: 460px;
}
@media screen and (max-width: 768px) {
  .lower .access__flex > dl {
    display: block;
    width: 100%;
    padding: 0 4%;
  }
}
.lower .access__flex__map {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .lower .access__flex__map {
    display: block;
    width: 100%;
    padding: 0 4%;
  }
}
.lower .access__term {
  margin-bottom: 30px;
  padding-bottom: 12px;
  color: var(--vk-color-custom-1);
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid var(--vk-color-custom-1);
}
@media screen and (max-width: 768px) {
  .lower .access__term {
    margin-bottom: 4%;
  }
}
.lower .access__term:not(:first-of-type) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .lower .access__term:not(:first-of-type) {
    margin-top: 30px;
  }
}
.lower .access__description {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lower .access__description {
    font-size: 14px;
  }
}
.lower .access__map {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .lower .access__map {
    width: 100%;
    margin-top: 30px;
  }
}
.lower .access__map iframe {
  width: 100%;
  height: 330px;
  border: none;
}
@media screen and (max-width: 768px) {
  .lower .access__map iframe {
    height: 250px;
  }
}

.contact__link {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  padding: 17px 60px 17px 30px;
  background: #FFF;
  color: #005BAC;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #005BAC;
}
@media screen and (max-width: 768px) {
  .contact__link {
    display: block;
    width: 75%;
    margin: auto;
    padding: 4% 5% 4% 0;
    font-size: 14px;
    font-size: 3.73333vw;
    text-align: center;
    text-decoration: none;
  }
}
.contact__link:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .contact__link:first-of-type {
    margin: 0 auto 5%;
  }
}
.contact__link:before, .contact__link:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.contact__link:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  right: 11px;
  width: 18px;
  height: 18px;
  background: #005BAC;
}
.contact__link:after {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  right: 18px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

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