@charset "UTF-8";
@font-face {
  font-family: "YuMincho";
  font-weight: normal;
  src: url("../font/A-OTF-A1MinchoStd-Bold.otf");
}
/*====================================================================
Reset
====================================================================*/
*, html, body, div, figure, section, header, footer, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

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

fieldset,
img {
  border: 0;
}

/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #fff;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*-----------------------------------------------
@keyframes
------------------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(50px);
         transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
       -moz-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes zoomOut {
  0% {
    -moz-transform: scale3d(1.2, 1.2, 1.2);
         transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
         transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
       -moz-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
       -moz-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-moz-keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -moz-transform: translate(-50%, -50%) rotate(45deg);
         transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@-moz-keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -moz-transform: translate(-50%, 50%) rotate(-45deg);
         transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
       -moz-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@-webkit-keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-moz-keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-moz-keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.u-visualEditArea {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea {
    font-size: 1.3rem;
  }
}
.u-visualEditArea * + * {
  margin-top: 1.75em;
}
.u-visualEditArea a {
  color: #1F58A7;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a:hover {
    opacity: 0.6;
  }
}
.u-visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.u-visualEditArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}
.u-visualEditArea h3 {
  color: #1F58A7;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.u-visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.u-visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #1F58A7;
}
.u-visualEditArea h5, .u-visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.u-visualEditArea h1 + h2,
.u-visualEditArea h2 + h3,
.u-visualEditArea h3 + h4,
.u-visualEditArea h4 + h5,
.u-visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.u-visualEditArea p {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea p {
    font-size: 1.3rem;
  }
}
.u-visualEditArea strong, .u-visualEditArea strong * {
  font-weight: bold;
}
.u-visualEditArea em, .u-visualEditArea em * {
  font-style: italic;
}
.u-visualEditArea ul {
  list-style-type: disc;
}
.u-visualEditArea ol {
  list-style-type: decimal;
}
.u-visualEditArea ul, .u-visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.u-visualEditArea ul li, .u-visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.u-visualEditArea sup, .u-visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.u-visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #222222;
}
.u-visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.u-visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.u-visualEditArea table thead th, .u-visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea table tr th, .u-visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.u-visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.u-visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.u-visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.u-visualEditArea .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.u-visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.u-visualEditArea .gallery-columns-2 .gallery-item {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}
.u-visualEditArea .gallery-columns-3 .gallery-item {
  width: -webkit-calc((100% - 80px) / 3);
  width: -moz-calc((100% - 80px) / 3);
  width: calc((100% - 80px) / 3);
}

/*====================================================================
siteHeader
====================================================================*/
.siteHeader {
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 23, 46, 0.1);
  -moz-box-shadow: 0px 3px 20px 0px rgba(0, 23, 46, 0.1);
  box-shadow: 0px 3px 20px 0px rgba(0, 23, 46, 0.1);
  z-index: 99;
}
.siteHeader__top {
  background: #004183;
}
.siteHeader__top .container {
  gap: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .siteHeader__top .container {
    width: 100%;
    padding: 0 15px 0 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
  }
}
.siteHeader__top .account {
  position: relative;
  padding: 23px 25px;
  background: #1F58A7;
  min-width: 240px;
}
@media screen and (max-width: 991px) {
  .siteHeader__top .account {
    padding: 19px 16px;
  }
  .siteHeader__top .account.is-open {
    background: #F2F6FA;
  }
  .siteHeader__top .account.is-open > p {
    color: #004183;
  }
  .siteHeader__top .account.is-open > p::after {
    -webkit-transform: rotate(-90deg);
       -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .siteHeader__top .account.is-open > div {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .siteHeader__top .account:hover {
    background: #F2F6FA;
  }
  .siteHeader__top .account:hover > p {
    color: #004183;
  }
  .siteHeader__top .account:hover > p::after {
    -webkit-transform: rotate(-90deg);
       -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .siteHeader__top .account:hover > div {
    display: block;
  }
}
.siteHeader__top .account__top {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Poppins", sans-serif;
}
.siteHeader__top .account__top::after {
  display: inline-block;
  vertical-align: middle;
  font: var(--fa-font-solid);
  content: "\f054";
  margin-left: 18px;
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 992px) {
  .siteHeader__top .account__top::after {
    display: none;
  }
}
.siteHeader__top .account__top span {
  color: inherit;
}
.siteHeader__top .account__top span[data-user=name] {
  font-family: "Noto Sans JP", sans-serif;
}
.siteHeader__top .account__sub {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 40px 25px 23px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background: #F2F6FA;
  display: none;
}
.siteHeader__top .account__info {
  gap: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}
.siteHeader__top .account__infoCol--img {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  overflow: hidden;
}
.siteHeader__top .account__infoCol--txt {
  padding: 9px 0 0;
}
.siteHeader__top .account__infoCol--txt > p {
  font-weight: 500;
}
.siteHeader__top .account__infoCol--txt > p small {
  display: block;
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  margin: 10px 0 0;
}
.siteHeader__top .account__infoCol--txt > a {
  color: #004183;
  font-size: 13px;
  font-weight: bold;
  margin: 18px 0 0;
  display: block;
}
@media screen and (min-width: 769px) {
  .siteHeader__top .account__infoCol--txt > a:hover {
    opacity: 0.6;
  }
}
.siteHeader__top .siteBtn {
  margin: 0;
}
.siteHeader__top .siteBtn a {
  margin: 12px 0;
  font-size: 14px;
  max-width: 124px;
  padding: 10px 26px;
}
@media screen and (max-width: 991px) {
  .siteHeader__top .siteBtn a {
    display: none;
  }
}
.siteHeader__top .siteBtn a::after {
  display: none;
}
.siteHeader__top .burgerMenu {
  gap: 8px;
  width: 24px;
  margin: 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 992px) {
  .siteHeader__top .burgerMenu {
    display: none;
  }
}
.siteHeader__top .burgerMenu:hover > div {
  background: #E4EFFA;
}
.siteHeader__top .burgerMenu > div {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.siteHeader__top .burgerMenu > div:nth-child(2) {
  width: 18px;
}
.siteHeader__top .burgerMenu > div:nth-child(3) {
  width: 12px;
}
.siteHeader__bot {
  padding: 20px 0;
}
.siteHeader__bot .logo {
  gap: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (min-width: 375px) {
  .siteHeader__bot .logo {
    gap: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }
}
.siteHeader__bot .logo img {
  width: 100%;
  max-width: 210px;
}
.siteHeader__bot .logo span {
  color: #004183;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .siteHeader__bot .logo span {
    font-size: 20px;
  }
}

/*====================================================================
siteFooter
====================================================================*/
.siteFooter {
  color: #fff;
  padding: 14px 0;
  margin: 30px 0 0;
  text-align: center;
  background: #004183;
}
@media screen and (min-width: 992px) {
  .siteFooter {
    margin: 200px 0 0;
  }
}
.siteFooter__copy {
  color: #fff;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
}
.auth-template .siteFooter {
  margin-top: 0;
}

/*====================================================================
Back to Top
====================================================================*/
.backToTop {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 60px;
  right: 20px;
  border-radius: 5px;
  background: #004183;
  display: none;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .backToTop:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .backToTop {
    bottom: 2rem;
  }
}
.backToTop .inner {
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

/*====================================================================
SP Footer Buttons
====================================================================*/
.spFooterBtns {
  margin: 6.2rem auto 0;
  max-width: 400px;
}
@media screen and (min-width: 992px) {
  .spFooterBtns {
    display: none;
  }
}
.spFooterBtns .breadcrumbs {
  margin: 0 0 30px;
}
.spFooterBtns .cta {
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  overflow: hidden;
}

/*====================================================================
hamMenuBtn
====================================================================*/
.hamMenuBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamMenuBtn {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .hamMenuBtn__border {
    width: 80%;
    height: 2px;
    background: #222222;
    display: block;
    position: absolute;
    left: 50%;
  }
  .hamMenuBtn__border:nth-child(1) {
    top: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
            animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn__border:nth-child(2) {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hamMenuBtn__border:nth-child(3) {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
            animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(1) {
    -webkit-animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
            animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(2) {
    opacity: 0;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(3) {
    -webkit-animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
            animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
  }
}
/*====================================================================
hamMenuContent
====================================================================*/
.hamMenuContent {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamMenuContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    padding-top: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #666;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .hamMenuContent__pageList {
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    -moz-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
    padding: 40px;
    background: #212121;
    overflow: hidden;
  }
  .hamMenuContent__pageItem {
    overflow: hidden;
  }
  .hamMenuContent__pageLink {
    -webkit-transition: all 0.2s ease-in-out 0.3s;
    -moz-transition: all 0.2s ease-in-out 0.3s;
    transition: all 0.2s ease-in-out 0.3s;
    color: #222222;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding: 10px;
    display: block;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hamMenuContent__pageLink {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .hamMenuContent.is-active {
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
/*====================================================================
contentCenter
====================================================================*/
.contentCenter {
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1180px) {
  .contentCenter {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contentCenter {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contentCenter > div:not(:first-of-type) {
  margin: 50px 0 0;
}

/*====================================================================
visualEditArea
====================================================================*/
.visualEditArea {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea {
    font-size: 1.3rem;
  }
}
.visualEditArea * + * {
  margin-top: 1.75em;
}
.visualEditArea a {
  color: #1F58A7;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .visualEditArea a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .visualEditArea a:hover {
    opacity: 0.6;
  }
}
.visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.visualEditArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}
.visualEditArea h3 {
  color: #1F58A7;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #1F58A7;
}
.visualEditArea h5, .visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.visualEditArea h1 + h2,
.visualEditArea h2 + h3,
.visualEditArea h3 + h4,
.visualEditArea h4 + h5,
.visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.visualEditArea p {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea p {
    font-size: 1.3rem;
  }
}
.visualEditArea strong, .visualEditArea strong * {
  font-weight: bold;
}
.visualEditArea em, .visualEditArea em * {
  font-style: italic;
}
.visualEditArea ul {
  list-style-type: disc;
}
.visualEditArea ol {
  list-style-type: decimal;
}
.visualEditArea ul, .visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.visualEditArea ul li, .visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.visualEditArea sup, .visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #222222;
}
.visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.visualEditArea table thead th, .visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.visualEditArea table tr th, .visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.visualEditArea .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.visualEditArea .gallery-columns-2 .gallery-item {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}
.visualEditArea .gallery-columns-3 .gallery-item {
  width: -webkit-calc((100% - 80px) / 3);
  width: -moz-calc((100% - 80px) / 3);
  width: calc((100% - 80px) / 3);
}

/*====================================================================
space
====================================================================*/
.space-s,
.space-m,
.space-l {
  border: none;
}

.space-s {
  padding-top: 30px;
}

.space-m {
  padding-top: 50px;
}

.space-l {
  padding-top: 80px;
}

/*====================================================================
bnrA
====================================================================*/
.bnrA {
  color: #1F58A7;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 10px 90px 10px 0;
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .bnrA {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .bnrA {
    font-size: 1.3rem;
  }
}
.bnrA::before, .bnrA::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.bnrA::before {
  width: 100%;
  height: 2px;
  left: 0;
  background: #1F58A7;
}
.bnrA::after {
  width: 15px;
  height: 15px;
  display: block;
  right: 0;
  border-right: 3px solid #1F58A7;
  -webkit-transform: translateX(-50%) skewX(60deg);
     -moz-transform: translateX(-50%) skewX(60deg);
      -ms-transform: translateX(-50%) skewX(60deg);
          transform: translateX(-50%) skewX(60deg);
}

/*====================================================================
bnrB
====================================================================*/
.bnrB {
  display: inline-block;
  position: relative;
}
.bnrB::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #004183;
}
@media screen and (min-width: 769px) {
  .bnrB::before {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .bnrB:hover::before {
    width: 100%;
  }
}
.bnrB__layer {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 15px 100px 15px 15px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bnrB__layer {
    font-size: 1.3rem;
  }
}
.bnrB__layer::before {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #222222;
}
.bnrB__layer::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  border-right: 3px solid #222222;
  -webkit-transform: translate(-50%, -100%) skewX(60deg);
     -moz-transform: translate(-50%, -100%) skewX(60deg);
      -ms-transform: translate(-50%, -100%) skewX(60deg);
          transform: translate(-50%, -100%) skewX(60deg);
}

/*====================================================================
bnrC
====================================================================*/
.bnrC {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 20px 80px;
  border: 2px solid #1F58A7;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .bnrC {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .bnrC {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .bnrC:hover {
    background: #1F58A7;
  }
}

/*====================================================================
gridArea
====================================================================*/
.gridArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  margin: 0 -1% -40px;
}
.gridArea__col {
  padding: 0 1%;
  margin-bottom: 40px;
}
.gridArea__col.u-col-1 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 8.3333333333%;
          flex-basis: 8.3333333333%;
}
.gridArea__col.u-col-2 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 16.6666666667%;
          flex-basis: 16.6666666667%;
}
.gridArea__col.u-col-3 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 25%;
          flex-basis: 25%;
}
.gridArea__col.u-col-4 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 33.3333333333%;
          flex-basis: 33.3333333333%;
}
.gridArea__col.u-col-5 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 41.6666666667%;
          flex-basis: 41.6666666667%;
}
.gridArea__col.u-col-6 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
}
.gridArea__col.u-col-7 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 58.3333333333%;
          flex-basis: 58.3333333333%;
}
.gridArea__col.u-col-8 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 66.6666666667%;
          flex-basis: 66.6666666667%;
}
.gridArea__col.u-col-9 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 75%;
          flex-basis: 75%;
}
.gridArea__col.u-col-10 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 83.3333333333%;
          flex-basis: 83.3333333333%;
}
.gridArea__col.u-col-11 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 91.6666666667%;
          flex-basis: 91.6666666667%;
}
.gridArea__col.u-col-12 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  .gridArea__col.u-col-sp-1 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 8.3333333333%;
            flex-basis: 8.3333333333%;
  }
  .gridArea__col.u-col-sp-2 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 16.6666666667%;
            flex-basis: 16.6666666667%;
  }
  .gridArea__col.u-col-sp-3 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
  }
  .gridArea__col.u-col-sp-4 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 33.3333333333%;
            flex-basis: 33.3333333333%;
  }
  .gridArea__col.u-col-sp-5 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 41.6666666667%;
            flex-basis: 41.6666666667%;
  }
  .gridArea__col.u-col-sp-6 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
  }
  .gridArea__col.u-col-sp-7 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 58.3333333333%;
            flex-basis: 58.3333333333%;
  }
  .gridArea__col.u-col-sp-8 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 66.6666666667%;
            flex-basis: 66.6666666667%;
  }
  .gridArea__col.u-col-sp-9 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
  }
  .gridArea__col.u-col-sp-10 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 83.3333333333%;
            flex-basis: 83.3333333333%;
  }
  .gridArea__col.u-col-sp-11 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 91.6666666667%;
            flex-basis: 91.6666666667%;
  }
  .gridArea__col.u-col-sp-12 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}
.gridArea__col img {
  width: 100%;
}

/*====================================================================
card
====================================================================*/
.card {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .card:hover [class$=__thumb] {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .card {
    border-radius: 7px;
  }
}
@media screen and (min-width: 769px) {
  .card__thumb {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.card__textArea {
  width: 100%;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .card__textArea {
    padding: 5px 7px;
  }
}
.card__time {
  color: #222222;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 1.3rem;
  }
}
.card__postTitle {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .card__postTitle {
    font-size: 1.3rem;
  }
}

/*====================================================================
tabArea
====================================================================*/
.tabArea__btnList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.tabArea__btnItem {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin: 0 2px;
}
.tabArea__btnItem:nth-child(1) {
  margin-left: 0;
}
.tabArea__btnItem:nth-last-child(1) {
  margin-right: 0;
}
.tabArea__btnLink {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 20px 15px;
  display: block;
  background: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink:hover {
    background: #222222;
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    padding: 5px 10px;
  }
}
.tabArea__btnLink.is-open {
  background: #666;
  cursor: default;
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink.is-open:hover {
    background: #666;
    color: #222222;
  }
}
.tabArea__contentItem {
  padding: 40px 50px;
  background: #666;
  display: none;
}
@media screen and (max-width: 768px) {
  .tabArea__contentItem {
    padding: 20px 15px;
  }
}
.tabArea__contentItem.is-open {
  display: block;
}

/*====================================================================
accordionBtn
====================================================================*/
.accordionBtn {
  padding: 20px;
  border: 1px solid #222222;
  display: block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .accordionBtn {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .accordionBtn {
    padding: 10px 15px;
  }
}
.accordionBtn.is-open [class$=__icon]::after {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .accordionBtn:hover {
    background: #222222;
  }
  .accordionBtn:hover [class$=__text] {
    color: #fff;
  }
  .accordionBtn:hover [class$=__icon]::before, .accordionBtn:hover [class$=__icon]::after {
    background: #fff;
  }
}
.accordionBtn__text {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .accordionBtn__text {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.accordionBtn__icon {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon {
    width: 35px;
  }
}
.accordionBtn__icon::before, .accordionBtn__icon::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #222222;
}
@media screen and (min-width: 769px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    width: 15px;
  }
}
.accordionBtn__icon::before {
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.accordionBtn__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
     -moz-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
accordionContent
====================================================================*/
.accordionContent {
  padding: 30px;
  border-left: 1px solid #222222;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  display: none;
}
@media screen and (max-width: 768px) {
  .accordionContent {
    padding: 20px 15px;
  }
}

/*====================================================================
modalWrap
====================================================================*/
.modalWrap {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .modalWrap img {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .modalWrap:hover img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.modalWrap__button {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #1F58A7;
}
@media screen and (max-width: 768px) {
  .modalWrap__button {
    width: 25px;
    height: 25px;
  }
}
.modalWrap__button::before, .modalWrap__button::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #222222;
}
@media screen and (max-width: 768px) {
  .modalWrap__button::before, .modalWrap__button::after {
    width: 15px;
    height: 1px;
  }
}
.modalWrap__button::before {
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modalWrap__button::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
     -moz-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
postListA
====================================================================*/
.postListA__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .postListA__item {
    padding: 7px 0;
  }
}
.postListA__time {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 5px 20px 5px 0;
}
@media screen and (max-width: 768px) {
  .postListA__time {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .postListA__time {
    padding: 3px 10px 3px 0;
  }
}
.postListA__catLabel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  min-width: 140px;
  padding: 5px;
  border-left: 1px solid #222222;
  border-right: 1px solid #222222;
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    min-width: 90px;
    padding: 3px;
  }
}
.postListA__postLink {
  color: #222222;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink:hover {
    color: #1F58A7;
  }
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    padding-left: 10px;
  }
}

/*====================================================================
lowerPageFv
====================================================================*/
.lowerPageFv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  height: 250px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .lowerPageFv {
    height: 125px;
  }
}
.lowerPageFv::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.lowerPageFv__pageTitle {
  position: relative;
  font-size: 4rem;
  text-align: center;
  z-index: 1;
}

/*====================================================================
CTA
====================================================================*/
.cta {
  padding: 20px;
  background: #F2F2F2;
}
.cta__item {
  margin: 0 auto;
  display: block;
  max-width: 300px;
}
@media screen and (min-width: 769px) {
  .cta__item:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 992px) {
  .cta__item {
    max-width: unset;
  }
}
.cta__item:not(:first-of-type) {
  margin-top: 20px;
}

/*====================================================================
twoColumn
====================================================================*/
.twoCol .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}
.twoCol__l {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background: #fff;
  width: 100%;
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 100;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 992px) {
  .twoCol__l {
    position: relative;
    width: 30%;
    height: unset;
    -webkit-transform: none !important;
       -moz-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    background: transparent;
  }
}
@media screen and (min-width: 1200px) {
  .twoCol__l {
    width: 22%;
  }
}
.twoCol__l.is-open {
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.twoCol__l .inner {
  padding: 50px 15px;
  overflow-y: auto;
  height: 100vh;
}
@media screen and (min-width: 992px) {
  .twoCol__l .inner {
    overflow: hidden;
    height: auto;
    padding: 0;
    border-radius: 0 10px 10px 0;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
  }
}
.twoCol__l .inner .closeBtn {
  width: 21px;
  margin: 0 0 30px auto;
}
@media screen and (min-width: 992px) {
  .twoCol__l .inner .closeBtn {
    display: none;
  }
}
.twoCol__l .inner .cta {
  display: none;
}
@media screen and (min-width: 992px) {
  .twoCol__l .inner .cta {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .twoCol__l .inner .siteBtn {
    display: none;
  }
}
.twoCol__l .navbar__item a {
  display: block;
  font-weight: bold;
  padding: 20px;
  border-bottom: 1px solid #D0D0D0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.twoCol__l .navbar__item a::after {
  font: var(--fa-font-solid);
  content: "\f054";
}
.twoCol__l .navbar__item a:hover {
  color: #004183;
  background: #E4EFFA;
}
.twoCol__l .navbar__item a.is-active {
  color: #004183;
  background-color: #E4EFFA;
}
.twoCol__l .navbar__item--hasChildren > a {
  color: #004183;
  pointer-events: none;
}
.twoCol__l .navbar__item--hasChildren > a::after {
  display: none;
}
@media screen and (min-width: 992px) {
  .twoCol__l .navbar__item--hasChildren > a {
    color: #222222;
    background: #F2F6FA;
  }
}
.twoCol__l .navbar__item .sub {
  padding-left: 15px;
}
@media screen and (min-width: 992px) {
  .twoCol__l .navbar__item .sub {
    padding-left: 0;
  }
}
.twoCol__r {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .twoCol__r {
    width: 68%;
  }
}
@media screen and (min-width: 1200px) {
  .twoCol__r {
    width: 76%;
  }
}
.twoCol__r h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.53;
  position: relative;
  padding: 0 0 0 21px;
  margin: 0 0 20px;
}
@media screen and (min-width: 992px) {
  .twoCol__r h1 {
    font-size: 30px;
    margin: 0 0 40px;
  }
}
.twoCol__r h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 7px;
  height: 100%;
  background: #004183;
  -webkit-clip-path: polygon(0 0, 100% 5px, 100% 100%, 0 -webkit-calc(100% - 5px));
          clip-path: polygon(0 0, 100% 5px, 100% 100%, 0 -moz-calc(100% - 5px));
          clip-path: polygon(0 0, 100% 5px, 100% 100%, 0 calc(100% - 5px));
}
.twoCol__r h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.9;
  margin: 0 0 10px;
}
@media screen and (min-width: 576px) {
  .twoCol__r h2 {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .twoCol__r h2 {
    text-align: initial;
    margin: 0 0 20px;
  }
  .twoCol__r h2.mb-30 {
    margin: 0 0 3rem;
  }
  .twoCol__r h2.mb-40 {
    margin: 0 0 4rem;
  }
}
@media screen and (min-width: 992px) {
  .twoCol__r h2 {
    font-size: 24px;
  }
}
.twoCol__r h2 ~ h2 {
  margin-top: 55px;
}
@media screen and (min-width: 992px) {
  .twoCol__r h2 ~ h2 {
    margin-top: 75px;
  }
}
@media screen and (max-width: 768px) {
  .twoCol__r h2.mb-30 {
    margin: 0 0 2.4rem;
  }
  .twoCol__r h2.mb-40 {
    margin: 0 0 2.4rem;
  }
}
.twoCol__r > p {
  line-height: 1.75;
}
.twoCol__r .post__date {
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.twoCol__r .contentCenter {
  width: 100%;
  margin: 0;
  padding: 0;
}

/*====================================================================
list01
====================================================================*/
.list01 {
  gap: 8px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (min-width: 576px) {
  .list01 {
    gap: 20px 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .list01 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    -webkit-box-align: initial;
    -webkit-align-items: initial;
       -moz-box-align: initial;
            align-items: initial;
  }
}
.list01__item {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .list01__item {
    max-width: 336px;
  }
}
@media screen and (min-width: 768px) {
  .list01__item {
    max-width: unset;
    width: -webkit-calc(50% - 8px);
    width: -moz-calc(50% - 8px);
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 1200px) {
  .list01__item {
    width: -webkit-calc(33.33% - 10px);
    width: -moz-calc(33.33% - 10px);
    width: calc(33.33% - 10px);
  }
}
.list01__item a {
  width: 100%;
  height: 100%;
  position: relative;
  color: #004183;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  padding: 20px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.list01__item a::after {
  content: "";
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.list01__item a span {
  color: inherit;
}
.list01__item a span small {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  display: block;
  margin: 8px 0 0;
}
.list01__item a:hover {
  background: #E4EFFA;
}

/*====================================================================
list02
====================================================================*/
.list02__item a {
  position: relative;
  font-weight: bold;
  padding: 26px 60px 26px 20px;
  border-bottom: 1px solid #D0D0D0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 768px) {
  .list02__item a {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.list02__item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.list02__item a > span:first-of-type {
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin: 0 36px 10px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list02__item a > span:first-of-type {
    width: auto;
    margin: 0 36px 0 0;
  }
}
.list02__item a > span:last-of-type {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.list02__item a:hover {
  color: #004183;
  background-color: #E4EFFA;
}
.list02__item a:hover span {
  color: inherit;
}
.list02__item a.download-icon:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/common/icon-download.svg") center/cover no-repeat;
  right: 25px;
  border-radius: 0;
}

/*====================================================================
list03
====================================================================*/
.list03 {
  gap: 40px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 576px) {
  .list03 {
    gap: 40px;
  }
}
.list03__item {
  width: 100%;
  max-width: 336px;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .list03__item {
    width: -webkit-calc(50% - 20px);
    width: -moz-calc(50% - 20px);
    width: calc(50% - 20px);
    max-width: unset;
    margin: unset;
  }
}
.list03__item figcaption {
  margin: 20px 0 0;
}

/*====================================================================
list04
====================================================================*/
.list04__item:not(:first-child) {
  margin: 5px 0 0;
}
.list04__link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #004183;
  font-weight: bold;
}

/*====================================================================
list05
====================================================================*/
.list05__item:not(:first-child) {
  margin: 15px 0 0;
}
.list05__item a {
  position: relative;
  display: block;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px 25px 25px 40px;
}
.list05__item a::before {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
  width: 10px;
  height: -webkit-calc(100% - 20px);
  height: -moz-calc(100% - 20px);
  height: calc(100% - 20px);
  background: #E4EFFA;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.list05__item a:hover::before {
  background: #004183;
}
.list05__item a h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin: 5px 0 0;
}
.list05__item a h6 ~ p {
  line-height: 1.75;
  margin: 5px 0 0;
}
.list05__item a h6.pdf::before, .list05__item a h6.file::before {
  margin: 5px 0 0;
  -webkit-align-self: start;
              -ms-grid-row-align: start;
          align-self: start;
}
.list05__item a h6.pdf::after, .list05__item a h6.file::after {
  display: none;
}
.list05__item a h6.pdf ~ .moderator::after, .list05__item a h6.file ~ .moderator::after {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: url("../images/common/icon-download.svg") no-repeat center center/contain;
}
.list05__item a .moderator {
  gap: 50px;
  margin: 25px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.list05__item a .moderator::after {
  content: "";
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  margin-left: auto;
}
.list05__item a .moderator.empty {
  margin: 0;
}
.list05__item--concluded a {
  background: #F2F2F2;
  border-color: #F2F2F2;
}
.list05__item--concluded a::before, .list05__item--concluded a .moderator::after {
  display: none;
}
.list05__item--concluded a .tags__item {
  background-color: #535353;
}
.list05__top {
  gap: 10px;
  margin: 0 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .list05__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    margin: 0;
  }
}
.list05__top p {
  line-height: 1.5;
}

/*====================================================================
siteBtn
====================================================================*/
.siteBtn {
  margin: 40px 0 0;
}
.siteBtn a, .siteBtn button {
  gap: 10px;
  color: #004183;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 17px 38px;
  border: 1px solid #004183;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  max-width: 345px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .siteBtn a, .siteBtn button {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.siteBtn a::after, .siteBtn button::after {
  content: "";
  width: 20px !important;
  height: 20px !important;
  background-color: #FFA500 !important;
}
.siteBtn a:hover, .siteBtn button:hover {
  color: #fff;
  background: #1F58A7;
  border-color: #1F58A7;
}
.siteBtn--alignRight a {
  margin-left: auto;
}
.siteBtn--alignLeft a {
  margin-right: auto;
}
.siteBtn--light a {
  color: #fff;
  border-color: #fff;
}
.siteBtn--reverse a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
          flex-direction: row-reverse;
}
.siteBtn--reverse a::after {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.siteBtn--alignCenter a {
  margin: 0 auto;
}

/*====================================================================
siteBtn02
====================================================================*/
.siteBtn02 a {
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: #004183;
  border-radius: 5px;
  overflow: hidden;
  min-width: 115px;
  padding: 10px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.siteBtn02 a::after {
  content: "";
  width: 17px;
  height: 8px;
  background: url("../images/common/arrow-right-03.svg") no-repeat center center/contain;
}
.siteBtn02 a:hover {
  background: #1F58A7;
}

/*====================================================================
siteBtn03
====================================================================*/
.siteBtn03 {
  margin: 40px 0 0;
}
.siteBtn03 a {
  gap: 8px;
  padding: 15px 10px;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border: 1px solid #D0D0D0;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .siteBtn03 a {
    padding: 15px 26px;
  }
}
.siteBtn03 a img {
  max-width: 40px;
}
.siteBtn03 a::after {
  content: "";
  margin-left: 20px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.siteBtn03 a:hover {
  background: #D0D0D0;
}

/*====================================================================
Top Breadcrumbs
====================================================================*/
.breadArea {
  margin: 0 0 35px;
}
.breadArea ul {
  gap: 12px;
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  text-transform: uppercase;
}
.breadArea ul li a {
  gap: 12px;
  color: #A7A7A7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.breadArea ul li a::after {
  content: url("../images/common/arrow-right-02.svg");
}
.breadArea ul li a:hover {
  color: #004183;
}

/*====================================================================
imgFull
====================================================================*/
.imgFull figcaption {
  margin: 20px 0 0;
}

/*====================================================================
table
====================================================================*/
.tableWrap {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}
.tableWrap table {
  width: 1040px;
}
.tableWrap table tr:nth-child(odd) {
  background: #F2F6FA;
}
.tableWrap table tr.disabled {
  background: #F2F2F2;
}
.tableWrap table tr.disabled .siteBtn02 a {
  background: #7f7f7f;
}
.tableWrap table tr .siteBtn02 a.disabled {
  background: #F40C27;
}
.tableWrap table tr .siteBtn02 a.disabled:after {
  content: none;
}
.tableWrap table th, .tableWrap table td {
  width: 320px;
  line-height: 1.75;
  border: 1px solid #D0D0D0;
  vertical-align: middle;
}
.tableWrap table th:first-child, .tableWrap table td:first-child {
  width: 225px;
}
.tableWrap table th:last-child, .tableWrap table td:last-child {
  width: 175px;
  text-align: center;
}
.tableWrap table th {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #004183;
  padding: 13px;
}
.tableWrap table td {
  padding: 15px;
}
.tableWrap table .pdf::after, .tableWrap table .file::after {
  margin-left: auto;
}
.tableWrap table .siteBtn02 {
  margin: 5px 0 0;
}

/*====================================================================
filter
====================================================================*/
.filter {
  gap: 10px;
  margin: 0 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.filter__item a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 14px;
  min-width: 82px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #D0D0D0;
  text-align: center;
}
.filter__item.is-active a, .filter__item a:hover {
  color: #fff;
  background: #004183;
  border-color: #004183;
}

/*====================================================================
pagination
====================================================================*/
.pagination {
  gap: 10px;
  margin: 60px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.pagination .page-numbers {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.pagination .page-numbers:not(.arrow):hover {
  border-color: #D0D0D0;
}
.pagination .current {
  color: #004183;
  font-weight: 500;
}
.pagination .arrow, .pagination .singlePagination .next::after, .singlePagination .pagination .next::after, .pagination .singlePagination .prev::before, .singlePagination .pagination .prev::before, .pagination .list01__item a::after, .list01__item .pagination a::after, .pagination .list02__item a::after, .list02__item .pagination a::after, .pagination .list05__item a .moderator::after, .list05__item a .pagination .moderator::after, .pagination .siteBtn a::after, .siteBtn .pagination a::after, .pagination .siteBtn button::after, .siteBtn .pagination button::after, .pagination .siteBtn03 a::after, .siteBtn03 .pagination a::after {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid transparent;
}
.pagination .arrow.prev, .pagination .singlePagination .prev.next::after, .singlePagination .pagination .prev.next::after, .pagination .singlePagination .prev::before, .singlePagination .pagination .prev::before, .pagination .list01__item a.prev::after, .list01__item .pagination a.prev::after, .pagination .list02__item a.prev::after, .list02__item .pagination a.prev::after, .pagination .list05__item a .prev.moderator::after, .list05__item a .pagination .prev.moderator::after, .pagination .siteBtn a.prev::after, .siteBtn .pagination a.prev::after, .pagination .siteBtn button.prev::after, .siteBtn .pagination button.prev::after, .pagination .siteBtn03 a.prev::after, .siteBtn03 .pagination a.prev::after {
  -webkit-transform: rotate(-180deg);
     -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.pagination .arrow.disabled, .pagination .singlePagination .disabled.next::after, .singlePagination .pagination .disabled.next::after, .pagination .singlePagination .disabled.prev::before, .singlePagination .pagination .disabled.prev::before, .pagination .list01__item a.disabled::after, .list01__item .pagination a.disabled::after, .pagination .list02__item a.disabled::after, .list02__item .pagination a.disabled::after, .pagination .list05__item a .disabled.moderator::after, .list05__item a .pagination .disabled.moderator::after, .pagination .siteBtn a.disabled::after, .siteBtn .pagination a.disabled::after, .pagination .siteBtn button.disabled::after, .siteBtn .pagination button.disabled::after, .pagination .siteBtn03 a.disabled::after, .siteBtn03 .pagination a.disabled::after {
  pointer-events: none;
  border-color: #D0D0D0;
  background: transparent;
  background-image: url(../images/common/arrow-right-04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*====================================================================
singlePagination
====================================================================*/
.singlePagination {
  gap: 20px;
  margin: 60px auto 0;
  max-width: 850px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .singlePagination {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
  }
}
.singlePagination .siteBtn {
  margin: 0;
}
.singlePagination .prev, .singlePagination .next {
  gap: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.singlePagination .prev:hover a, .singlePagination .next:hover a {
  color: #004183;
}
.singlePagination .prev.disabled a, .singlePagination .next.disabled a {
  color: #D0D0D0;
  pointer-events: none;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.singlePagination .prev.disabled::before, .singlePagination .prev.disabled::after, .singlePagination .next.disabled::before, .singlePagination .next.disabled::after {
  border: 1px solid #D0D0D0;
  background: transparent;
  background-image: url(../images/common/arrow-right-04.svg);
}
.singlePagination .prev::before {
  content: "";
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-transform: rotate(-180deg);
     -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.singlePagination .next::after {
  content: "";
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

/*====================================================================
COMMON LAYOUT
====================================================================*/
* {
  color: #222222;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  -webkit-font-feature-settings: "palt" 1;
     -moz-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/*-----------------------------------------------
PC/SP 出し分け
------------------------------------------------*/
.u-pcDb {
  display: block;
}

.u-pcDib {
  display: inline-block;
}

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.u-pcDt {
  display: table;
}

.u-pcDtc {
  display: table-cell;
}

.u-spDb,
.u-spDib,
.u-spDin,
.u-spDf,
.u-spDt,
.u-spDtc {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pcDb,
  .u-pcDib,
  .u-pcDin,
  .u-pcDf,
  .u-pcDt,
  .u-pcDtc {
    display: none;
  }
  .u-spDb {
    display: block;
  }
  .u-spDib {
    display: inline-block;
  }
  .u-spDin {
    display: inline;
  }
  .u-spDf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}
/*-----------------------------------------------
サイトコンテンツ
------------------------------------------------*/
.siteContent {
  min-height: -webkit-calc(100vh - 320px);
  min-height: -moz-calc(100vh - 320px);
  min-height: calc(100vh - 320px);
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .siteContent {
    min-height: -webkit-calc(100vh - 50px);
    min-height: -moz-calc(100vh - 50px);
    min-height: calc(100vh - 50px);
    padding-top: 50px;
  }
}

/*-----------------------------------------------
WPツールバー
------------------------------------------------*/
@media screen and (max-width: 600px) {
  .is_login_user #wpadminbar {
    position: fixed;
  }
}
/*-----------------------------------------------
Container
------------------------------------------------*/
.container {
  margin: auto;
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
  max-width: 1360px;
}
@media screen and (min-width: 992px) {
  .container {
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: calc(100% - 80px);
  }
}

/*-----------------------------------------------
Rounded Arrow
------------------------------------------------*/
.arrow, .list01__item a::after, .list02__item a::after, .list05__item a .moderator::after, .siteBtn a::after, .siteBtn button::after, .siteBtn03 a::after, .singlePagination .prev::before, .singlePagination .next::after {
  background-image: url(../images/common/arrow-right.svg);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #004183;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*-----------------------------------------------
Figure
------------------------------------------------*/
figcaption {
  font-size: 14px;
  line-height: 1.2;
}

/*-----------------------------------------------
PDF
------------------------------------------------*/
.pdf, .file {
  gap: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  line-height: 1.75;
}
.pdf::before, .file::before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon-pdf.svg") no-repeat center center/contain;
}
.pdf::after, .file::after {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon-download.svg") no-repeat center center/contain;
}
.pdf:hover, .file:hover {
  opacity: 0.8;
}

.file::before {
  background: url("../images/common/icon_file.svg") no-repeat center center/contain;
}

/*-----------------------------------------------
Tags
------------------------------------------------*/
.tags {
  gap: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.tags__item {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: #004183;
  border-radius: 5px;
  overflow: hidden;
  padding: 8px 10px;
}

.tabContent {
  display: none;
}
.tabContent.is-open {
  display: block;
}

/*-----------------------------------------------
resultCount
------------------------------------------------*/
.resultCount {
  font-weight: bold;
  margin: 0 0 20px;
}

/*-----------------------------------------------
pageIntro
------------------------------------------------*/
.pageIntro {
  margin: 0 0 50px;
}

/*-----------------------------------------------
note
------------------------------------------------*/
.note {
  margin: 30px 0 0;
}
.note p,
.note ul {
  font-size: 14px;
  line-height: 1.75;
}
.note p ~ p, .note p ~ ul,
.note ul ~ p,
.note ul ~ ul {
  margin: 10px 0 0;
}
.note p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.note p::before {
  content: "※";
  margin: 0 10px 0 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.note ul {
  padding-left: 25px;
}
.note ul.emp {
  font-weight: bold;
}
.note ul > li:not(:first-child) {
  margin: 10px 0 0;
}

/*-----------------------------------------------
Anchor Goto Links
------------------------------------------------*/
.cmdAnchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  row-gap: 2rem;
}
.cmdAnchor__link {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  color: #004183;
  max-width: 14.9rem;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .cmdAnchor__link {
    padding: 0 1.5rem;
  }
}
.cmdAnchor__link::before, .cmdAnchor__link::after {
  content: "";
  display: block;
  height: 100%;
  width: 0.1rem;
  background-color: #D0D0D0;
  position: absolute;
  top: 0;
}
.cmdAnchor__link::before {
  left: -0.1rem;
}
.cmdAnchor__link::after {
  right: 0;
}
.cmdAnchor__arrow {
  position: absolute;
  display: block;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.1rem;
  height: 0.7rem;
  background: url("../images/common/arrow-down-blue.svg") center/cover no-repeat;
}

/*-----------------------------------------------
Accordion
------------------------------------------------*/
.cmnAccordion + .cmnAccordion {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .cmnAccordion + .cmnAccordion {
    margin-top: 2.4rem;
  }
}
.cmnAccordion__head {
  padding: 1.5rem 2rem;
  background-color: #F4F4F7;
  border-radius: 0.5rem;
  position: relative;
  cursor: pointer;
}
.cmnAccordion__headTtl {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 600;
}
.cmnAccordion__plus {
  position: absolute;
  right: 2.4rem;
  width: 1.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmnAccordion__plus:before, .cmnAccordion__plus::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #004183;
  top: 50%;
  -webkit-transition: -webkit-transform 500ms ease-in-out;
  transition: -webkit-transform 500ms ease-in-out;
  -moz-transition: transform 500ms ease-in-out, -moz-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out, -moz-transform 500ms ease-in-out;
}
.cmnAccordion__plus:after {
  -webkit-transform: rotate(-270deg);
     -moz-transform: rotate(-270deg);
      -ms-transform: rotate(-270deg);
          transform: rotate(-270deg);
}
.cmnAccordion__plus::before {
  -webkit-transform: rotate(-180deg);
     -moz-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.cmnAccordion__plus.is-open:after {
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.cmnAccordion__plus.is-open::before {
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.cmnAccordion__content {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .cmnAccordion__content {
    margin-top: 2.4rem;
  }
}

.cmnGrpBlock + .cmnGrpBlock {
  margin-top: 6rem;
}
.cmnGrpBlock + .cmnGrpBlock.nashiBlock {
  margin-top: 150px;
}

.cmnTtlLinkWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-bottom: 4rem;
}
.cmnTtlLinkWrap h2 {
  margin-bottom: 0 !important;
}

.cmnFileDlList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 20px 40px;
}
.is_post__tokkyo_b .cmnFileDlList, .is_post__export .cmnFileDlList {
  margin-top: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}
.cmnFileDlList.maxW845 {
  max-width: 845px;
}
.cmnFileDlBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  gap: 0.8rem;
  color: #004183;
  font-weight: 700;
}
.cmnFileDlBtn::before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon-excel.svg") no-repeat center center/contain;
}
.cmnFileDlBtn::after {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon-download.svg") no-repeat center center/contain;
}
.cmnFileDlBtn.u-pdf::before {
  background: url("../images/common/icon-pdf.svg") no-repeat center center/contain;
}
.cmnFileDlBtn.u-file::before {
  background: url("../images/common/icon_file.svg") no-repeat center center/contain;
}

.cmdNoFile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  gap: 0.8rem;
  color: #004183;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .cmnTbl01 {
    overflow: auto;
  }
}
.cmnTbl01__table {
  width: 100%;
  min-width: 80rem;
  table-layout: fixed;
}
.cmnTbl01 th,
.cmnTbl01 td {
  width: 25%;
  border: 0.1rem solid #D0D0D0;
}
.cmnTbl01 th.alignLeft,
.cmnTbl01 td.alignLeft {
  text-align: start;
}
.cmnTbl01 th a.underLink,
.cmnTbl01 td a.underLink {
  color: #004183;
  text-decoration: underline;
}
.cmnTbl01 th.appendArrow:after,
.cmnTbl01 td.appendArrow:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: translateY(2px);
     -moz-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  width: 18px;
  height: 18px;
  background: url("../images/common/arrow-down-blue.svg") no-repeat center center/contain;
}
.cmnTbl01 th.indented,
.cmnTbl01 td.indented {
  padding-left: 4rem;
}
.cmnTbl01 th {
  text-align: center;
  background-color: #004183;
  color: #fff;
  padding: 1.8rem;
}
.cmnTbl01 td {
  padding: 2rem;
  line-height: 1.75;
  vertical-align: middle;
}

.cmnDescPdf, .cmnDescFile {
  gap: 0 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  line-height: 1.75;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cmnDescPdf, .cmnDescFile {
    padding-right: 3.8rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 0 0.6rem;
  }
}
.cmnDescPdf__txt, .cmnDescFile__txt {
  color: #004183;
  font-weight: 600;
  font-size: 1.6rem;
  list-style: none;
  line-height: 1.5;
}
.cmnDescPdf::before, .cmnDescFile::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon-pdf.svg") no-repeat center center/contain;
}
.cmnDescPdf::after, .cmnDescFile::after {
  content: "";
  width: 2rem;
  height: 2rem;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon-download.svg") no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .cmnDescPdf::after, .cmnDescFile::after {
    position: absolute;
    margin-left: auto;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.cmnDescPdf.smDlIcon::after, .cmnDescFile.smDlIcon::after {
  background: url("../images/common/icon-download-02.svg") no-repeat center center/contain;
}

.cmnDescFile::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: url("../images/common/icon_file.svg") no-repeat center center/contain;
}

.cmnfileList__item + .cmnfileList__item {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .cmnfileList__item + .cmnfileList__item {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .cmnfileList__item {
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem solid #D0D0D0;
  }
}
.cmnfileList__itemLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .cmnfileList__itemLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 0.8rem;
  }
}
.cmnfileList__itemDate {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cmnfileList__itemDate {
    font-size: 1.4rem;
  }
}
.cmnfileList__itemDesc {
  width: 100%;
}

.u-notification {
  position: fixed;
  right: 40px;
  top: -400px;
  font-size: 14px;
  width: 300px;
  padding: 3rem 4rem;
  border-radius: 10px;
  border: 1px solid #004183;
  color: #004183;
  background-color: #fff;
  line-height: 1.4;
  font-weight: bold;
  z-index: 1000000;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .u-notification {
    right: 20px;
  }
}

.u-disable {
  background: #D0D0D0 !important;
  pointer-events: none;
  border: 1px solid #D0D0D0 !important;
  color: white !important;
}
.u-disable::after {
  background-color: #a5a5a5 !important;
}

.siteBtn .u-disable::after {
  background-color: #a5a5a5 !important;
}

.frm_style_formidable-style.with_frm_style .frm_error_style {
  line-height: 1.6;
  margin-bottom: 2rem;
}

/*====================================================================
topPageFvSec
====================================================================*/
.is_home .siteContent {
  padding-top: 40px;
}
.is_home .siteContent section ~ section {
  margin-top: 40px;
}

.latest .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .latest .container {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.latest__l {
  width: 100%;
  padding: 20px;
  background: #004183;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .latest__l {
    width: 22%;
  }
}
.latest__l p {
  width: 100%;
  color: #fff;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.latest__l p::after {
  font: var(--fa-font-solid);
  content: "\f054";
}
.latest__r {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}
.latest__r .list02 {
  height: 100%;
}
.latest__r .list02 li, .latest__r .list02 a {
  height: 100%;
}
.latest__r .list02 a {
  border-bottom: none;
  background: #E4EFFA;
  padding: 24px 60px 24px 20px;
}
.latest__r .list02 a > span:first-of-type {
  width: auto;
}
@media screen and (max-width: 767px) {
  .latest__r .list02 a > span:first-of-type {
    margin: 0 20px 0 0;
  }
}

/*====================================================================
Single Post
====================================================================*/
.is_post__post .twoCol__r h1 {
  padding: 0;
  margin-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D0D0D0;
}
.is_post__post .twoCol__r h1::before {
  display: none;
}

.auth {
  min-height: -webkit-calc(100dvh - 8rem);
  min-height: -moz-calc(100dvh - 8rem);
  min-height: calc(100dvh - 8rem);
  width: 100%;
  padding: 15rem 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .auth {
    padding: 7.5rem 2rem;
  }
}
.auth__headBar {
  height: 4rem;
  width: 100%;
  background-color: #004183;
}
.auth__logo {
  width: 25.7rem;
  margin-bottom: 3.2rem;
}
.auth__inner {
  border-radius: 0.7rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.12);
          box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  padding: 2.9rem 4.2rem 4.7rem;
  width: 100%;
  max-width: 80rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .auth__inner {
    padding: 2.9rem 2.2rem 4.7rem;
  }
}
.auth__container {
  margin: 0 auto;
}
.auth__ttl {
  margin-bottom: 5.4rem;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #004183;
  padding-left: 2rem;
  position: relative;
}
.auth__ttl:before {
  content: "";
  background-color: #004183;
  width: 0.7rem;
  height: -webkit-calc(100% + 1.8rem);
  height: -moz-calc(100% + 1.8rem);
  height: calc(100% + 1.8rem);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.forgotPassSec .auth__innerContainer {
  margin-top: 8rem;
}
.passResetNotifSec .auth__innerContainer {
  margin-top: 13rem;
}
.passResetCompleteSec .auth__innerContainer {
  margin-top: 9.8rem;
}
.auth__txt {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.58;
}
.auth__txtMed {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.auth__formBox + .auth__formBox {
  margin-top: 3.9rem;
}
.auth__formLbl, .auth__formCheckLbl {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}
.auth__formLbl.error {
  color: #F70E0E;
  display: none;
}
.auth__formCheckLbl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  padding-left: 1.2rem;
}
.auth__formCheckLbl {
  margin-bottom: 0;
}
.auth__formInput {
  background-color: #FAEFEF;
  border-radius: 0.8rem;
  outline: none;
  padding: 1.2rem 1.5rem;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.auth__formInput:-webkit-autofill {
  -webkit-box-shadow: unset !important;
}
.auth__formError {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: red;
  display: none;
}
.auth__formSubmitContainer {
  margin-top: 4rem;
}
.passResetNotifSec .auth__formSubmitContainer {
  margin-top: 6rem;
}
.passResetSec .auth__formSubmitContainer {
  margin-top: 6rem;
}
.passResetCompleteSec .auth__formSubmitContainer {
  margin-top: 6rem;
}
.auth__formSubmit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  border: none;
  border-radius: 0.7rem;
  margin: 0 auto;
  background-color: #004183;
  color: #fff;
  width: 100%;
  max-width: 35.5rem;
  height: 8.2rem;
  font-size: 2rem;
  cursor: pointer;
}
.auth__formForgotPassWrap {
  margin-top: 2.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.auth__formForgotPass {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #004183;
  text-decoration: underline;
  display: block;
  color: #4A50E2;
}
.auth__checkFig {
  margin: 0 auto 4rem auto;
  width: 10.2rem;
}
.auth__checkBox {
  display: none;
}
.auth__checkBox:checked ~ .auth__checkBoxFake {
  background: url("../images/common/icon_check.svg") center/cover no-repeat;
  background-color: #FAEFEF;
}
.auth__checkBoxFake {
  border-radius: 0.8rem;
  height: 2.3rem;
  width: 2.3rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: #FAEFEF;
}
.auth__formPtxt {
  font-size: 1.6rem;
  line-height: 1.93;
  letter-spacing: 0.05em;
}

.materialDlSec__anchorTtl {
  margin-bottom: 3rem;
}
.materialDlSec__grpTtl {
  margin-bottom: 4rem;
}
.materialDlSec__item + .materialDlSec__item {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .materialDlSec__item + .materialDlSec__item {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .materialDlSec__item {
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem solid #D0D0D0;
  }
}
.materialDlSec__itemLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .materialDlSec__itemLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 0.8rem;
  }
}
.materialDlSec__itemDate {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .materialDlSec__itemDate {
    font-size: 1.4rem;
  }
}
.materialDlSec__itemDesc {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .materialDlSec .filter {
    margin-bottom: 2.4rem;
  }
}

.glabalSec__infoFig, .publicationSec__infoFig {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .glabalSec__infoFig, .publicationSec__infoFig {
    margin: 0 auto;
  }
}
.glabalSec__infoWrap, .publicationSec__infoWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .glabalSec__infoWrap, .publicationSec__infoWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}
.glabalSec__artTtl, .publicationSec__artTtl {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.glabalSec__artTxt, .publicationSec__artTxt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.glabalSec__artTxtSm, .publicationSec__artTxtSm {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.glabalSec__artTxtSm.bold, .publicationSec__artTxtSm.bold {
  font-weight: 600;
}
.glabalSec__artTxt + .glabalSec__artAnnot, .glabalSec__artTxt + .publicationSec__artAnnot, .publicationSec__artTxt + .glabalSec__artAnnot, .publicationSec__artTxt + .publicationSec__artAnnot {
  margin-top: 3rem;
}
.glabalSec__artAnnot, .publicationSec__artAnnot {
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 1.8rem;
}
.glabalSec__artAnnot::before, .publicationSec__artAnnot::before {
  content: "※";
  position: absolute;
  left: 0;
}
.glabalSec__artTxtWrap + .glabalSec__infoFileLinkWrap, .glabalSec__artTxtWrap + .publicationSec__infoFileLinkWrap, .publicationSec__artTxtWrap + .glabalSec__infoFileLinkWrap, .publicationSec__artTxtWrap + .publicationSec__infoFileLinkWrap {
  margin-top: 4rem;
}
.glabalSec__infoFileLinkWrap, .publicationSec__infoFileLinkWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .glabalSec__infoFileLinkWrap .cmnDescPdf, .publicationSec__infoFileLinkWrap .cmnDescPdf {
    width: auto;
  }
}
.glabalSec .cmnfileList, .publicationSec .cmnfileList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 2rem 4rem;
}
.glabalSec .cmnfileList__item, .publicationSec .cmnfileList__item {
  margin-top: 0;
  width: 37rem;
}
@media screen and (max-width: 768px) {
  .glabalSec .cmnfileList__item, .publicationSec .cmnfileList__item {
    width: 100%;
  }
}
.glabalSec .cmnfileList.exportList .cmnfileList__item, .publicationSec .cmnfileList.exportList .cmnfileList__item {
  margin-top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .glabalSec .cmnfileList.exportList .cmnfileList__item, .publicationSec .cmnfileList.exportList .cmnfileList__item {
    width: 100%;
  }
}
.glabalSec__artGrp + .glabalSec__artGrp, .glabalSec__artGrp + .publicationSec__artGrp, .publicationSec__artGrp + .glabalSec__artGrp, .publicationSec__artGrp + .publicationSec__artGrp {
  margin-top: 1rem;
}
.glabalSec__artItem, .publicationSec__artItem {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
}
.glabalSec__artItem::before, .publicationSec__artItem::before {
  content: "・";
  position: absolute;
  left: 0.5rem;
}

.questionDetail__text, .questionDetail__label {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.questionDetail__boldText {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.questionDetail__boldBigText {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.questionDetail__qNum {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.56;
  color: #004183;
}
.questionDetail__type {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .questionDetail__type {
    text-align: start !important;
  }
}
.questionDetail__title {
  margin-top: 2.5rem;
}
.questionDetail__formGroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .questionDetail__formGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
.questionDetail__groupList {
  margin-top: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 1.5rem;
}
.questionDetail__numList {
  margin-top: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 4rem;
}
.questionDetail__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 1.5rem;
}
.questionDetail__groupLabel {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16rem;
     -moz-box-flex: 0;
          flex: 0 0 16rem;
  max-width: 16rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .questionDetail__groupLabel {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
       -moz-box-flex: unset;
            flex: unset;
    max-width: 100%;
  }
}
.questionDetail__labelContainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .questionDetail__labelContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}
.questionDetail__imgCont {
  max-width: 44rem;
}
.questionDetail__input {
  border: 0.1rem solid #004184;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  color: #004183;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .questionDetail__input {
    max-width: 100%;
  }
}
.questionDetail__input::-webkit-input-placeholder {
  color: #CCCCCC;
}
.questionDetail__input::-moz-placeholder {
  color: #CCCCCC;
}
.questionDetail__input:-ms-input-placeholder {
  color: #CCCCCC;
}
.questionDetail__input::-ms-input-placeholder {
  color: #CCCCCC;
}
.questionDetail__input::placeholder {
  color: #CCCCCC;
}
.questionDetail__textArea {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  height: 100%;
  max-height: 9.4rem;
  overflow-y: scroll;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
  resize: none;
}
.questionDetail__textArea::-webkit-input-placeholder {
  color: #CCCCCC;
}
.questionDetail__textArea::-moz-placeholder {
  color: #CCCCCC;
}
.questionDetail__textArea:-ms-input-placeholder {
  color: #CCCCCC;
}
.questionDetail__textArea::-ms-input-placeholder {
  color: #CCCCCC;
}
.questionDetail__textArea::placeholder {
  color: #CCCCCC;
}
.questionDetail .frm_fields_container {
  border: none;
}
.questionDetail .frm_pos_top.frm_section_spacing {
  height: 0;
}
.questionDetail .with_frm_style .frm-show-form .frm_section_heading h3[class*=frm_pos_] {
  padding: 0;
}
.questionDetail .frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3[class*=frm_pos_] {
  border: none;
}
.questionDetail .question_user_info {
  margin-bottom: 6rem !important;
}
.questionDetail .question_user_info .frm_primary_label {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  width: 21.9rem;
  color: #222222;
  font-weight: bold;
  margin-bottom: 0;
}
.questionDetail .question_user_info .frm_required {
  display: none;
}
.questionDetail .question_user_info .frm_form_field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .questionDetail .question_user_info .frm_form_field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    gap: 0.3rem;
  }
}
.questionDetail .question_user_info input[type=text],
.questionDetail .question_user_info input[type=email] {
  font-size: 1.6rem;
  color: #004183;
  border-radius: 0.4rem;
  border-color: #004184;
}
.questionDetail .frm_primary_label {
  font-size: 1.6rem;
  color: #222222;
  margin-bottom: 0.5xrem;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: flex !important;
  line-height: 1.75;
}
.questionDetail .frm_primary_label span {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-right: 1.2rem;
  color: #004183;
  line-height: 1.75;
}
.questionDetail textarea, .questionDetail input[type=text] file {
  border: 1px solid #004184;
  font-size: 1.6rem;
  color: #004183;
}
.questionDetail .frm_final_submit {
  width: 1000px;
}
.questionDetail .frm_final_submit:after {
  background-image: url(../images/common/arrow-right.svg);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #004183;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  width: 20px !important;
  height: 20px !important;
  background-color: #FFA500 !important;
}
.questionDetail img {
  width: auto;
  height: auto;
  margin-bottom: 100px;
}

.formEntryHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .formEntryHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
.formEntryHead__lvlList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 85px;
  border-top: 1px solid #004184;
}
@media screen and (max-width: 768px) {
  .formEntryHead__lvlList {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
  }
}
.formEntryHead__lvlItem {
  padding-top: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
}
.formEntryHead__lvlItem.is-current::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #004184;
  position: absolute;
  top: -3px;
  left: 0;
}
.is_formpage_1 .formEntryHead__lvlItem:nth-child(1)::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #004184;
  position: absolute;
  top: -3px;
  left: 0;
}
.is_formpage_2 .formEntryHead__lvlItem:nth-child(2)::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #004184;
  position: absolute;
  top: -3px;
  left: 0;
}

.formEntrySec__descTxt {
  margin-bottom: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.is_page__success .formEntrySec__descTxt {
  margin-bottom: 0;
}
.formEntrySec__descTxtRequired {
  color: #f04438;
}
.formEntrySec__wrapper {
  border: 1px solid #D0D0D0;
}
.is_page__confirm .formEntrySec__wrapper {
  border: none;
  border-bottom: 1px solid #D0D0D0;
}
.formEntrySec__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  border-right: 1px solid #D0D0D0;
  border-left: 1px solid #D0D0D0;
}
@media screen and (max-width: 768px) {
  .formEntrySec__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}
.formEntrySec__row:not(:last-child) {
  border-bottom: 1px solid #D0D0D0;
}
.formEntrySec__row:first-child {
  border-top: 1px solid #D0D0D0;
}
.formEntrySec__row .frm_error {
  width: 100%;
  color: #F04438 !important;
  margin-top: 10px !important;
}
.formEntrySec__lbl {
  padding: 16px 20px;
  min-width: 24rem;
  width: 24rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  background-color: #004183;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .formEntrySec__lbl {
    width: 100%;
  }
}
.is_page__confirm .formEntrySec__lbl {
  background-color: transparent;
  color: #222222;
}
.formEntrySec__cont {
  padding: 16px 20px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  width: 100%;
}
.formEntrySec__cont input[type=text],
.formEntrySec__cont input[type=email],
.formEntrySec__cont textarea {
  border: 1px solid #004183 !important;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183 !important;
  background: #fff !important;
}
@media screen and (max-width: 768px) {
  .formEntrySec__cont input[type=text],
  .formEntrySec__cont input[type=email],
  .formEntrySec__cont textarea {
    max-width: 100%;
  }
}
.formEntrySec__cont input[type=text]:placeholder,
.formEntrySec__cont input[type=email]:placeholder,
.formEntrySec__cont textarea:placeholder {
  color: #CCCCCC;
}
.formEntrySec__cont input[type=text].u-fullWidth,
.formEntrySec__cont input[type=email].u-fullWidth,
.formEntrySec__cont textarea.u-fullWidth {
  width: 100%;
  max-width: 100%;
}
.formEntrySec__cont input[readonly=readonly],
.formEntrySec__cont textarea[readonly=readonly] {
  border: 0 !important;
  padding: 0 !important;
  color: #000 !important;
}
.formEntrySec__cont textarea {
  resize: none;
}
.formEntrySec__radioWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
.formEntrySec__radioItem {
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
}
.formEntrySec__radio {
  display: none;
}
.formEntrySec__radio:checked ~ .radioCheckmark:after {
  display: block;
}
.formEntrySec .radioCheckmark {
  border: 1px solid #004183;
  position: absolute;
  top: 0.1rem;
  left: 0;
  height: 1.6rem;
  width: 1.6rem;
  border-radius: 50%;
}
.formEntrySec .radioCheckmark::after {
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #004183;
}
.formEntrySec__radioLbl {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
.formEntrySec__input {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  max-width: 26rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
}
@media screen and (max-width: 768px) {
  .formEntrySec__input {
    max-width: 100%;
  }
}
.formEntrySec__input:placeholder {
  color: #CCCCCC;
}
.formEntrySec__input.u-fullWidth {
  width: 100%;
  max-width: 100%;
}
.formEntrySec__txtArea {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  min-height: 25.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
  resize: none;
}
.formEntrySec__txtArea:placeholder {
  color: #CCCCCC;
}
.formEntrySec__btnWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.is_page__confirm .formEntrySec__btnWrap {
  margin: 0 auto;
  max-width: 414px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.is_page__success .formEntrySec__btnWrap {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
}

.frm_fields_container {
  border-top: 1px solid #D0D0D0;
}

.frm_last {
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  margin-bottom: -1px !important;
  border-left: 1px solid white;
  border-right: 1px solid white;
  margin-left: -1px;
  margin-right: -1px;
  width: -webkit-calc(100% + 2px) !important;
  width: -moz-calc(100% + 2px) !important;
  width: calc(100% + 2px) !important;
}

.frm-edit-page-btn {
  display: none;
}

.form-field .frm_submit,
.frm_style_formidable-style.with_frm_style .frm_submit {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.form-field .frm_submit button,
.frm_style_formidable-style.with_frm_style .frm_submit button {
  gap: 10px;
  background-color: transparent;
  color: #004183;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 17px 38px;
  border: 1px solid #004183;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.form-field .frm_submit button.frm_prev_page,
.frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
          flex-direction: row-reverse;
}
.form-field .frm_submit button.frm_prev_page::after,
.frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page::after {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.meeting_attendance_form .frm_page_num_2 .formEntryHead__lvlItem:before {
  content: "";
  display: none;
}
.meeting_attendance_form .frm_page_num_2 .formEntryHead__lvlItem:nth-of-type(2):before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #004184;
  position: absolute;
  top: -3px;
  display: block;
}
.meeting_attendance_form .frm_page_num_2 .frm_fields_container {
  border: none;
}
.meeting_attendance_form .frm_page_num_2 .frm-summary-page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .meeting_attendance_form .frm_page_num_2 .frm-summary-page-wrapper {
    margin-bottom: 0;
  }
}
.meeting_attendance_form .frm_page_num_2 .frm-summary-page-wrapper {
  padding: 0;
  border: none;
}
.meeting_attendance_form .frm_page_num_2 .frm-line-table tr {
  border-bottom: 1px solid #D0D0D0;
}
.meeting_attendance_form .frm_page_num_2 .frm-line-table td, .meeting_attendance_form .frm_page_num_2 .frm-line-table th {
  color: #222222;
  padding: 2rem 1.7rem;
  line-height: 1.86;
}
.meeting_attendance_form .frm_page_num_2 .frm-line-table td {
  font-size: 1.6rem;
  padding-left: 0;
}
.meeting_attendance_form .frm_page_num_2 .frm-line-table th {
  font-size: 1.5rem;
  opacity: 1;
}
.meeting_attendance_form .frm_page_num_2 .frm-summary-page-wrapper .frm-line-table th {
  width: 25.9rem;
}
.meeting_attendance_form .frm_page_num_2 .siteBtn--alignCenter {
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .meeting_attendance_form .frm_page_num_2 .siteBtn--alignCenter {
    gap: 0 3rem;
  }
}
.meeting_attendance_form .frm_page_num_2 .frm_page_num_2 .frm-line-table tr:last-child {
  border-bottom: 1px solid #D0D0D0 !important;
}
.meeting_attendance_form .frm_page_num_2 .frm_form_field.frm_none_container {
  margin-bottom: 0;
}

.formContactSec__descTxt {
  margin-bottom: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.is_formpage_2 .formContactSec__descTxt {
  display: none;
}
.formContactSec__descTxtRequired {
  color: #f04438;
}
.formContactSec__row,
.formContactSec .form-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 7.5px 0;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .formContactSec__row,
  .formContactSec .form-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}
.formContactSec__lbl,
.formContactSec .form-field label {
  min-width: 18rem;
  width: 18rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  -webkit-transform: translateY(8px);
     -moz-transform: translateY(8px);
      -ms-transform: translateY(8px);
          transform: translateY(8px);
}
@media screen and (max-width: 768px) {
  .formContactSec__lbl,
  .formContactSec .form-field label {
    width: 100%;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.formContactSec__lbl .required,
.formContactSec .form-field label .required {
  color: #F04438;
}
.formContactSec .form-field .frm_description,
.formContactSec .form-field .frm_error {
  margin: 0.5rem auto 0 18rem !important;
  font-size: 1.2rem !important;
  color: #555 !important;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .formContactSec .form-field .frm_description,
  .formContactSec .form-field .frm_error {
    margin: 0.5rem 0 0 !important;
  }
}
.formContactSec .form-field .frm_error {
  color: #F04438 !important;
}
.formContactSec__cont {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  width: 100%;
}
.formContactSec__input,
.formContactSec .form-field input {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: -webkit-calc(100% - 18rem);
  width: -moz-calc(100% - 18rem);
  width: calc(100% - 18rem);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
}
@media screen and (max-width: 768px) {
  .formContactSec__input,
  .formContactSec .form-field input {
    width: 100%;
  }
}
.formContactSec__input:placeholder,
.formContactSec .form-field input:placeholder {
  color: #CCCCCC;
}
.formContactSec__input.u-fullWidth,
.formContactSec .form-field input.u-fullWidth {
  width: 100%;
  max-width: 100%;
}
.formContactSec__txtArea,
.formContactSec .form-field textarea {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: -webkit-calc(100% - 18rem);
  width: -moz-calc(100% - 18rem);
  width: calc(100% - 18rem);
  min-height: 25.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
  resize: none;
}
@media screen and (max-width: 768px) {
  .formContactSec__txtArea,
  .formContactSec .form-field textarea {
    width: 100%;
  }
}
.formContactSec__txtArea:placeholder,
.formContactSec .form-field textarea:placeholder {
  color: #CCCCCC;
}
.formContactSec .form-field .frm_submit,
.formContactSec .frm_style_formidable-style.with_frm_style .frm_submit {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.formContactSec .form-field .frm_submit button,
.formContactSec .frm_style_formidable-style.with_frm_style .frm_submit button {
  gap: 10px;
  background-color: transparent;
  color: #004183;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 17px 38px;
  border: 1px solid #004183;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.formContactSec .form-field .frm_submit button.frm_prev_page,
.formContactSec .frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
          flex-direction: row-reverse;
}
.formContactSec .form-field .frm_submit button.frm_prev_page::after,
.formContactSec .frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page::after {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.formContactSec .frm-edit-page-btn {
  display: none;
}
.formContactSec .with_frm_style .frm-summary-page-wrapper {
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .formContactSec .with_frm_style .frm-summary-page-wrapper {
    padding: 0;
  }
}
.formContactSec .frm_fields_container {
  border: none;
}
.formContactSec .frm_page_num_2 .formEntryHead__lvlItem:before {
  content: "";
  display: none;
}
.formContactSec .frm_page_num_2 .formEntryHead__lvlItem:nth-of-type(2):before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #004184;
  position: absolute;
  top: -3px;
  display: block;
}
.formContactSec .frm_page_num_2 .frm_fields_container {
  border: none;
}
.formContactSec .frm_page_num_2 .frm-summary-page-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .formContactSec .frm_page_num_2 .frm-summary-page-wrapper {
    margin-bottom: 0;
  }
}
.formContactSec .frm_page_num_2 .frm-summary-page-wrapper {
  padding: 0;
  border: none;
}
.formContactSec .frm_page_num_2 .frm-line-table tr {
  border-bottom: 1px solid #D0D0D0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}
.formContactSec .frm_page_num_2 .frm-line-table td,
.formContactSec .frm_page_num_2 .frm-line-table th {
  color: #222222;
  padding: 2rem 1.7rem;
  line-height: 1.86;
}
.formContactSec .frm_page_num_2 .frm-line-table td {
  font-size: 1.6rem;
  padding-left: 0;
}
.formContactSec .frm_page_num_2 .frm-line-table th {
  font-size: 1.5rem;
  opacity: 1;
  display: block;
}
.formContactSec .frm_page_num_2 .frm-summary-page-wrapper .frm-line-table th {
  width: 25.9rem;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .formContactSec .frm_page_num_2 .frm-summary-page-wrapper .frm-line-table th {
    width: 16.9rem;
  }
}
.formContactSec .frm_page_num_2 .siteBtn--alignCenter {
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .formContactSec .frm_page_num_2 .siteBtn--alignCenter {
    gap: 0 3rem;
  }
}
.formContactSec .frm_page_num_2 .frm_page_num_2 .frm-line-table tr:last-child {
  border-bottom: 1px solid #D0D0D0 !important;
}
.formContactSec .frm_page_num_2 .frm_form_field.frm_none_container {
  margin-bottom: 0;
}

.formEditProf__descTxt {
  margin-bottom: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.is_formpage_2 .formEditProf__descTxt {
  display: none;
}
.formEditProf__descTxtRequired {
  color: #f04438;
}
.formEditProf__row, .formEditProf .form-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .formEditProf__row, .formEditProf .form-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
  .formEditProf__row.centerSp, .formEditProf .form-field.centerSp {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }
}
.formEditProf__lbl, .formEditProf .form-field label {
  min-width: 18rem;
  width: 18rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .formEditProf__lbl, .formEditProf .form-field label {
    width: 100%;
  }
}
.formEditProf__lbl .required, .formEditProf .form-field label .required {
  color: #F04438;
}
.formEditProf__error {
  margin-top: 0.5rem;
  font-size: 1.2rem !important;
  color: #555 !important;
  width: 100%;
  color: #F04438 !important;
  display: none;
}
@media screen and (max-width: 768px) {
  .formEditProf__error {
    margin: 0.5rem 0 0 !important;
  }
}
.formEditProf .form-field .frm_description,
.formEditProf .form-field .frm_error {
  margin: 0.5rem auto 0 18rem !important;
  font-size: 1.2rem !important;
  color: #555 !important;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .formEditProf .form-field .frm_description,
  .formEditProf .form-field .frm_error {
    margin: 0.5rem 0 0 !important;
  }
}
.formEditProf .form-field .frm_error {
  color: #F04438 !important;
}
.formEditProf__cont {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  width: 100%;
}
.formEditProf__inputWrap {
  width: -webkit-calc(100% - 18rem);
  width: -moz-calc(100% - 18rem);
  width: calc(100% - 18rem);
}
@media screen and (max-width: 768px) {
  .formEditProf__inputWrap {
    width: 100%;
  }
}
.formEditProf__inputWrap.is-error .formEditProf__input {
  border-color: #F04438;
}
.formEditProf__inputWrap.is-error .formEditProf__error {
  display: block;
}
.formEditProf__input, .formEditProf .form-field input {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
}
@media screen and (max-width: 768px) {
  .formEditProf__input, .formEditProf .form-field input {
    width: 100%;
  }
}
.formEditProf__input:placeholder, .formEditProf .form-field input:placeholder {
  color: #CCCCCC;
}
.formEditProf__input.u-fullWidth, .formEditProf .form-field input.u-fullWidth {
  width: 100%;
  max-width: 100%;
}
.formEditProf__txtArea, .formEditProf .form-field textarea {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: -webkit-calc(100% - 18rem);
  width: -moz-calc(100% - 18rem);
  width: calc(100% - 18rem);
  min-height: 25.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
  resize: none;
}
@media screen and (max-width: 768px) {
  .formEditProf__txtArea, .formEditProf .form-field textarea {
    width: 100%;
  }
}
.formEditProf__txtArea:placeholder, .formEditProf .form-field textarea:placeholder {
  color: #CCCCCC;
}
.formEditProf .form-field .frm_submit,
.formEditProf .frm_style_formidable-style.with_frm_style .frm_submit {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.formEditProf .form-field .frm_submit button,
.formEditProf .frm_style_formidable-style.with_frm_style .frm_submit button {
  gap: 10px;
  background-color: transparent;
  color: #004183;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 17px 38px;
  border: 1px solid #004183;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.formEditProf .form-field .frm_submit button.frm_prev_page,
.formEditProf .frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
          flex-direction: row-reverse;
}
.formEditProf .form-field .frm_submit button.frm_prev_page::after,
.formEditProf .frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page::after {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.formEditProf .frm-edit-page-btn {
  display: none;
}
.formEditProf .with_frm_style .frm-summary-page-wrapper {
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .formEditProf .with_frm_style .frm-summary-page-wrapper {
    padding: 0;
  }
}
.formEditProf .frm_fields_container {
  border: none;
}
@media screen and (max-width: 768px) {
  .formEditProf .siteBtn .button {
    width: auto;
  }
}

.formUserImport__descTxt {
  margin-bottom: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.is_formpage_2 .formUserImport__descTxt {
  display: none;
}
.formUserImport__descTxtRequired {
  color: #f04438;
}
.formUserImport__row, .formUserImport .form-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
     -moz-box-pack: start;
          justify-content: start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 16px 0;
}
.formUserImport__row.buttonWrap, .formUserImport .form-field.buttonWrap {
  gap: 0 10rem;
}
.formUserImport__row.centered, .formUserImport .form-field.centered {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .formUserImport__row, .formUserImport .form-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
  .formUserImport__row.centered, .formUserImport .form-field.centered {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }
}
.formUserImport__row.col-2, .formUserImport .form-field.col-2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  gap: 20px;
}
.formUserImport__row.col-2 .formUserImport__rowCol, .formUserImport .form-field.col-2 .formUserImport__rowCol {
  width: -webkit-calc(50% - 10px);
  width: -moz-calc(50% - 10px);
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .formUserImport__row.col-2 .formUserImport__rowCol, .formUserImport .form-field.col-2 .formUserImport__rowCol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}
.formUserImport__row.vertCenter, .formUserImport .form-field.vertCenter {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .formUserImport__row.vertCenter, .formUserImport .form-field.vertCenter {
    -webkit-box-align: start;
    -webkit-align-items: start;
       -moz-box-align: start;
            align-items: start;
  }
}
.formUserImport__row.flexStart, .formUserImport .form-field.flexStart {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}
.formUserImport__inputWrapRow.halfWidth {
  width: -webkit-calc(50% - 7rem);
  width: -moz-calc(50% - 7rem);
  width: calc(50% - 7rem);
}
@media screen and (max-width: 768px) {
  .formUserImport__inputWrapRow.halfWidth {
    width: 100%;
  }
}
.formUserImport__inputWrapLabeld {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.formUserImport__inputWrapLabeld .labeledInput {
  position: absolute;
  left: 1rem;
}
.formUserImport__inputWrapLabeld .formUserImport__input {
  padding-left: 3rem;
}
.formUserImport__inputWrapLabeld .formUserImport__inputWrap {
  width: 100%;
}
.formUserImport__rowConfirm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
     -moz-box-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #D0D0D0;
}
@media screen and (max-width: 768px) {
  .formUserImport__rowConfirm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
       -moz-box-align: start;
            align-items: start;
  }
  .formUserImport__rowConfirm.centerSp {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }
}
.formUserImport__rowConfirm.alignStart {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}
.formUserImport__rowConfirm .formUserImport__input {
  border: none;
}
.formUserImport__rowConfirm .formUserImport__lbl {
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .formUserImport__rowConfirm .formUserImport__lbl {
    padding-left: 0;
  }
}
.formUserImport__rowConfirm.col-2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  gap: 20px;
}
.formUserImport__rowConfirm.col-2 .formUserImport__rowCol {
  width: -webkit-calc(50% - 10px);
  width: -moz-calc(50% - 10px);
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .formUserImport__rowConfirm.col-2 .formUserImport__rowCol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}
.formUserImport__rowConfirm .formUserImport__rowCol {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
     -moz-box-align: center !important;
          align-items: center !important;
}
.formUserImport__lbl, .formUserImport .form-field label {
  width: 14rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-left: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .formUserImport__lbl, .formUserImport .form-field label {
    width: 100%;
    padding-left: 0rem;
    margin-bottom: 1rem;
  }
}
.formUserImport__lbl .required, .formUserImport .form-field label .required {
  color: #F04438;
}
.formUserImport__lblRequired {
  display: inline-block;
  padding: 6px 5px;
  border-radius: 5px;
  background-color: #F04438;
  color: #fff;
  margin-left: 8px;
  font-size: 12px;
}
.committee-change .formUserImport__lbl {
  width: 15rem;
}
.formUserImport__error {
  margin-top: 0.5rem;
  font-size: 1.2rem !important;
  color: #555 !important;
  width: 100%;
  color: #F04438 !important;
  display: none;
}
@media screen and (max-width: 768px) {
  .formUserImport__error {
    margin: 0.5rem 0 0 !important;
  }
}
.formUserImport .form-field .frm_description,
.formUserImport .form-field .frm_error {
  margin: 0.5rem auto 0 18rem !important;
  font-size: 1.2rem !important;
  color: #555 !important;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .formUserImport .form-field .frm_description,
  .formUserImport .form-field .frm_error {
    margin: 0.5rem 0 0 !important;
  }
}
.formUserImport .form-field .frm_error {
  color: #F04438 !important;
}
.formUserImport__cont {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  width: 100%;
}
.formUserImport__inputWrap {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .formUserImport__inputWrap {
    width: 100%;
  }
}
.formUserImport__inputWrap.is-error .formEditProf__input {
  border-color: #F04438;
}
.formUserImport__inputWrap.is-error .formEditProf__error {
  display: block;
}
.formUserImport__inputWrap.col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.formUserImport__inputWrap.halfWidth {
  width: -webkit-calc(50% - 13rem);
  width: -moz-calc(50% - 13rem);
  width: calc(50% - 13rem);
}
@media screen and (max-width: 768px) {
  .formUserImport__inputWrap.halfWidth {
    width: -webkit-calc(50% - 1rem);
    width: -moz-calc(50% - 1rem);
    width: calc(50% - 1rem);
  }
}
.formUserImport__input, .formUserImport .form-field input {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
}
@media screen and (max-width: 768px) {
  .formUserImport__input, .formUserImport .form-field input {
    width: 100%;
  }
}
.formUserImport__input:placeholder, .formUserImport .form-field input:placeholder {
  color: #CCCCCC;
}
.formUserImport__input.u-fullWidth, .formUserImport .form-field input.u-fullWidth {
  width: 100%;
  max-width: 100%;
}
.formUserImport__input.pickdate, .formUserImport .form-field input.pickdate {
  width: 30rem;
}
.formUserImport__txtArea, .formUserImport .form-field textarea {
  border: 1px solid #004183;
  border-radius: 0.4rem;
  padding: 0.8rem 1rem;
  width: -webkit-calc(100% - 18rem);
  width: -moz-calc(100% - 18rem);
  width: calc(100% - 18rem);
  min-height: 25.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #004183;
  resize: none;
}
@media screen and (max-width: 768px) {
  .formUserImport__txtArea, .formUserImport .form-field textarea {
    width: 100%;
  }
}
.formUserImport__txtArea:placeholder, .formUserImport .form-field textarea:placeholder {
  color: #CCCCCC;
}
.formUserImport button {
  gap: 10px;
  background-color: transparent;
  color: #004183;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 17px 38px;
  border: 1px solid #004183;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.formUserImport button.frm_prev_page {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
          flex-direction: row-reverse;
}
.formUserImport button.frm_prev_page::after {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.formUserImport .form-field .frm_submit,
.formUserImport .frm_style_formidable-style.with_frm_style .frm_submit {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.formUserImport .form-field .frm_submit button,
.formUserImport .frm_style_formidable-style.with_frm_style .frm_submit button {
  gap: 10px;
  background-color: transparent;
  color: #004183;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 17px 38px;
  border: 1px solid #004183;
  border-radius: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.formUserImport .form-field .frm_submit button.frm_prev_page,
.formUserImport .frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
          flex-direction: row-reverse;
}
.formUserImport .form-field .frm_submit button.frm_prev_page::after,
.formUserImport .frm_style_formidable-style.with_frm_style .frm_submit button.frm_prev_page::after {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.formUserImport .frm-edit-page-btn {
  display: none;
}
.formUserImport .with_frm_style .frm-summary-page-wrapper {
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .formUserImport .with_frm_style .frm-summary-page-wrapper {
    padding: 0;
  }
}
.formUserImport .frm_fields_container {
  border: none;
}
@media screen and (max-width: 768px) {
  .formUserImport .siteBtn .button {
    width: auto;
  }
}
.formUserImport__exportCont {
  margin-top: 50px;
}
.formUserImport__exportLabel {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .formUserImport__exportLabel {
    font-size: 20px;
    margin-bottom: 17px;
  }
}
.formUserImport__exportBtn {
  padding: 15px 50px;
  background-color: #1f58a7;
  color: #fff;
  border-radius: 8px;
  -webkit-transition: background-color 400ms ease-in-out;
  -moz-transition: background-color 400ms ease-in-out;
  transition: background-color 400ms ease-in-out;
}
.formUserImport__exportBtn:hover {
  background-color: #1a447e;
}
.formUserImport__infoTtl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.formUserImport__infoLabel {
  font-size: 16px;
  font-weight: 600;
  min-width: 16rem;
  position: relative;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .formUserImport__infoLabel {
    min-width: 12rem;
  }
}
.formUserImport__infoLabel:after {
  content: ":";
  position: absolute;
  right: 0;
}
.formUserImport__infoRow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  padding: 15px 20px;
  gap: 20px;
  border-bottom: 1px solid #D0D0D0;
}
.formUserImport__infoValue {
  line-height: 1.7;
}
.formUserImport__info + form {
  margin-top: 6rem;
}
.formUserImport__annot {
  font-size: 16px;
  line-height: 1.7;
  margin: 30px 0;
}
.formUserImport__value.labeled {
  margin-left: 35px;
}
.formUserImport__linkWrap {
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.formUserImport__linkWrap a {
  color: #004183;
  position: relative;
  line-height: 1.5;
}
.formUserImport__linkWrap a:before {
  content: "";
  display: inline-block;
  height: 1.1rem;
  width: 1.1rem;
  background-color: #004183;
  margin-right: 0.1rem;
}
.formUserImport__linkWrap a:after {
  content: "";
  position: absolute;
  top: -webkit-calc(100% - 0.2rem);
  top: -moz-calc(100% - 0.2rem);
  top: calc(100% - 0.2rem);
  display: block;
  width: 100%;
  height: 1px;
  background-color: #004183;
}
.formUserImport__groupCodeList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 1rem;
}
.formUserImport__checkBox {
  display: none;
}
.formUserImport__checkBox:checked ~ .formUserImport__groupCodeFakeCheck {
  background: url(../images/common/icon_check.svg) center/cover no-repeat;
  background-color: #faedd3;
}
.formUserImport__groupCodeFakeCheck {
  display: block;
  height: 2rem;
  width: 2rem;
  border-radius: 0.3rem;
  border: 1px solid #004183;
}
.formUserImport__groupCodeLabel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 1rem;
}
.formUserImport__groupCodeLabel:not(:first-of-type) {
  margin-top: 1rem;
}
.formUserImport__groupCodeListConfirm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  gap: 1rem;
}
/*# sourceMappingURL=style.css.map */