* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans",
    "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  line-height: 1.3;
  font-weight: 700;
}

p {
  color: #606060;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

a,
a:hover,
a:focus {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #61ba6d;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
a:hover {
  color: #74db81;
}
ul,
ol {
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}
.txc {
  text-align: center;
}
.txl {
  text-align: left;
}
.txr {
  text-align: right;
}
.fwb {
  font-weight: bold;
}
.underline {
  text-decoration: underline;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt60 {
  margin-top: 60px;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb60 {
  margin-bottom: 60px;
}
.pdr20 {
  padding-right: 20px;
}
.px-20 {
  padding-inline: 20px;
}
.ol-normal li {
  margin-bottom: 10px;
  line-height: 2;
  color: #606060;
  list-style-type: decimal;
}
.ol-nostyle li {
  list-style-type: none;
}
dt,
dd {
  color: #606060;
}
/* フォント */
.fs-sm {
  font-size: 14px !important;
}
.fs90 {
  font-size: 90%;
}

/* 共通カラー */
.mc {
  color: #61ba6d;
}
.mbc {
  background-image: -webkit-linear-gradient(
    left,
    #61ba6d 0%,
    #83c331 51%,
    #61ba6d 100%
  );
  background-image: linear-gradient(
    to right,
    #61ba6d 0%,
    #83c331 51%,
    #61ba6d 100%
  );
}
.wc {
  color: #fff !important;
}
.wbc {
  background-color: #fff;
}
.text-light {
  color: #888;
}
/* Section 共通 */
.section {
  padding-bottom: 40px;
}
.section-ttl {
  padding: 30px 15px;
  font-size: 32px;
  font-weight: bold;
}
.section-sub-ttl {
  display: block;
  font-size: 18px;
  color: #555;
}
/* Columns 共通 */
.columns {
  width: 100%;
  margin: 20px 0;
}
.column {
  display: block;
  width: 20%;
}
.column-ttl {
  display: block;
}
.column-sub-ttl {
  display: block;
  font-size: 12px;
  color: #555;
}
/* 共通パーツ */
.btn {
  display: block;
  width: 200px;
  margin: 40px auto 20px;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}
.btn:hover {
  color: #fff;
  opacity: 0.8;
}
.btn-l {
  width: 100%;
  max-width: 500px;
}
.main-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  border-radius: 5px;
  z-index: 0;
  transition: all 0.5s;
}
.main-btn:hover::after {
  opacity: 1;
}
.main-btn .btn-inner {
  position: relative;
  z-index: 2;
}
.sub-btn {
  display: block;
  width: 180px;
  margin: 20px auto;
  padding: 10px;
  border-radius: 100px;
  text-align: center;
}
.bg-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.bg-overlay {
  position: relative;
  z-index: 2;
  background-position: center center;
  background-size: cover;
}
.bg-overlay::after {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
/* Preloader */
#preloader {
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  transition: opacity 1s, visibility 1s;
}
#preloader .circle-preloader {
  display: block;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: spin 2s infinite linear;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#preloader.fadeOut {
  opacity: 0;
  visibility: hidden;
}
.h-100 {
  height: 100%;
}
.mxh200 {
  max-height: 200px;
}
.mxh300 {
  max-height: 300px;
}
.mxh400 {
  max-height: 400px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.mxw-md {
  max-width: 768px;
}
.mx-auto {
  margin-inline: auto;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-1 {
  flex: 1 1 0%;
  -webkit-flex: 1 1 0%;
}
.flex-2 {
  flex: 2 1 0%;
  -webkit-flex: 2 1 0%;
}
.flex-3 {
  flex: 3 1 0%;
  -webkit-flex: 3 1 0%;
}
.flex-4 {
  flex: 4 1 0%;
  -webkit-flex: 4 1 0%;
}
.flex-5 {
  flex: 5 1 0%;
  -webkit-flex: 5 1 0%;
}
.flex-6 {
  flex: 6 1 0%;
  -webkit-flex: 6 1 0%;
}
/* Header Area */
.header-area {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 125px;
}
.header-area .top-header {
  width: 100%;
  height: 95px;
}
.header-area .top-header .header-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-area .top-header .header-content .logo a {
  display: block;
  min-width: 400px;
  min-height: 85px;
  background: url("images/logo.png") no-repeat center left / auto 100%;
}
.header-area .top-header .top-header-right a {
  display: inline-block;
  padding: 0 5px;
}
.header-area .anatomy-main-menu {
  width: 100%;
  max-width: 1140px;
  height: 85px;
  margin: 0 auto;
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  z-index: 100;
}
.header-area .anatomy-main-menu.fixed {
  position: fixed;
  top: 0;
  max-width: initial;
  max-width: none;
}
.header-area .anatomy-main-menu .navbar {
  width: 100%;
  height: 85px;
  padding: 0;
}
.header-area .anatomy-main-menu .navbar .nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.header-area .anatomy-main-menu .navbar .nav ul li a {
  padding: 30px 1em;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.header-area .anatomy-main-menu .navbar .nav ul li a:hover,
.header-area .anatomy-main-menu .navbar .nav ul li a:focus {
  color: #fafafa;
}
.header-area .anatomy-main-menu .navbar .nav ul li a.tri-icon::before {
  position: absolute;
  bottom: 15px;
  left: calc(50% - 5px);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 5px solid #fff;
}
.header-area .anatomy-main-menu .dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: auto;
  min-width: 200px;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header-area .anatomy-main-menu .navbar .nav .dropdown a {
  display: block;
  width: 100%;
  padding: 1em 0.5em;
  color: #61ba6d;
}
.header-area .anatomy-main-menu .navbar .nav .dropdown a:hover {
  background: #61ba6d;
  color: #fff;
}
.header-area .anatomy-main-menu .navbar .nav .dropdown li {
  margin-right: 0;
}
.header-area .anatomy-main-menu ul li:hover .dropdown {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.navbar-toggler {
  display: none;
}
.hero-slides .bg-img {
  height: 100%;
}
.top-hero-slides {
  width: 100%;
  height: 500px;
  background: url("images/top-hero-compressor.jpg") no-repeat center center /
    cover;
}

/* パンくずリスト */
.breadcrumbs {
  padding: 10px 0;
  font-size: 14px;
}
.breadcrumbs a {
  font-size: 14px;
}
.breadcrumbs span {
  margin: 0 5px;
}
/* NEWS section */
.news-section .section-ttl {
  padding-top: 60px;
}
.news-boxes {
  width: 80%;
  margin: 0 auto;
}
.news-box {
  /* border: 1px solid #ddd; */
  margin-bottom: -1px;
}
.news-date,
.news-ttl {
  padding: 10px;
}
.news-date {
  width: 100px;
}
.news-ttl {
  width: calc(100% - 100px);
}

/* ABOUT section */
.about-section .container {
  padding: 0 20px;
}
.about-section .about-head-ttl {
  font-size: 20px;
}
.about-section p {
  font-size: 16px;
  line-height: 1.7;
}
.about-section ul li {
  color: #606060;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  list-style: disc;
  list-style-position: inside;
}
.about-section .columns {
  margin: 40px 0 20px;
}
.about-section .column-img {
  width: 100%;
  margin: 20px 0;
  padding-top: 100%;
  border-radius: 50%;
}
.about-section a:hover .column-img {
  background-size: 170% auto !important;
}
.about-section a:hover .column-ttl,
.about-section a:hover .column-sub-ttl {
  color: #61ba6d;
}
/* RESEARCH section */
.research-section {
  padding-block: 60px 100px;
  position: relative;
  z-index: 1;
}
.research-section ul.research-s-list {
  max-width: max-content;
}
.research-section ul.research-s-list li {
  color: #fff;
  line-height: 2;
  list-style-type: disc;
  list-style-position: inside;
}
.research-section ul.research-s-list li a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.research-section ul.research-s-list li a:hover {
  color: #61ba6d;
}
.research-section ul.research-s-list.research-s-list--black li,
.research-section ul.research-s-list.research-s-list--black li a {
  color: #606060;
}
.research-section ul.research-s-list.research-s-list--black li a:hover {
  color: #61ba6d;
}
.research-section .section-ttl {
  padding-top: 60px;
}
.research-section .column {
  width: 100%;
  margin-bottom: 40px;
}
.research-section .column-ttl {
  margin-bottom: 40px;
  font-size: 24px;
  position: relative;
}
.research-section .column-ttl::after {
  position: absolute;
  top: 120%;
  left: 50%;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-image: -webkit-linear-gradient(
    left,
    #61ba6d 0%,
    #83c331 51%,
    #61ba6d 100%
  );
  background-image: linear-gradient(
    to right,
    #61ba6d 0%,
    #83c331 51%,
    #61ba6d 100%
  );
  transform: translateX(-50%);
}
.research-section .column .column-image {
  width: 25%;
}
.research-section .column .column-p {
  width: 70%;
  font-size: 15px;
}
.research-section a.column:hover .column-ttl,
.research-section a.column:hover .column-p {
  color: #61ba6d !important;
}
.research-section .other-research-columns {
  padding-top: 60px;
  border-top: 1px dashed #fff;
}
.research-section .other-research-columns .column {
  width: 28%;
  margin-bottom: 0;
  padding: 0;
}
.research-section .other-research-columns img.column {
  width: 30%;
}
.other-research-columns .section-ttl {
  font-size: 24px;
}
.other-research-columns .other-research-list {
  width: 40%;
  font-size: 15px;
  color: #444;
}
.other-research-columns .other-research-list li {
  margin-bottom: 0.5em;
  list-style-type: disc;
}
.research-section .other-research-columns:hover .section-ttl,
.research-section .other-research-columns:hover li {
  color: #61ba6d !important;
}
.joint-research-list li {
  font-size: 16px;
  color: #606060;
  line-height: 1.7;
  list-style-type: disc;
  list-style-position: inside;
}
/* MEMBER section */
.member-section .section-ttl {
  padding-top: 60px;
}
.member-img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
  margin-bottom: -50px;
}
.member-img.member-img--lower {
  margin-bottom: 0;
}
.member {
  width: 30%;
  padding: 90px 20px 20px;
  font-size: 20px;
}
.member:hover {
  font-size: 20px;
}
.member .sub-btn {
  font-size: 16px;
  border: 2px solid #fff;
}
.member:hover .sub-btn {
  background: transparent;
  color: #fff;
}
/* achievement section */
.achievement-section {
  position: relative;
  z-index: 1;
}
.achievement-section .section-ttl {
  padding-top: 60px;
  padding-bottom: 60px;
}
.achievement-list li {
  margin-bottom: 1em;
  color: #fff;
}

/* 下層ページ共通 */
.lower-page .hero-slides {
  height: 250px;
}
/* HISTORY section */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #eef3f6;
  left: 20%;
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
.timeline > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  display: block;
  width: 30px;
  height: 30px;
  margin-left: -10px;
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  border-radius: 50%;
}
.timeline .tl-year {
  width: 25%;
  padding-top: 3px;
}
.timeline .tl-content {
  width: 75%;
  padding: 20px;
  background: #eef3f6;
  border-radius: 5px;
  position: relative;
}
.timeline .tl-content::before {
  position: absolute;
  top: 5px;
  left: -20px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 10px solid #eef3f6;
}

/* COURSE section */
.course-section .course-img {
  text-align: center;
}
.course-section .column {
  width: 48%;
  background-color: #eef3f6;
  margin-top: 60px;
  margin-bottom: 20px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}
.course-section .graduate-year {
  padding: 10px;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  -ms-transform: translateX(-100%);
}
.course-section ul > li {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.course-section ul > li:last-child {
  border: none;
}
.course-section ul li span {
  padding: 10px;
}

/* RESEARCH lower section */
.lower-research-section * {
  word-break: break-all;
}
.research-section.lower-research-section .box-ttl {
  color: #61ba6d;
}
.research-archive .column {
  padding: 40px 20px;
  background: #eef3f6;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.other-research-archive .column {
  width: 48%;
}
.other-research-archive .column .column-image,
.other-research-archive .column .column-p {
  width: 100%;
}
.other-research-archive .column .column-image {
  display: block;
  width: auto;
  max-height: 300px;
  margin: 10px auto 20px;
}
.lower-research-section p {
  font-size: 16px;
  line-height: 1.7;
}
.lower-research-section .lower-research-section-article-list li {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 16px;
  color: #606060;
  line-height: 1.7;
  margin-top: 1em;
}
.lower-research-section .lower-research-section-article-list li::marker {
  font-weight: bold;
}
.lower-research-section .column {
  width: 100%;
  padding-inline: 20px;
}
.lower-research-section .boxes {
  padding: 20px 10px 15px 20px;
  background-color: #eef3f6;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.lower-research-section .boxes .box-ttl:hover {
  opacity: 0.8;
  background-size: 55px auto;
}
.research-list {
  padding: 40px 20px 10px;
  counter-reset: num;
}
.research-list a {
  display: block;
  width: 60%;
  margin: 10px auto 30px;
  padding: 15px;
  color: #555;
  background-color: #eef3f6;
  border-radius: 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}
.research-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-radius: 50%;
  counter-increment: num;
  content: counter(num);
}
.research-list a:hover {
  color: #61ba6d;
}
/* MEMBER lower section */
.lower-page .hero-slides.member-hero-slides {
  height: auto;
}
.lower-page .hero-slides.member-hero-slides .bg-img {
  padding-top: 40%;
  background-position: top 25px center;
}
.member-section article {
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #f1f1f1;
}
.member-sites-columns {
  margin: 10px 0 0;
}
.member-section .mgt0 {
  margin-top: 0;
}
.member-section .column img {
  display: block;
  max-height: 400px;
  margin: 0 auto;
}
.member-section dt {
  position: relative;
  padding-top: 5px;
  padding-left: 25px;
}
.member-section dt::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  border-radius: 50%;
}
.member-section dd {
  width: 100%;
  padding: 20px;
  background: #eef3f6;
  border-radius: 5px;
  line-height: 1.5;
  position: relative;
  word-break: break-word;
}
.member-section dd::before {
  position: absolute;
  top: 5px;
  left: -20px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 10px solid #eef3f6;
}
.member-section dd li,
.member-section dd > a {
  margin-bottom: 10px;
}
.member-section dd > a {
  display: block;
}
.member-section dd li:last-child,
.member-section dd > a:last-child {
  margin-bottom: 0;
}
/* MATERIAL section */
.material-list {
  padding: 20px 20px 10px;
  counter-reset: num;
}
.material-list li {
  display: block;
  width: 50%;
  margin: 10px auto 30px;
  padding: 15px;
  color: #555;
  background-color: #eef3f6;
  border-radius: 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}
.material-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  background: #61ba6d;
  background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
  background: linear-gradient(to right, #61ba6d, #83c331);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-radius: 50%;
  counter-increment: num;
  content: counter(num);
}
.material-list li a:hover {
  color: #74db81;
}
.material-list-title {
  display: block;
  margin-bottom: 1em;
  padding: 0.2em 0.5em 0.5em;
  font-size: 20px;
  border-bottom: 1px solid #61ba6d;
}
.material-list-title:hover,
.material-list-title:focus {
  font-size: 20px;
}
.material-list-subtitle {
  display: inline-block;
  margin-bottom: 0.2em;
}
.material-list-subtitle:hover,
.material-list-subtitle:focus {
  font-size: 18px;
}
.material-list-content {
  margin-bottom: 1em;
  padding-left: 0.5em;
}
.material-list-content:last-of-type {
  margin-bottom: 0;
}
.material-list-content p {
  padding-left: 0.5em;
  font-size: 16px;
}
.material-section .btn-columns .column {
  width: 50%;
}
.material-section .btn {
  width: 300px;
}
/* lower achievement section */
.lower-achievement-section .timeline::before,
.lower-achievement-section .timeline > li::before {
  display: none;
}
.lower-achievement-section .timeline .tl-year {
  width: 100px;
}
.lower-achievement-section .timeline .tl-content {
  width: calc(100% - 100px);
  padding-left: 40px;
  color: #606060;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.lower-achievement-section .timeline .tl-content li {
  list-style-type: decimal;
  margin-bottom: 1em;
}
.lower-achievement-section .timeline .tl-content .tl-sub-ttl {
  position: relative;
  margin: 50px 0 40px;
  font-size: 20px;
}
.lower-achievement-section .timeline .tl-content .tl-sub-ttl::after {
  position: absolute;
  top: 120%;
  left: 50%;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-image: -webkit-linear-gradient(
    left,
    #61ba6d 0%,
    #83c331 51%,
    #61ba6d 100%
  );
  background-image: linear-gradient(
    to right,
    #61ba6d 0%,
    #83c331 51%,
    #61ba6d 100%
  );
  transform: translateX(-50%);
}
/* ACCESS and Contact section */
.access-section h3 {
  padding-left: 10px;
  border-left: 3px solid #61ba6d;
}
.access-section iframe {
  width: 100% !important;
}
.access-section .column p {
  margin-bottom: 1em;
}
/* LINK section */
.link-section h3 {
  padding-left: 10px;
  border-left: 3px solid #61ba6d;
}
.link-section .link-list li {
  margin-left: 20px;
  padding: 10px;
  color: #555;
  list-style-type: decimal;
}
/* Footer */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 50px;
  width: 60px;
  height: 60px;
  background: #61ba6d;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15), 0 0 3px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
  opacity: 0;
}
#pagetop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-bottom: 15px solid #fff;
  transform: translate(-50%, -75%);
}
#pagetop.visible {
  opacity: 1;
}
#pagetop:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
#pagetop .icon {
  height: 100%;
  font-size: 30px;
}

footer {
  background-color: #eef3f6;
}
footer > .container {
  padding: 40px 0;
}
footer .columns {
  margin: 0;
}
footer .flex-lg {
  flex: 1.5 1 0;
}
footer .flex-m {
  flex: 1 1 0;
}
footer .column-ttl {
  margin-bottom: 20px;
}
footer .column-menu-ttl {
  margin-bottom: 20px;
  padding: 15px 0 10px;
  color: #606060;
  font-size: 20px;
}
footer .logo {
  display: block;
  min-width: 400px;
  min-height: 85px;
  background: url("images/logo.png") no-repeat center left / auto 100%;
}
footer p {
  line-height: 1.3;
  margin-bottom: 10px;
}
footer .footer-list a {
  display: inline-block;
  margin-bottom: 10px;
}
footer .footer-link-list li {
  text-align: right;
}
.copyright {
  padding: 20px;
}

.sp {
  display: none !important;
}

/* bxSlider */
.bx-wrapper {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}
.bx-wrapper .bx-viewport {
  max-height: 500px;
}
