@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&display=swap");
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

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

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

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

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          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;
}

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

blockquote,
q {
  quotes: none;
}

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

/*==================================================================================================
	ヘッダー
==================================================================================================*/
header {
  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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1em 2em;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
header nav {
  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-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
header nav .closeMenu {
  display: none;
}
header nav .headNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header nav .headNav__item {
  margin-right: 1.5em;
  position: relative;
  padding-bottom: 1em;
}
header nav .headNav__item:last-child {
  margin-right: 0;
}
header nav .headNav__item .link {
  display: block;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  font-size: 90%;
  cursor: pointer;
}
header nav .headNav__item > a:hover {
  color: yellow;
}
header nav .headNav__item:nth-child(1) .childWrap {
  left: 0;
  margin-left: 0;
}
header nav .headNav__item:nth-child(4) .childWrap {
  left: auto;
  right: 12em;
  margin-left: 0;
}
header nav .headNav .childWrap {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -12em;
  width: 100%;
}
header nav .headNav .childWrap__inner {
  background: #FFF;
  padding: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 24em;
}
header nav .headNav .childWrap__inner.-col2 {
  min-width: 38em;
}
header nav .headNav .childWrap__inner.-col2 .childNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: grid;
  grid-template-rows: 3em 3em 3em;
  grid-template-columns: 50% 50%;
  grid-auto-flow: column;
}
header nav .headNav .childWrap__inner.-col2 .childNav__item {
  width: auto;
}
header nav .headNav .childWrap .thumb {
  width: 140px;
  margin-right: 1em;
}
header nav .headNav .childWrap .childNav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-top: #000 1px solid;
}
header nav .headNav .childWrap .childNav__item:first-child {
  border-top: none;
}
header nav .headNav .childWrap .childNav__item a {
  display: block;
  padding: 0.8em 0.1em;
  color: #000;
  text-decoration: none;
  font-size: 90%;
}
header nav .headNav .childWrap .childNav__item a:hover {
  color: #EC6C00;
}
header nav .headContact {
  margin-bottom: 0.6em;
}
header nav .headContact .btn {
  display: block;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
  border: #FFF 1px solid;
  color: #FFF;
  padding: 0.6em 1em;
  font-size: 90%;
}
header nav .headContact .btn:hover {
  background: #EC6C00;
  border-color: #EC6C00;
}
header .hamburgerMenu {
  display: none;
}
@media screen and (max-width: 1160px) {
  header {
    padding: 1em;
  }
  header .logo {
    max-width: 300px;
    width: 40%;
  }
  header nav .headNav__item {
    margin-right: 1em;
  }
  header nav .headNav__item .link {
    font-size: 90%;
  }
  header nav .headContact .btn {
    font-size: 90%;
    padding: 1em;
  }
}
@media screen and (max-width: 900px) {
  header nav {
    position: fixed;
    top: 0;
    right: -600px;
    width: 80%;
    max-width: 400px;
    background: #FFF;
    height: 100vh;
    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;
    padding: 5vw;
    z-index: 10;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: -5px 5px 20px -5px rgba(0, 0, 0, 0.4);
            box-shadow: -5px 5px 20px -5px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }
  header nav.-open {
    right: -1px;
  }
  header nav .closeMenu {
    display: block;
    margin-left: auto;
    text-align: right;
  }
  header nav .closeMenu__btn {
    cursor: pointer;
    width: 1.6em;
    display: inline-block;
  }
  header nav .headNav {
    display: block;
    width: 100%;
  }
  header nav .headNav__item {
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: #000 1px solid;
    padding-bottom: 0;
  }
  header nav .headNav__item:last-child {
    margin-right: 0;
  }
  header nav .headNav__item .link {
    padding: 1em;
    color: #000;
    font-size: 95%;
  }
  header nav .headNav__item .childWrap {
    position: static;
    margin-left: 0;
    width: 100%;
  }
  header nav .headNav__item .childWrap__inner {
    padding: 0 1em 0.5em;
    min-width: 0;
    display: block;
  }
  header nav .headNav__item .childWrap__inner.-col2 {
    display: block;
  }
  header nav .headNav__item .childWrap__inner.-col2 .childNav {
    display: block;
  }
  header nav .headNav__item .childWrap .thumb {
    display: none;
  }
  header nav .headNav__item .childWrap .childNav {
    border-top: none;
  }
  header nav .headNav__item .childWrap .childNav__item {
    border-top: #ccc 1px solid;
  }
  header nav .headNav__item .childWrap .childNav__item a {
    font-size: 86%;
  }
  header nav .headContact {
    margin-left: 0;
    margin-top: 2em;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  header nav .headContact .btn {
    text-align: center;
    max-width: 20em;
    padding: 1.5em;
    margin-left: auto;
    margin-right: auto;
    border-color: #000;
    color: #000;
  }
  header .hamburgerMenu {
    display: block;
    position: absolute;
    right: 1em;
    top: 1em;
    max-width: 40px;
    width: 9%;
    cursor: pointer;
  }
}

/*==================================================================================================
	フッター
==================================================================================================*/
footer {
  position: relative;
  background: rgb(251, 213, 139);
  background: -webkit-gradient(linear, left top, right top, from(rgb(251, 213, 139)), to(rgb(236, 108, 0)));
  background: -webkit-linear-gradient(left, rgb(251, 213, 139) 0%, rgb(236, 108, 0) 100%);
  background: linear-gradient(90deg, rgb(251, 213, 139) 0%, rgb(236, 108, 0) 100%);
  padding: 3em 0;
  margin-top: 10vw;
  color: #FFF;
}
footer:before {
  content: "";
  width: 100%;
  height: 15vw;
  background: url("../img/common/footer-bg.png") no-repeat;
  background-position: center bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -15vw;
}
footer .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .inner > * {
  width: 50%;
}
footer .inner > *:first-child {
  border-right: #FFF 1px solid;
}
@media screen and (max-width: 767px) {
  footer .inner {
    display: block;
  }
  footer .inner > * {
    width: 100%;
  }
  footer .inner > *:first-child {
    border-right: none;
  }
}
footer .footerLeft {
  text-align: right;
  padding-right: 3vw;
}
footer .footerLeft__logo {
  margin-bottom: 1.6em;
}
footer .footerLeft p {
  font-size: 90%;
}
footer .footerLeft p a {
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  footer .footerLeft {
    text-align: center;
    margin-bottom: 2em;
  }
  footer .footerLeft__logo {
    margin-bottom: 1.6em;
  }
  footer .footerLeft__logo img {
    width: 80%;
    max-width: 340px;
  }
}
footer .footerRight {
  padding-left: 3vw;
  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;
}
footer .footerRight__link .item {
  margin-bottom: 0.2em;
  line-height: 1.6;
}
footer .footerRight__link .item:last-child {
  margin-bottom: 0;
}
footer .footerRight__link .item a {
  color: #FFF;
  text-decoration: none;
}
footer .footerRight__link .item a:hover {
  color: yellow;
}
footer .footerRight__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: #FFF 1px solid;
  color: #FFF;
  text-decoration: none;
  height: 100%;
  padding: 3em;
}
footer .footerRight__btn a:hover {
  background: #E50012;
  border-color: #E50012;
}
@media screen and (max-width: 767px) {
  footer .footerRight {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  footer .footerRight__link {
    margin-right: 3em;
  }
}
@media screen and (max-width: 480px) {
  footer .footerRight {
    display: block;
  }
  footer .footerRight__link {
    margin-right: 0;
  }
  footer .footerRight__link .item {
    border-top: rgba(255, 255, 255, 0.5) 1px solid;
  }
  footer .footerRight__link .item a {
    padding: 0.5em;
    display: block;
  }
  footer .footerRight__btn {
    margin-top: 1em;
  }
  footer .footerRight__btn a {
    padding: 1em;
  }
  footer .footerRight__btn a br {
    display: none;
  }
}
footer .copy {
  font-size: 80%;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 3em;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
body.noScrolled {
  overflow: hidden;
}
@media screen and (max-width: 860px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 1.3rem;
  }
}
body a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #3A7DC0;
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
  opacity: 0.8;
}
body img {
  height: auto;
}
body .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  body .inner {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media screen and (max-width: 767px) {
  body .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
body .-center {
  text-align: center;
}
body .strong {
  font-weight: bold;
  font-size: 105%;
}
body .telLink {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
body .telLink _:-ms-fullscreen,
body .telLink :root .selector {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  body .telLink {
    pointer-events: auto;
    letter-spacing: 0.02em;
  }
}
body .spShow {
  display: none;
}
@media screen and (max-width: 767px) {
  body .spShow {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  body .pcShow {
    display: none;
  }
}
body .indentText {
  text-indent: -1em;
  padding-left: 1em;
}
body .readText {
  line-height: 2.4;
}
body .smallText {
  font-size: 70%;
}
body .-right {
  text-align: right;
}

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

.wrap {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/*==================================================================================================
	共通 Common
==================================================================================================*/
.lContainer .mContainer {
  padding: 5em 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lContainer .mContainer {
    padding: 4em 0;
  }
}
@media screen and (max-width: 480px) {
  .lContainer .mContainer {
    padding: 3em 0;
  }
}
.lContainer .mContainer.-blue {
  background: #EFF4F4;
}
.lContainer .mContainer .sContainer {
  margin-top: 5em;
}
.lContainer .mContainer .sContainer:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .lContainer .mContainer .sContainer {
    margin-top: 4em;
  }
}
@media screen and (max-width: 480px) {
  .lContainer .mContainer .sContainer {
    margin-top: 3em;
  }
}
.lContainer .mContainer .whiteBox {
  background: #FFF;
  padding: 1.5em 3em 3em;
  position: relative;
  -webkit-box-shadow: -10px 10px 20px -4px rgba(0, 0, 0, 0.1);
          box-shadow: -10px 10px 20px -4px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.lContainer .mContainer .whiteBox:before {
  content: "";
  width: 100%;
  max-height: 160px;
  height: 14.5vw;
  background: url("/shared/img/common/shape.svg") no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .lContainer .mContainer .whiteBox {
    padding: 5vw 5vw 8vw;
  }
}
@media screen and (max-width: 560px) {
  .lContainer .mContainer .whiteBox {
    padding: 0 5vw 8vw;
  }
}
.lContainer .mContainer .whiteBox .sContainer {
  margin-top: 3em;
}
.lContainer .mContainer .whiteBox .sContainer:first-child {
  margin-top: 0;
}
.lContainer .mContainer .whiteBox .sContainer > * {
  margin-top: 1em;
}
.lContainer .mContainer .whiteBox .sContainer > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .lContainer .mContainer .whiteBox .sContainer {
    margin-top: 3em;
  }
}
@media screen and (max-width: 480px) {
  .lContainer .mContainer .whiteBox .sContainer {
    margin-top: 2em;
  }
}
.lContainer .siblingsWrap {
  -webkit-box-shadow: -10px 10px 20px -4px rgba(0, 0, 0, 0.1);
          box-shadow: -10px 10px 20px -4px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.lContainer .siblingsWrap > * {
  width: 50%;
}
.lContainer .siblingsWrap .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.lContainer .siblingsWrap .textArea {
  background: rgb(165, 212, 173);
  background: -webkit-gradient(linear, left top, right top, from(rgb(165, 212, 173)), to(rgb(62, 179, 112)));
  background: -webkit-linear-gradient(left, rgb(165, 212, 173) 0%, rgb(62, 179, 112) 100%);
  background: linear-gradient(90deg, rgb(165, 212, 173) 0%, rgb(62, 179, 112) 100%);
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 2em;
  text-align: right;
}
.lContainer .siblingsWrap .textArea .mainLabel {
  text-align: right;
  margin-bottom: 1em;
}
.lContainer .siblingsWrap .textArea .mainLabel .en {
  font-size: 220%;
  letter-spacing: 0;
}
.lContainer .siblingsWrap .textArea .linkList {
  margin-top: 1em;
}
.lContainer .siblingsWrap .textArea .linkList__item {
  margin-bottom: 0.5em;
}
.lContainer .siblingsWrap .textArea .linkList__item:last-child {
  margin-bottom: 0;
}
.lContainer .siblingsWrap .textArea .linkList__item a {
  display: block;
  text-decoration: none;
  color: #FFF;
}
.lContainer .siblingsWrap .textArea .linkList__item a:hover {
  color: yellow;
}
.lContainer .siblingsWrap .textArea .linkList__item a span {
  padding-right: 2em;
  display: inline-block;
  text-align: right;
  position: relative;
}
.lContainer .siblingsWrap .textArea .linkList__item a span:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: url("../img/common/icon-arrow_white.svg") no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.4em;
}
@media screen and (max-width: 767px) {
  .lContainer .siblingsWrap {
    display: block;
  }
  .lContainer .siblingsWrap > * {
    width: 100%;
  }
  .lContainer .siblingsWrap .thumb img {
    height: 40vw;
  }
  .lContainer .siblingsWrap .textArea {
    padding: 5vw 5vw 6vw;
  }
  .lContainer .siblingsWrap .textArea .mainLabel .en {
    font-size: 180%;
  }
}

/*---------------------------------------------------------------------
見出し
---------------------------------------------------------------------*/
.mainLabel {
  text-align: center;
  margin-bottom: 2em;
}
.mainLabel .jp {
  display: block;
  font-size: 100%;
}
.mainLabel .en {
  display: block;
  font-family: "Inter", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 240%;
  line-height: 1.4;
}

.lineLabel {
  font-size: 130%;
  border-bottom: #000 1px solid;
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
}

.subStrongLabel {
  text-align: left;
  font-size: 160%;
  color: #00A85F;
  margin-bottom: 1em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .subStrongLabel {
    font-size: 150%;
  }
}
@media screen and (max-width: 560px) {
  .subStrongLabel {
    font-size: 140%;
  }
}

.subBoxLabel {
  display: block;
  color: #00A85F;
  border: #00A85F 2px solid;
  line-height: 1.6;
  padding: 0.5em;
  font-size: 120%;
  font-weight: 500;
  margin-bottom: 1em;
}

.subMainLabel {
  color: #3A7DC0;
  text-align: center;
  margin-bottom: 4em;
  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;
  margin-left: auto;
  max-width: 30em;
  margin-top: -5em;
  margin-bottom: 8em;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}
.subMainLabel .en {
  font-family: "Inter", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 280%;
  display: inline-block;
  line-height: 1;
  margin-bottom: 0.2em;
}
.subMainLabel .jp {
  font-size: 120%;
}
@media screen and (max-width: 767px) {
  .subMainLabel {
    max-width: 100%;
    margin-bottom: 15vw;
    margin-top: 0;
  }
  .subMainLabel .en {
    font-size: 260%;
  }
}

.subLabel {
  width: 50%;
  position: relative;
  font-size: 160%;
  position: absolute;
  left: 0;
  top: -3em;
  text-align: center;
}
.subLabel span {
  display: block;
  font-size: 160%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .subLabel {
    top: -6vw;
    font-size: 150%;
  }
}
@media screen and (max-width: 560px) {
  .subLabel {
    width: 100%;
    position: static;
    margin-bottom: 1em;
    font-size: 140%;
  }
}

/*---------------------------------------------------------------------
ボタン
---------------------------------------------------------------------*/
.simpleList li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.2em;
}
.simpleList li:last-child {
  margin-bottom: 0;
}

/*---------------------------------------------------------------------
表　テーブル
---------------------------------------------------------------------*/
.simpleTable {
  width: 100%;
}
.simpleTable tr {
  border-bottom: #CCC 1px solid;
}
.simpleTable tr:first-child {
  border-top: #CCC 1px solid;
}
.simpleTable tr th, .simpleTable tr td {
  padding: 1.2em;
  text-align: left;
  vertical-align: top;
}
.simpleTable tr th {
  background: #F5F5F5;
}
.simpleTable tr td {
  padding-left: 2em;
}
.simpleTable tr td > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 560px) {
  .simpleTable {
    display: block;
  }
  .simpleTable tbody {
    width: 100%;
    display: block;
  }
  .simpleTable tr {
    display: block;
    width: 100%;
  }
  .simpleTable tr th, .simpleTable tr td {
    display: block;
    width: 100%;
  }
  .simpleTable tr th {
    padding: 0.8em 1em;
  }
  .simpleTable tr td {
    padding: 1.2em 1em 1.4em;
  }
}