@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%;
  font-family: Helvetica Neue, Helvetica, Arial, '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-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;
          box-sizing: border-box;
}

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

/*-----------------------------------------------
@keyframes
------------------------------------------------*/
@-webkit-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);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-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);
  }
}

@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);
  }
}

@-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);
  }
}

@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);
  }
}

@-webkit-keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-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);
            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);
  }
}

@keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-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%);
  }
}

@keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-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%);
  }
}

@keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.u-visualEditArea {
  color: #333333;
  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: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .u-visualEditArea a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s 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: #005bac;
  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: #005bac;
}

.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: #333333;
  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: #333333;
}

.u-visualEditArea blockquote {
  padding: 30px;
  background: #ededed;
}

.u-visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #ededed;
}

.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: #333333 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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-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: calc((100% - 40px) / 2);
}

.u-visualEditArea .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

.u-visualEditArea-form {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  /*-----------------------------------------------
  inputタグ関係
  ------------------------------------------------*/
}

@media screen and (max-width: 768px) {
  .u-visualEditArea-form {
    font-size: 1.3rem;
  }
}

.u-visualEditArea-form * {
  color: unset;
}

.u-visualEditArea-form * + * {
  margin-top: 1.75em;
}

.u-visualEditArea-form a {
  color: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .u-visualEditArea-form a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media screen and (min-width: 769px) {
  .u-visualEditArea-form a:hover {
    opacity: 0.6;
  }
}

.u-visualEditArea-form h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}

.u-visualEditArea-form h2 {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
}

@media screen and (max-width: 768px) {
  .u-visualEditArea-form h2 {
    font-size: 1.3rem;
  }
}

.u-visualEditArea-form h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.u-visualEditArea-form h4 {
  font-size: 1.8rem;
  line-height: 1.6;
}

.u-visualEditArea-form h5 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.u-visualEditArea-form h6 {
  font-size: 1.4rem;
  line-height: 1.6;
}

.u-visualEditArea-form h1 + h2,
.u-visualEditArea-form h2 + h3,
.u-visualEditArea-form h3 + h4,
.u-visualEditArea-form h4 + h5,
.u-visualEditArea-form h5 + h6 {
  margin-top: 0.5em;
}

.u-visualEditArea-form p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .u-visualEditArea-form p {
    font-size: 1.3rem;
  }
}

.u-visualEditArea-form strong,
.u-visualEditArea-form strong * {
  font-weight: bold;
}

.u-visualEditArea-form em,
.u-visualEditArea-form em * {
  font-style: italic;
}

.u-visualEditArea-form ul {
  list-style-type: disc;
}

.u-visualEditArea-form ol {
  list-style-type: decimal;
}

.u-visualEditArea-form ul,
.u-visualEditArea-form ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.u-visualEditArea-form ul li,
.u-visualEditArea-form ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}

.u-visualEditArea-form sup,
.u-visualEditArea-form sub {
  font-size: 1rem;
  line-height: 1 !important;
}

.u-visualEditArea-form hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #333333;
}

.u-visualEditArea-form blockquote {
  padding: 30px;
  background: #ededed;
}

.u-visualEditArea-form table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
}

.u-visualEditArea-form table thead th,
.u-visualEditArea-form table thead td {
  font-weight: bold;
  text-align: center;
}

.u-visualEditArea-form table tr th,
.u-visualEditArea-form table tr td {
  padding: 15px 20px;
  border: #333333 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.u-visualEditArea-form table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}

.u-visualEditArea-form img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

.u-visualEditArea-form img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.u-visualEditArea-form img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.u-visualEditArea-form .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.u-visualEditArea-form .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.u-visualEditArea-form .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.u-visualEditArea-form .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

.u-visualEditArea-form input[type="radio"] {
  -webkit-appearance: radio;
}

.u-visualEditArea-form .mwform-radio-field {
  padding: 8px 0;
  margin-left: 0 !important;
}

.u-visualEditArea-form .mwform-radio-field:not(:last-child) {
  margin-right: 24px !important;
}

@media screen and (max-width: 768px) {
  .u-visualEditArea-form .mwform-radio-field:not(:last-child) {
    margin-right: 12px !important;
  }
}

.u-visualEditArea-form .mwform-radio-field-text {
  cursor: pointer;
}

.u-visualEditArea-form input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

.u-visualEditArea-form .mwform-checkbox-field {
  padding: 8px 0;
  margin: 0 !important;
}

.u-visualEditArea-form .mwform-checkbox-field-text {
  cursor: pointer;
}

.u-visualEditArea-form input[type="radio"],
.u-visualEditArea-form input[type="checkbox"] {
  -webkit-transform: scale(1.5) translateY(2px);
          transform: scale(1.5) translateY(2px);
  cursor: pointer;
  padding: 8px 0;
}

.u-visualEditArea-form select {
  padding: 8px 48px 8px 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: #005bac solid 1px;
  cursor: pointer;
}

.u-visualEditArea-form input[type="text"],
.u-visualEditArea-form input[type="email"],
.u-visualEditArea-form textarea {
  width: 100%;
  padding: 8px 16px;
  background-color: #efefef;
  border-radius: 8px;
  border: #999999 solid 1px;
}

.u-visualEditArea-form input[type="submit"] {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  height: 35px;
  width: 205px;
  background-color: #005bac;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .u-visualEditArea-form input[type="submit"] {
    font-size: 1.3rem;
  }
}

.u-visualEditArea-form input[type="submit"]:hover {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.u-visualEditArea-form input[type="submit"]:hover:hover {
  opacity: 0.7;
}

/*====================================================================
siteHeader
====================================================================*/
.siteHeader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .siteHeader {
    height: 50px;
    padding: 0 15px;
  }
}

.is_login_user .siteHeader {
  top: 32px;
}

@media screen and (max-width: 768px) {
  .is_login_user .siteHeader {
    top: 46px;
  }
}

.siteHeader__logo {
  width: 278px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .siteHeader__logo {
    width: 95px;
  }
}

.siteHeader__logoLink {
  display: block;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.siteHeader__logoLink:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  .siteHeader__logoLink:hover [class$="__logoImg"] {
    fill: #fff;
  }
}

.siteHeader__logoImg {
  width: 100%;
  fill: #333333;
}

@media screen and (min-width: 769px) {
  .siteHeader__logoImg {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

.siteHeader__gNav {
  height: 100%;
}

.siteHeader__gNavPageList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
}

@media screen and (max-width: 768px) {
  .siteHeader__gNavPageList {
    height: 50px;
  }
}

.siteHeader__gNavItem {
  height: 40px;
  width: 200px;
  font-size: 11px;
  border: solid 1px #333333;
  border-radius: 5px;
  margin: 0 8px;
}

@media screen and (max-width: 768px) {
  .siteHeader__gNavItem {
    height: 30px;
    width: 100px;
    margin-left: 8px;
  }
}

.siteHeader__gNavLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 769px) {
  .siteHeader__gNavLink {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

.siteHeader__gNavLink p {
  margin: 0 auto;
}

.siteHeader__gNavLink__icon {
  background: url("../images/members/pc-icon-logout01.png");
  background-size: 100%;
  width: 17px;
  height: 16px;
  position: absolute;
  right: 18px;
}

@media screen and (max-width: 768px) {
  .siteHeader__gNavLink__icon {
    right: 4px;
  }
}

.siteHeader__gNavLink:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  .siteHeader__gNavLink:hover {
    background: #333333;
  }
  .siteHeader__gNavLink:hover p {
    color: #fff;
  }
  .siteHeader__gNavLink:hover .siteHeader__gNavLink__icon {
    background: url("../images/members/pc-icon-logout_w.png");
    background-size: 100%;
    width: 17px;
    height: 16px;
  }
}

/*====================================================================
siteFooter
====================================================================*/
.siteFooter {
  height: 85px;
  padding: 0 60px;
  color: #333333;
  background: #ededed;
}

@media screen and (max-width: 768px) {
  .siteFooter {
    padding: 0 16px;
  }
}

.siteFooter__innerArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .siteFooter__innerArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.siteFooter__copy {
  color: black;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .siteFooter__copy {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .siteFooter__copy {
    text-align: center;
    margin-top: 8px;
  }
}

.siteFooter__logo {
  width: 150px;
}

.siteFooter__logoImg {
  width: 100%;
  fill: #333333;
}

@media screen and (min-width: 769px) {
  .siteFooter__logoImg {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

/*-----------------------------------------------
ヘッダー下ナビゲーション
------------------------------------------------*/
.is_home .lowerPageTitle__pageTitleText {
  font-size: 4rem;
}

.lowerPageTitle__pageTitle {
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../images/members/pc-kv01.png");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 100%;
}

.lowerPageTitle__pageTitleText {
  color: #333333;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: block;
}

@media screen and (max-width: 768px) {
  .lowerPageTitle__pageTitleText {
    font-size: 2.5rem;
  }
}

.lowerPageTitle__navPageList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lowerPageTitle__navPageItem {
  width: 20%;
}

.lowerPageTitle__navPageLink {
  color: #333333;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: block;
  height: 100%;
  padding: 13px;
  background: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  .lowerPageTitle__navPageLink {
    font-size: 1rem;
  }
}

.lowerPageTitle__navPageLink:hover {
  border-bottom: 2px solid #333333;
}

@media screen and (max-width: 768px) {
  .lowerPageTitle__navPageLink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 52px;
    padding: 8px 4px;
  }
}

/*====================================================================
contentCenter
====================================================================*/
.contentCenter {
  width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

@media screen and (max-width: 1220px) {
  .contentCenter {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contentCenter {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*====================================================================
visualEditArea
====================================================================*/
.visualEditArea {
  color: #333333;
  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: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .visualEditArea a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s 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: #005bac;
  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: #005bac;
}

.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: #333333;
  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: #333333;
}

.visualEditArea blockquote {
  padding: 30px;
  background: #ededed;
}

.visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #ededed;
}

.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: #333333 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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.visualEditArea .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.visualEditArea .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

/*====================================================================
ニュース（一覧）ページ
====================================================================*/
.newsPageSec {
  background-color: #F2F3F7;
  padding: 45px 0 90px;
}

.newsPageSec__inner {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
  padding: 25px 25px 80px;
}

@media screen and (max-width: 768px) {
  .newsPageSec__inner {
    width: auto;
    margin: 0 25px;
  }
}

.newsPageSec__pageTitle {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .newsPageSec__pageTitle {
    font-size: 1.3rem;
  }
}

.newsPageSec__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .newsPageSec__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: center;
        -ms-flex-direction: center;
            flex-direction: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}

.newsPageSec__contentLeft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .newsPageSec__contentLeft {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 4px;
  }
}

.newsPageSec__contentDate {
  color: #707070;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .newsPageSec__contentDate {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .newsPageSec__contentDate {
    margin-right: 20px;
  }
}

.newsPageSec__contentTitle {
  color: #707070;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .newsPageSec__contentTitle {
    font-size: 1.3rem;
  }
}

.newsPageSec__contentLink {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 50px;
  text-align: right;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .newsPageSec__contentLink {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .newsPageSec__contentLink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 55px;
  }
}

/*====================================================================
ニュース（詳細）ページ
====================================================================*/
.newsSec {
  background-color: #F2F3F7;
  padding: 45px 0 90px;
}

.newsSec__pageTitle {
  color: #333333;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .newsSec__pageTitle {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .newsSec__pageTitle {
    padding: 0 25px;
  }
}

.newsSec__inner {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
}

@media screen and (max-width: 768px) {
  .newsSec__inner {
    width: auto;
    margin: 0 25px;
  }
}

.newsSec__postTitle {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .newsSec__postTitle {
    font-size: 1.3rem;
  }
}

.newsSec__postTime {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .newsSec__postTime {
    padding: 0;
  }
}

.newsSec__postContentArea {
  color: #333333;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 20px 25px;
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .newsSec__postContentArea {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .newsSec__postContentArea {
    font-size: 1.3rem;
  }
}

.newsSec__postContentArea * + * {
  margin-top: 1.75em;
}

.newsSec__postContentArea a {
  color: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .newsSec__postContentArea a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media screen and (min-width: 769px) {
  .newsSec__postContentArea a:hover {
    opacity: 0.6;
  }
}

.newsSec__postContentArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}

.newsSec__postContentArea h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}

.newsSec__postContentArea h3 {
  color: #005bac;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.newsSec__postContentArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}

.newsSec__postContentArea h4::before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #005bac;
}

.newsSec__postContentArea h5, .newsSec__postContentArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.newsSec__postContentArea h1 + h2,
.newsSec__postContentArea h2 + h3,
.newsSec__postContentArea h3 + h4,
.newsSec__postContentArea h4 + h5,
.newsSec__postContentArea h5 + h6 {
  margin-top: 0.5em;
}

.newsSec__postContentArea p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .newsSec__postContentArea p {
    font-size: 1.3rem;
  }
}

.newsSec__postContentArea strong, .newsSec__postContentArea strong * {
  font-weight: bold;
}

.newsSec__postContentArea em, .newsSec__postContentArea em * {
  font-style: italic;
}

.newsSec__postContentArea ul {
  list-style-type: disc;
}

.newsSec__postContentArea ol {
  list-style-type: decimal;
}

.newsSec__postContentArea ul, .newsSec__postContentArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.newsSec__postContentArea ul li, .newsSec__postContentArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}

.newsSec__postContentArea sup, .newsSec__postContentArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}

.newsSec__postContentArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #333333;
}

.newsSec__postContentArea blockquote {
  padding: 30px;
  background: #ededed;
}

.newsSec__postContentArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #ededed;
}

.newsSec__postContentArea table thead th, .newsSec__postContentArea table thead td {
  font-weight: bold;
  text-align: center;
}

.newsSec__postContentArea table tr th, .newsSec__postContentArea table tr td {
  padding: 15px 20px;
  border: #333333 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.newsSec__postContentArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}

.newsSec__postContentArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

.newsSec__postContentArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.newsSec__postContentArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.newsSec__postContentArea .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.newsSec__postContentArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.newsSec__postContentArea .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.newsSec__postContentArea .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

@media screen and (max-width: 768px) {
  .newsSec__postContentArea {
    padding: 20px 0;
  }
}

.newsSec__backButton {
  color: #333333;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 1000px;
  margin: 25px auto;
}

@media screen and (max-width: 768px) {
  .newsSec__backButton {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .newsSec__backButton {
    padding: 0 25px;
  }
}

.errorPageSec__innerArea {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  margin-top: 75px;
  padding: 75px 25px;
}

@media screen and (max-width: 768px) {
  .errorPageSec__innerArea {
    width: auto;
    margin: 0 25px;
  }
}

.errorPageSec__text {
  color: #333333;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .errorPageSec__text {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .errorPageSec__text {
    font-size: 1.2rem;
  }
}

.errorPageSec__textSearchForm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 25px;
  text-align: center;
}

.errorPageSec__textBoxWrap {
  height: 50px;
  width: 100%;
  margin-bottom: 25px;
}

.errorPageSec__textBoxInput {
  height: 24px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: solid 1px #005bac;
  border-radius: 4px;
  padding: 16px 24px;
}

.errorPageSec__searchBtnText {
  display: inline-block;
  height: 50px;
  width: 250px;
  color: white;
  font-size: 1.3rem;
  background-color: #707070;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.errorPageSec__searchBtnText:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.errorPageSec__bnrArea {
  text-align: center;
}

.errorPageSec__bnrText {
  color: #333333;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .errorPageSec__bnrText {
    font-size: 1.3rem;
  }
}

.downloadPageSec {
  background-color: #f2f3f7;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .downloadPageSec {
    padding: 25px 0;
  }
}

.downloadPageSec__inner {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  background-color: #f2f3f7;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__inner {
    width: auto;
    margin: 0 25px;
  }
}

.downloadPageSec__exhibitionArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__exhibitionArea {
    margin-bottom: 25px;
  }
}

.downloadPageSec__exhibition {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 30px) / 3);
  margin-left: 15px;
  border-radius: 8px;
}

.downloadPageSec__exhibition:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__exhibition {
    width: 100%;
    margin: 15px 0 0;
  }
}

.downloadPageSec__exhibition:nth-child(1) {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__exhibition:nth-child(1) {
    margin-top: 0;
  }
}

.downloadPageSec__exhibitionLink {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 14px 0;
  background: #fff;
  border: 1px solid #333333;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__exhibitionLink {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .downloadPageSec__exhibitionLink {
    padding: 8px 0;
  }
}

.downloadPageSec__exhibitionLink.is-current {
  color: #fff !important;
}

.downloadPageSec__documentArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.downloadPageSec__document {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: calc(100% * 0.313);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 2px solid #fff;
}

.downloadPageSec__document:hover {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__document {
    width: calc(100% * 0.48);
  }
}

@media (max-width: 600px) {
  .downloadPageSec__document {
    width: 100%;
  }
}

.downloadPageSec label,
.downloadPageSec input[type="checkbox"] {
  cursor: pointer;
}

.downloadPageSec__documentStatus {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  width: 80px;
  line-height: 25px;
  border-radius: 8px;
  margin: auto 0 auto auto;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__documentStatus {
    font-size: 1.3rem;
  }
}

.downloadPageSec__documentTitleArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}

.downloadPageSec__checkbox {
  height: 22px;
  width: 22px;
  -webkit-appearance: checkbox;
  margin-right: 8px;
}

.downloadPageSec__documentTitle {
  color: #333;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__documentTitle {
    font-size: 1.3rem;
  }
}

.downloadPageSec__date {
  color: #333;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__date {
    font-size: 1.3rem;
  }
}

.downloadPageSec__documentStatus,
.downloadPageSec .open {
  background-color: #ff0000;
}

.downloadPageSec__documentStatus,
.downloadPageSec .close {
  background-color: #005bac;
}

.downloadPageSec__dlButtonArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__dlButtonArea {
    margin-top: 0;
  }
}

.downloadPageSec__dlButton {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  height: 35px;
  width: 205px;
  background-color: #005bac;
  border-radius: 8px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .downloadPageSec__dlButton {
    font-size: 1.3rem;
  }
}

/*-----------------------------------------------
各種申し込み
------------------------------------------------*/
.applicationPageSec {
  background-color: #f2f3f7;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .applicationPageSec {
    padding: 25px;
  }
}

.applicationPageSec__inner {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  background-color: #f2f3f7;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__inner {
    width: auto;
    margin: 0 25px;
  }
}

@media screen and (max-width: 768px) {
  .applicationPageSec__inner {
    margin: 0;
  }
}

.applicationPageSec__exhibitionArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__exhibitionArea {
    margin-bottom: 25px;
  }
}

.applicationPageSec__exhibition {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 30px) / 3);
  margin-left: 15px;
  border-radius: 8px;
}

.applicationPageSec__exhibition:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__exhibition {
    width: 100%;
    margin: 15px 0 0;
  }
}

.applicationPageSec__exhibition:nth-child(1) {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__exhibition:nth-child(1) {
    margin-top: 0;
  }
}

.applicationPageSec__exhibitionLink {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 14px 0;
  background: #fff;
  border: 1px solid #333333;
  text-align: center;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__exhibitionLink {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .applicationPageSec__exhibitionLink {
    padding: 8px 0;
  }
}

.applicationPageSec__exhibitionLink.is-current {
  color: #fff !important;
}

.applicationPageSec__documentArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.applicationPageSec__document {
  width: calc((100% - 30px) / 3);
  margin-bottom: 25px;
  margin-left: 15px;
}

.applicationPageSec__document:nth-child(3n+1) {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__document {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.applicationPageSec__documentLink {
  width: 100%;
  height: 100%;
  display: block;
  padding: 18px 25px;
  border: 2px solid #fff;
  border-radius: 8px;
  background-color: #fff;
}

.applicationPageSec__documentTitle {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.31;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__documentTitle {
    font-size: 1.3rem;
  }
}

.applicationPageSec__documentReqired {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.31;
  letter-spacing: 0.05em;
  background: red;
  padding: 2px 5px;
  border-radius: 4px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__documentReqired {
    font-size: 1.3rem;
  }
}

.applicationPageSec__documentText {
  color: #333;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.31;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__documentText {
    font-size: 1.3rem;
  }
}

.applicationPageSec__date {
  color: #555555;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .applicationPageSec__date {
    font-size: 1.3rem;
  }
}

.questionPageSec {
  background-color: #f2f3f7;
  padding: 50px 0;
  /*-----------------------------------------------
  お問い合わせ先
  ------------------------------------------------*/
}

@media screen and (max-width: 768px) {
  .questionPageSec {
    padding: 25px 0;
  }
}

.questionPageSec__inner {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
  padding: 25px 25px 50px;
}

@media screen and (max-width: 768px) {
  .questionPageSec__inner {
    width: auto;
    margin: 0 25px;
  }
}

@media screen and (max-width: 768px) {
  .questionPageSec__inner {
    padding: 25px;
  }
}

.questionPageSec__pageTitle {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
}

@media screen and (max-width: 768px) {
  .questionPageSec__pageTitle {
    font-size: 1.3rem;
  }
}

.questionPageSec__contentList01 {
  padding: 25px 0;
}

.questionPageSec__contentItem01:first-child {
  margin-bottom: 25px;
}

.questionPageSec__contentItem02 {
  padding: 25px;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentItem02 {
    padding: 25px 0;
  }
}

.questionPageSec__contentTitle {
  color: #005bac;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 0 25px 8px;
  border-bottom: 2px #005bac solid;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentTitle {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentTitle {
    padding: 0 0 8px;
  }
}

.questionPageSec__contentText {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #707070;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.46;
  letter-spacing: 0.05em;
  padding: 25px;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentText {
    font-size: 1.3rem;
  }
}

.questionPageSec__contentText * + * {
  margin-top: 1.75em;
}

.questionPageSec__contentText a {
  color: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .questionPageSec__contentText a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media screen and (min-width: 769px) {
  .questionPageSec__contentText a:hover {
    opacity: 0.6;
  }
}

.questionPageSec__contentText h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}

.questionPageSec__contentText h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}

.questionPageSec__contentText h3 {
  color: #005bac;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.questionPageSec__contentText h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}

.questionPageSec__contentText h4::before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #005bac;
}

.questionPageSec__contentText h5, .questionPageSec__contentText h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.questionPageSec__contentText h1 + h2,
.questionPageSec__contentText h2 + h3,
.questionPageSec__contentText h3 + h4,
.questionPageSec__contentText h4 + h5,
.questionPageSec__contentText h5 + h6 {
  margin-top: 0.5em;
}

.questionPageSec__contentText p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentText p {
    font-size: 1.3rem;
  }
}

.questionPageSec__contentText strong, .questionPageSec__contentText strong * {
  font-weight: bold;
}

.questionPageSec__contentText em, .questionPageSec__contentText em * {
  font-style: italic;
}

.questionPageSec__contentText ul {
  list-style-type: disc;
}

.questionPageSec__contentText ol {
  list-style-type: decimal;
}

.questionPageSec__contentText ul, .questionPageSec__contentText ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.questionPageSec__contentText ul li, .questionPageSec__contentText ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}

.questionPageSec__contentText sup, .questionPageSec__contentText sub {
  font-size: 1rem;
  line-height: 1 !important;
}

.questionPageSec__contentText hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #333333;
}

.questionPageSec__contentText blockquote {
  padding: 30px;
  background: #ededed;
}

.questionPageSec__contentText table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #ededed;
}

.questionPageSec__contentText table thead th, .questionPageSec__contentText table thead td {
  font-weight: bold;
  text-align: center;
}

.questionPageSec__contentText table tr th, .questionPageSec__contentText table tr td {
  padding: 15px 20px;
  border: #333333 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.questionPageSec__contentText table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}

.questionPageSec__contentText img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

.questionPageSec__contentText img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.questionPageSec__contentText img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.questionPageSec__contentText .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.questionPageSec__contentText .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.questionPageSec__contentText .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.questionPageSec__contentText .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentText {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .questionPageSec__contentText {
    padding: 25px 0;
  }
}

.questionPageSec__question {
  color: #707070;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.43;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding: 0 25px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .questionPageSec__question {
    font-size: 1.3rem;
  }
}

.questionPageSec__question::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .questionPageSec__question {
    padding-right: 0;
  }
}

.questionPageSec__answer {
  color: #707070;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.46;
  letter-spacing: 0.05em;
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .questionPageSec__answer {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .questionPageSec__answer {
    font-size: 1.3rem;
  }
}

.questionPageSec__answer * + * {
  margin-top: 1.75em;
}

.questionPageSec__answer a {
  color: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .questionPageSec__answer a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media screen and (min-width: 769px) {
  .questionPageSec__answer a:hover {
    opacity: 0.6;
  }
}

.questionPageSec__answer h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}

.questionPageSec__answer h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}

.questionPageSec__answer h3 {
  color: #005bac;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.questionPageSec__answer h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}

.questionPageSec__answer h4::before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #005bac;
}

.questionPageSec__answer h5, .questionPageSec__answer h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.questionPageSec__answer h1 + h2,
.questionPageSec__answer h2 + h3,
.questionPageSec__answer h3 + h4,
.questionPageSec__answer h4 + h5,
.questionPageSec__answer h5 + h6 {
  margin-top: 0.5em;
}

.questionPageSec__answer p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .questionPageSec__answer p {
    font-size: 1.3rem;
  }
}

.questionPageSec__answer strong, .questionPageSec__answer strong * {
  font-weight: bold;
}

.questionPageSec__answer em, .questionPageSec__answer em * {
  font-style: italic;
}

.questionPageSec__answer ul {
  list-style-type: disc;
}

.questionPageSec__answer ol {
  list-style-type: decimal;
}

.questionPageSec__answer ul, .questionPageSec__answer ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.questionPageSec__answer ul li, .questionPageSec__answer ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}

.questionPageSec__answer sup, .questionPageSec__answer sub {
  font-size: 1rem;
  line-height: 1 !important;
}

.questionPageSec__answer hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #333333;
}

.questionPageSec__answer blockquote {
  padding: 30px;
  background: #ededed;
}

.questionPageSec__answer table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #ededed;
}

.questionPageSec__answer table thead th, .questionPageSec__answer table thead td {
  font-weight: bold;
  text-align: center;
}

.questionPageSec__answer table tr th, .questionPageSec__answer table tr td {
  padding: 15px 20px;
  border: #333333 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.questionPageSec__answer table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}

.questionPageSec__answer img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

.questionPageSec__answer img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.questionPageSec__answer img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.questionPageSec__answer .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.questionPageSec__answer .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.questionPageSec__answer .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.questionPageSec__answer .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

.questionPageSec__contactArea {
  border: #005bac solid 1px;
  border-radius: 8px;
  padding: 20px 25px;
  margin: 0 25px 0;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contactArea {
    margin: 0;
  }
}

.questionPageSec__contactTitle {
  color: #005bac;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contactTitle {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .questionPageSec__contactTitle {
    margin-bottom: 8px;
  }
}

.questionPageSec__contactText {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #005bac;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.69;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contactText {
    font-size: 1.3rem;
  }
}

.questionPageSec__contactText * + * {
  margin-top: 1.75em;
}

.questionPageSec__contactText a {
  color: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .questionPageSec__contactText a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media screen and (min-width: 769px) {
  .questionPageSec__contactText a:hover {
    opacity: 0.6;
  }
}

.questionPageSec__contactText h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}

.questionPageSec__contactText h2 {
  margin-top: 2em;
  font-size: 3rem;
  line-height: 1.6;
}

.questionPageSec__contactText h3 {
  color: #005bac;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.questionPageSec__contactText h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}

.questionPageSec__contactText h4::before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #005bac;
}

.questionPageSec__contactText h5, .questionPageSec__contactText h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.questionPageSec__contactText h1 + h2,
.questionPageSec__contactText h2 + h3,
.questionPageSec__contactText h3 + h4,
.questionPageSec__contactText h4 + h5,
.questionPageSec__contactText h5 + h6 {
  margin-top: 0.5em;
}

.questionPageSec__contactText p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .questionPageSec__contactText p {
    font-size: 1.3rem;
  }
}

.questionPageSec__contactText strong, .questionPageSec__contactText strong * {
  font-weight: bold;
}

.questionPageSec__contactText em, .questionPageSec__contactText em * {
  font-style: italic;
}

.questionPageSec__contactText ul {
  list-style-type: disc;
}

.questionPageSec__contactText ol {
  list-style-type: decimal;
}

.questionPageSec__contactText ul, .questionPageSec__contactText ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.questionPageSec__contactText ul li, .questionPageSec__contactText ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}

.questionPageSec__contactText sup, .questionPageSec__contactText sub {
  font-size: 1rem;
  line-height: 1 !important;
}

.questionPageSec__contactText hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #333333;
}

.questionPageSec__contactText blockquote {
  padding: 30px;
  background: #ededed;
}

.questionPageSec__contactText table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #ededed;
}

.questionPageSec__contactText table thead th, .questionPageSec__contactText table thead td {
  font-weight: bold;
  text-align: center;
}

.questionPageSec__contactText table tr th, .questionPageSec__contactText table tr td {
  padding: 15px 20px;
  border: #333333 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.questionPageSec__contactText table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}

.questionPageSec__contactText img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

.questionPageSec__contactText img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.questionPageSec__contactText img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.questionPageSec__contactText .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.questionPageSec__contactText .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.questionPageSec__contactText .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.questionPageSec__contactText .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

@media screen and (max-width: 768px) {
  .questionPageSec__contactText {
    font-size: 1rem;
  }
}

/*====================================================================
フォーム
====================================================================*/
.formPageSec {
  background-color: #f2f3f7;
  padding: 50px 0;
  font-size: 14px;
  /*
  //各フォームのレイアウト
  //co_exhibitor
  //共同出展社フォーム
  */
}

@media screen and (max-width: 768px) {
  .formPageSec {
    padding: 25px 0;
  }
}

.formPageSec__inner {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
  padding: 25px 25px 50px;
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  /*-----------------------------------------------
  inputタグ関係
  ------------------------------------------------*/
}

@media screen and (max-width: 768px) {
  .formPageSec__inner {
    width: auto;
    margin: 0 25px;
  }
}

@media screen and (max-width: 768px) {
  .formPageSec__inner {
    font-size: 1.3rem;
  }
}

.formPageSec__inner * {
  color: unset;
}

.formPageSec__inner * + * {
  margin-top: 1.75em;
}

.formPageSec__inner a {
  color: #005bac;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .formPageSec__inner a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
}

@media screen and (min-width: 769px) {
  .formPageSec__inner a:hover {
    opacity: 0.6;
  }
}

.formPageSec__inner h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}

.formPageSec__inner h2 {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
}

@media screen and (max-width: 768px) {
  .formPageSec__inner h2 {
    font-size: 1.3rem;
  }
}

.formPageSec__inner h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.formPageSec__inner h4 {
  font-size: 1.8rem;
  line-height: 1.6;
}

.formPageSec__inner h5 {
  font-size: 1.6rem;
  line-height: 1.6;
}

.formPageSec__inner h6 {
  font-size: 1.4rem;
  line-height: 1.6;
}

.formPageSec__inner h1 + h2,
.formPageSec__inner h2 + h3,
.formPageSec__inner h3 + h4,
.formPageSec__inner h4 + h5,
.formPageSec__inner h5 + h6 {
  margin-top: 0.5em;
}

.formPageSec__inner p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .formPageSec__inner p {
    font-size: 1.3rem;
  }
}

.formPageSec__inner strong,
.formPageSec__inner strong * {
  font-weight: bold;
}

.formPageSec__inner em,
.formPageSec__inner em * {
  font-style: italic;
}

.formPageSec__inner ul {
  list-style-type: disc;
}

.formPageSec__inner ol {
  list-style-type: decimal;
}

.formPageSec__inner ul,
.formPageSec__inner ol {
  margin-top: 1em;
  padding-left: 1.4em;
}

.formPageSec__inner ul li,
.formPageSec__inner ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}

.formPageSec__inner sup,
.formPageSec__inner sub {
  font-size: 1rem;
  line-height: 1 !important;
}

.formPageSec__inner hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #333333;
}

.formPageSec__inner blockquote {
  padding: 30px;
  background: #ededed;
}

.formPageSec__inner table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
}

.formPageSec__inner table thead th,
.formPageSec__inner table thead td {
  font-weight: bold;
  text-align: center;
}

.formPageSec__inner table tr th,
.formPageSec__inner table tr td {
  padding: 15px 20px;
  border: #333333 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.formPageSec__inner table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}

.formPageSec__inner img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}

.formPageSec__inner img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.formPageSec__inner img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.formPageSec__inner .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.formPageSec__inner .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}

.formPageSec__inner .gallery-columns-2 .gallery-item {
  width: calc((100% - 40px) / 2);
}

.formPageSec__inner .gallery-columns-3 .gallery-item {
  width: calc((100% - (40px * 2)) / 3);
}

.formPageSec__inner input[type="radio"] {
  -webkit-appearance: radio;
}

.formPageSec__inner .mwform-radio-field {
  padding: 8px 0;
  margin-left: 0 !important;
}

.formPageSec__inner .mwform-radio-field:not(:last-child) {
  margin-right: 24px !important;
}

@media screen and (max-width: 768px) {
  .formPageSec__inner .mwform-radio-field:not(:last-child) {
    margin-right: 12px !important;
  }
}

.formPageSec__inner .mwform-radio-field-text {
  cursor: pointer;
}

.formPageSec__inner input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

.formPageSec__inner .mwform-checkbox-field {
  padding: 8px 0;
  margin: 0 !important;
}

.formPageSec__inner .mwform-checkbox-field-text {
  cursor: pointer;
}

.formPageSec__inner input[type="radio"],
.formPageSec__inner input[type="checkbox"] {
  -webkit-transform: scale(1.5) translateY(2px);
          transform: scale(1.5) translateY(2px);
  cursor: pointer;
  padding: 8px 0;
}

.formPageSec__inner select {
  padding: 8px 48px 8px 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: #005bac solid 1px;
  cursor: pointer;
}

.formPageSec__inner input[type="text"],
.formPageSec__inner input[type="email"],
.formPageSec__inner textarea {
  width: 100%;
  padding: 8px 16px;
  background-color: #efefef;
  border-radius: 8px;
  border: #999999 solid 1px;
}

.formPageSec__inner input[type="submit"] {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  height: 35px;
  width: 205px;
  background-color: #005bac;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .formPageSec__inner input[type="submit"] {
    font-size: 1.3rem;
  }
}

.formPageSec__inner input[type="submit"]:hover {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.formPageSec__inner input[type="submit"]:hover:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .formPageSec__inner {
    padding: 25px;
  }
}

.formPageSec__formItemList {
  padding: 50px 25px 25px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .formPageSec__formItemList {
    padding: 25px 0 !important;
  }
}

.formPageSec__formItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .formPageSec__formItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.formPageSec__formItemTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  font-size: 1.3rem !important;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em !important;
  width: 30%;
  min-height: 30px;
}

@media screen and (max-width: 768px) {
  .formPageSec__formItemTitle {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 768px) {
  .formPageSec__formItemTitle {
    width: 100%;
  }
}

.formPageSec__inputBox {
  width: 70%;
  min-height: 30px;
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .formPageSec__inputBox {
    width: 100%;
  }
}

.formPageSec .addTriangle {
  position: relative;
}

.formPageSec .addTriangle::after {
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
  border-top: 12px solid #0b5bac;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
  position: absolute;
  top: 9px;
  left: 160px;
}

.formPageSec .vertically {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.formPageSec .error {
  margin-top: 10px;
}

.formPageSec .co_exhibitor_number {
  padding: 5px 15px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
  position: relative;
}

.formPageSec .co_exhibitor_number.js-tableToggleClick {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.formPageSec .co_exhibitor_number.js-tableToggleClick:hover {
  opacity: 0.7;
}

.formPageSec .co_exhibitor_number.active .co_exhibitor_number_click::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 13.0px 7.5px;
  border-color: transparent transparent #0077ff transparent;
  position: absolute;
  right: 0;
  bottom: 5px;
}

.formPageSec .co_exhibitor_number_click {
  color: #0077ff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: absolute;
  right: 0;
  display: inline-block;
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  .formPageSec .co_exhibitor_number_click {
    font-size: 1.2rem;
  }
}

.formPageSec .co_exhibitor_number_click::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13.0px 7.5px 0 7.5px;
  border-color: #0077ff transparent transparent transparent;
  position: absolute;
  right: 0;
  bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.js-tableToggle {
  display: none;
}

.mw_wp_form_confirm .confirmDisNone {
  display: none;
}

.mw_wp_form_confirm .js-tableToggle {
  display: table;
}

/*====================================================================
マイページ
====================================================================*/
.myPageSec {
  padding: 50px 0;
  /*-----------------------------------------------
  登録情報のセクション
  ------------------------------------------------*/
  /*-----------------------------------------------
  各ページへのリンクセクション
  ------------------------------------------------*/
  /*-----------------------------------------------
  お知らせのセクション
  ------------------------------------------------*/
  /*-----------------------------------------------
  外部リンクのセクション
  ------------------------------------------------*/
  /*-----------------------------------------------
  ユーザー基本情報セクション
  ------------------------------------------------*/
}

@media screen and (max-width: 768px) {
  .myPageSec {
    padding: 25px 0;
  }
}

.myPageSec__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.myPageSec__kvArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 150px;
  background-image: url("../images/members/pc-kv01.jpg");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 100%;
  margin-bottom: 40px;
}

.myPageSec__pageTitle {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
}

.myPageSec__infoArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 165px;
}

@media screen and (max-width: 768px) {
  .myPageSec__infoArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    width: 100%;
  }
}

.myPageSec__planArea, .myPageSec__companyArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48.5%;
  background-color: white;
  border-radius: 16px;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .myPageSec__planArea, .myPageSec__companyArea {
    height: 160px;
    width: 100%;
    padding: 16px;
  }
  .myPageSec__planArea:first-child, .myPageSec__companyArea:first-child {
    margin-bottom: 16px;
  }
}

.myPageSec__imageWrapper img {
  width: 103px;
}

.myPageSec__textArea {
  width: 65%;
  padding: 8px;
}

@media screen and (max-width: 768px) {
  .myPageSec__textArea {
    padding: 4px;
  }
}

.myPageSec__textArea h3 {
  color: #333333;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  .myPageSec__textArea h3 {
    font-size: 1.2rem;
  }
}

.myPageSec__textArea p {
  font-size: 1.9rem;
}

@media screen and (max-width: 768px) {
  .myPageSec__textArea p {
    font-size: 1.4rem;
  }
}

.myPageSec__textArea .representative {
  margin-top: 16px;
  font-size: 1.3rem;
}

.myPageSec__textArea {
  position: relative;
}

.myPageSec__textArea .editArea {
  position: absolute;
  top: -8px;
  right: -14px;
}

@media screen and (max-width: 768px) {
  .myPageSec__textArea .editArea {
    right: 0;
  }
}

.myPageSec__textArea .editArea a {
  color: #005bac;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 4px;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .myPageSec__textArea .editArea a {
    font-size: 1rem;
  }
}

.myPageSec__textArea .editArea:hover {
  text-decoration: none;
}

.myPageSec__textArea .editArea::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: -2px;
  left: -20px;
  background-image: url(../images/members/pc-icon-editButton.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .myPageSec__textArea .editArea::before {
    height: 16px;
    width: 16px;
  }
}

.myPageSec__linkSection {
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  .myPageSec__linkSection {
    margin: 16px 0;
  }
}

.myPageSec__linkList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.myPageSec__linkItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% * 0.313);
}

.myPageSec__link {
  color: #333333;
  font-size: 1.9rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  padding: 20px 4px;
  border-radius: 16px;
  background-color: #fff;
  border: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  .myPageSec__link {
    font-size: 1.2rem;
  }
}

.myPageSec__link:hover {
  border: 2px solid #707070;
  opacity: 1;
}

.myPageSec__newsSection {
  background-color: white;
  border-radius: 16px;
  padding: 25px;
}

@media screen and (max-width: 768px) {
  .myPageSec__newsSection {
    height: auto;
    margin: 0;
  }
}

.myPageSec__newsSectionTitle {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
  margin-bottom: 35px;
  padding-left: 25px;
}

@media screen and (max-width: 768px) {
  .myPageSec__newsSectionTitle {
    font-size: 1.3rem;
  }
}

.myPageSec__newsItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 22px;
}

@media screen and (max-width: 768px) {
  .myPageSec__newsItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
    margin-bottom: 16px;
  }
}

.myPageSec__newsTitle {
  font-size: 1.3rem;
  font-weight: bold;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .myPageSec__newsTitle {
    margin: 0 0 8px;
  }
}

.myPageSec__newsDetail {
  color: #707070;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-decoration: underline;
}

.myPageSec__newsDetail:hover {
  text-decoration: none;
}

.myPageSec__linkArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 25px 0;
}

@media screen and (max-width: 768px) {
  .myPageSec__linkArea {
    margin-bottom: 0;
  }
}

.myPageSec__linkButton {
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #707070;
  border-radius: 8px;
  width: 100%;
  max-width: 205px;
  padding: 8px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .myPageSec__linkButton {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .myPageSec__linkButton {
    max-width: 160px;
    padding: 4px;
  }
}

.myPageSec__externalLinkSection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 16px;
  margin: 40px 0;
  padding: 20px 45px;
}

@media screen and (max-width: 768px) {
  .myPageSec__externalLinkSection {
    margin: 16px 0;
    padding: 20px 25px;
  }
}

.myPageSec__externalLinksText {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .myPageSec__externalLinksText {
    font-size: 1rem;
  }
}

.myPageSec__externalLinksText:hover {
  text-decoration: none;
  opacity: 1;
}

.myPageSec__externalLinksButton {
  color: #005bac;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 130px;
  text-align: center;
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .myPageSec__externalLinksButton {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .myPageSec__externalLinksButton {
    width: 70px;
  }
}

.myPageSec__userSection {
  border-radius: 16px;
  padding: 25px 25px 50px;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .myPageSec__userSection {
    padding: 25px;
  }
}

.myPageSec__userSectionTitle {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
  margin-bottom: 35px;
  padding-left: 25px;
}

@media screen and (max-width: 768px) {
  .myPageSec__userSectionTitle {
    font-size: 1.3rem;
  }
}

.myPageSec__userInfoList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 25px;
  border: 1px solid #707070;
}

@media screen and (max-width: 768px) {
  .myPageSec__userInfoList {
    padding: 0;
  }
}

.myPageSec__userInfoDT {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  width: 25%;
  background-color: #707070;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .myPageSec__userInfoDT {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .myPageSec__userInfoDT {
    width: 30%;
  }
}

.myPageSec__userInfoDT:last-of-type {
  border-bottom: none;
}

.myPageSec__userInfoDD {
  color: #707070;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #707070;
  padding: 20px 25px;
  width: 75%;
}

@media screen and (max-width: 768px) {
  .myPageSec__userInfoDD {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .myPageSec__userInfoDD {
    width: 70%;
    padding: 20px 10px;
  }
}

.myPageSec__userInfoDD:last-of-type {
  border-bottom: none;
}

.myPageSec__textBlue {
  color: #005bac;
}

.myPageSec a.myPageSec__textBlue {
  text-decoration: underline;
}

.myPageSec a.myPageSec__textBlue:hover {
  text-decoration: none;
  opacity: 1;
}

/*====================================================================
ログインページ
====================================================================*/
#wpmem_login {
  width: 500px;
  padding: 55px 60px;
  border-radius: 16px;
  -webkit-box-shadow: 3px 3px 12px lightgray;
          box-shadow: 3px 3px 12px lightgray;
  margin: 100px auto 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  #wpmem_login {
    width: 90%;
    max-width: 500px;
    padding: 40px 16px;
  }
}

#wpmem_login_form fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 !important;
}

#wpmem_login_form fieldset legend {
  color: #333333;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #wpmem_login_form fieldset legend {
    font-size: 1.3rem;
  }
}

#wpmem_login_form fieldset label {
  display: none;
}

#wpmem_login_form .div_text {
  width: 100% !important;
  max-width: 380px;
  position: relative;
  margin: 0 auto 15px !important;
}

#wpmem_login_form .div_text:last-child {
  margin-bottom: 20px !important;
}

#wpmem_login_form .loginIcon {
  position: absolute;
  top: 15px;
  left: 20px;
}

#wpmem_login_form .loginIcon .loginIconImg {
  height: 15px;
  width: 11px;
}

#wpmem_login_form #log,
#wpmem_login_form #pwd {
  height: 50px;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 8px;
  font-size: 12px;
  padding: 0 44px;
}

#wpmem_login_form .button_div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 380px !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 auto;
}

#wpmem_login_form .button_div #rememberme {
  height: 18px;
  width: 18px;
  color: red;
}

#wpmem_login_form .button_div label {
  color: #333333;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: block;
}

@media screen and (max-width: 768px) {
  #wpmem_login_form .button_div label {
    font-size: 1.3rem;
  }
}

#wpmem_login_form .button_div input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

#wpmem_login_form .buttons {
  height: 50px;
  width: 250px;
  color: white;
  font-size: 1.3rem;
  background-color: #707070;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#wpmem_login_form .buttons:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#wpmem_login_form .link-text {
  text-align: center !important;
  margin: 25px auto 0;
}

#wpmem_login_form .link-text a {
  color: #005bac;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  #wpmem_login_form .link-text a:hover {
    opacity: 0.6;
  }
}

#wpmem_login_form .link-text a:hover {
  text-decoration: none;
}

#wpmem_login_form .link-text .link-text-forgot {
  font-size: 12px;
}

/*====================================================================
ご登録情報（編集ページ）
====================================================================*/
body #wpmem_profile_form {
  padding: 80px 0 !important;
}

body #wpmem_profile_form fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 25px;
  font-size: 1.3rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset {
    width: auto;
    margin: 0 25px;
  }
}

body #wpmem_profile_form fieldset legend {
  color: #333333;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset legend {
    font-size: 1.3rem;
  }
}

body #wpmem_profile_form fieldset label {
  height: 60px;
  border-bottom: 1px solid #CADCEA;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35%;
  padding-left: 25px;
  color: #333333;
}

body #wpmem_profile_form fieldset label.textarea {
  height: auto;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset label {
    width: 35% !important;
    padding-left: 0;
    font-size: 12px;
  }
}

body #wpmem_profile_form fieldset .div_text {
  height: 60px;
  border-bottom: 1px solid #CADCEA;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65%;
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset .div_text {
    padding-right: 0;
  }
}

body #wpmem_profile_form fieldset .div_text input {
  color: #333333;
  width: 100%;
}

body #wpmem_profile_form fieldset .div_select {
  height: 60px;
  border-bottom: 1px solid #CADCEA;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65%;
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset .div_select {
    padding-right: 0;
  }
}

body #wpmem_profile_form fieldset .div_textarea {
  height: 60px;
  border-bottom: 1px solid #CADCEA;
  margin: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  width: 65%;
  padding-right: 25px;
  padding: 15px 25px 15px 0;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset .div_textarea {
    padding-right: 0;
  }
}

body #wpmem_profile_form fieldset .button_div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset .button_div {
    margin-top: 48px;
  }
}

body #wpmem_profile_form fieldset .button_div .buttons {
  height: 50px;
  width: 250px;
  color: white;
  font-size: 1.3rem;
  background-color: #707070;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body #wpmem_profile_form fieldset .button_div .buttons:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body #wpmem_profile_form fieldset .req-text {
  position: absolute;
  bottom: 80px;
  left: 40px;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset .req-text {
    bottom: 104px;
    left: 20px;
  }
}

body #wpmem_profile_form fieldset .blueTitleBox {
  width: 100%;
  padding: 25px 0 15px;
}

body #wpmem_profile_form fieldset .blueTitle {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 45px;
  background-color: #707070;
  border-radius: 8px;
  padding: 8px 25px;
  width: 100%;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  body #wpmem_profile_form fieldset .blueTitle {
    font-size: 1.3rem;
  }
}

/*====================================================================
パスワード再発行申請
====================================================================*/
#wpmem_pwdreset_form {
  margin: 40px 0 !important;
}

#wpmem_pwdreset_form fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 !important;
}

#wpmem_pwdreset_form fieldset legend {
  color: #333333;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #wpmem_pwdreset_form fieldset legend {
    font-size: 1.3rem;
  }
}

#wpmem_pwdreset_form fieldset label {
  color: #000000;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #wpmem_pwdreset_form fieldset label {
    font-size: 1.3rem;
  }
}

#wpmem_pwdreset_form body,
#wpmem_pwdreset_form .div_text {
  margin-bottom: 30px !important;
}

#wpmem_pwdreset_form #user {
  height: 50px;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 8px;
  font-size: 12px;
  padding: 0 20px;
}

#wpmem_pwdreset_form .button_div {
  width: auto !important;
  padding: 0 !important;
}

#wpmem_pwdreset_form .buttons {
  height: 50px;
  width: 250px;
  color: white;
  font-size: 1.3rem;
  background-color: #707070;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#wpmem_pwdreset_form .buttons:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body #wpmem_pwdreset_form .div_text {
  width: 100% !important;
}

/*====================================================================
パスワード変更画面
====================================================================*/
#wpmem_pwdchange_form fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 !important;
}

#wpmem_pwdchange_form fieldset legend {
  color: #333333;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #wpmem_pwdchange_form fieldset legend {
    font-size: 1.3rem;
  }
}

#wpmem_pwdchange_form fieldset label {
  display: none;
}

#wpmem_pwdchange_form .div_text {
  width: 100% !important;
  margin-bottom: 15px !important;
}

#wpmem_pwdchange_form .div_text:last-child {
  margin-bottom: 30px !important;
}

#wpmem_pwdchange_form #pass1,
#wpmem_pwdchange_form #pass2 {
  height: 50px;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 8px;
  font-size: 12px;
  padding: 0 20px;
}

#wpmem_pwdchange_form .button_div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto !important;
  text-align: center !important;
  padding: 0 !important;
  margin-top: 15px;
}

#wpmem_pwdchange_form .button_div #rememberme {
  height: 18px;
  width: 18px;
  color: red;
}

#wpmem_pwdchange_form .button_div label {
  color: #333333;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: block;
}

@media screen and (max-width: 768px) {
  #wpmem_pwdchange_form .button_div label {
    font-size: 1.3rem;
  }
}

#wpmem_pwdchange_form .button_div input[type=checkbox] {
  -webkit-appearance: checkbox;
}

#wpmem_pwdchange_form .buttons {
  height: 50px;
  width: 250px;
  color: white;
  font-size: 1.3rem;
  background-color: #707070;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#wpmem_pwdchange_form .buttons:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.is_page__password .wpmem_msg__ResetPass {
  display: block;
}

.is_page__password .wpmem_msg__ResetPass.under {
  margin-top: 40px;
}

.is_page__password .wpmem_msg__ResetPass__link {
  text-decoration: underline;
  color: #005bac;
}

.is_page__password .wpmem_msg__ResetPass__link:hover {
  text-decoration: none;
}

/*====================================================================
パスワード再発行申請／再設定の完了画面
====================================================================*/
.wpmem_msg {
  height: 400px;
  width: 500px !important;
  margin: 0 auto;
  -webkit-box-shadow: 3px 3px 12px lightgray;
          box-shadow: 3px 3px 12px lightgray;
  background-color: #fff !important;
  border-radius: 16px !important;
  padding-top: 118px !important;
  margin-top: 100px;
  border: none !important;
}

.wpmem_msg p {
  color: #000000;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.83;
  letter-spacing: 0.05em;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .wpmem_msg p {
    font-size: 1.3rem;
  }
}

.wpmem_msg p::before {
  content: '申請完了';
  color: #005bac;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .wpmem_msg p::before {
    font-size: 1.3rem;
  }
}

.wpmem_msg p::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -180px;
  left: 50%;
  height: 150px;
  width: 150px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../images/members/pc-icon-resetPwRequest.png);
  background-size: contain;
  background-repeat: no-repeat;
}

#wpmem_msg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 500px;
}

#wpmem_msg p {
  font-size: 18px;
}

.is_page__login #wpmem_msg {
  display: block;
  padding: 55px 60px;
  border-radius: 16px;
  width: 500px;
  height: auto;
  margin: 100px auto 0;
}

.is_page__login #wpmem_msg p {
  text-align: center;
  line-height: 1.6em;
}

.is_page__login #wpmem_msg a {
  text-decoration: underline;
  color: #005bac;
  font-size: 12px;
  white-space: pre;
}

.is_page__login #wpmem_msg a::before {
  content: "\A";
}

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

html {
  font-size: 62.5%;
}

body {
  background: rgba(237, 237, 237, 0.04);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover {
  opacity: 0.7;
}

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

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

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  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: -ms-flexbox;
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}

/*-----------------------------------------------
サイトコンテンツ
------------------------------------------------*/
.siteContent {
  min-height: calc(100vh + 85px);
  padding-top: 90px;
  background: #f2f3f7;
}

@media screen and (max-width: 768px) {
  .siteContent {
    min-height: calc(100vh - 50px);
    padding-top: 50px;
  }
}

/*-----------------------------------------------
WPツールバー
------------------------------------------------*/
@media screen and (max-width: 600px) {
  .is_login_user #wpadminbar {
    position: fixed;
  }
}

/*====================================================================
topPageFvSec
====================================================================*/
.topPageCont {
  padding: 50px 0;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.topPageCont__wrap {
  background-color: white;
  border-radius: 16px;
  padding: 25px;
}

.topPageCont__read__txt {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .05em;
}

.topPageCont__read__txt :first-child {
  margin-top: 0;
}

.topPageCont__lowerWrap {
  margin-top: 50px;
}

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

.topPageCont__lowerWrap__block {
  width: 48%;
  position: relative;
  padding-bottom: 100px;
}

.topPageCont__lowerWrap__title {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: .05em;
  text-align: center;
}

.topPageCont__lowerWrap__text {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .05em;
}

.topPageCont__lowerWrap__button {
  position: absolute;
  bottom: 25px;
  right: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  padding: 15px 0;
  width: 300px;
  border-radius: 10px;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.topPageCont__lowerWrap__button:hover {
  background: #fff;
  color: #333;
  opacity: 1;
}

.is_page__password .pageSection,
.is_page__login .pageSection,
.is_page__edit .pageSection {
  border-radius: 0;
  width: auto;
  max-width: 100%;
  margin: 0 0;
  padding: 0 0;
  background-color: initial;
}

.pageSection {
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 25px 25px 50px;
  background-color: white;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.pageSection h2 {
  margin-top: 25px;
  padding: 8px 25px;
  border-bottom: 1px solid #333;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}

.pageSection h3 {
  margin-top: 25px;
  font-weight: bold;
  font-size: 17px;
  padding: 5px 25px;
  border-left: 4px solid #333;
  line-height: 1.5;
}

.pageSection h4 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}

.pageSection h5 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
}

.pageSection h6 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.6;
}

.pageSection p {
  margin-top: 15px;
}

.pageSection hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border: 1px solid #ccc;
}

.pageSection blockquote {
  background: #dddddd;
  padding: 15px 20px;
}

.pageSection blockquote p {
  color: #555;
}

.pageSection blockquote p::first-child {
  margin-top: 0;
}

.pageSection a {
  text-decoration: underline;
  color: #005bac;
}

.pageSection a:hover {
  text-decoration: none;
  opacity: 1;
}

.pageSection strong {
  font-weight: bold;
}

.pageSection i {
  font-style: italic;
}

.pageSection sup {
  font-size: 0.6rem;
}

.pageSection sub {
  font-size: 0.6rem;
}

.pageSection ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style: disc;
}

.pageSection ol {
  margin-top: 20px;
  padding-left: 20px;
  list-style: decimal;
}

.pageSection table {
  margin-top: 20px;
  border: 1px solid #333;
}

.pageSection table th {
  border: 1px solid #333;
  padding: 10px;
}

.pageSection table td {
  border: 1px solid #333;
  padding: 10px;
}

.pageSection img {
  width: auto;
  max-width: 100%;
}
/*# sourceMappingURL=style.css.map */