@charset "UTF-8";
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Segoe UI", "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  -webkit-text-size-adjust: 100%;
  background-color: #f2f8ff;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5rem;
  }
}
body a {
  color: #333;
  text-decoration: none;
  word-break: break-all;
}
body a img:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
body a.disabled {
  pointer-events: none;
}
body img {
  display: block;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

header {
  height: 70px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  header {
    height: 40px;
    padding: 0 10px;
  }
}
header img {
  width: 100px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  header img {
    width: 60px;
  }
}
@media screen and (max-width: 1000px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
header nav ul li a {
  display: block;
  color: #333;
  padding: 20px 35px;
  text-align: center;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1110px) {
  header nav ul li a {
    padding: 20px 20px;
  }
}
header nav ul li a:hover {
  background-color: #1262b3;
  color: #fff;
}
header p {
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  header p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 330px) {
  header p {
    font-size: 0.8rem;
  }
}

body#top nav li.nav-top a,
body#rep02 nav li.nav-rep02 a,
body#rep03 nav li.nav-rep03 a,
body#rep04 nav li.nav-rep04 a,
nav li.active a {
  background-color: #1262b3;
  color: #fff;
}

.side {
  border-left: #1262b3 5.5em solid;
  position: relative;
  padding: 0 0 80px;
}
@media screen and (max-width: 1000px) {
  .side {
    border-left: none;
    padding: 0 0 40px;
  }
}
.side .sns {
  position: absolute;
  left: -4em;
  top: 1%;
  z-index: 100000;
}
@media screen and (max-width: 1000px) {
  .side .sns {
    display: none;
  }
}
.side .sns ul {
  position: fixed;
  width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.side .sns ul li {
  margin: 0 0 40px;
}
.side .sns ul li .fb {
  width: 30px;
  height: auto;
}
.side .sns ul li .x {
  width: 22px;
  height: auto;
}
.side .sns ul li:last-of-type {
  color: #fff;
  font-size: 1.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 3px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.side main {
  position: relative;
  z-index: 1;
  /*.box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    h1 {
  width: 30%;
      font-size: 3rem;
      margin: 0 4% 0 4%;
      padding: 80px 0 0;
      span {
        font-family: "Lato", sans-serif;
        font-weight: 700;
        font-style: normal;
        display: block;
        color: $blue;
        letter-spacing: 3px;
        line-height: 1;
        &:first-of-type {
          font-size: 12rem;
          margin: 30px 0 50px;
        }
        &:last-of-type {
          font-size: 6rem;
        }
      }
    }*/
}
.side main img.pc {
  width: 100%;
  height: auto;
  display: block;
}
.side main img.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .side main img.pc {
    display: none;
  }
  .side main img.sp {
    display: block;
    width: 100%;
    height: auto;
  }
}
.side main .sub {
  background-color: #0d4680;
  position: absolute;
  z-index: 100;
  top: 65%;
  left: -96px;
  padding: 1% 4% 2% 12%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .side main .sub {
    padding: 5% 2% 6% 4%;
    margin: 0 4% 0 0;
    left: 0;
    top: 90%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.side main .sub p {
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .side main .sub p .pc {
    display: none;
  }
}
.side main .sub p:first-of-type {
  font-size: 3.6rem;
}
@media screen and (max-width: 1000px) {
  .side main .sub p:first-of-type {
    line-height: 1.9;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 330px) {
  .side main .sub p:first-of-type {
    font-size: 1.5rem;
  }
}
.side main .sub p {
  /*&:last-of-type {
    font-size: 2rem;
    @media screen and (max-width: 1000px) {
      font-size: 1rem;
    }
  }*/
}
.side .lead {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  margin: 50px auto;
}
@media screen and (max-width: 1000px) {
  .side .lead {
    font-size: 1.5rem;
    text-align: left;
    margin: 80px 20px 30px;
  }
}
.side h2 {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 1px;
  color: #1262b3;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1000px) {
  .side h2 {
    font-size: 4rem;
    margin: 0 auto 40px;
  }
}
.side h2 span {
  font-weight: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  color: #333;
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin: 40px auto 0;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .side h2 span {
    font-size: 1.6rem;
    margin: 20px auto 0;
  }
}
.side .message {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 5% 80px;
  margin: 0 10%;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .side .message {
    padding: 40px 4% 50px;
    max-width: 70%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .side .message {
    max-width: 90%;
  }
}
.side .message .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.side .message .box figure {
  width: 48%;
}
.side .message .box figure img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .side .message .box figure img {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 1000px) {
  .side .message .box figure {
    width: 100%;
  }
}
.side .message .box dl {
  width: 48%;
}
@media screen and (max-width: 1000px) {
  .side .message .box dl {
    width: 100%;
  }
}
.side .message .box dl dt {
  font-size: 2.4rem;
}
@media screen and (max-width: 1000px) {
  .side .message .box dl dt {
    font-size: 1.8rem;
  }
}
.side .message .box dl dt b {
  font-size: 1.8rem;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .side .message .box dl dt b {
    font-size: 1.5rem;
  }
}
.side .message .box dl dt span {
  font-size: 1.6rem;
  display: block;
  margin: 10px 0 0;
}
@media screen and (max-width: 1000px) {
  .side .message .box dl dt span {
    font-size: 1.4rem;
    margin: 15px 0 0;
  }
}
.side .message .box dl dd {
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 30px 0 0;
}
@media screen and (max-width: 1000px) {
  .side .message .box dl dd {
    font-size: 1.5rem;
    margin: 20px 0 0;
  }
}
.side .message .box:nth-child(3) {
  margin-bottom: 0;
}
.side .report {
  border-radius: 20px;
  padding: 80px 3% 40px;
}
@media screen and (max-width: 1000px) {
  .side .report {
    padding: 80px 0 60px;
  }
}
.side .report .box {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1210px) {
  .side .report .box {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 1000px) {
  .side .report .box {
    width: 100%;
  }
}
.side .report .box dl {
  width: 400px;
  background-color: #fff;
  border-radius: 20px;
  background-color: #fff;
  margin: 0 33px 66px;
}
@media screen and (max-width: 1210px) {
  .side .report .box dl {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 1000px) {
  .side .report .box dl {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .side .report .box dl {
    width: 90%;
  }
}
.side .report .box dl:hover {
  opacity: 0.8;
}
.side .report .box dl dt img {
  width: 100%;
  height: auto;
}
.side .report .box dl dd {
  padding: 0 30px 70px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .side .report .box dl dd {
    padding: 0 20px 60px 20px;
  }
}
.side .report .box dl dd span {
  border-radius: 5px;
  display: inline-block;
  background-color: #1262b3;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 15px;
  margin: 30px 0 0;
}
@media screen and (max-width: 1000px) {
  .side .report .box dl dd span {
    font-size: 1.5rem;
  }
}
.side .report .box dl dd h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin: 30px 0;
}
@media screen and (max-width: 1000px) {
  .side .report .box dl dd h3 {
    font-size: 1.8rem;
  }
}
.side .report .box dl dd p:first-of-type {
  font-size: 1.4rem;
}
.side .report .box dl dd p:last-of-type {
  font-size: 1.2rem;
}
.side .report .box dl dd .btn {
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.side .report .box dl dd .btn em {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  font-style: normal;
  padding-right: 27px;
  position: relative;
}
.side .report .box dl dd .btn em::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/ico_arrow.svg) no-repeat center center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  position: absolute;
  top: -4px;
  right: 0;
}
.side .report .box dl a:hover {
  opcity: 0.8;
}
.side .report_page {
  border-radius: 20px;
  padding: 60px 5% 80px;
  margin: 90px 10% 0;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  .side .report_page {
    padding: 40px 3%;
    margin: 40px 20px 0;
  }
}
.side .report_page h2 {
  margin: 0 auto 50px;
}
.side .report_page .box {
  margin: 0 auto;
}
.side .report_page .box .title {
  border-bottom: 1px solid #0d4680;
  padding: 0 0 36px;
  margin: 0 auto 55px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box .title {
    padding: 0 0 25px;
    margin: 0 auto 30px;
  }
}
.side .report_page .box .title span {
  border-radius: 5px;
  display: inline-block;
  background-color: #1262b3;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  padding: 10px 25px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box .title span {
    border-radius: 3px;
    font-size: 1.3rem;
    padding: 6px 10px 4px;
    margin: 0 0 15px;
  }
}
.side .report_page .box .title h3 {
  font-size: 3.6rem;
  line-height: 1.5;
  margin: 0 0 30px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box .title h3 {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
}
.side .report_page .box .title p {
  margin: 0;
}
.side .report_page .box .title p:first-of-type {
  font-size: 2rem;
  margin: 0 0 5px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box .title p:first-of-type {
    font-size: 1.5rem;
    margin: 0 0 2px;
  }
}
.side .report_page .box .title p:last-of-type {
  font-size: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box .title p:last-of-type {
    font-size: 1.2rem;
  }
}
.side .report_page .box h4 {
  font-size: 2.2rem;
  line-height: 1.5;
  border-left: 5px solid #1262b3;
  padding: 0 0 0 13px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box h4 {
    font-size: 1.7rem;
    margin: 0 0 25px;
  }
}
.side .report_page .box strong {
  font-weight: bold;
  padding-right: 10px;
  color: #1262b3;
}
.side .report_page .box p {
  margin: 0 0 40px;
  line-height: 1.9;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box p {
    font-size: 1.5rem;
    margin: 0 0 20px;
  }
}
.side .report_page .box figure {
  margin: 0 auto 50px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box figure {
    margin: 0 auto 30px;
  }
}
.side .report_page .box figure figcaption {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 10px 0 0;
}
.side .report_page .box figure img {
  max-width: 768px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.side .report_page .box nav ul {
  max-width: 768px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #fff;
  height: 39px;
  border: 1px solid #1262b3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 78px;
  }
}
.side .report_page .box nav ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.side .report_page .box nav ul li:nth-of-type(1), .side .report_page .box nav ul li:nth-of-type(2), .side .report_page .box nav ul li:nth-of-type(3) {
  width: 20%;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li:nth-of-type(1), .side .report_page .box nav ul li:nth-of-type(2), .side .report_page .box nav ul li:nth-of-type(3) {
    width: 50%;
  }
}
.side .report_page .box nav ul li:nth-of-type(1) a, .side .report_page .box nav ul li:nth-of-type(2) a, .side .report_page .box nav ul li:nth-of-type(3) a {
  border-right: solid 1px #1262b3;
}
.side .report_page .box nav ul li:nth-of-type(1) a {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li:nth-of-type(1) a {
    border-bottom-left-radius: 0;
    border-bottom: solid 1px #1262b3;
  }
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li:nth-of-type(2) a {
    border-right: none;
    border-bottom: solid 1px #1262b3;
  }
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li:nth-of-type(3) a {
    border-bottom-left-radius: 5px;
  }
}
.side .report_page .box nav ul li:nth-of-type(4) {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li:nth-of-type(4) {
    width: 50%;
  }
}
.side .report_page .box nav ul li:nth-of-type(4) a {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li:nth-of-type(4) a {
    border-top-right-radius: 0;
  }
}
.side .report_page .box nav ul li a {
  width: 100%;
  height: 39px;
  line-height: 39px;
  display: block;
  color: #1262b3;
  padding: 0;
  text-align: center;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .side .report_page .box nav ul li a {
    font-size: 1.2rem;
  }
}
.side .report_page .box nav ul li a:hover {
  background-color: #1262b3;
  color: #fff;
}
.side .archive ul {
  max-width: 1320px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  .side .archive ul {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1210px) {
  .side .archive ul {
    max-width: 880px;
  }
}
@media screen and (max-width: 1000px) {
  .side .archive ul {
    max-width: 440px;
  }
}
@media screen and (max-width: 600px) {
  .side .archive ul {
    width: 340px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 330px) {
  .side .archive ul {
    width: 290px;
  }
}
.side .archive ul li {
  width: 200px;
  height: 46px;
  margin: 0 10px 20px;
}
@media screen and (max-width: 600px) {
  .side .archive ul li {
    width: 160px;
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 330px) {
  .side .archive ul li {
    width: 140px;
  }
}
.side .archive ul li a {
  width: 200px;
  height: 46px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  display: block;
  font-size: 1.4rem;
  border: 1px solid #1262b3;
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .side .archive ul li a {
    width: 160px;
    height: auto;
    font-size: 1.2rem;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 330px) {
  .side .archive ul li a {
    width: 140px;
    font-size: 1.1rem;
    padding: 10px 5px;
  }
}
.side .archive ul li a::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  color: #1262b3;
  padding-right: 10px;
  font-size: 1.8rem;
  display: inline-block;
  font-weight: 900;
  right: 7px;
  top: 7px;
}
@media screen and (max-width: 600px) {
  .side .archive ul li a::after {
    font-size: 1.6rem;
    right: 4px;
  }
}
.side .campany {
  border: 1px solid #1262b3;
  padding: 30px 30px 0;
  margin: 55px 10% 0;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .side .campany {
    padding: 20px 20px 10px;
    margin: 40px 20px 0;
  }
}
.side .campany dl dt {
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 5px;
  display: block;
  background-color: #1262b3;
  color: #fff;
  text-align: center;
  padding: 7px 10px 5px;
  float: left;
  clear: both;
  margin: 0 20px 25px 0;
}
@media screen and (max-width: 1000px) {
  .side .campany dl dt {
    display: inline-block;
    margin: 0 20px 7px 0;
    float: none;
    clear: none;
    font-size: 1.1rem;
    padding: 6px 5px 5px;
  }
}
.side .campany dl dd {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0 0 25px;
}
@media screen and (max-width: 1000px) {
  .side .campany dl dd {
    font-size: 1rem;
    margin: 0 0 7px;
  }
}

footer {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 0 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 88px solid #1262b3;
}
@media screen and (max-width: 1000px) {
  footer {
    height: auto;
    padding: 0 0 80px;
    border-left: none;
  }
}
footer .sns_sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  footer .sns_sp {
    display: block;
    background-color: #1262b3;
    padding: 30px 20px;
  }
}
footer .sns_sp ul {
  width: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .sns_sp ul li .fb {
  width: 36px;
  height: auto;
}
footer .sns_sp ul li .x {
  width: 28px;
  height: auto;
}
footer .sns_sp span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 30px auto 0;
}
footer p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  footer p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 20px 20px 0;
  }
}
footer nav {
  display: none;
}
@media screen and (max-width: 1000px) {
  footer nav {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
  }
  footer nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    background-color: #fff;
    height: 50px;
  }
  footer nav ul li:nth-of-type(1), footer nav ul li:nth-of-type(2), footer nav ul li:nth-of-type(3), footer nav ul li:nth-of-type(5) {
    width: 15%;
  }
  footer nav ul li:nth-of-type(4) {
    width: 40%;
  }
  footer nav ul li a {
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: block;
    color: #333;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer nav ul li a:hover {
    background-color: #1262b3;
    color: #fff;
  }
  footer nav .pagetop_sp {
    display: none;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  footer nav .pagetop_sp {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  footer nav .pagetop_sp a {
    height: 50px;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  footer nav .pagetop_sp a::before {
    font-family: "Font Awesome 6 Free";
    content: "\f062";
    color: #1262b3;
    font-size: 1.8rem;
    display: inline-block;
    font-weight: 700;
  }
  footer nav .pagetop_sp a:hover::before {
    color: #fff;
  }
}

.footer-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  .footer-txt {
    margin-bottom: 0;
  }
}

.footer-site-branding__img {
  display: inline-block;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .footer-site-branding__img {
    margin-top: 40px;
    margin-bottom: 10px;
  }
}

#article-end {
  margin-top: -1px;
}

.pagetop {
  position: fixed;
  right: 2%;
  bottom: 4%;
}
@media screen and (max-width: 1000px) {
  .pagetop {
    display: none !important;
  }
}
.pagetop a {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  border: 1px solid #1262b3;
  background-color: #fff;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.pagetop a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  color: #1262b3;
  font-size: 3rem;
  display: inline-block;
  font-weight: 700;
}
.pagetop a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */