@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */
html, body {
  height: 100%;
}

body {
  background: #f0f0f0;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}
a:hover {
  opacity: 0.5;
}

img {
  width: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}

ul {
  list-style-type: none;
}

.flex--container {
  display: flex;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.ph, .thumb, .keyvisual {
  position: relative;
  line-height: 0;
}

.ph::after, .thumb::after, .keyvisual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* loading
------------------------------ */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background: #ffb50c;
  background: linear-gradient(180deg, #ffb50c 0%, #fe4a26 35%, #d652ac 70%, #601bb4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}
.loading::before {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0.6;
}
.loading .loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 400px;
  position: relative;
  z-index: 2;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
body:not(.page--home) .loading {
  display: none;
}

/* header
------------------------------ */
header {
  width: calc(100% - 60px);
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
  transition: all 0.3s;
}
header.fixed {
  background: #fff;
  border-radius: 0 0 40px 40px;
  padding: 0 30px;
}

header .langtop {
  position: relative;
  width: 400px;
  padding-right: 150px;
}

.langBar {
  width: 100px;
  padding-left: 1em;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: absolute;
  top: 15%;
  right: 0;
  font-size: 14px;
  transition: 0.3s;
  font-weight: normal;
}
.langBar .langSelector .easy-select-box:nth-of-type(2) {
  display: none;
}
.langBar .esb-item {
  padding: 0.2em 0;
  cursor: pointer;
  text-align: right;
}
.langBar .esb-displayer {
  padding: 0.3em 1em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2509803922);
  text-align: right;
  cursor: pointer;
}
.langBar .esb-dropdown {
  padding: 0 0.5em;
  background: #fff;
  color: #000;
  line-height: 1.8em;
}
.langBar select {
  padding: 1em;
  border-right: solid 1px #555;
  background: none;
  color: #fff;
  font-family: din-2014, sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.langBar select option {
  color: #000;
}

.fixed .langBar {
  right: 30px;
}

.langSelector .easy-select-box {
  width: 100% !important;
}
.langSelector .easy-select-box .esb-displayer {
  padding: 0.2em 0.5em;
}
.langSelector .easy-select-box .esb-dropdown {
  width: 100% !important;
  background: #fafafa;
  color: #000;
  line-height: 1.8em;
  text-align: center;
}

/* Contents共通
------------------------------ */
h2.section-tit {
  background-color: #f0f0f0;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
  border-radius: 50px;
  margin-bottom: 30px;
}

.content--wrap {
  transition: all 0.3s;
  filter: none;
}
.content--wrap .keyvisual {
  width: 100%;
  height: 92vh;
  padding: 0px 30px 30px 30px;
  position: relative;
  margin-top: 8vh;
}
.content--wrap .keyvisual .logo {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
.content--wrap .keyvisual .logo img {
  position: absolute;
  max-width: 600px;
  width: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content--wrap .section--list p {
  line-height: 1.5;
}
.content--wrap .section--list h2.section-tit {
  line-height: 1.4;
}

body:not(.page--home) .content--main {
  background: #fff;
  width: calc(100% - 60px);
  height: 100%;
  padding: 60px;
  border-radius: 40px;
  margin-top: 8.5vh;
  margin-inline: auto;
  margin-bottom: 120px;
}
body:not(.page--home) .content--main section {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
}

.section--wrap {
  background: #fff;
  width: calc(100% - 60px);
  height: 100%;
  padding: 60px;
  border-radius: 40px;
  margin-inline: auto;
  margin-bottom: 120px;
}
.section--wrap section {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  margin-bottom: 70px;
  transform: translateY(20px);
  transition: all 1.5s;
  opacity: 0;
}
.section--wrap section.started {
  transform: translateY(0px);
  opacity: 1;
}
.section--wrap section:not(:first-child) {
  padding-top: 60px;
}
.section--wrap section .container .tit {
  line-height: 1.8;
}
.section--wrap section .container .text {
  line-height: 1.8;
}
.section--wrap section .container .text.center {
  text-align: center;
}
.section--wrap ul.list {
  border-top: #dedede solid 1px;
}
.section--wrap ul.list li {
  font-size: 14px;
  padding: 20px 0;
  border-bottom: #dedede solid 1px;
}

body.page--home .left_bnr {
  position: fixed;
  bottom: 2vh;
  z-index: 8;
  opacity: 1;
  transform: translate(0, 0);
  left: 2%;
}
body.page--home .left_bnr a {
  display: block;
  background: #f9f9f9;
  box-shadow: 0px 2px 5px #c5c5c5;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
}
body.page--home .left_bnr a:nth-of-type(2) {
  background-color: #ffffff;
}

/* section--business
------------------------------ */
.section--business .text {
  margin-bottom: 40px;
}
.section--business .business--list li {
  margin-bottom: 10px;
}
.section--business .business--list li span {
  font-weight: bold;
  opacity: 0.4;
  margin-right: 10px;
}

/* section--chart
------------------------------ */
.section--chart .block {
  margin-bottom: 40px;
}
.section--chart .block h3 {
  border: #dedede solid 2px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  border-radius: 50px;
  margin-bottom: 40px;
}
.section--chart .block table {
  width: 100%;
}
.section--chart .block table thead {
  background: #f0f0f0;
}
.section--chart .block table th, .section--chart .block table td {
  border: 1px solid #dedede;
  padding: 10px;
}
.section--chart .block img {
  display: block;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}

/* section--member
------------------------------ */
.section--member ul.list li {
  line-height: 1.5;
}

/* fixed-banner
------------------------------ */
.fixed-banner {
  width: 90%;
  margin: 5em auto 1em;
  max-width: 300px;
}
.fixed-banner a {
  display: block;
  padding: 1em 1.5em;
  border: solid 1px #222222;
  border-radius: 0.4em;
  background-color: #ffffff;
}

/* section--contact
------------------------------ */
.section--contact .btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.section--contact .btn a {
  display: block;
  background: #000;
  color: #fff;
  border-radius: 120px;
  padding: 1em 2em;
}

/* info共通
------------------------------ */
ul.list--information {
  margin-bottom: 1em;
}
ul.list--information li {
  font-size: 14px;
  border-bottom: #dedede solid 1px;
  padding: 20px 0;
}
ul.list--information li:first-child {
  border-top: 1px solid #dedede;
}
ul.list--information li a {
  display: block;
  font-size: 14px;
}
ul.list--information li a p {
  line-height: 1.8;
}
ul.list--information .info-wrap {
  color: #888;
  font-size: 13px;
  margin-top: 10px;
}
ul.list--information .category {
  display: none;
}

.list__more {
  text-align: right;
}
.list__more a {
  display: inline-block;
  font-size: 14px;
  margin-top: 1em;
}

.section--list .block--pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  line-height: 1.5;
}
.section--list .block--pager li {
  position: relative;
  width: 20px;
  margin: 0 5px;
}
.section--list .block--pager li span:not(.arrow) {
  font-size: 18px;
  padding: 3px;
}
.section--list .block--pager li.pager__item--current {
  color: #e62631;
}
.section--list .block--pager a {
  display: block;
  width: 20px;
  position: relative;
  font-size: 18px;
  padding: 3px;
}
.section--list .block--pager a span.arrow::before {
  border-color: #000 !important;
}
.section--list .block--pager span.arrow {
  display: block;
  width: 20px;
  height: 20px;
}
.section--list .block--pager span.arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  position: absolute;
  top: calc(50% - 4px);
}
.section--list .block--pager li.pager__item--newer .arrow::before {
  transform: rotate(-45deg);
  left: calc(50% - 4px);
}
.section--list .block--pager li.pager__item--older .arrow::before {
  transform: rotate(135deg);
  right: calc(50% - 3px);
}

/* info詳細
------------------------------ */
.page--info ul.block--category {
  display: none;
}
.page--info .section--detail .txt {
  line-height: 1.5 !important;
}
.page--info .section--detail p.tit {
  line-height: 1.5;
}
.page--info .section--detail p.category {
  display: none;
}
.page--info .section--detail time.date {
  display: inline-block;
  color: #888;
  font-size: 14px;
  margin-top: 1em;
  margin-bottom: 2.5em;
}
.page--info .section--detail .news--bottom {
  justify-content: space-between;
  align-items: center;
  margin-top: 3em;
}
.page--info .section--detail .news--bottom ul.block--share {
  display: flex;
  align-items: center;
}
.page--info .section--detail .news--bottom ul.block--share li {
  margin-left: 8px;
}
.page--info .section--detail .news--bottom ul.block--share li i {
  font-size: 20px;
}

/* page--support
------------------------------ */
.page--support .section--detail h2.section-tit {
  background-color: #f0f0f0;
  text-align: center;
  border-radius: 50px;
  line-height: 1.4;
  padding: 20px;
  margin-bottom: 30px;
}
.page--support .section--detail dl {
  line-height: 1.5;
}
.page--support .section--detail dl dt {
  font-weight: bold;
  margin-bottom: 0.7em;
}
.page--support .section--detail dl dd {
  margin-bottom: 3em;
}
.page--support .section--detail dl ul li + li {
  padding-top: 0.5em;
}

/* page--contact
------------------------------ */
.page--contact #wrapper {
  width: 100%;
}
.page--contact #container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}
.page--contact h2 {
  text-align: center;
  border-radius: 50px;
  padding: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  border: 1px solid;
}

/* pdf
------------------------------ */
div#newsletter {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
}
div#newsletter .pageTit {
  background-color: #f0f0f0;
  text-align: center;
  padding: 20px;
  border-radius: 50px;
  margin-bottom: 30px;
}
div#newsletter p {
  line-height: 1.5;
}
div#newsletter p.date {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
}
div#newsletter ul.categoryList {
  margin-bottom: 20px;
}
div#newsletter ul.categoryList li {
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
}
div#newsletter ul.categoryList li:first-child {
  border-top: 1px solid #dedede;
}

div#book {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
}
div#book h2.tit {
  background-color: #f0f0f0;
  text-align: center;
  border-radius: 50px;
  line-height: 1.4;
  padding: 20px;
  margin-bottom: 30px;
}
div#book p.thumb {
  width: 30%;
  max-width: 150px;
  padding-right: 10px;
}
div#book ul {
  margin-bottom: 20px;
}
div#book ul li {
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
}
div#book ul li:first-child {
  border-top: 1px solid #dedede;
}
div#book ul li a {
  display: flex;
  align-items: center;
}

/* footer
------------------------------ */
footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 850px;
  width: 70%;
  margin-inline: auto;
}
footer .footer--logo {
  width: 200px;
  margin-right: 40px;
}
footer .footer--list {
  font-size: 14px;
  display: flex;
  max-width: calc(100% - 240px);
}
footer .footer--list .block {
  margin-bottom: 10px;
}
footer .footer--list .block a {
  display: block;
  line-height: 1.4;
  margin-right: 20px;
  margin-bottom: 10px;
}
footer .copyright {
  width: 100%;
  color: #888;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  border-top: #dedede solid 1px;
  padding-top: 30px;
  margin: 30px 0 80px;
  margin-bottom: 80px;
}

/* error
------------------------------ */
.page--error .section--detail p {
  line-height: 1.5;
}
.page--error .section--detail p.btn {
  text-align: center;
  margin-top: 2em;
}
.page--error .section--detail p.btn a.btn--sub {
  display: inline-block;
  background: #f0f0f0;
  padding: 1em 2em;
  border-radius: 30px;
}

/** MAJ
-------------------------------*/
body.page--maj .content--main {
  color: #707070;
  font-family: "yu-gothic-pr6n", sans-serif;
  line-height: 1.6em;
}
body.page--maj h2,
body.page--maj h3 {
  padding: 0.5em 0;
  margin-bottom: 1em;
  position: relative;
  line-height: 1.6em;
}
body.page--maj h2:after,
body.page--maj h3:after {
  content: "";
  width: 80%;
  height: 1px;
  background: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}
body.page--maj h2 span {
  position: absolute;
  font-size: 13px;
  display: inline-block;
  bottom: -0.5em;
  right: 0;
  font-weight: normal;
  line-height: 1em;
  background: #fff;
  z-index: 1;
  padding-left: 1em;
}
body.page--maj h3 {
  padding-left: 1em;
}
body.page--maj h3:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #707070;
  position: absolute;
  top: 1.1em;
  left: 0.25em;
}
body.page--maj .blc {
  padding: 2em 0;
}
body.page--maj .blc:first-child {
  padding: 0 0 2em;
}
body.page--maj .logoara {
  width: 700px;
  max-width: 85%;
  margin: 2em auto;
}
body.page--maj .txt.flx {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body.page--maj .txt.flx dl {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
body.page--maj .txt.flx .imgara {
  width: 35%;
}
body.page--maj .txt.flx .supporters {
  width: 100%;
  margin-top: 0.5em;
}
body.page--maj .txt.flx .supporters em {
  font-size: 0.8em;
}
body.page--maj .txt dl {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5em 0;
}
body.page--maj .txt dl dt {
  width: 8em;
  padding: 0.5em;
}
body.page--maj .txt dl dd {
  width: calc(100% - 8em);
  padding: 0.5em;
}
body.page--maj .txt dl dd em {
  font-size: 0.75em;
}
body.page--maj .movara {
  margin: 1em 0;
}
body.page--maj .movara .player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
body.page--maj .movara .player iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
body.page--maj .location ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body.page--maj .location ul:after {
  content: "";
  width: calc(50% - 0.25em);
}
body.page--maj .location ul li {
  width: calc(50% - 0.25em);
}
body.page--maj .location p {
  text-align: right;
  margin-top: 0.1em;
  font-size: 0.85em;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  /* header
  ------------------------------ */
  header .drawer__btn {
    display: none;
  }
  header .menu--wrap {
    display: flex;
    height: 8vh;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
  }
  header .menu--wrap h1 {
    width: 250px;
  }
  header ul.menu--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
    height: 80%;
    text-align: right;
    margin-left: 1em;
    transition: all 0.3s;
  }
  header ul.menu--list li {
    font-size: 14px;
    font-weight: bold;
    margin-left: 1.5em;
  }
  header ul.menu--list li:last-child {
    margin-right: 0;
  }
  header ul.menu--list li a {
    white-space: nowrap;
  }
  /* Contents共通
  ------------------------------ */
  .section--wrap ul.list {
    border-top: #dedede solid 1px;
  }
  .section--wrap ul.list li {
    display: flex;
    font-size: 14px;
  }
  .section--wrap ul.list li .tit {
    width: 30%;
    max-width: 140px;
    padding-right: 20px;
  }
  /* top
  ------------------------------ */
  .section--business .business--list li {
    display: flex;
    line-height: 1.7em;
  }
  body.page--home .left_bnr {
    width: 12%;
    max-width: 140px;
    transform: translateY(0);
  }
  body.page--home .left_bnr a {
    margin-top: 0.8em;
    padding: 10px 18px;
    transition: transform 0.3s ease;
  }
  body.page--home .left_bnr a:hover {
    opacity: 1;
    transform: translateX(10px);
  }
  /* info共通
  ------------------------------ */
  ul.list--information li a {
    display: flex;
    align-items: center;
  }
  ul.list--information li a p.date {
    width: 30%;
    max-width: 140px;
    padding-right: 20px;
  }
  /* section--chart
  ------------------------------ */
  .section--chart table {
    font-size: 14px;
  }
  /* section--member
  ------------------------------ */
  .section--member ul.list li {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section--member ul.list li p {
    width: 50%;
  }
  .section--member ul.list li a {
    width: 50%;
    padding-left: 20px;
    word-break: break-all;
  }
  /* fixed-banner
  ------------------------------ */
  .fixed-banner a {
    padding: 1em 2.2em;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  body {
    font-size: 14px;
  }
  /* loading
  ------------------------------ */
  .loading .loading__logo {
    width: 70%;
  }
  /* header
  ------------------------------ */
  header {
    width: 100%;
  }
  header .drawer__btn {
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 2;
    margin: auto;
    width: 2em;
    display: inline-block;
    transition: all, 1s;
    padding: 0.675em 0;
    overflow: hidden;
    text-align: left;
    text-transform: capitalize;
  }
  header .drawer__btn:hover:not(.actived) span::before {
    transform: translateY(-0.625em);
  }
  header .drawer__btn:hover:not(.actived) span::after {
    transform: translateY(0.625em);
  }
  header .drawer__btn span {
    display: block;
    position: relative;
    height: 2px;
    width: 2em;
    background-color: #000;
  }
  header .drawer__btn span::before, header .drawer__btn span::after {
    content: "";
    display: block;
    background-color: #000;
    width: 2em;
    height: 2px;
    position: absolute;
    bottom: 0;
    transform-origin: 50% 50%;
    transition: all, 0.2s;
  }
  header .drawer__btn span::before {
    transform: translateY(-0.5em);
  }
  header .drawer__btn span::after {
    transform: translateY(0.5em);
  }
  header .drawer__btn.actived {
    overflow: visible;
  }
  header .drawer__btn.actived span {
    background-color: transparent;
  }
  header .drawer__btn.actived span::before {
    animation: top-bar 1s;
    animation-fill-mode: forwards;
    background-color: #000;
  }
  header .drawer__btn.actived span::after {
    animation: bottom-bar 1s;
    animation-fill-mode: forwards;
    background-color: #000;
  }
  header .menu--wrap h1 {
    width: 200px;
    position: fixed;
    left: 30px;
    top: 30px;
    z-index: 10;
  }
  header .menu--list {
    width: 100%;
    height: 100vh;
    overflow: scroll;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
    padding-top: 90px;
  }
  header .menu--list li {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
    text-align: center;
  }
  header .menu--list li a {
    color: #000;
    font-size: 18px;
    font-weight: 600;
  }
  .langBar {
    z-index: 2;
  }
  /* .page--home  */
  .langBar {
    /* right: 30px; */
    z-index: 1;
    position: relative;
    top: calc(30px - 0.2em);
    left: 30px;
    padding-left: 0;
    text-align: left;
  }
  header .langtop {
    position: fixed;
    z-index: 2;
  }
  /* body:not(.page--home){
  	.langtop{
  		position:static;
  		.langBar{
  			right:30px;
  			margin-top:4em;
  		}
  	}
  } */
  /*
  body.page--home .left_bnr {
  	width: 34%;
  	left: 3%;
  	bottom: 3vh;
  	max-width: 120px;
  	a {
  		padding: 10px 16px;
  	}
  }
  */
  body.page--home .left_bnr {
    display: flex;
    justify-content: space-between;
    left: 3%;
    bottom: 3vh;
    width: 94%;
  }
  body.page--home .left_bnr a {
    width: 34%;
    max-width: 120px;
    padding: 10px 16px;
  }
  .menu-open .menu--list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .menu-open .content--wrap {
    filter: blur(30px);
  }
  @keyframes top-bar {
    50% {
      transform: translateY(0);
    }
    100% {
      transform: rotate(45deg) translateY(0);
    }
  }
  @keyframes bottom-bar {
    50% {
      transform: translateY(0);
    }
    100% {
      transform: rotate(-45deg) translateY(0);
    }
  }
  /* .page--home  */
  .menu--wrap h1 {
    display: none;
  }
  /* contents共通
  ------------------------------ */
  .section--wrap {
    width: calc(100% - 40px);
    padding: 5%;
  }
  body:not(.page--home) .content--main {
    width: calc(100% - 40px);
    margin-top: 80px;
    padding: 5%;
  }
  /* KV
  ------------------------------ */
  .keyvisual {
    height: 100vh !important;
    padding: 20px !important;
    margin-top: 0 !important;
  }
  /* section--business
  ------------------------------ */
  .section--business .business--list li {
    padding-left: 25px;
    text-indent: -25px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: #dedede solid 1px;
  }
  /* section--chart
  ------------------------------ */
  .section--chart .block table {
    /* border:solid 1px #dedede; */
    font-size: 12px;
    /* td {
    	line-height: 1.5;
    	&:nth-child(3n) {
    		width: 45%;
    	}
    } */
  }
  .section--chart .block table * {
    display: block;
  }
  .section--chart .block table thead tr {
    text-align: left;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 40% 1fr;
    border-bottom: solid 1px #dedede;
  }
  .section--chart .block table thead tr th {
    border: none;
    padding: 7px;
  }
  .section--chart .block table thead tr th:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/2;
    font-size: 11px;
  }
  .section--chart .block table thead tr th:nth-child(2) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .section--chart .block table thead tr th:nth-child(3) {
    grid-row: 2/3;
    grid-column: 2/3;
    padding: 0 7px 7px 7px;
    font-size: 11px;
  }
  .section--chart .block table tbody tr {
    border-bottom: solid 1px #dedede;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 40% 1fr;
  }
  .section--chart .block table tbody tr td {
    border: none;
    padding: 7px;
  }
  .section--chart .block table tbody tr td:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/2;
    font-size: 11px;
  }
  .section--chart .block table tbody tr td:nth-child(2) {
    grid-row: 1/2;
    grid-column: 2/3;
    letter-spacing: 0.1em;
  }
  .section--chart .block table tbody tr td:nth-child(3) {
    grid-row: 2/3;
    grid-column: 2/3;
    padding: 0 7px 7px 7px;
    line-height: 1.5em;
    font-size: 11px;
  }
  /* page--info
  ------------------------------ */
  .page--info.page--detail .content--main {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .page--info.page--detail .content--main .section--detail p.tit {
    font-size: 15px;
  }
  /* page--privacy
  ------------------------------ */
  .page--privacy .content--main {
    padding-bottom: 40px !important;
  }
  /* page--maj
  ------------------------------ */
  body.page--maj h2 {
    font-size: 4vw;
  }
  body.page--maj h3 {
    font-size: 3.5vw;
  }
  body.page--maj .txt.flx dl,
  body.page--maj .txt.flx .imgara {
    width: 100%;
  }
  body.page--maj .txt.flx dl {
    margin-bottom: 1em;
  }
  body.page--maj .location ul li {
    width: 100%;
  }
  /* footer
  ------------------------------ */
  footer {
    max-width: 400px;
  }
  footer .footer--logo {
    width: 100%;
    max-width: none;
    margin: 0 0 30px;
  }
  footer .footer--list {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  footer .footer--list .block {
    margin-bottom: 0;
  }
  footer .footer--list .block a {
    margin-right: 0;
    margin-bottom: 20px;
  }
  footer .copyright {
    margin-top: 20px;
    padding: 20px;
  }
  /* error
  ------------------------------ */
  .page--error .content--main {
    padding: 30px 5% !important;
  }
}