@charset "UTF-8";
/*
@import url("https://fonts.googleapis.com/css?family=Literata&display=swap");
html {
  font-size: 62.5%;
  overflow: auto;
  color: #333333;
}

img {
  vertical-align: bottom;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-width: 1200px;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Literata", serif;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

input, textarea, select {
  font-family: "Literata", serif;
}

sup {
  font-size: 0.8em;
  position: relative;
  left: 0;
  bottom: 0.2em;
}

sub {
  font-size: 0.8em;
  position: relative;
  left: 0;
  top: 0.2em;
}

ul,
li {
  list-style-type: none;
}

.nobr,
nobr {
  display: inline-block;
  white-space: nowrap;
}

span, a {
  display: inline-block;
}

label {
  cursor: pointer;
}

input, button, select, textarea {
  margin: 10px 0;
}

input:not([type=radio], [type=checkbox], [type=image]), button, textarea, label > select, option {
  background: transparent;
  -webkit-border-image: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  -webkit-appearance: none;
  -webkit-rtl-ordering: logical;
}

select::-ms-expand {
  display: none;
}

input:not([type=submit], [type=radio], [type=checkbox], [type=image]), textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: solid 1px #d6d6d6;
  display: inline-block;
  width: auto;
}

input:not([type=radio], [type=checkbox], [type=image])[disabled], textarea[disabled] {
  background: rgba(64, 64, 64, 0.1);
  cursor: default;
}

button, input[type=submit], input[type=image], select, option {
  cursor: pointer;
}

button:focus, button::-moz-focus-inner, input[type=submit]:focus, input[type=submit]::-moz-focus-inner {
  border: 0;
  outline: none;
}

input:not([type=submit], [type=button], [type=checkbox], [type=radio], [type=image]),
select,
option,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.5rem;
}

input:not([type=submit], [type=button], [type=checkbox], [type=radio], [type=image]),
select {
  display: inline-block;
  height: 3.2rem;
}

select:not(.is-select) {
  color: rgba(0, 0, 0, 0.7);
}

option[disabled] {
  color: transparent !important;
  opacity: 0 !important;
  display: none !important;
}

.select {
  display: inline-block;
  position: relative;
}

.select:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: solid 2px gray;
  border-left: solid 2px gray;
  position: absolute;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translate(-50%, -75%) rotate(-45deg);
      -ms-transform: translate(-50%, -75%) rotate(-45deg);
          transform: translate(-50%, -75%) rotate(-45deg);
  z-index: 0;
}

.select select {
  width: 100%;
  z-index: 1;
  position: relative;
  padding-right: 2.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
}

.select.disabled {
  background: #404040;
  opacity: 0.5;
  cursor: default;
}

input[type=radio]:not([class]) {
  width: 1em;
  height: 1em;
  z-index: 0;
  position: relative;
  visibility: hidden;
}
input[type=radio]:not([class]) + label {
  padding-left: 1.8em;
  position: relative;
  left: -1em;
}
input[type=radio]:not([class]) + label:before, input[type=radio]:not([class]) + label:after {
  content: "";
  display: inline-block;
}
input[type=radio]:not([class]) + label:before {
  width: 10px;
  height: 10px;
  border: solid 1px silver;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.7em;
  -webkit-transform: translate(-50%, -55%);
      -ms-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  background: white;
}
input[type=radio]:not([class]):checked + label:after {
  width: 10px;
  height: 10px;
  background: gray;
  border: solid 3px white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.7em;
  -webkit-transform: translate(-50%, -55%);
      -ms-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  box-sizing: border-box;
}

input[type=checkbox]:not([class]) {
  width: 1em;
  height: 1em;
  background: red;
  z-index: 0;
  position: relative;
  visibility: hidden;
}
input[type=checkbox]:not([class]) + label {
  padding-left: 1.4em;
  position: relative;
  left: -1.4em;
}
input[type=checkbox]:not([class]) + label:before, input[type=checkbox]:not([class]) + label:after {
  content: "";
  display: inline-block;
}
input[type=checkbox]:not([class]) + label:before {
  width: 1em;
  height: 1em;
  border: solid 1px silver;
  position: absolute;
  left: -1px;
  top: -1px;
  background: white;
}
input[type=checkbox]:not([class]):checked + label:after {
  width: 0.5em;
  height: 0.9em;
  border-right: solid 2px gray;
  border-bottom: solid 2px gray;
  -webkit-box-shadow: border-box;
          box-shadow: border-box;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 0.2em;
  margin-top: -0.3em;
}
*/

/* ==================================================
    モジュール
================================================== */
/* --------------------------------------------------
  調整
-------------------------------------------------- */
/*
.is-hide {
  display: none !important;
}

.lts-n {
  letter-spacing: -0.04em;
}
.lts-ss {
  letter-spacing: -0.08em;
}

span[class*=lts-] {
  display: inline;
}

.f-half {
  width: 0.4em;
}

.fz-ss {
  font-size: 0.6em !important;
}
.fz-s {
  font-size: 0.85em !important;
}
.fz-l {
  font-size: 1.2em !important;
}
.fz-ll {
  font-size: 1.4em !important;
}
.fz-lll {
  font-size: 1.6em !important;
}

.ta-c {
  text-align: center !important;
}
.ta-r {
  text-align: right !important;
}
.ta-l {
  text-align: left !important;
}
.ta-j {
  text-align: justify !important;
  text-justify: inter-ideograph !important;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

span.ta-c {
  display: inline-block;
  text-align: center !important;
}
span.ta-r {
  display: inline-block;
  text-align: right !important;
}
span.ta-l {
  display: inline-block;
  text-align: left !important;
}

@media only screen and (max-width: 767px) {
  .sp-ta-c {
    text-align: center !important;
  }
  .sp-ta-r {
    text-align: right !important;
  }
  .sp-ta-l {
    text-align: left !important;
  }
}
.va-m, .va-t, .va-b {
  display: table-cell !important;
}
.va-m {
  vertical-align: middle !important;
}
.va-t {
  vertical-align: top !important;
}
.va-b {
  vertical-align: bottom !important;
}
*/

/*  margin
================================================== */
/*
.mw-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mt-0, .mh-0, .ma-0 {
  margin-top: 0rem !important;
}

.mr-0, .mw-0, .ma-0 {
  margin-right: 0rem !important;
}

.mb-0, .mh-0, .ma-0 {
  margin-bottom: 0rem !important;
}

.ml-0, .mw-0, .ma-0 {
  margin-left: 0rem !important;
}

.pt-0, .ph-0, .pa-0 {
  padding-top: 0rem !important;
}

.pr-0, .pw-0, .pa-0 {
  padding-right: 0rem !important;
}

.pb-0, .ph-0, .pa-0 {
  padding-bottom: 0rem !important;
}

.pl-0, .pw-0, .pa-0 {
  padding-left: 0rem !important;
}

.mt-5, .mh-5, .ma-5 {
  margin-top: 0.5rem !important;
}

.mr-5, .mw-5, .ma-5 {
  margin-right: 0.5rem !important;
}

.mb-5, .mh-5, .ma-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5, .mw-5, .ma-5 {
  margin-left: 0.5rem !important;
}

.pt-5, .ph-5, .pa-5 {
  padding-top: 0.5rem !important;
}

.pr-5, .pw-5, .pa-5 {
  padding-right: 0.5rem !important;
}

.pb-5, .ph-5, .pa-5 {
  padding-bottom: 0.5rem !important;
}

.pl-5, .pw-5, .pa-5 {
  padding-left: 0.5rem !important;
}

.mt-10, .mh-10, .ma-10 {
  margin-top: 1rem !important;
}

.mr-10, .mw-10, .ma-10 {
  margin-right: 1rem !important;
}

.mb-10, .mh-10, .ma-10 {
  margin-bottom: 1rem !important;
}

.ml-10, .mw-10, .ma-10 {
  margin-left: 1rem !important;
}

.pt-10, .ph-10, .pa-10 {
  padding-top: 1rem !important;
}

.pr-10, .pw-10, .pa-10 {
  padding-right: 1rem !important;
}

.pb-10, .ph-10, .pa-10 {
  padding-bottom: 1rem !important;
}

.pl-10, .pw-10, .pa-10 {
  padding-left: 1rem !important;
}

.mt-15, .mh-15, .ma-15 {
  margin-top: 1.5rem !important;
}

.mr-15, .mw-15, .ma-15 {
  margin-right: 1.5rem !important;
}

.mb-15, .mh-15, .ma-15 {
  margin-bottom: 1.5rem !important;
}

.ml-15, .mw-15, .ma-15 {
  margin-left: 1.5rem !important;
}

.pt-15, .ph-15, .pa-15 {
  padding-top: 1.5rem !important;
}

.pr-15, .pw-15, .pa-15 {
  padding-right: 1.5rem !important;
}

.pb-15, .ph-15, .pa-15 {
  padding-bottom: 1.5rem !important;
}

.pl-15, .pw-15, .pa-15 {
  padding-left: 1.5rem !important;
}

.mt-20, .mh-20, .ma-20 {
  margin-top: 2rem !important;
}

.mr-20, .mw-20, .ma-20 {
  margin-right: 2rem !important;
}

.mb-20, .mh-20, .ma-20 {
  margin-bottom: 2rem !important;
}

.ml-20, .mw-20, .ma-20 {
  margin-left: 2rem !important;
}

.pt-20, .ph-20, .pa-20 {
  padding-top: 2rem !important;
}

.pr-20, .pw-20, .pa-20 {
  padding-right: 2rem !important;
}

.pb-20, .ph-20, .pa-20 {
  padding-bottom: 2rem !important;
}

.pl-20, .pw-20, .pa-20 {
  padding-left: 2rem !important;
}

.mt-25, .mh-25, .ma-25 {
  margin-top: 2.5rem !important;
}

.mr-25, .mw-25, .ma-25 {
  margin-right: 2.5rem !important;
}

.mb-25, .mh-25, .ma-25 {
  margin-bottom: 2.5rem !important;
}

.ml-25, .mw-25, .ma-25 {
  margin-left: 2.5rem !important;
}

.pt-25, .ph-25, .pa-25 {
  padding-top: 2.5rem !important;
}

.pr-25, .pw-25, .pa-25 {
  padding-right: 2.5rem !important;
}

.pb-25, .ph-25, .pa-25 {
  padding-bottom: 2.5rem !important;
}

.pl-25, .pw-25, .pa-25 {
  padding-left: 2.5rem !important;
}

.mt-30, .mh-30, .ma-30 {
  margin-top: 3rem !important;
}

.mr-30, .mw-30, .ma-30 {
  margin-right: 3rem !important;
}

.mb-30, .mh-30, .ma-30 {
  margin-bottom: 3rem !important;
}

.ml-30, .mw-30, .ma-30 {
  margin-left: 3rem !important;
}

.pt-30, .ph-30, .pa-30 {
  padding-top: 3rem !important;
}

.pr-30, .pw-30, .pa-30 {
  padding-right: 3rem !important;
}

.pb-30, .ph-30, .pa-30 {
  padding-bottom: 3rem !important;
}

.pl-30, .pw-30, .pa-30 {
  padding-left: 3rem !important;
}

.mt-35, .mh-35, .ma-35 {
  margin-top: 3.5rem !important;
}

.mr-35, .mw-35, .ma-35 {
  margin-right: 3.5rem !important;
}

.mb-35, .mh-35, .ma-35 {
  margin-bottom: 3.5rem !important;
}

.ml-35, .mw-35, .ma-35 {
  margin-left: 3.5rem !important;
}

.pt-35, .ph-35, .pa-35 {
  padding-top: 3.5rem !important;
}

.pr-35, .pw-35, .pa-35 {
  padding-right: 3.5rem !important;
}

.pb-35, .ph-35, .pa-35 {
  padding-bottom: 3.5rem !important;
}

.pl-35, .pw-35, .pa-35 {
  padding-left: 3.5rem !important;
}

.mt-40, .mh-40, .ma-40 {
  margin-top: 4rem !important;
}

.mr-40, .mw-40, .ma-40 {
  margin-right: 4rem !important;
}

.mb-40, .mh-40, .ma-40 {
  margin-bottom: 4rem !important;
}

.ml-40, .mw-40, .ma-40 {
  margin-left: 4rem !important;
}

.pt-40, .ph-40, .pa-40 {
  padding-top: 4rem !important;
}

.pr-40, .pw-40, .pa-40 {
  padding-right: 4rem !important;
}

.pb-40, .ph-40, .pa-40 {
  padding-bottom: 4rem !important;
}

.pl-40, .pw-40, .pa-40 {
  padding-left: 4rem !important;
}

.mt-45, .mh-45, .ma-45 {
  margin-top: 4.5rem !important;
}

.mr-45, .mw-45, .ma-45 {
  margin-right: 4.5rem !important;
}

.mb-45, .mh-45, .ma-45 {
  margin-bottom: 4.5rem !important;
}

.ml-45, .mw-45, .ma-45 {
  margin-left: 4.5rem !important;
}

.pt-45, .ph-45, .pa-45 {
  padding-top: 4.5rem !important;
}

.pr-45, .pw-45, .pa-45 {
  padding-right: 4.5rem !important;
}

.pb-45, .ph-45, .pa-45 {
  padding-bottom: 4.5rem !important;
}

.pl-45, .pw-45, .pa-45 {
  padding-left: 4.5rem !important;
}

.mt-50, .mh-50, .ma-50 {
  margin-top: 5rem !important;
}

.mr-50, .mw-50, .ma-50 {
  margin-right: 5rem !important;
}

.mb-50, .mh-50, .ma-50 {
  margin-bottom: 5rem !important;
}

.ml-50, .mw-50, .ma-50 {
  margin-left: 5rem !important;
}

.pt-50, .ph-50, .pa-50 {
  padding-top: 5rem !important;
}

.pr-50, .pw-50, .pa-50 {
  padding-right: 5rem !important;
}

.pb-50, .ph-50, .pa-50 {
  padding-bottom: 5rem !important;
}

.pl-50, .pw-50, .pa-50 {
  padding-left: 5rem !important;
}
*/

/*  width
================================================== */
/*
.w-0 {
  width: 0% !important;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-100 {
  width: 100% !important;
}

.px-100 {
  width: 100px !important;
}

.px-105 {
  width: 105px !important;
}

.px-110 {
  width: 110px !important;
}

.px-115 {
  width: 115px !important;
}

.px-120 {
  width: 120px !important;
}

.px-125 {
  width: 125px !important;
}

.px-130 {
  width: 130px !important;
}

.px-135 {
  width: 135px !important;
}

.px-140 {
  width: 140px !important;
}

.px-145 {
  width: 145px !important;
}

.px-150 {
  width: 150px !important;
}

.px-155 {
  width: 155px !important;
}

.px-160 {
  width: 160px !important;
}

.px-165 {
  width: 165px !important;
}

.px-170 {
  width: 170px !important;
}

.px-175 {
  width: 175px !important;
}

.px-180 {
  width: 180px !important;
}

.px-185 {
  width: 185px !important;
}

.px-190 {
  width: 190px !important;
}

.px-195 {
  width: 195px !important;
}

.px-200 {
  width: 200px !important;
}

.px-205 {
  width: 205px !important;
}

.px-210 {
  width: 210px !important;
}

.px-215 {
  width: 215px !important;
}

.px-220 {
  width: 220px !important;
}

.px-225 {
  width: 225px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}
*/

/* --------------------------------------------------
  レイアウト
-------------------------------------------------- */
/*
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  margin: 2rem -20px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .row {
    margin: 2rem -0.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .row {
    margin: 2rem -0.5rem;
  }
}
.row--gap40 {
  margin: 2rem -40px;
}

.row__col {
  width: calc(100% - 80px);
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 80px;
}
.row__col > *:last-child {
  margin-bottom: 0;
}
.row--gap40 .row__col {
  width: calc(100% - 80px);
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 80px;
}
.row--gap40 .row__col > *:last-child {
  margin-bottom: 0;
}

.row--col2 > .row__col {
  width: calc(50% - 80px);
}
.row--col2.row--gap40 > .row__col {
  width: calc(50% - 80px);
}
.row--col3 > .row__col {
  width: calc(100% / 3 - 80px);
}
.row--col4 > .row__col {
  width: calc(25% - 80px);
}
.row--col5 > .row__col {
  width: calc(20% - 80px);
}
*/

/* --------------------------------------------------
  セクション
-------------------------------------------------- */
/*
.section {
  padding: 40px 0;
}
.section__inner > *:first-child {
  margin-top: 0;
}
.section__inner > *:last-child {
  margin-bottom: 0;
}
*/

/* --------------------------------------------------
  リスト
-------------------------------------------------- */
/*
.list {
  line-height: 2;
}
.list li a {
  text-indent: initial;
}
.list > li {
  list-style-type: none;
  text-indent: -1.5em;
  margin-left: 1.5em;
}
.list > li:before {
  content: "";
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  vertical-align: middle;
  background-color: #555;
  border-radius: 50%;
  text-indent: 0;
  margin-left: 0.6em;
  margin-right: 0.7em;
}

.listNote {
  line-height: 2;
}
.listNote > li {
  padding-left: 1.5em;
}
.listNote > li:before {
  content: "※";
  width: 1.5em;
  display: inline-block;
  position: relative;
  margin-left: -1.5em;
}

.listNoteNum {
  font-size: 12px;
  font-size: 1.2rem;
}
.listNoteNum > li {
  list-style-type: none;
  text-indent: -2em;
  margin-left: 2em;
  counter-increment: calc-ex9;
}
.listNoteNum > li:before {
  content: "※" counter(calc-ex9);
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
*/

/* --------------------------------------------------
  バナー
-------------------------------------------------- */
/*
.bnrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
*/

/* --------------------------------------------------
  ページネーション
-------------------------------------------------- */
/*
.pagenation {
  margin: 30px 0 -30px;
  padding: 16px;
  text-align: center;
}
.pagenation a {
  color: white;
}
.pagenation__btn a:hover {
  background-color: #cccccc;
  color: #ffffff;
}
.pagenation__list {
  letter-spacing: -0.5em;
}
.pagenation__link {
  position: relative;
  letter-spacing: 0.04em;
  display: inline-block;
  margin: 0 4px;
  color: #333;
}
.pagenation__btn {
  letter-spacing: 0.04em;
  display: inline-block;
  margin: 0 15px;
}
.pagenation__btn a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  min-width: 50px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #011550;
}
.pagenation .cur a {
  color: #011550;
  background-color: #fff000;
}
.pagenation__link {
  margin: 0 10px;
}
.pagenation__link a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 10px 0;
}
.pagenation__link a:hover {
  opacity: 0.75;
}
.pagenation__link--first a {
  position: relative;
}
.pagenation__link--first a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #011550;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
          transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
.pagenation__link--first a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #011550;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
          transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
.pagenation__link--last a {
  position: relative;
}
.pagenation__link--last a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #011550;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
          transform: translateX(50%) translateY(-50%) rotate(45deg);
}
.pagenation__link--last a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #011550;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
          transform: translateX(50%) translateY(-50%) rotate(45deg);
}
.pagenation__link--prev {
  padding: 0;
}
.pagenation__link--prev a {
  color: transparent;
  position: relative;
  padding: 0.3rem 1rem;
}
.pagenation__link--prev a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #011550;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
          transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
.pagenation__link--next {
  padding: 0;
}
.pagenation__link--next a {
  color: transparent;
  position: relative;
  padding: 0.3rem 1rem;
}
.pagenation__link--next a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #011550;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
          transform: translateX(50%) translateY(-50%) rotate(45deg);
}
*/

/* --------------------------------------------------
  画像
-------------------------------------------------- */
/*
.figure {
  margin: 10px 0;
  border-radius: 8px;
  overflow: hidden;
}
*/

/* --------------------------------------------------
  画像テキスト
-------------------------------------------------- */
/*
.lytImage:after {
  content: "";
  display: block;
  clear: both;
}
.lytImage--imageLeft .lytImage__image {
  float: left;
  padding-right: 25px;
  padding-bottom: 15px;
}
.lytImage--imageRight .lytImage__image {
  float: right;
  padding-left: 25px;
  padding-bottom: 15px;
}
.lytImage .lytImage__image {
  max-width: 50%;
}
*/

/* --------------------------------------------------
  代替リスト
-------------------------------------------------- */
/*
.dl01 dt {
  padding: 10px 20px;
  text-align: center;
  border: solid 1px #333333;
  display: inline-block;
  min-width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 15px;
}
*/

/* --------------------------------------------------
  アイコン
-------------------------------------------------- */
/*
.icon {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 3px;
  line-height: 1;
  margin: 0 15px;
}
.icon--inquired {
  background: #f7807e;
  border-radius: 3px;
  color: white;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 3px 10px 2px;
}
*/

/* --------------------------------------------------
  テキスト
-------------------------------------------------- */
/*
.textNote {
  font-size: 0.8em;
}
*/

/* --------------------------------------------------
  フォーム
-------------------------------------------------- */
/*
.tableForm {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background: #cccccc;
  margin: 40px 0 40px;
  border-collapse: separate;
  border-spacing: 1px;
  background: #cccccc;
  color: #555555;
  font-size: 14px;
  font-size: 1.4rem;
}
.tableForm tr th, .tableForm tr td {
  background: white;
  padding: 9px 15px;
  font-weight: normal;
  text-align: left;
}
.tableForm tr th {
  background: #f6f6f6;
  font-weight: bold;
  padding: 20px 15px;
  vertical-align: middle;
}
.tableForm tr td {
  vertical-align: middle;
}
.tableForm input {
  width: 300px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tableForm input + *[class*=textNote], .tableForm label + *[class*=textNote], .tableForm select + *[class*=textNote] {
  display: inline-block;
  margin: 0;
  margin-left: 10px;
}

.innerList {
  margin: 20px 0;
  display: table;
  width: 100%;
}
.innerList > dt {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}
.innerList > dt:nth-of-type(1) {
  width: 20%;
}
.innerList > dt, .innerList > dd {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

input[type=radio].radio {
  display: none;
}
input[type=radio].radio + label {
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
}
input[type=radio].radio + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  border-radius: 50%;
}
input[type=radio].radio:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: #b6b6b6;
  border-radius: 50%;
}
input[type=radio].radio__text {
  font-size: 14px;
  font-size: 1.4rem;
}

button.btnSubmit {
  border-radius: 0;
  border: none;
  display: table;
  margin: 20px auto;
  background: #002f5f;
  height: 60px;
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  letter-spacing: 0.05em;
}
button.btnSubmit > span {
  min-width: 330px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
button.btnSubmit:not([disabled]):hover {
  background: rgba(0, 47, 95, 0.5);
}

.btnSubmit:not(button) {
  cursor: pointer;
  border-radius: 0;
  border: none;
  display: table;
  margin: 20px auto;
  background: #009f9d;
  height: 60px;
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.btnSubmit:not(button) input[type=submit] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.btnSubmit:not(button) > span {
  min-width: 330px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.btnSubmit:not(button):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: 60px;
  z-index: 0;
  background: #011550;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 0;
}
.btnSubmit:not(button):not(.is-disabled):hover:before {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}
*/

/* --------------------------------------------------
  ボタン
-------------------------------------------------- */
/*
.btn {
  min-width: 280px;
  text-align: center;
  height: 50px;
  display: table;
  margin: auto;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn > span {
  display: table-cell;
  vertical-align: middle;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.75;
}
.btn--01 {
  background: #011550;
  color: white;
}
.btn--02 {
  background: #fff000;
  color: #1e3c91;
}
.btn--02 > span > span {
  position: relative;
  padding: 0 1.8em;
}
.btn--02 > span > span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.5em;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #1e3c91;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.btn--back {
  background: #fff000;
  color: #1e3c91;
}
.btn--back > span > span {
  position: relative;
  padding: 0 1.8em;
}
.btn--back > span > span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5em;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #1e3c91;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%) rotate(-135deg);
      -ms-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.btn--request {
  background: #011550;
  max-width: 800px;
  width: 100%;
  color: white;
}

.section__title {
  font-size: 54px;
  font-size: 5.4rem;
  margin-bottom: 60px;
  text-align: center;
}
.section__title-02 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
  color: #011550;
  margin-bottom: 40px;
  padding-bottom: 15px;
  text-align: center;
  position: relative;
}
.section__title-02:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #011550;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section#voices {
  background: url(../img/top/bg-voices.jpg) center no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}
.section#voices .row {
  margin: 2rem -90px;
}
.section#headlines {
  background: url(../img/top/bg-headlines.jpg) center no-repeat;
  background-size: cover;
}
*/
/*
.section#research {
  background: url(../img/top/bg-research.jpg) center no-repeat;
  background-size: cover;
}
.section#research .section__inner {
  padding: 0;
}
*/
/*
.section#topics {
  background: rgba(255, 255, 255, 0.6);
  background-size: cover;
  padding-bottom: 80px;
  margin-bottom: -40px;
  margin-top: 60px;
}

.indexBox-01 {
  color: #333333;
  text-decoration: none !important;
  max-width: 340px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.indexBox-01__figure {
  margin: 0;
}
.indexBox-01__title {
  text-align: center;
  font-weight: bold;
  padding: 18px 0;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.25;
  border-bottom: solid 2px #dcdcdc;
}
.indexBox-01__btn {
  color: #011550 !important;
  text-align: right;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: bold;
  padding-bottom: 10px;
  padding-right: 24px;
  margin-bottom: 0;
}
.indexBox-01__btn:before, .indexBox-01__btn:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: #011550;
  position: absolute;
  bottom: 0;
  right: 0;
}
.indexBox-01__btn:before {
  width: 120px;
}
.indexBox-01__btn:after {
  width: 15px;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.indexBox-01:hover {
  opacity: 0.75;
}
.indexBox-01:hover img {
  opacity: 1;
}

.topicsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.indexBox-02 {
  display: table;
  width: 100%;
  max-width: 900px;
  margin: auto;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.indexBox-02__figure, .indexBox-02__body {
  display: table-cell;
  vertical-align: top;
}
.indexBox-02__figure {
  width: 280px;
  margin: 0;
}
.indexBox-02__body {
  width: 620px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px 28px;
  border: solid 2px #dcdcdc;
  background: white;
}
.indexBox-02__category {
  color: #011550;
  padding-bottom: 15px;
  border-bottom: solid 2px #dcdcdc;
}
.indexBox-02__category .label {
  margin-right: 10px;
}
.indexBox-02__text {
  color: #333333;
  padding: 15px 0 0;
}
.indexBox-02__text p {
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
}
.indexBox-02:hover {
  opacity: 0.75;
}
.indexBox-02:hover img {
  opacity: 1;
}

.indexBox-03 {
  display: table;
  width: 100%;
  margin: auto;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.indexBox-03__figure, .indexBox-03__body {
  display: table-cell;
  vertical-align: top;
}
.indexBox-03__figure {
  margin: 0;
  width: 340px;
  white-space: nowrap;
}
.indexBox-03__image {
  width: 340px;
}
.indexBox-03__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 0 40px;
}
.indexBox-03__category {
  color: #011550;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}
.indexBox-03__category .label {
  margin-right: 10px;
}
.indexBox-03__title {
  color: #011550;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  padding: 10px 0 15px;
  border-top: solid 2px #dcdcdc;
  border-bottom: solid 2px #dcdcdc;
}
.indexBox-03__text {
  color: #333333;
  padding: 15px 0 0;
}
.indexBox-03__text p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
.indexBox-03__btn {
  color: #011550 !important;
  text-align: right;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: bold;
  padding-bottom: 10px;
  padding-right: 24px;
  margin-bottom: 0;
}
.indexBox-03__btn:before, .indexBox-03__btn:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: #011550;
  position: absolute;
  bottom: 0;
  right: 0;
}
.indexBox-03__btn:before {
  width: 120px;
}
.indexBox-03__btn:after {
  width: 15px;
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.indexBox-03:hover {
  opacity: 0.75;
}
.indexBox-03:hover img {
  opacity: 1;
}

.indexBox-04 {
  border-bottom: solid 2px #dcdcdc;
  margin-bottom: 40px !important;
}
.indexBox-04__figure {
  margin: 0;
}
.indexBox-04__title {
  padding: 16px 0 20px;
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.25;
  border-bottom: solid 2px #dcdcdc;
}
.indexBox-04__text {
  margin-top: 20px;
}
.indexBox-04__text p {
  margin: 0;
}
.indexBox-04__more {
  background: #011550;
  color: white;
  min-width: 150px;
  text-align: center;
  height: 36px;
  display: table;
  margin: 25px auto 20px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.indexBox-04__more > span {
  display: table-cell;
  vertical-align: middle;
}
.indexBox-04__more:hover {
  text-decoration: none;
  opacity: 0.75;
}

.label {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  padding: 5px 10px 7px;
  color: white;
}
.label--date {
  background: #011550;
}

.uniqueTable-01 {
  font-weight: bold;
  border-collapse: separate;
  border-spacing: 6px;
  background: #fff;
  margin: 40px auto;
  width: 800px;
  table-layout: fixed;
}
.uniqueTable-01 td,
.uniqueTable-01 th {
  padding: 3px;
  text-align: center;
  vertical-align: middle;
}
.uniqueTable-01 thead th[colspan="3"] {
  background: #011550;
  font-size: 2.4rem;
}
.uniqueTable-01 thead th {
  background: #278ea5;
  color: white;
}
.uniqueTable-01 tbody td {
  background: #f1f1f1;
}

.indexBox-05__figure {
  float: left;
  width: 200px;
  margin: 0;
}
.indexBox-05__body {
  padding-left: 230px;
}
.indexBox-05__title {
  padding: 0 0 10px;
  font-weight: bold;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.25;
  border-bottom: solid 2px #dcdcdc;
}
.indexBox-05__text {
  margin-top: 10px;
  word-break: break-all;
}
.indexBox-05__text p {
  margin: 0;
}
.indexBox-05__more {
  background: #011550;
  color: white;
  min-width: 150px;
  text-align: center;
  height: 36px;
  display: table;
  margin: 25px 0 0 auto;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.indexBox-05__more:hover {
  opacity: 0.75;
}

.pdfLink {
  padding-left: 40px;
  position: relative;
  color: #333333;
}
.pdfLink:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon-pdf.png) center no-repeat/cover;
  position: absolute;
  top: 0;
  left: 0;
}

.block {
  margin: 60px 0;
}
.block__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.figureRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.figureRow > * > *:first-child {
  margin-top: 0;
}
.figureRow > * > *:last-child {
  margin-bottom: 0;
}
.figureRow__image {
  margin: 0;
}
.figureRow__image img {
  max-width: inherit;
}
.figureRow.figureRow--imageLeft {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.figureRow.figureRow--imageLeft .figureRow__text {
  padding-left: 30px;
}
.figureRow.figureRow--imageRight .figureRow__text {
  padding-right: 30px;
}
*/

/*2021.03add*/
.section#research {
  background: url(../img/top/bg-research.jpg) center no-repeat;
  background-size: cover;
}
.section#research .section__inner {
  padding: 0;
}

.activitiesTags__btn {
  text-decoration: none !important;
  font-size: 1.2rem;
  font-weight: bold;
  border: solid 0.2rem #011550;
  background: white;
  color: #011550;
  position: relative;
  width: 15.4rem;
  height: 3.6rem;
  line-height: 3.2rem;
  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-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.activitiesTags__btn:hover {
  opacity: 0.75;
}
.activitiesTags__btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5em;
  height: 0.5em;
  border-top: solid 0.1rem;
  border-right: solid 0.1rem;
  border-color: #333;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-60%) rotate(135deg);
      -ms-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.activitiesTags__btn.is-open:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.activitiesTags__cont {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.activitiesTags__cont.is-open {
  margin: 1rem -0.4rem 0;
  max-height: 30vh;
  overflow: visible;
}

.activitiesTag {
  vertical-align: top;
  font-size: 1.2rem;
  color: #333333;
  display: inline-block;
  background: white;
  line-height: 1;
  padding: 0.2em 0.8em;
  border: solid 1px #999999;
  margin: 1rem 0.4rem 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.activitiesTag:hover {
  opacity: 0.65;
}

.activitiesList {
  margin-bottom: 8rem;
}
.activitiesList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 2px #dcdcdc;
  color: #333;
  text-decoration: none !important;
}
.activitiesList__item:hover {
  opacity: 0.75;
}
.activitiesList__item:not(:first-child) {
  margin-top: 10rem;
}
.activitiesList__figure {
  margin: 0 4rem 0 0;
  width: 35rem;
}
.activitiesList__figure img {
  width: 100%;
  height: auto;
}
.activitiesList__cont {
  width: 100%;
  padding: 0 4rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.activitiesList__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 3rem 0 2.5rem;
  border-bottom: solid #000;
  border-bottom: solid 2px #dcdcdc;
}
.activitiesList__date {
  background: #011550;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  padding: 0.5rem 1rem 0.7rem;
  height: auto;
  color: white;
  margin-right: 0.5rem;
}
.activitiesList__tags {
  margin-top: -0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.activitiesList__body {
  padding: 1.5rem 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
}
.activitiesList__body > *:first-child {
  margin-top: 0;
}
.activitiesList__body > *:last-child {
  margin-bottom: 0;
}

.wideImage {
  width: 100vw;
  position: relative;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.wideImage--col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wideImage--col2 > img {
  width: 50%;
}

.researchRead {
  width: 80rem;
  margin: 0 auto 5.5rem;
  text-align: center;
  font-size: 4.7rem;
  font-weight: bold;
  line-height: 1.1;
  color: #0000ee;
}

.researchHeader {
  width: 80rem;
  margin: 0 auto 5.5rem;
  padding: 3rem 0;
  border-top: solid 1px #dcdcdc;
  border-bottom: solid 1px #dcdcdc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.researchHeader__number {
  border: solid 1px #333;
  line-height: 1;
  min-width: 8rem;
  padding: 0.2em 0.5em;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.researchHeader__title {
  font-size: 3rem;
  line-height: 1.1;
}

.researchTitle {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  padding-bottom: 2.6rem;
  margin-bottom: 2.6rem;
  position: relative;
  text-align: center;
}
.researchTitle:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 5rem;
  background: #0000ee;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.researchSection {
  width: 80rem;
  margin: 0 auto 10rem;
}

.figureRow02:after {
  content: "";
  display: block;
  clear: both;
}
.figureRow02__image {
  margin: 0 auto 2rem;
  display: table;
  width: 1rem;
}
.figureRow02__image img {
  max-width: inherit;
}
.figureRow02__image figcaption {
  font-size: 1.3rem;
}
.figureRow02--imageRight .figureRow02__image {
  float: right;
  margin-left: 3rem;
}

.figureRow02--imageLeft .figureRow02__image {
  float: left;
  margin-right: 3rem;
}

.figure2 img + figcaption {
  margin-top: 2rem;
}
/* add 2021/03/25-26 */
p, ul, dl, table, figure, .figure2 {
  margin: 20px 0;
}

.indexBox-01__title.ResAct {
  font-size: 2.7rem;
}

/*
@media only screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

a,
span {
  display: inline-block;
}

a > img {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover > img {
  opacity: 0.65;
}

@media only screen and (min-width: 768px) {
  img {
    max-width: 100%;
  }
}

body {
  margin: 0;
}
body.is-open {
  position: fixed;
}

.header {
  background: #011550;
}
.header__inner {
  margin: auto;
  padding: 10px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1200px;
  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;
}
.header__inner:after {
  content: "";
  display: block;
  clear: both;
}
.header__primary {
  width: 40%;
}
.header__secondly {
  width: 60%;
}
.header__tertiary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__snss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.header__sns {
  margin-left: 30px;
}
.header__link {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-left: 25px;
}
.header__search {
  margin-left: 25px;
  width: 160px;
  position: relative;
  background: white;
}
.header__search:after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 4px);
  background: #011550;
  position: absolute;
  right: 35px;
  top: 2px;
}
.header__search input {
  margin: 0 !important;
  border: none !important;
}
.header__search input[type=text] {
  width: 130px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 35px !important;
}
.header__search input[type=text]:not(:focus) {
  text-align: center;
}
.header__search input[type=image] {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn {
  display: table;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  height: 35px;
  min-width: 150px;
  text-align: center;
  margin-left: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn:hover {
  opacity: 0.75;
  text-decoration: none;
}
.header__btn > span {
  display: table-cell;
  padding: 0.2em;
  vertical-align: middle;
}
.header__btn--contact {
  background: #278ea5;
  color: white;
}

.navGrobal {
  background: rgba(39, 142, 165, 0.8);
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}
.navGrobal__inner {
  width: 1200px;
  padding: 10px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
.navGrobal__list {
  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;
  margin: 0;
  margin-right: 10px;
}
.navGrobal__list li {
  margin: 0 12px;
}
.navGrobal__list li:first-child {
  margin-left: 0;
}
.navGrobal__list li:last-child {
  margin-right: 0;
}
.navGrobal__list a {
  color: white;
}
.navGrobal .search {
  margin-left: 10px;
  background: white;
  padding-right: 2px;
  width: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.navGrobal .search input {
  margin: 0;
  border: none !important;
}
.navGrobal .search input[type=text] {
  width: 135px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 2.4rem !important;
}

.footer {
  margin: auto;
  background: #011550;
  color: white;
  text-align: center;
  font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.footer__inner {
  min-width: 1200px;
  padding: 25px 100px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}
.footer__inner .btnPageTop {
  position: absolute;
  top: -30px;
  right: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.footer__links {
  margin-bottom: 25px;
}
.footer__link {
  color: white;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin: 0 24px;
}
.footer__link:not(:first-child) {
  position: relative;
}
.footer__link:not(:first-child):before {
  content: "";
  display: block;
  height: 1em;
  width: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: -23px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__sign {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}
.footer__info {
  margin: 0;
}
.footer__info span {
  border: solid 1px white;
  line-height: 1;
  padding: 4px 8px;
}
.footer .copy {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  margin-top: 30px;
}

.footer__inner > .btnPageTop__hook {
  background: #f7f7f8;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 0px;
  font-size: 0rem;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__inner > .btnPageTop__hook > span {
  padding-top: 28px;
  position: relative;
}
.footer__inner > .btnPageTop__hook > span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: solid 2px #1e3c91;
  border-left: solid 2px #1e3c91;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.footer__inner > .btnPageTop__hook:hover {
  opacity: 0.65;
}

.footer > .btnPageTop {
  position: relative;
}
.footer > .btnPageTop .btnPageTop__hook {
  background: #f7f7f8;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 0px;
  font-size: 0rem;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer > .btnPageTop .btnPageTop__hook > span {
  padding-top: 28px;
  position: relative;
}
.footer > .btnPageTop .btnPageTop__hook > span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: solid 2px #1e3c91;
  border-left: solid 2px #1e3c91;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.footer > .btnPageTop .btnPageTop__hook:hover {
  opacity: 0.65;
}
.footer > .btnPageTop .btnPageTop__hook:not(.is-fixed) {
  position: absolute;
  top: -30px;
  right: 20px;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.footer > .btnPageTop .btnPageTop__hook.is-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.content {
  padding: 0 0 100px;
}
.content:not(.content--top) {
  width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
}
.content--top .section__inner {
  width: 1200px;
  padding: 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
}
*/
/*
p, ul, dl, table, figure, .figure2 {
  margin: 20px 0;
}
*/
/*
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  width: 1200px;
  margin: -45px auto 0;
}
.hero__list {
  position: relative;
}
.hero .slick-arrow {
  position: absolute;
  bottom: 67.5px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-top: solid 4px white;
  border-left: solid 4px white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0;
}
.hero .slick-arrow.slick-prev {
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.hero .slick-arrow.slick-next {
  right: 6px;
  -webkit-transform: translateY(-50%) rotate(135deg);
      -ms-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.hero .slick-dots {
  letter-spacing: -0.5em;
  text-align: center;
  margin: 18px 0;
}
.hero .slick-dots li {
  display: inline-block;
  margin: 0 20px;
}
.hero .slick-dots li button {
  margin: 0;
  padding: 0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  overflow: hidden;
  text-indent: -3em;
  border: solid 1px #011550;
  background: #011550;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.hero .slick-dots li.slick-active button {
  background: white;
}
.hero__item {
  position: relative;
}
.hero__body {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(247, 248, 249, 0.85);
  padding: 25px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1200px;
  z-index: 200;
}
.hero__body * {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.hero__title {
  color: #011550;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.2222222222;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
}
.hero .slick-active img {
  z-index: 2;
}
.hero .slick-slide[aria-hidden=true] .hero__body * {
  opacity: 0;
}
@media only screen and (min-width: 1600px) {
  .hero img {
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    position: relative;
    left: 50%;
  }
  .hero .slick-list {
    overflow: visible;
  }
}
@media only screen and (max-width: 1599px) {
  .hero img {
    width: 1600px;
    max-width: 1600px;
    margin-left: -800px;
    position: relative;
    left: 50%;
  }
  .hero .slick-list {
    overflow: visible;
  }
}

.breadCrumb {
  line-height: 1.2;
  margin-top: -45px;
  position: relative;
  top: 45px;
  z-index: 1;
}
.breadCrumb__list {
  padding: 20px calc(50%);
  margin: 0 calc(-50%);
  letter-spacing: -0.5em;
}
.breadCrumb__item {
  list-style-type: none;
  line-height: 1.2;
  letter-spacing: 0.04em;
  display: inline-block;
  padding-right: 25px;
  position: relative;
}
.breadCrumb__item:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3.5px;
  width: 6px;
  height: 6px;
  border-top: solid 1px;
  border-right: solid 1px;
  border-color: #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadCrumb__item a, .breadCrumb__item strong {
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
}
.breadCrumb__item a:hover {
  text-decoration: underline;
}
.breadCrumb__item strong {
  font-weight: normal;
  display: inline-block;
}

.mv {
  position: relative;
  width: 1600px;
  margin-left: -200px;
  max-width: 1600px;
  margin-top: -58px;
  margin-bottom: 80px;
}
.mv img {
  width: 100%;
}
.mv__text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.0833333333;
  font-weight: bold;
}*/
