@charset "UTF-8";
body {
  line-height: 1.8;
  font-family: poppins, source-han-sans-japanese, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
}
@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }
}

header {
  min-width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 10;
  top: 0;
  -webkit-box-shadow: 0px 6px 14px -13px rgba(0, 0, 0, 0.95);
          box-shadow: 0px 6px 14px -13px rgba(0, 0, 0, 0.95);
}
@media (max-width: 960px) {
  header {
    background-color: transparent;
    z-index: 9999;
  }
}

a:hover {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0.6;
}

#container {
  padding-top: 100px;
}
@media (max-width: 960px) {
  #container {
    padding-top: 70px;
  }
}

.header_sub {
  padding-left: 3%;
  position: relative;
}
@media (max-width: 1100px) {
  .header_sub {
    padding-left: 0%;
  }
}

.area_header {
  width: 100%;
  max-width: 1280px;
  display: block;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  padding: 0 10px 15px 10px;
}
@media (max-width: 960px) {
  .area_header {
    padding: 0;
  }
}
.area_header .accordion-content {
  width: 68%;
}
@media (max-width: 960px) {
  .area_header .accordion-content {
    width: 100%;
    display: none;
  }
}
.area_header .c-hamburger-btn {
  display: none;
}
@media (max-width: 960px) {
  .area_header .c-hamburger-btn {
    display: block;
    background-color: transparent;
    border: none;
    color: inherit;
    padding: 15px;
    vertical-align: middle;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    text-align: center;
    border-left: 1px solid #ccc;
    height: 70px;
  }
  .area_header .c-hamburger-btn .c-hamburger-btn__bars {
    display: block;
    margin: 3px auto;
    position: relative;
    display: inline-block;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 22px;
    width: 26px;
  }
  .area_header .c-hamburger-btn .c-hamburger-btn__bars .c-hamburger-btn__bar {
    background-color: var(--header-text-color, #3c6ff2);
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    height: 2px;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    background-color: #3c6ff2;
    background-color: var(--_color-text, #3c6ff2);
  }
  .area_header .c-hamburger-btn .c-hamburger-btn__bar:first-of-type {
    top: 0;
  }
  .area_header .c-hamburger-btn .c-hamburger-btn__bar:nth-of-type(2) {
    top: 10px;
  }
  .area_header .c-hamburger-btn .c-hamburger-btn__bar:nth-of-type(3) {
    top: 20px;
  }
  .area_header .c-hamburger-btn .c-hamburger-btn__label {
    font-size: 0.6rem;
    font-weight: bold;
    line-height: 1;
    color: #3c6ff2;
  }
}

#logo {
  width: 20%;
  margin: 0;
  min-width: 310px;
  height: 75px;
  display: block;
  text-indent: -9999px;
  background-image: url("images/logo_site_pc.png");
  background-repeat: no-repeat;
  background-size: 305px auto;
  background-position: bottom;
}
#logo:hover {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  opacity: 0.7;
}
#logo a {
  display: block;
  height: 75px;
}
@media (max-width: 960px) {
  #logo {
    width: 100%;
    height: 70px;
    background-color: #fff;
    background-size: 280px auto;
    background-position: 3% center;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  #logo {
    background-image: url("images/logo_site_sm.png");
    background-repeat: no-repeat;
    background-size: 140px auto;
    background-position: 5% center;
  }
}

@media (max-width: 480px) {
  .p-breadcrumbs-wrapper {
    background-color: #3c6ff2;
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    padding: 1rem;
  }
}
.p-breadcrumbs-wrapper a {
  text-decoration: none;
}
.p-breadcrumbs-wrapper .c-breadcrumbs {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-breadcrumbs-wrapper .c-breadcrumbs li {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  padding-right: 30px;
  margin-right: 14px;
  font-size: 0.8rem;
  font-weight: 400;
}
.p-breadcrumbs-wrapper .c-breadcrumbs li::before {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 0.9;
  text-align: center;
  font-size: 1.2rem;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-breadcrumbs-wrapper .c-breadcrumbs li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.p-breadcrumbs-wrapper .c-breadcrumbs li:last-child::before {
  content: normal;
}

.header_sub_line {
  border-left: 4px solid #3c6ff2;
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 2rem 0 0 3rem;
  max-width: 960px;
}
@media (max-width: 960px) {
  .header_sub_line {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .header_sub_line {
    top: 80px;
  }
}
@media (max-width: 480px) {
  .header_sub_line {
    max-width: 100%;
    border: 0;
    top: 105px;
    padding: 2.7rem 0 0 2rem;
  }
}
.header_sub_line h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding: 0;
  margin-bottom: 1rem;
  font-style: normal;
}
@media (max-width: 768px) {
  .header_sub_line h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .header_sub_line h1 {
    font-size: 2rem;
    border-left: 3px solid #3c6ff2;
    padding: 5rem 0 0.5rem 2rem;
  }
}
.header_sub_line h1 span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
@media (max-width: 480px) {
  .header_sub_line h1 span {
    font-size: 1rem;
  }
}

#global ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0 0 0 4%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 960px) {
  #global ul {
    display: block;
    padding: 0;
    background-color: #fff;
  }
}
#global ul li {
  list-style: none;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: 27px 0 12px 0;
}
#global ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: 95% center;
  line-height: 1.2;
}
#global ul li a:hover {
  opacity: 1;
  color: #3c6ff2;
}
#global ul li a span.sla {
  display: none;
}
@media (max-width: 960px) {
  #global ul li a {
    padding: 15px 0 15px 4%;
    background-image: url("images/right-arrow_bk.png");
  }
  #global ul li a br {
    display: none;
  }
  #global ul li a span.sla {
    display: inline;
    padding-left: 0;
  }
}
@media (max-width: 960px) {
  #global ul li {
    width: 100%;
    border-bottom: 1px solid #999;
    padding: 0;
    text-align: left;
  }
}
#global ul li span {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 960px) {
  #global ul li span {
    display: initial;
    padding-left: 3%;
  }
}

.active::before {
  content: "";
  position: absolute;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3c6ff2;
}
@media (max-width: 960px) {
  .active::before {
    background-color: #fff;
  }
}

.bg_gray {
  background-color: #f5f4f8;
}

@media (max-width: 480px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 480px) {
  .sp {
    display: inherit;
  }
}

.content {
  max-width: 960px;
  padding: 4.5rem 0;
  position: relative;
  display: block;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .content {
    padding: 3rem 1rem;
  }
}
@media (max-width: 480px) {
  .content {
    padding: 5%;
  }
}

.list_navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #dedede;
  margin-top: 3rem;
}
.list_navigation li {
  width: 33.3333333333%;
  text-align: center;
  border-right: solid 1px #dedede;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
}
.list_navigation li:last-child {
  border-right: 0px;
}
@media (max-width: 480px) {
  .list_navigation li {
    font-size: 1rem;
  }
}
.list_navigation a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 1rem 0;
  background-image: url("images/side-arrow.svg");
  background-repeat: no-repeat;
  background-position: 85% center;
}
.list_navigation a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .list_navigation {
    padding: 1.2rem 0 1.8rem 0;
    background-position: center 85%;
  }
}
.list_navigation span {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  color: #3c6ff2;
}
@media (max-width: 480px) {
  .list_navigation span {
    font-size: 0.8rem;
  }
}

#area_slider {
  width: 100%;
  height: 600px;
  position: relative;
}
@media (max-width: 768px) {
  #area_slider {
    height: 480px;
  }
}
@media (max-width: 480px) {
  #area_slider {
    height: 430px;
  }
}

#slide-1 {
  overflow: hidden;
  width: 100%;
  min-height: 600px;
}
@media (max-width: 768px) {
  #slide-1 {
    min-height: 480px;
  }
}
@media (max-width: 480px) {
  #slide-1 {
    display: none;
  }
}

#slide-2 {
  display: none;
}
@media (max-width: 480px) {
  #slide-2 {
    display: inherit;
    min-height: 430px;
    overflow: hidden;
    width: 100%;
  }
}

.inner-content {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
.inner-content h1 {
  font-size: 3rem;
  letter-spacing: 0.03em;
  text-shadow: 0px 0px 18px rgba(6, 0, 1, 0.5);
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 480px) {
  .inner-content h1 {
    font-size: 2rem;
  }
}
.inner-content h1 span {
  display: block;
}
.inner-content p {
  border-top: 1px solid #fff;
  padding: 5px 5px 0;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  font-weight: 700;
  font-style: normal;
  text-shadow: 0px 0px 18px rgba(6, 0, 1, 0.5);
}
@media (max-width: 480px) {
  .inner-content p {
    font-size: 0.7rem;
  }
}

.inner-content-p1 {
  border-top: none !important;
  padding: 5px 5px 5px !important;
  margin-bottom: 0 !important;
}

.inner-content-div p {
  letter-spacing: 0.125em;
}

.c-breadcrumbs {
  padding: 0;
  color: #FFF;
  font-size: 1rem;
}
.c-breadcrumbs .c-breadcrumbs__item {
  display: inline;
}
.c-breadcrumbs .c-breadcrumbs__item a {
  color: inherit;
  text-decoration: none;
}

.news_bg {
  background: -webkit-gradient(linear, left top, right top, from(#3c6ff2), color-stop(40%, #3c6ff2), color-stop(40%, #fff), to(#fff));
  background: -webkit-linear-gradient(left, #3c6ff2 0%, #3c6ff2 40%, #fff 40%, #fff 100%);
  background: linear-gradient(90deg, #3c6ff2 0%, #3c6ff2 40%, #fff 40%, #fff 100%);
}

.news_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .news_area {
    display: block;
  }
}
.news_area dl {
  width: 75%;
  max-width: 870px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2rem 0.5rem 0.5rem 4%;
}
@media (max-width: 960px) {
  .news_area dl {
    padding: 0 2rem 1rem 2rem;
  }
}
@media (max-width: 768px) {
  .news_area dl {
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    margin-top: 0;
  }
}
.news_area dl dt {
  width: 13%;
  min-width: 130px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
@media (max-width: 960px) {
  .news_area dl dt {
    padding: 1rem 0 0 0;
  }
}
.news_area dl dd {
  width: 80%;
  margin: 0;
  padding: 0 0 1.2rem 0;
}
.news_area dl dd a {
  color: inherit;
  text-decoration: none;
}
.news_area dl dd a:hover {
  text-decoration: underline;
}
.news_area dl dd a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("images/ico_window.png");
  background-repeat: no-repeat;
  background-size: 16px;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .news_area dl dd {
    width: 100%;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #ccc;
  }
}

.title_news {
  width: 25%;
  background-color: #3c6ff2;
  position: relative;
}
@media (max-width: 768px) {
  .title_news {
    width: 85%;
    padding: 0.8rem;
  }
}
.title_news h3 {
  position: absolute;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  bottom: 15%;
  right: 3.5rem;
}
@media (max-width: 768px) {
  .title_news h3 {
    font-size: 1rem;
    line-height: 1.2;
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.title_news span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 768px) {
  .title_news span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.5rem;
    font-size: 0.6rem;
  }
}

.title_content {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}

.title_content_l {
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media (max-width: 480px) {
  .title_content_l {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.title_content_l span {
  display: block;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  .title_content_l span {
    font-size: 1rem;
  }
}

.title_content_under {
  text-align: left;
  margin-bottom: 1.1rem;
  max-width: 70vw;
}
.title_content_under p {
  margin: 0;
}

.title_content_under_caution {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
}
.title_content_under_caution::before {
  content: "※";
}

.list_topicmenu {
  background-color: #f5f4f8;
  padding: 60px 0;
}
.list_topicmenu .intro {
  width: 620px;
  margin: 0 auto 50px;
  border: 3px solid #3c6ff2;
  padding: 30px 0px 10px;
  background: #fff;
}
.list_topicmenu .intro h3 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 15px;
}
.list_topicmenu .intro h3 span {
  position: relative;
  display: inline-block;
  padding: 0 50px;
}
.list_topicmenu .intro h3 span::before, .list_topicmenu .intro h3 span::after {
  position: absolute;
  content: "";
  background: #3c6ff2;
  display: block;
  width: 30px;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list_topicmenu .intro h3 span::before {
  left: 0;
}
.list_topicmenu .intro h3 span::after {
  right: 0;
}
.list_topicmenu .intro p {
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 120px;
}
.list_topicmenu .intro p::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #3c6ff2;
  top: 5px;
  left: 85px;
}
.list_topicmenu .intro p:last-child {
  font-size: 1.1rem;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 40px;
  text-align: right;
}
.list_topicmenu .intro p:last-child::after {
  display: none;
}
@media (max-width: 480px) {
  .list_topicmenu .intro {
    width: 100%;
  }
  .list_topicmenu .intro h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .list_topicmenu .intro h3 span {
    padding: 0 30px;
  }
  .list_topicmenu .intro h3 span::before, .list_topicmenu .intro h3 span::after {
    width: 20px;
  }
  .list_topicmenu .intro p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 10px;
    padding-left: 40px;
  }
  .list_topicmenu .intro p::after {
    width: 8px;
    height: 8px;
    top: 5px;
    left: 20px;
  }
  .list_topicmenu .intro p:last-child {
    font-size: 0.8rem;
    padding-top: 5px;
    padding-right: 20px;
  }
}
@media (max-width: 960px) {
  .list_topicmenu {
    padding: 5%;
  }
}
.list_topicmenu ul {
  max-width: 1120px;
  display: block;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
.list_topicmenu ul li {
  width: 33.3333333333%;
  list-style: none;
  background-color: #fff;
  border: solid 1px #f5f4f8;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .list_topicmenu ul li {
    width: 50%;
    border: solid 2px #f5f4f8;
  }
}
.list_topicmenu ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.list_topicmenu ul li a .img_box {
  overflow: hidden;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.list_topicmenu ul li a .img_box:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  z-index: 9999;
}
.list_topicmenu ul li .mask {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.area_topictxt {
  padding: 25px 12%;
  background-color: #fff;
}
@media (max-width: 480px) {
  .area_topictxt {
    padding: 10px 10%;
    height: 100px;
  }
}
.area_topictxt h4 {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
@media (max-width: 480px) {
  .area_topictxt h4 {
    font-size: 0.9rem;
  }
}
.area_topictxt p {
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .area_topictxt p {
    display: none;
  }
}
.area_topictxt span {
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  color: #3c6ff2;
}

.force_block {
  display: block;
}

.area_top_under {
  text-align: center;
  padding: 100px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.area_top_under p {
  display: block;
}
@media (max-width: 480px) {
  .area_top_under {
    padding: 50px 1rem;
  }
  .area_top_under h3 span {
    display: block;
  }
  .area_top_under p {
    text-align: left;
  }
}

.btn_top_under {
  width: 280px;
  display: block;
  background-color: inherit;
  border: 2px solid #3c6ff2;
  display: block;
  margin: 0 auto;
  text-align: center;
  color: #3c6ff2;
}
.btn_top_under a {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  padding: 1rem 0;
  background-image: url("images/ico_window.png");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 96% center;
}

.btn_detail {
  width: 320px;
  border: 0;
  color: #fff;
  padding: 0;
}
.btn_detail a {
  background-color: #3c6ff2;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  padding: 1rem 0;
  background-image: url("images/right-arrow.png");
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: 96% center;
}
.btn_detail a:hover {
  opacity: 0.6;
}
@media (max-width: 480px) {
  .btn_detail a {
    background-image: none;
    padding: 0.8rem 0;
  }
}

.arrow_topic {
  position: absolute;
  background-color: #3c6ff2;
  width: 40px;
  height: 40px;
  display: block;
  bottom: 0;
  right: 0;
}
@media (max-width: 480px) {
  .arrow_topic {
    width: 20px;
    height: 20px;
  }
}
.arrow_topic img {
  width: 8px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 480px) {
  .arrow_topic img {
    width: 5px;
  }
}

footer {
  background-color: #404040;
  color: #fff;
  text-align: center;
  padding: 0 0 20px;
  position: relative;
}
footer nav {
  width: 90%;
  max-width: 840px;
  display: block;
  margin: 0 auto;
  padding: 30px 0;
  font-size: 0.88rem;
}
@media (max-width: 768px) {
  footer nav {
    width: 100%;
    padding: 0 0 1.5rem 0;
  }
}
footer nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  footer nav ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
footer nav li {
  list-style: none;
}
@media (max-width: 768px) {
  footer nav li {
    width: 50%;
    border-top: 1px solid #999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer nav li:first-child {
    width: 100%;
    border: none;
    padding-left: 4rem;
    text-align: left;
    background-image: url("images/logo_footer_sm.png");
    background-size: 45px auto;
    background-repeat: no-repeat;
    background-position: 2rem center;
  }
  footer nav li:last-child {
    border-bottom: 1px solid #999;
    width: 100%;
  }
  footer nav li:nth-child(2n) {
    border-right: 1px solid #999;
  }
}
footer nav li span {
  display: none;
}
@media (max-width: 768px) {
  footer nav li span {
    display: block;
    font-size: 0.6rem;
    line-height: 0.6;
    color: #999;
  }
}
footer nav li a {
  color: inherit;
  text-decoration: none;
  line-height: 1.2;
}
footer nav li a br {
  display: inline;
}
footer nav li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  footer nav li a {
    padding: 1.5rem;
    display: block;
    line-height: 1.4;
  }
}
footer small {
  font-size: 0.77rem;
}

.pagetop {
  width: 80px;
  position: absolute;
  bottom: 80%;
  right: 3%;
}
@media (max-width: 768px) {
  .pagetop {
    bottom: 90%;
    right: 0;
  }
}

.object-fit-img {
  font-family: "object-fit: cover;";
}

.center_btn {
  display: block;
  margin: auto;
  text-align: center;
}
@media (max-width: 480px) {
  .center_btn {
    width: 80%;
  }
}/*# sourceMappingURL=style.css.map */