@charset "UTF-8";
/*
---------------------------------------------

    base settings

*/
:root {
  font-size: 62.5%;
  --s-2:
  calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2:
  calc(var(--s1) * 2);
  --s3:
  calc(var(--s1) * 3);
  --s4:
  calc(var(--s1) * 4);
  --s5:
  calc(var(--s1) * 5);
  --s6:
  calc(var(--s1) * 6);
  --s7:
  calc(var(--s1) * 7);
  --s8:
  calc(var(--s1) * 8);
  --s9:
  calc(var(--s1) * 9);
  --s10:
  calc(var(--s1) * 10);
}

@media screen and (max-width: 950px) {
  :root {
    font-size: 1.0526315789vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}

ul, ol, dl, p, img, form, dt, dd, figure {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.5rem;
  font-family: "Noto Sans JP";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

a {
  color: #000;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active,
a:hover {
  color: #000;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

.mv-lead p span,
.no-icon span,
.common-lead span,
.section-text span,
p span:not([class]) {
    font-size: 16px;
    font-weight: bold;
    color: #d20808;
  }

span.marker {
  font-weight: 700;
  color: #000;
  background: linear-gradient(transparent 60%, #b8e35a 60%);
}
span.txt_bold {
  font-weight: 700;
  color: #000;
}

* {
  box-sizing: border-box;
}

.for-sp {
  display: none;
}

.for-pc {
  display: block;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

/*
---------------------------------------------

    utility settings

*/
._justify-content\:space-between {
  justify-content: space-between;
}

._flex-direction\:row-reverse {
  flex-direction: row-reverse;
}

._align-items\:center {
  align-items: center;
}

._text-align\:center {
  text-align: center;
}

._text-align\:right {
  text-align: right;
}

/*
---------------------------------------------

    layout center

*/
.l-center {
  max-width: 95rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center.lines {
  border-right: solid 1px #ac904e;
  border-left: solid 1px #ac904e;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.low.l-center {
  padding-top: 8rem;
  padding-bottom: 8rem;
  max-width: 100rem;
}

/*
---------------------------------------------

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s4);
}

/*
---------------------------------------------

    layout cluster

*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/*
---------------------------------------------

    layout grid

*/
.l-grid {
  --minmum: calc((100% - var(--s4)) / 2);
  display: grid;
  grid-gap: var(--s3) var(--s4);
}
.l-grid.gap-wide {
  grid-gap: var(--s4);
}

.l-grid-three {
  --minmum: calc((100% - var(--s3) * 2) / 3);
  display: grid;
  grid-gap: var(--s3);
}
.l-grid-three.flow {
  margin-top: 10rem;
  margin-bottom: 10rem;
  padding: 0 var(--s1);
  --minmum: calc((100% - var(--s9) * 2) / 3);
  grid-gap: var(--s9);
}

.l-grid-four {
  --minmum: calc((100% - var(--s2) * 3) / 4);
  display: grid;
  grid-gap: 2rem var(--s2);
  padding: 0 2rem;
}

@supports (width: min(var(--minmum), 100%)) {
  .l-grid,
.l-grid-three,
.l-grid-four {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: 2.8rem;
}
.l-sidebar .l-sidebar__side {
  width: calc((100% - 2.8rem) * 0.26);
}
.l-sidebar .l-sidebar__main {
  width: calc((100% - 2.8rem) * 0.74);
}

/*
---------------------------------------------

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column .l-column__side {
  width: calc((100% - var(--s5)) * 0.4);
}
.l-column .l-column__main {
  width: calc((100% - var(--s5)) * 0.6);
}

.l-column-s2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}
.l-column-s2 .l-column-s2__side {
  width: calc((100% - var(--s3)) * 0.16);
}
.l-column-s2 .l-column-s2__main {
  width: calc((100% - var(--s3)) * 0.84);
}

.l-column-s3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.l-column-s3 .l-column-s3__side {
  width: calc((100% - var(--s4)) * 0.19);
}
.l-column-s3 .l-column-s3__main {
  width: calc((100% - var(--s4)) * 0.81);
}

/*
---------------------------------------------

    layout float

*/
.l-float {
  margin: 5rem auto;
}
.l-float::before, .l-float::after {
  content: " ";
  display: table;
}
.l-float::after {
  clear: both;
}
.l-float .l-float__left-pc {
  width: 30rem;
  margin-right: var(--s4);
  margin-bottom: var(--s2);
  float: left;
}
.l-float .l-float__right-pc {
  width: 30rem;
  margin-left: var(--s4);
  margin-bottom: var(--s2);
  float: right;
}
.l-float .l-float__center {
  width: 30rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}
.l-float .l-float__left {
  width: 30rem;
  margin-right: var(--s4);
  margin-bottom: var(--s2);
  float: left;
}
.l-float .l-float__right {
  width: 30rem;
  margin-left: var(--s4);
  margin-bottom: var(--s2);
  float: right;
}
.l-float-title {
  display: inline-block;
}

/*
---------------------------------------------

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: 0.6rem;
  overflow: hidden;
  overflow-x: scroll;
  overflow-y: visible;
  /* chrome safari */
}
.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

    layout header

*/
.l-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
---------------------------------------------

    layout gnavi

*/
.l-gnavi {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  scrollbar-width: none;
}
.l-gnavi::-webkit-scrollbar {
  display: none;
}

/*
---------------------------------------------

    layout 2column

*/
.l-titleColumn {
  display: flex;
  gap: 6rem;
}
.l-titleColumn .l-titleColumn__title {
  width: calc((100% - 6rem) * 0.14);
}
.l-titleColumn .l-titleColumn__body {
  width: calc((100% - 6rem) * 0.86);
}

/*
---------------------------------------------

    list

*/
.l-sidebar__main ul,
.jump-menu ul {
  margin: 4rem auto;
  margin-left: 2rem;
}
#sec03 .l-column-vc__left .percent-body ul {
  margin: 0 auto;
  margin-left: 0.4rem;
}
.l-sidebar__main ul li,
.jump-menu ul li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.8;
  position: relative;
}
#sec03 .l-column-vc__left .percent-body ul li {
  padding: 0 0 1.0rem 1.2em;
  font-size: 100%;
  line-height: 1.8;
  position: relative;
}
.l-sidebar__main ul li::before,
.jump-menu ul li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #b89b64;
  border-radius: 10rem;
  position: absolute;
  top: 0.6em;
  left: 0;
}
#sec03 .l-column-vc__left .percent-body ul li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: #b89b64;
  border-radius: 10rem;
  position: absolute;
  top: 0.6em;
  left: 0;
}
.l-sidebar__main ul li + li,
.jump-menu ul li + li,
.icon ul + li{
  margin-top: 0.8em;
}
.l-sidebar__main ol,
.jump-menu ol {
  margin: 4rem auto;
  counter-reset: number;
}
.l-sidebar__main ol li,
.jump-menu ol li {
  padding: 0 0 0 2.5em;
  font-size: 100%;
  line-height: 1.8;
  position: relative;
  counter-increment: number;
}
.l-sidebar__main ol li::before,
.jump-menu ol li::before {
  content: counter(number, decimal-leading-zero);
  color: #b89b64;
  font-size: 1.8rem;
  position: absolute;
  top: 0.8rem;
  left: 0;
  line-height: 1.1;
}
.l-sidebar__main ol li + li,
.jump-menu ol li + li {
  margin-top: 0.5em;
}

/*
---------------------------------------------

    btn

*/
.btn-web {
  width: 40rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  margin: 0;
  padding: 1.8rem 6rem;
  background: url(img/arrow-02-white-right.png) no-repeat right 2rem center, #b73ae9;
  background-size: 3.4rem auto;
  border: 2px solid #000;
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
}
.btn-web::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.5rem, 0.5rem);
}
.btn-web:hover a {
  transform: translate(0.5rem, 0.5rem);
}
.btn-web.mb80 {
  margin-bottom: 8rem;
}

.btn-internal {
  width: 40rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  margin: 0;
  padding: 1.8rem 6rem;
  background: url(img/arrow-02-black-right.png) no-repeat right 2rem center, #f0e84f;
  background-size: 3.4rem auto;
  border: 2px solid #000;
  display: block;
  color: #000;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
}
.btn-internal::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.5rem, 0.5rem);
}
.btn-internal:hover a {
  transform: translate(0.5rem, 0.5rem);
}
.btn-internal.back {
  width: 60rem;
  margin: var(--s5) auto;
}
.btn-internal.back a {
  background-image: url(img/arrow-01-black-up.svg);
  background-size: 1.6rem auto;
  color: #000;
}
.btn-internal.down {
  width: 60rem;
  margin: var(--s5) auto;
}
.btn-internal.down a {
  background-image: url(img/arrow-02-black-down.png);
  background-position: right 1rem top;
  background-repeat: no-repeat;
  background-size: 1.2rem auto;
  color: #000;
}

.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 1rem 3.5rem 1rem 0;
  background: url("img/arrow-02-black-right.png") no-repeat center right/2.8rem auto;
  display: inline-block;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.btn-link.alignLeft {
  text-align: left;
}
.btn-link.typeB a {
  color: #fff;
  background: url(img/icon-linkbtn.png) no-repeat right center/2.5rem auto;
}

.btn-tel {
  display: none;
}

.btn-back {
  max-width: 60rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-back a {
  width: 100%;
  margin: 0;
  padding: 2rem 5rem;
  background: #fff url(img/arrow-01-black-up.svg) no-repeat right 3.5rem center;
  background-size: 1.6rem auto;
  border: 1px solid #000;
  display: block;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.btn-back a:hover {
  opacity: 0.6;
}

/*
---------------------------------------------

    table

*/
table {
  margin: 4rem auto;
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: var(--s1) var(--s2);
  border: solid 1px #ccc;
  line-height: 1.8;
}

th {
  background: #efefef;
}

tbody th {
  background: #efefef;
}

.l-scroll-x table {
  width: inherit;
}
.l-scroll-x table th, .l-scroll-x table td {
  min-width: 20rem;
}

/*
---------------------------------------------

    caption

*/
.caption {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  word-break: break-all;
}

.box-gold .caption {
	color: #222;
}

.caption a {
  color: #999;
}

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  /* chrome safari */
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.6rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

    footer

*/
.footer-area {
  background: #000;
}
.footer-area .l-center.lines {
  position: relative;
  padding-bottom: 1rem;
}
.footer-area .l-center.lines:before {
  content: "";
  width: 6.3rem;
  height: 29.4rem;
  background: url(img/deco02-left.png) no-repeat center/contain;
  position: absolute;
  left: -2.5rem;
  top: 4rem;
}

.footer-bottom {
  padding: var(--s2) 0;
  background: #a7842e;
  color: #fff;
}

.footer-logo {
  font-size: 2rem;
  text-align: center;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
  width: 38rem;
  margin: 0 auto 5rem;
}
.footer-logo__link:hover {
  opacity: 0.6;
}

.footer-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  line-height: 1.8;
  border-bottom: 1px solid #fff;
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
  color: #fff;
}
.footer-menu-title__link:hover {
  color: #fff;
  opacity: 0.7;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  font-size: 1.2rem;
  line-height: 1.8;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
  color: #fff;
}
.footer-menu__link:hover {
  color: #fff;
  opacity: 0.7;
}

.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.8;
}
.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  position: relative;
  color: #fff;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}
.footer-menu-sub__link:hover {
  color: #fff;
  opacity: 0.7;
}

.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto var(--s2);
  padding: var(--s2) var(--s4);
  background: #c5c5c5;
  font-size: 1rem;
  line-height: 1.8;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s2) 0 var(--s5);
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

.footer-copyright {
  font-size: 1.2rem;
}
.footer-copyright__link {
  color: #fff;
}
.footer-copyright__link:hover {
  color: #fff;
  opacity: 0.6;
  text-decoration: underline;
}

.footer-sitemap {
  font-size: 1.2rem;
}
.footer-sitemap__link {
  padding: 0 1.2em 0 0;
  background: url("img/arrow-01-right.svg") no-repeat center right/auto 1em;
  color: #fff;
  text-decoration: none;
}
.footer-sitemap__link:hover {
  color: #fff;
  opacity: 0.6;
  text-decoration: underline;
}

/*
---------------------------------------------

	gnavi

*/
.gnavi-btn {
  width: 5rem;
  height: 5rem;
  background: #000;
  display: block;
  position: fixed;
  top: var(--s1);
  right: var(--s1);
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 3rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.7rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.5rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.3rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

.gnavi-area {
  width: 35rem;
  height: 100vh;
  padding-top: 10rem;
  background: #333;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.gnavi-list {
  padding-bottom: 10rem;
  position: relative;
  transition: transform 0.8s ease;
}
.gnavi-list__item + .gnavi-list__item {
  margin-top: var(--s1);
}
.gnavi-list__link {
  width: 90%;
  margin: 0 auto;
  padding: 1rem 4rem 1rem 1.5rem;
  display: block;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  background: #fff url("img/arrow-01-black-right.svg") no-repeat right 1.5rem center/auto 1.6rem;
}
.gnavi-list__link--menu {
  background-image: url("img/icon-more.svg");
  background-position: right 1.5rem center;
  background-size: 1.5rem auto;
}
.gnavi-list__link--menu:hover {
  opacity: 0.6;
}
.gnavi-list__link--back {
  padding: 1rem 1.5rem 1rem 4rem;
  background-image: url("img/arrow-01-black-left.svg");
  background-position: left 1.5rem center;
}
.gnavi-list__sub {
  width: 100%;
  padding-bottom: 10rem;
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(0, 0);
  transition: transform 0.8s ease;
}
.gnavi-list__sub.is-show {
  display: block;
}

.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

/*
---------------------------------------------

    page

*/
.page-top {
  width: 6rem;
  height: 6rem;
  position: fixed;
  right: var(--s4);
  bottom: var(--s7);
  z-index: 10;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-top__link:hover {
  opacity: 0.6;
}

/*
---------------------------------------------

    toggle

*/
.toggle-content {
  display: none;
}

/*
---------------------------------------------

    toggle sp

*/
.toggle-sp-content {
  display: block;
}

/*
---------------------------------------------

    more

*/
.more-btn {
  max-width: 32rem;
  margin: var(--s5) auto;
  padding: 2rem 6rem;
  background: #000;
  border: 0.2rem solid #000;
  border-radius: 10rem;
  color: #FFF;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: 2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.9rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn:hover {
  opacity: 0.6;
  color: #FFF;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more-content {
  display: none;
}

/*
---------------------------------------------

    help

*/
.help-btn {
  width: 1.6em;
  height: 1.6em;
  margin-bottom: -0.3em;
  background: #000 url("img/icon-help.svg") no-repeat center/1em auto;
  border-radius: 10rem;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: 1.2rem;
}

.help-content {
  width: 30rem;
  padding: 2rem;
  background: #000;
  border-radius: 0.8rem;
  color: #FFF;
  position: absolute;
  top: -1.2rem;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -100%);
  transition: opacity 0.6s;
  visibility: hidden;
  opacity: 0;
}
.help-content::after {
  content: "";
  width: 0;
  height: 0;
  border-top: #000 solid 0.8rem;
  border-bottom: transparent solid 0.8rem;
  border-left: transparent solid 0.4rem;
  border-right: transparent solid 0.4rem;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.help-content.is-show {
  visibility: visible;
  opacity: 1;
}

/*
---------------------------------------------

	pankuzu

*/
#pankuzu {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/*
---------------------------------------------

	sidebar

*/
.sidebar-top__banner {
  display: block;
  margin-bottom: 2.4rem;
}
.sidebar-top__banner:hover {
  opacity: 0.6;
}

.sidebar-menu {
  margin-bottom: 3rem;
}
.sidebar-menu__title {
  display: flex;
}
.sidebar-menu__title a {
  display: block;
  width: 100%;
  padding: 2rem 1.5rem;
  border-top: solid 0.3rem #000;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}
.sidebar-menu__title a:hover {
  opacity: 0.5;
}
.sidebar-menu__list__item {
  border-top: solid 0.1rem #ccc;
  font-size: 1.5rem;
}
.sidebar-menu__list__link {
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  display: block;
  background: url(img/arrow-01-black-right.svg) no-repeat right 0.5rem center/0.5rem auto;
  line-height: 1.5;
  text-decoration: none;
}
.sidebar-menu__list__link:hover {
  opacity: 0.5;
}
.sidebar-menu .subList li a {
  display: block;
  border-top: dashed 1px #999;
  padding: 2rem 0 1rem 3rem;
  text-decoration: none;
  line-height: 1.4;
  font-size: 1.3rem;
}
.sidebar-menu .subList li a::before {
  content: "└";
  position: absolute;
  left: 15px;
  top: 2rem;
}
.sidebar-menu .subList li a:hover {
  opacity: 0.5;
}

.sidebar-submenu__list__item {
  position: relative;
}
.sidebar-submenu__list__item::after {
  content: "└";
  position: absolute;
  top: 22px;
  left: 15px;
}
.sidebar-submenu__list__link {
  padding: 20px 20px 20px 35px;
  display: block;
  border-bottom: solid 1px #efefef;
  text-decoration: none;
}
.sidebar-submenu__list__link:hover {
  text-decoration: underline;
}

.main-area h1, .main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
  font-weight: 700;
}

.l-sidebar__main h1, .l-sidebar__main h2, .l-sidebar__main h3, .l-sidebar__main h4, .l-sidebar__main h5, .l-sidebar__main h6 {
  margin: 4rem auto 3rem;
  font-weight: 700;
}
.l-sidebar__main h1 a, .l-sidebar__main h2 a, .l-sidebar__main h3 a, .l-sidebar__main h4 a, .l-sidebar__main h5 a, .l-sidebar__main h6 a {
  display: block;
  padding-right: 3rem;
  text-decoration: none;
}
.l-sidebar__main h1 a:hover, .l-sidebar__main h2 a:hover, .l-sidebar__main h3 a:hover, .l-sidebar__main h4 a:hover, .l-sidebar__main h5 a:hover, .l-sidebar__main h6 a:hover {
  opacity: 0.6;
}
.l-sidebar__main h1 {
  margin-top: 0;
  margin-bottom: 8rem;
  padding: 3.5rem 0 4rem;
  background: url(img/bg-h1.png) no-repeat left top, url(img/bg-h1-btm.png) no-repeat right bottom;
  background-size: auto 5rem, auto 2.3rem;
  text-align: center;
  font-size: 4rem;
}
.l-sidebar__main h2 {
  padding: 1.2rem 2rem;
  background: #ac904e;
  color: #fff;
  font-size: 2.6rem;
  position: relative;
}
.l-sidebar__main h2 a {
  color: #fff;
  background: url(img/arrow-02-white-right.png) no-repeat right center;
  background-size: 3rem auto;
}
.l-sidebar__main h3 {
  border-bottom: solid 2px #c5aa69;
  color: #000;
  font-size: 2.4rem;
}
.l-sidebar__main h3 a {
  color: #000;
  background: url(img/arrow-02-black-right.png) no-repeat right 2rem center;
  background-size: 3rem auto;
}
.l-sidebar__main h4 {
  padding: 0.4rem 2rem;
  background: #f7ebcf;
  font-size: 2.2rem;
}
.l-sidebar__main h4 a {
  background: url(img/arrow-02-black-right.png) no-repeat right center;
  background-size: 3rem auto;
}
.l-sidebar__main h5 {
  font-size: 1.8rem;
}
.l-sidebar__main p {
  margin-bottom: 1.5rem;
}

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
/*
---------------------------------------------

    TOP

*/
.header-name-box {
  text-align: center;
}

.header-area__name {
  padding: 1rem 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  display: inline-block;
}
.sponsored__name {
  display: inline-block;
  font-size: 1.2rem;
  left: 0;
  right: 0;
  padding: 0 0.6rem;
  
  text-align: center;
  background: #000;
  color: #fff;
}

  .header-area.low .sponsored__name {
    color: #000;
    background: #cfcfcf;
  }


.header-area.low {
  background: url(img/bg-noiz.jpg);
  position: relative;
  overflow: hidden;
}
.header-area.low .header-area__name a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
.header-area.low .header-area__name a:hover {
  opacity: 0.6;
}
.header-area.low .header-area__logo {
  width: 33rem;
  margin: 0 auto;
  position: relative;
}
.header-area.low .header-area__logo:before {
    content: "";
    width: 44.5rem;
    height: 67rem;
    background: url(img/illust_a.png) no-repeat left bottom/contain;
    position: absolute;
    left: -49rem;
    top: 0;
    z-index: 0;
    pointer-events: none;
}
.header-area.low .header-area__logo:after {
    content: "";
    width: 47.9rem;
    height: 67rem;
    background: url(img/illust_b.png) no-repeat right bottom/contain;
    position: absolute;
    right: -39rem;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

.header-area.low .header-area__logo a:hover {
  opacity: 0.6;
}
.header-area.low .l-center {
  padding-top: 0;
  padding-bottom: 2.5rem;
  position: relative;
  min-height: 20rem;
}
.header-area.low .l-center:after {
  content: "";
  width: 4.7rem;
  height: 20.6rem;
  background: url(img/deco01-right.png) no-repeat center/contain;
  position: absolute;
  right: -6rem;
  top: 1rem;
}

.header-sp {
  display: none;
}

.mvArea {
  background: url(img/mv_decoline.png) no-repeat, url(img/mv_bg_r.png) no-repeat, url(img/mv_bg.jpg) no-repeat;
  background-size: auto 117.6rem, 60rem, cover;
  background-position: calc(50% + 104.5rem) bottom, right bottom, center;
  z-index: 0;
  position: relative;
  overflow: hidden;
}

.mvArea::before {
  content: "";
  position: absolute;
  background: url(img/mv_bg_l.png) left bottom no-repeat;
  background-size: contain;
  width: 540px;
  height: 656px;
  left: 0;
  bottom: 0;
}


.mvArea-inner {
  display: flex;
  align-items: center;
  margin: 0 -2.4rem;
  padding: 2rem 0 10rem;
  position: relative;
}
.mvArea-inner__side {
  width: 27rem;
}
.mvArea-inner__center {
  width: calc(100% - 53rem);
  padding: 0 5rem;
  font-weight: 700;
  font-size: 1.4rem;
}
.mvArea-inner__center .btn-internal {
  width: 30rem;
}
.mvArea-inner__center .btn-internal a {
  padding: 1.3rem 5rem;
}
.mvArea-logo {
  width: 47rem;
  margin: 2rem auto;
}
.mvArea .l-center {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}

.mv-catch {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}

.name-card .name {
  padding: 1rem 1.5rem 0;
  border-bottom: solid 1rem #4b4b4b;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  background: url(img/bg-gray-corner.png) no-repeat right 12rem bottom/cover;
}
.name-card__body {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  border-top: solid 1px #818181;
  background: #2b2b2b;
  color: #fff;
  font-size: 1.2rem;
}
.name-card.enkaku {
  position: relative;
}
.name-card.enkaku:before {
  content: "";
  width: 44.5rem;
  height: 67rem;
  background: url(img/illust_a.png) no-repeat left bottom/contain;
  position: absolute;
  left: -11rem;
  bottom: -14rem;
  z-index: -1;
}
.name-card.rinjo {
  position: relative;
}
.name-card.rinjo:after {
  content: "";
  width: 47.9rem;
  height: 67rem;
  background: url(img/illust_b.png) no-repeat right bottom/contain;
  position: absolute;
  right: -17rem;
  bottom: -16rem;
  z-index: -2;
}

.jump-menu {
  width: 30rem;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-y: auto;
  scrollbar-width: none;
}
.jump-menu::-webkit-scrollbar {
  display: none;
}
.jump-menu-btn {
  height: 8.3rem;
  width: 14.5rem;
  padding-left: 7rem;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}
.jump-menu-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 83px 91px 0 0;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  left: 99.9%;
  top: 0;
}
.jump-menu-btn span {
  width: 3rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.8rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.jump-menu-btn span:nth-of-type(1) {
  top: 3.5rem;
}
.jump-menu-btn span:nth-of-type(2) {
  top: 4.3rem;
}
.jump-menu-btn span:nth-of-type(3) {
  top: 5.1rem;
}
.jump-menu-btn.is-open span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}
.jump-menu-btn.is-open span:nth-of-type(2) {
  opacity: 0;
}
.jump-menu-btn.is-open span:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}
.jump-menu__list {
  padding: 0 2rem 3rem 2rem;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #fff;
}
.jump-menu__list:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.jump-menu__list a {
  display: block;
  padding-right: 2rem;
  background: url(img/arrow-01-down.svg) no-repeat right center/1rem auto;
  color: #fff;
  text-decoration: none;
}
.jump-menu__list a:hover {
  color: #a7e126;
}
.jump-menu ol {
  margin: 0 auto;
}
.jump-menu .more-content {
  background: #000;
}

.main-area {
  overflow: hidden;
}

.toc-wrap {
  width: 100%;
  margin: 0 auto 6rem;
  padding: 7rem 4rem 3rem;
  background: #f2f2f2;
  position: relative;
}
.toc-wrap-ttl {
  width: 20rem;
  margin: -10rem auto 2rem -5.5rem;
  padding: 1.5rem 4rem 2rem;
  background: url(img/bg-gold-corner.png) no-repeat right top/cover;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.toc-wrap ol.chapter {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 700;
}
.toc-wrap ol.chapter ol.chapter {
  margin: 1rem 0 1rem 5rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.toc-wrap ol.chapter ol.chapter li {
  padding-left: 1em;
}
.toc-wrap ol.chapter ol.chapter li:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: url(img/list_icon_l.png) no-repeat center/contain;
  top: 0.5em;
}
.toc-wrap ol.chapter a {
  display: block;
  padding-right: 5rem;
  background: url(img/arrow-02-black-right.png) no-repeat right center/1.6rem auto;
  text-decoration: underline;
}
.toc-wrap ol.chapter a:hover {
  text-decoration: none;
}

.relations {
  width: 100%;
  margin: 8rem auto 6rem;
  position: relative;
}
.relations-ttl {
  width: 27rem;
  margin: 0 auto 0 0;
  padding: 2rem 3rem 0 6rem;
  background: url(img/bg-cream-corner.png) no-repeat right top/cover;
  color: #b89b64;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5rem;
}
.relations-list {
  padding: 3rem 3rem 4rem 6rem;
  background: #f7ebcf url(img/deco02-right.png) no-repeat right 1rem bottom -8.5rem/2.4rem auto;
  position: relative;
}
.relations-list:before {
  content: "";
  width: 1rem;
  height: 18rem;
  background: url(img/deco05-left.png) no-repeat center top/contain;
  position: absolute;
  left: 1.5rem;
  top: -3rem;
}
.relations-list__item {
  margin-top: 1.8rem;
}
.relations-list__link {
  display: block;
  text-decoration: none;
  padding-left: 4rem;
  background: url(img/arrow-02-gold-right.png) no-repeat 0.5rem 0.7rem;
  background-size: 2.5rem auto;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
}
.relations-list__link:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.common-title {
  margin-bottom: 6rem;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  text-align: center;
}
.common-title span.sm {
  font-size: 2.8rem;
}
.common-title span.green {
  color: #a7e126;
  font-size: 4.6rem;
}
.common-title.limitline {
  position: relative;
  padding-top: 8rem;
}
.common-title.limitline:before {
  content: "";
  width: 100vw;
  height: 1px;
  border-top: solid 1px #ac904e;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.common-title a {
  text-decoration: none;
  padding-right: 8rem;
  background: url(img/arrow-02-black-right.png) no-repeat right center/5rem auto;
}
.common-title a:hover {
  opacity: 0.6;
}
.common-title.white {
  color: #fff;
  font-size: 3.2rem;
}

.common-lead {
  max-width: 75rem;
  margin: 3rem auto;
  color: #fff;
}

.title-green {
  margin: 3rem 0;
  color: #a7e126;
  font-size: 3.2rem;
  line-height: 1.2;
}

.title-white {
  margin: 5rem -2.4rem;
  padding: 2rem 3rem;
  background: #fff;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

/*
---------------------------------------------

    TOP section background

*/
.bg-sec1 {
  color: #fff;
  background: url(img/deco-line2.png) no-repeat, url(img/sec1_bg.jpg) no-repeat;
  background-size: 57.8rem auto, cover;
  background-position: calc(50% + 37rem) top, center;
}
.bg-sec1 .l-center {
  padding-top: 6rem;
  padding-bottom: 20rem;
}

.sec1-title {
  margin-bottom: 3rem;
  font-size: 2.8rem;
  line-height: 1.2;
  position: relative;
  /* background: url(img/logo-zenken.png) no-repeat right bottom/auto 4rem; */
}
.sec1-title-en {
  height: 4.2rem;
}
.sec1-title-en img {
  height: 100%;
}
.sec1-title span.st {
  font-size: 3.8rem;
}
.sec1-inner {
  max-width: 86%;
}

.bg-gold {
  background: #c5aa69;
  z-index: 0;
  position: relative;
}
.bg-gold.slash {
  position: relative;
}
.bg-gold.slash:before {
  content: "";
  width: 100%;
  height: 16rem;
  background: #c5aa69;
  position: absolute;
  left: calc(50% + 50rem);
  top: -16rem;
}
.bg-gold.slash .l-center {
  position: relative;
  z-index: 0;
  padding-top: 0;
}
.bg-gold.slash .l-center:before {
  content: "";
  width: 100%;
  height: 16rem;
  background: #c5aa69;
  position: absolute;
  left: 0;
  top: -16rem;
  z-index: -1;
}
.bg-gold.slash .l-center:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 16rem 17rem;
  border-color: transparent transparent #c5aa69 transparent;
  position: absolute;
  left: -17.1rem;
  top: -16rem;
}
.bg-gold.slash .common-title {
  margin-bottom: -5rem;
  position: relative;
  top: -10rem;
}
.bg-gold.with-bg .l-center:after {
  content: "";
  width: 100%;
  height: 16rem;
  background: url(img/bg-graypaper-deco.png) no-repeat right top;
  z-index: -1;
  position: absolute;
  top: 0;
  right: calc(50% + 42rem);
}

.bg-cream {
  background: #f7ebcf;
  position: relative;
  z-index: 0;
}
.bg-cream .l-center {
  position: relative;
}
.bg-cream .l-center:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16rem 17rem 0 0;
  border-color: #c5aa69 transparent transparent transparent;
  position: absolute;
  left: -17.1rem;
  top: 0;
}
.bg-cream .l-center:after {
  content: "";
  width: 100%;
  height: 16rem;
  background: #c5aa69;
  position: absolute;
  right: calc(50% + 67rem);
  top: 0;
}
.bg-cream.second .l-center:before {
  content: none;
}
.bg-cream.second .l-center:after {
  background: url(img/bg-graypaper-deco.png) no-repeat right top;
  right: 92%;
  z-index: -1;
}

.bg-graypaper {
  background: url(img/bg-graypaper.png);
  background-size: 12.8rem auto;
}
.bg-graypaper .l-center {
  position: relative;
}
.bg-graypaper .l-center:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16rem 17rem 0 0;
  border-color: #f7ebcf transparent transparent transparent;
  position: absolute;
  left: -17.1rem;
  top: 0;
}
.bg-graypaper .l-center:after {
  content: "";
  width: 100%;
  height: 16rem;
  background: #f7ebcf;
  position: absolute;
  right: calc(50% + 67rem);
  top: 0;
}
.bg-graypaper.white {
  z-index: 0;
  position: relative;
}
.bg-graypaper.white .l-center {
  padding-bottom: 10rem;
}
.bg-graypaper.white .l-center:before {
  border-color: #fff transparent transparent transparent;
  left: -10.1rem;
  z-index: -1;
}
.bg-graypaper.white .l-center:after {
  background: #fff;
  right: calc(50% + 60rem);
}
.bg-graypaper .common-title {
  color: #fff;
}

.bg-graypaper-p {
  margin: 3rem 0 6rem;
}

.bg-graypaper-p p {
    color: #fff;
    margin: 1rem 0;
    word-break: break-all;
}

.bg-check {
  background: url(img/bg-check.png);
  position: relative;
  z-index: 0;
}
.bg-check .l-center {
  position: relative;
}
.bg-check .l-center:before {
  content: "";
  width: 100%;
  height: 38rem;
  background: url(img/deco-line-w.png) no-repeat right bottom/auto 100%;
  position: absolute;
  right: calc(50% + 29rem);
  top: 0;
  z-index: -1;
}
.bg-check .l-center:after {
  content: "";
  width: 2.6rem;
  height: 14rem;
  background: url(img/deco04-left.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: 2rem;
}
.bg-check .common-title {
  color: #fff;
}

.bg-gold80 {
  margin: 3rem -2.4rem;
  padding-top: 2rem;
  padding-bottom: 7rem;
  padding-left: var(--s3);
  padding-right: var(--s3);
  background: rgba(205, 196, 150, 0.8);
  z-index: 0;
  position: relative;
}

.l-grid-three {
  margin: 4rem auto 6rem;
}
.l-grid-three .btn-internal {
  width: 100%;
  margin: 0 auto;
}

.bg-white {
  position: relative;
  z-index: 0;
}
.bg-white .l-center {
  position: relative;
}
.bg-white .l-center:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16rem 17rem 0 0;
  border-color: #c5aa69 transparent transparent transparent;
  position: absolute;
  left: -10.1rem;
  top: 0;
  z-index: -1;
}
.bg-white .l-center:after {
  content: "";
  width: 100%;
  height: 16rem;
  background: #c5aa69;
  position: absolute;
  right: calc(50% + 60rem);
  top: 0;
}

.bg-noiz {
  background: url(img/bg-noiz.jpg);
  position: relative;
  z-index: 0;
}
.bg-noiz .l-center {
  position: relative;
}
.bg-noiz .l-center:before {
  content: "";
  width: 40rem;
  height: 51rem;
  background: url(img/illust_a.png) no-repeat left bottom/contain;
  position: absolute;
  left: -12rem;
  bottom: 7rem;
  pointer-events: none;
}
.bg-noiz .l-center:after {
  content: "";
  width: 40rem;
  height: 51rem;
  background: url(img/illust_b.png) no-repeat right bottom/contain;
  position: absolute;
  right: -11rem;
  bottom: 6rem;
  pointer-events: none;
}
.bg-noiz .btn-web:after {
  background-color: #575757;
}

.box-inner {
  max-width: 45rem;
  margin: 0 auto;
  color: #fff;
}

/*
---------------------------------------------

    BOX style

*/
.box-fkds {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 0;
}
.box-fkds + .box-fkds {
  margin-top: 4rem;
}
.box-fkds__illust {
  width: 18rem;
  text-align: center;
}
.box-fkds__illust .soliton {
  width: 18rem;
  vertical-align: top;
  top: 0;
}
.box-fkds__main {
  width: 64rem;
}
.box-fkds.rightside {
  flex-direction: row-reverse;
}
.box-fkds.rightside .fkds:after {
  border-width: 12.5px 0 12.5px 29px;
  border-color: transparent transparent transparent #000;
  right: -2rem;
  left: auto;
}
.box-fkds.leftside .box-fkds__illust,
.box-fkds.rightside .box-fkds__illust {
  position: relative;
}
.low .box-fkds.leftside .box-fkds__illust:after {
  content:"エンカク";
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  bottom: -1.6rem;
  left:calc(50% - 5rem);
  width: 10rem;
  height: 16px;
}

.low .box-fkds.rightside .box-fkds__illust:after {
  content:"リンジョウ";
  font-weight: bold;
  font-size: 1.6rem;
  position: absolute;
  bottom: -1.6rem;
  right: calc(50% - 5rem);
  width: 10rem;
  height: 16px;
}

.low.l-center .deco2:before,
.low.l-center .deco2:after {
	content: none;
}


.fkds {
  padding: 2rem 4rem;
  background: #000;
  position: relative;
  color: #fff;
}
.fkds:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #c5aa69;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  position: absolute;
  right: -0.4rem;
  bottom: -0.4rem;
  z-index: -1;
}
.bg-cream .fkds:before {
	background: #f7ebcf;
}

.bg-white .fkds:before,
.lower-fkds .fkds:before {
	background: #fff;
}

.bg-gold80 .fkds:before {
	background: #a7a07b;
}

.fkds:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 29px 12.5px 0;
  border-color: transparent #000 transparent transparent;
  position: absolute;
  left: -2rem;
  top: calc(50% - 1rem);
}
.fkds-answer::before, .fkds-answer::after {
  content: " ";
  display: table;
}
.fkds-answer::after {
  clear: both;
}
.fkds-answer__pic {
  width: 6rem;
  margin: 0 2rem 1rem 0;
  float: left;
}

.title-flow {
  width: calc(100% - 4rem);
  padding: 0.5rem 0.5rem 0 0;
  font-size: 2.5rem;
  text-align: center;
}
.title-flow-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.title-flow-wrap:before {
  content: "";
  width: 100%;
  height: 5.6rem;
  background: url(img/arrow-flow.png) no-repeat right bottom/auto 100%;
  position: absolute;
  right: 0;
  top: -4rem;
  z-index: -1;
}
.title-flow-wrap .number {
  padding: 2.5rem 0 1rem;
  width: 4rem;
  background: #c5aa69 url(img/txt-flow.png) no-repeat center 0.5rem/80% auto;
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.box-narrow .pic-circle {
  width: 22rem;
  margin: 1rem auto 2rem;
}

.l-column-vc {
  margin: 6rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-column-vc__left {
  width: 55rem;
}
.l-column-vc__right {
  width: 37rem;
}
.l-column-vc.reverse {
  flex-direction: row-reverse;
}

.box-voice {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.box-voice:after {
  content: "";
  width: 4rem;
  height: calc(100% - 9rem);
  background: url(img/percent-line.png) no-repeat center top/100% auto;
  position: absolute;
  left: 7rem;
  top: 11rem;
}
.box-voice .percent {
  width: 13.6rem;
  height: 13.6rem;
  background: #a7e126;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.3rem;
  font-weight: 700;
  position: relative;
}
.box-voice .percent span.sm {
  font-size: 2.8rem;
}
.box-voice .percent-body {
  width: 38rem;
  color: #fff;
}
.box-voice .percent-body .catch-w {
  margin-bottom: 1.6rem;
}

.no-icon__item {
  line-height: 1.4;
}
.no-icon__item + .no-icon__item {
  margin-top: 2.5rem;
}

.box-catch__title {
  padding: 1.4rem 2rem;
  background: #000;
}
.box-catch__title p {
  margin-bottom: 0;
}
.box-catch__body {
  padding: 1.4rem 2rem;
  background: #fff;
}

.box-picture {
  max-width: 80rem;
  margin: 3rem auto 5rem;
}

.box-gold {
  margin: 8rem auto 12rem;
  padding: 2rem;
  max-width: 90rem;
  background: #c5aa69;
}
.box-gold .l-float {
  margin: 0;
}
.box-gold .l-float .l-float__right {
  width: 28rem;
}

.l-column-s2__side {
  background: #000;
  text-align: center;
  color: #a7e126;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.l-column-s2.white {
  margin-top: 4rem;
  background: #fff;
}

.director-pic {
  height: 100%;
}
.director-pic img {
  object-fit: cover;
  height: 100%;
}

.director-text {
  padding: 2rem 2rem 2rem 0;
}

.director-name {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: solid 1px #000;
  position: relative;
}
.director-name:before {
  content: "";
  width: 3.8rem;
  height: 1px;
  background: #000;
  position: absolute;
  right: 100%;
  bottom: -1px;
  transform: rotate(30deg);
  transform-origin: right bottom;
}

.tag-black span {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.title-question {
  margin: 8rem -2.4rem 4rem;
  padding: 3.44rem 2rem 3.4rem 25rem;
  background: url(img/bg-q.png) no-repeat #fff;
  background-position: left -1px;
  background-size: 24rem auto;
  font-size: 3.2rem;
  line-height: 1.4;
  position: relative;
}
.title-question:before {
  content: "Q";
  font-size: 7.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: 13.5rem;
  top: 50%;
  transform: translateY(-63%);
}
.title-question:after {
  content: "";
  width: 22rem;
  height: 19rem;
  background: url(img/illust-title-q.png) no-repeat center bottom/contain;
  position: absolute;
  left: -6rem;
  bottom: 0;
}

.title-bk-center {
  margin: 3rem 0;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.box-beige__title {
  padding: 2rem;
  background: #f7ebcf;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.box-beige__body {
  padding: 2rem;
  background: #fff;
}

.box-case {
  margin: 3.5rem 0;
  background: #fff;
  display: flex;
}
.box-case__num {
  width: 8rem;
  padding-top: 3rem;
  background: #000;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
.box-case__num span.number {
  display: block;
  font-size: 4rem;
}
.box-case__num:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  left: 0;
  bottom: 0;
}
.box-case__body {
  width: calc(100% - 8rem);
  padding: var(--s3);
}
.box-case .l-float {
  margin: 0;
}

.box-green {
  padding: 1.2rem 3rem;
  border: solid 2px #000;
  background: #d0e1aa;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.box-green:hover {
  cursor: pointer;
}

.box-summary {
  max-width: 97%;
  margin: 8rem auto 0;
  padding: 2rem 26rem;
  box-shadow: 0 -5px 0 0 rgba(205, 196, 150, 0.8), 0 -6px 0 0 #000;
  background: url(img/bg-noiz.jpg);
  color: #fff;
  z-index: 0;
  position: relative;
}
.box-summary:before {
  content: "";
  width: 37rem;
  height: 41rem;
  background: url(img/illust_c.png) no-repeat left bottom/contain;
  position: absolute;
  left: -6.8rem;
  bottom: 0;
  z-index: -1;
}
.box-summary:after {
  content: "";
  width: 26rem;
  height: 40rem;
  background: url(img/illust_d.png) no-repeat right bottom/contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.box-summary__title {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  color: #a7e126;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.box-summary__title:after {
  content: "";
  width: 6rem;
  height: 1px;
  background: #a7e126;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.box-summary .btn-web:after {
  background-color: #575757;
}
.box-summary .btn-tel:after {
  background-color: #575757;
}
.box-summary.lower {
  margin: 6rem auto;
  padding: 4rem 11rem;
  box-shadow: 0 -5px 0 0 #fff, 0 -6px 0 0 #000;
}
.box-summary.lower .btn-web {
  width: 32rem;
  margin: 2rem auto;
}
.box-summary.lower:before {
  width: 24rem;
  height: 48rem;
  left: -14rem;
}
.box-summary.lower:after {
  width: 18rem;
  right: -6rem;
}

.box-btn {
  margin-top: 5rem;
  padding: 0 var(--s2);
}
.box-btn .btn-internal {
  width: 100%;
  margin: 0 auto;
}
.box-btn .btn-internal a {
  height: 100%;
  display: flex;
  align-items: center;
}

.narrow {
  padding: 0 var(--s2);
}

.l-grid-three {
  margin-top: 4rem;
}

.box-img {
  margin: 0 auto;
  border-top: 10px solid #c5aa69;
}
.box-img__title {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}
.box-img__title a {
  display: block;
  padding-right: 4rem;
  text-decoration: none;
  background: url(img/arrow-02-black-right.png) no-repeat right center/3rem auto;
}
.box-img__title a:hover {
  opacity: 0.6;
}
.box-img__body {
  padding: 2rem 2rem 0;
  background: #c5aa69;
}

.box-img .btn-corner {
  display: block;
  width: 42%;
  margin: 2rem -2rem 0 auto;
  padding: 0.4rem;
  padding-left: 2rem;
  background: url(img/bg-bk-corner.png) no-repeat left bottom/100% auto;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.box-img .btn-corner:hover {
  opacity: 0.6;
}

.box-gray {
  background: #4b4b4b;
  border: solid 1px #818181;
  position: relative;
  color: #fff;
}
.box-gray__title {
  border-bottom: solid 1px #818181;
}
.box-gray__title a {
  display: block;
  padding: 2.4rem 5rem;
  background: url(img/arrow-02-white-right.png) no-repeat right 2rem center/3rem auto;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.box-gray__title a:hover {
  opacity: 0.6;
}
.box-gray__body {
  padding: 2.4rem;
}
.box-gray .btn-corner {
  display: block;
  width: 30%;
  margin: 0 0 0 auto;
  padding: 0.6rem;
  padding-left: 2rem;
  background: url(img/bg-wt-corner.png) no-repeat left bottom/100% auto;
  color: #000;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.box-gray .btn-corner:hover {
  opacity: 0.6;
}

.l-grid {
  margin-top: 5rem;
}

.tag-issue {
  width: 8.5rem;
  height: 8.5rem;
  position: absolute;
  left: -1rem;
  top: -1rem;
  background: #0d0d0d;
  border: solid 1px #818181;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  flex-direction: column;
}
.tag-issue span {
  font-size: 3.6rem;
}

.slider {
  margin-bottom: 5rem;
}
.slider .slick-slide {
  margin: 0 3rem;
  width: 60rem;
  text-align: center;
}
.slider .slick-slide:hover {
  opacity: 0.8;
}
.slider .slick-prev,
.slider .slick-next {
  width: 5rem;
  height: 5rem;
  z-index: 9;
  top: 45%;
}
.slider .slick-prev:before,
.slider .slick-next:before {
  content: none;
}
.slider .slick-prev:hover, .slider .slick-prev:focus,
.slider .slick-next:hover,
.slider .slick-next:focus {
  opacity: 0.6;
}
.slider .slick-next {
  right: calc(50% - 33rem);
  background: url(img/arrow-02-black-right.png) no-repeat center/100% auto;
}
.slider .slick-prev {
  left: calc(50% - 33rem);
  background: url(img/arrow-02-black-left.png) no-repeat center/100% auto;
}
.slider .caption {
  color: #000;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

/*
---------------------------------------------

    deco side

*/
.deco1 {
  position: relative;
}
.deco1:before {
  content: "";
  width: 1.1rem;
  height: 20.6rem;
  background: url(img/deco01-left.png) no-repeat center/contain;
  position: absolute;
  left: -2rem;
  bottom: 29rem;
  z-index: -3;
}
.deco1:after {
  content: "";
  width: 4.7rem;
  height: 20.6rem;
  background: url(img/deco01-right.png) no-repeat center/contain;
  position: absolute;
  right: -6rem;
  top: 0.5rem;
  z-index: -3;
}

.deco2 {
  position: relative;
}
.deco2:before {
  content: "";
  width: 6.3rem;
  height: 29.4rem;
  background: url(img/deco02-left.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: -3rem;
}
.deco2:after {
  content: "";
  width: 2.4rem;
  height: 20.6rem;
  background: url(img/deco02-right.png) no-repeat center top/contain;
  position: absolute;
  right: -6rem;
  bottom: 2rem;
}
.deco2.pos02:before {
  top: -8rem;
}

.deco3 {
  position: relative;
}
.deco3:after {
  content: "";
  width: 10.5rem;
  height: 2.4rem;
  background: url(img/deco03-right.png) no-repeat center top/contain;
  position: absolute;
  right: -10.5rem;
  bottom: -5rem;
}

.catch-a {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.catch-b {
  margin-bottom: 1rem;
}
.catch-b span {
  color: #c5aa69;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #000;
  font-size: 1.7rem;
  font-weight: 700;
}

.catch-w {
  margin-bottom: 2rem;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.catch-g {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #a7e126;
}

.text-white {
  margin-top: -2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.lower-common {
  margin-top: 8rem;
  padding: 6rem 0 2rem;
  background: #efefef;
}
.lower-common__title {
  margin: -8rem auto 4rem;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
.lower-common__box {
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}
.lower-common__box:hover {
  opacity: 0.6;
}
.lower-common__box img {
  display: block;
  margin-bottom: var(--s1);
}
.lower-common__subttl {
  display: inline-block;
  padding-left: 2rem;
  background: url(img/arrow-01-gold-right.svg) no-repeat left 0.3rem/0.8rem auto;
  font-size: 1.6rem;
  font-weight: 700;
}

.sidebar-banner {
  margin-bottom: 4rem;
  padding: 1.5rem;
  background: url(img/bg-banner.jpg) no-repeat center/cover;
  outline: solid 1px #fff;
  outline-offset: -5px;
  text-align: center;
  z-index: 0;
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.sidebar-banner span.sm {
  font-size: 1.7rem;
}
.sidebar-banner span.bg-black {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #000;
  font-size: 1.5rem;
}
.sidebar-banner .btn-internal {
  width: 90%;
  margin: 4rem auto 2rem;
}
.sidebar-banner .btn-internal a {
  padding: 1.2rem 5rem 1.2rem 2rem;
  font-size: 1.6rem;
}

.lower-fkds {
  margin: 10rem 0 5rem;
}
.lower-fkds .common-title {
  font-size: 3.6rem;
}
.lower-fkds .common-title span.sm {
  font-size: 2.6rem;
}

.box-director {
  margin: 6rem auto;
  padding: 2rem 3rem 3rem;
  border: solid 1.5rem #c5aa69;
  background: url(img/bg-lower-sm.png) no-repeat left top, url(img/logo-soliton-red.png) no-repeat right 2rem top 2rem;
  background-size: 12rem auto, 12.6rem auto;
}
.box-director__title {
  font-size: 2.4rem;
  font-weight: 700;
}
.box-director__title span {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #000;
  color: #fff;
  font-size: 1.7rem;
}
.box-director .l-float {
  margin: 2rem 0;
}
.box-director .l-float .l-float__left {
  width: 24.5rem;
}
.box-director .btn-internal {
  width: 30rem;
  margin: 1rem auto 0 2rem;
  display: inline-block;
}
.box-director table {
  margin-bottom: 0;
}
.box-director table th {
  width: 30%;
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  body {
    line-height: 1.8;
    font-size: 1.5rem;
  }

  .for-sp {
    display: block;
  }

  .for-pc {
    display: none;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
    max-width: 94%;
  }

  .low.l-center {
    overflow: hidden;
    padding-top: 0;
  }

  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack {
    gap: var(--s3);
  }

  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster {
    gap: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout grid

  */
  .l-grid {
    grid-template-columns: 100%;
    grid-gap: var(--s3);
  }

  .l-grid-three {
    grid-template-columns: 100%;
  }

  .l-grid-four {
    padding: 0;
    grid-template-columns: 100%;
    grid-gap: 1rem var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout sidebar

  */
  .l-sidebar .l-sidebar__side {
    display: none;
  }
  .l-sidebar .l-sidebar__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column,
.l-column-s,
.l-column-s2,
.l-column-s3 {
    gap: var(--s2);
  }
  .l-column .l-column__side,
.l-column .l-column-s__side,
.l-column .l-column-s2__side,
.l-column .l-column-s3__side,
.l-column-s .l-column__side,
.l-column-s .l-column-s__side,
.l-column-s .l-column-s2__side,
.l-column-s .l-column-s3__side,
.l-column-s2 .l-column__side,
.l-column-s2 .l-column-s__side,
.l-column-s2 .l-column-s2__side,
.l-column-s2 .l-column-s3__side,
.l-column-s3 .l-column__side,
.l-column-s3 .l-column-s__side,
.l-column-s3 .l-column-s2__side,
.l-column-s3 .l-column-s3__side {
    width: 100%;
  }

.l-column-s2 .l-column-s2__side img {
  width: 16rem;
}
  
  .l-column .l-column__main,
.l-column .l-column-s__main,
.l-column .l-column-s2__main,
.l-column .l-column-s3__main,
.l-column-s .l-column__main,
.l-column-s .l-column-s__main,
.l-column-s .l-column-s2__main,
.l-column-s .l-column-s3__main,
.l-column-s2 .l-column__main,
.l-column-s2 .l-column-s__main,
.l-column-s2 .l-column-s2__main,
.l-column-s2 .l-column-s3__main,
.l-column-s3 .l-column__main,
.l-column-s3 .l-column-s__main,
.l-column-s3 .l-column-s2__main,
.l-column-s3 .l-column-s3__main {
    width: 100%;
  }

  .l-column-s3 {
    flex-direction: column-reverse;
  }

  /*
  ---------------------------------------------

      sp layout float

  */
  .l-float .l-float__left-pc {
    width: 100%;
    margin-right: 0;
    float: none;
    text-align: center;
  }
  .l-float .l-float__right-pc {
    width: 100%;
    margin-left: 0;
    float: none;
    text-align: center;
  }
  .l-float .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .l-float .l-float__left {
    width: 45%;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }
  .l-float .l-float__right {
    width: 45%;
    margin-left: var(--s2);
    margin-bottom: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: visible;
    /* chrome safari */
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }

  /*
  ---------------------------------------------

      layout 2column

  */
  .l-titleColumn {
    display: block;
  }
  .l-titleColumn .l-titleColumn__title {
    width: 100%;
  }
  .l-titleColumn .l-titleColumn__body {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-btn {
    right: 0;
    top: 0;
  }

  .gnavi-list,
.gnavi-list__sub {
    padding-bottom: 2rem;
  }

  /*
  ---------------------------------------------

  	pankuzu

  */
  #pankuzu {
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 2;
    position: relative;
  }

  /*
  ---------------------------------------------

      sp btn

  */
  .btn-web,
.btn-internal {
    width: 85% !important;
    margin: var(--s3) auto;
  }
  .btn-web a,
.btn-internal a {
    padding: 1.4rem;
    font-size: 1.5rem;
    background-position: right 0.5rem center;
    background-size: 1.6rem auto;
  }
  .btn-web:hover a,
.btn-internal:hover a {
    transform: translate(0, 0);
  }

  .btn-web.mb80 {
    margin-bottom: 3rem;
  }

  .btn-internal.back {
    width: 90%;
  }
  .btn-internal.back a {
    padding: 2rem 4.5rem 2rem 2rem;
    background-position: right 1.5rem center;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding: 0.5rem 3.5rem 0.5rem 0;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  .btn-tel {
    display: block;
    width: 85%;
    margin: var(--s3) auto;
    position: relative;
    z-index: 0;
  }
  .btn-tel a {
    width: 100%;
    margin: 0;
    padding: 1.4rem;
    background: #a7e126 url("img/icon-tel.svg") no-repeat center left 2rem/auto 1.5em;
    border: 2px solid #000;
    display: block;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    transition: transform 0.3s;
  }
  .btn-tel::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.5rem, 0.5rem);
  }
  .btn-tel:hover a {
    transform: translate(0, 0);
  }
  .btn-tel.mb80 {
    margin-bottom: 8rem;
  }

  .btn-back a {
    padding: 2rem 4.5rem 2rem 2rem;
    background-position: right 1.5rem center;
  }

  /*
  ---------------------------------------------

      sp table

  */
  table {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
  }

  thead, tbody, tr {
    display: block;
  }

  th, td {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    display: block;
  }

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #ccc;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #efefef;
    border-right: solid 1px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

  .l-scroll-x table thead,
.l-scroll-x-sp table thead {
    display: table-header-group;
  }
  .l-scroll-x table tbody,
.l-scroll-x-sp table tbody {
    display: table-row-group;
  }
  .l-scroll-x table tr,
.l-scroll-x-sp table tr {
    display: table-row;
  }
  .l-scroll-x table th, .l-scroll-x table td,
.l-scroll-x-sp table th,
.l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
    border: 1px solid #000;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }

  /*
  ---------------------------------------------

      sp caption

  */
  .caption {
    font-size: 0.9rem;
  }

  .caption-scroll {
    font-size: 0.9rem;
    /*chrome safari*/
  }
  .caption-scroll::-webkit-scrollbar {
    height: 0.4rem;
  }
  .caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
  }
  .caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
  }

  /*
  ---------------------------------------------

      sp footer

  */
  .footer-area {
    padding: 0;
  }

  .footer-bottom {
    padding: var(--s1) 0;
  }

  .footer-logo {
    margin: var(--s2) 0 var(--s3);
    font-size: 1.8rem;
  }
  .footer-logo__link {
    width: 18rem;
  }

  .footer-box + .footer-box {
    margin-top: var(--s2);
  }

  .footer-area .l-center.lines:before {
    width: 3rem;
    left: -1rem;
    top: -5rem;
  }

  .footer-menu-title__link {
    padding: var(--s1) var(--s3) var(--s1) var(--s1);
    position: relative;
    color: #fff;
  }
  .footer-menu-title__link::after {
    content: "";
    width: var(--s2);
    height: 100%;
    background: url("img/arrow-01-down.svg") no-repeat center/100%;
    position: absolute;
    top: 0;
    right: var(--s1);
    transform: rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link:active, .footer-menu-title__link:hover {
    color: #fff;
  }
  .footer-menu-title__link.is-open::after {
    transform: rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-01-right.svg") no-repeat center/auto 1em;
  }

  .footer-menu {
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu-sub {
    margin-left: var(--s1);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s1) var(--s1) 1.2em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }

  .footer-disclaimer {
    width: 100%;
    margin: var(--s2) 0;
    padding: var(--s1) var(--s2);
  }
  .footer-nocopy {
    margin: var(--s2) 0;
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  .footer-sitemap {
    display: none;
  }

  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-area {
    width: 100%;
  }

  .gnavi-list__link--menu:hover {
    opacity: 1;
  }

  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: 4rem;
    height: 4rem;
    right: var(--s1);
    bottom: var(--s3);
  }
  .page-top__link {
    background-size: 1.5rem auto;
  }
  .page-top__link:hover {
    opacity: 1;
  }

  /*
  ---------------------------------------------

      sp toggle

  */
  /*
  ---------------------------------------------

       sp toggle sp

  */
  .toggle-sp-content {
    display: none;
  }

  /*
  ---------------------------------------------

      sp more

  */
  /*
  ---------------------------------------------

      sp help

  */
  /*
  ---------------------------------------------

      sp help

  */
  .help-content {
    width: 70vw;
    padding: 1rem;
    top: 0;
  }
  .help-content--pos-left {
    left: -2rem;
    transform: translate(0, -100%);
  }
  .help-content--pos-left::after {
    left: 2.8rem;
    transform: translate(0, 100%);
  }
  .help-content--pos-right {
    right: -2rem;
    left: auto;
    transform: translate(0, -100%);
  }
  .help-content--pos-right::after {
    left: auto;
    right: 2.8rem;
    transform: translate(0, 100%);
  }
  .l-sidebar__main h1, .l-sidebar__main h2, .l-sidebar__main h3, .l-sidebar__main h4, .l-sidebar__main h5, .l-sidebar__main h6 {
    margin: 3rem auto 2rem;
  }
  .l-sidebar__main h1 {
    margin-bottom: 7rem;
    padding: 3rem;
    font-size: 2.8rem;
    line-height: 1.2;
    background-size: 96% auto;
  }
  .l-sidebar__main h2 {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .l-sidebar__main h2 a {
    background-size: 2rem auto;
  }
  .l-sidebar__main h3 {
    font-size: 1.8rem;
  }
  .l-sidebar__main h3 a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .l-sidebar__main h4 {
    font-size: 1.6rem;
  }
  .l-sidebar__main h4 a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .l-sidebar__main h5 {
    font-size: 1.5rem;
  }
  .l-sidebar__main h5 a {
    background-size: 2rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp TOP

  */
  .header-area.low {
    overflow: hidden;
  }
  .header-area.low .header-area__logo {
    width: 70%;
    padding-bottom: 0;
  }
  .header-area.low .header-area__logo:before {
    background-size: 14rem;
    left: -13rem;
    top: -3rem;
    height: 22rem;
  }
 .header-area.low .header-area__logo:after {
    background-size: 16rem;
    right: -12rem;
    top: -3.5rem;
    height: 24rem;
  }
  .header-area.low .header-area__name {
    padding: 0.5rem 3rem 0.5rem 0;
    margin-bottom: 0rem;
  }

  .header-area.low .l-center {
    min-height: initial;
  }
  .header-area .header-area__name {
    margin-bottom: 1rem;
    padding: 1rem 3rem 1rem 9rem;
    line-height: 1.2;
  }

  .sponsored__name {
    margin-bottom: 1rem;
  }

  .jump-menu-btn {
    padding-left: 4.5rem;
    width: 9rem;
    height: 5rem;
    font-size: 1.5rem;
  }
  .jump-menu-btn:after {
    border-width: 5rem 3.5rem 0 0;
  }
  .jump-menu-btn span {
    left: 1.2rem;
    width: 2.4rem;
  }
  .jump-menu-btn span:nth-of-type(1) {
    top: 1.7rem;
  }
  .jump-menu-btn span:nth-of-type(2) {
    top: 2.5rem;
  }
  .jump-menu-btn span:nth-of-type(3) {
    top: 3.3rem;
  }

  .mvArea {
    background-size: auto 117.6rem, 45vw, cover;
  }

  .mvArea::before {
    background-size: 50vw;
  }
  
  .mvArea .l-center.lines {
    padding-top: 0;
  }
  .mvArea-inner {
    display: block;
    padding: 2rem 0 2rem;
  }
  .mvArea-inner:before {
    width: 19rem;
    height: 25rem;
    left: -3rem;
    background-position: left top;
  }
  .mvArea-inner__center {
    width: 100%;
    padding: 0 3rem;
    position: relative;
  }
  .mvArea-inner__center:before {
    content: "";
    width: 14rem;
    height: 15rem;
    background: url(img/illust_a.png) no-repeat left bottom/contain;
    position: absolute;
    left: 0;
    top: 0rem;
    bottom: 110%;
    z-index: -1;
  }
  .mvArea-inner__center:after {
    content: "";
    width: 15rem;
    height: 15rem;
    background: url(img/illust_b.png) no-repeat left bottom/contain;
    position: absolute;
    right: -4.4rem;
    top: 0rem;
    bottom: 109%;
    z-index: -1;
  }
  .mvArea-inner__center .btn-internal {
    width: 90%;
    margin: 2rem auto;
  }
  
  .mvArea-inner__side {
    display: none;
  }
  .mvArea-title {
    font-size: 3.6rem;
    line-height: 1.6;
  }
  .mvArea-title span:before {
    top: 0.5rem;
    height: calc(100% - 0.5rem);
  }
  .mvArea-logo {
    width: 100%;
    margin: 0 auto 0;
  }

  .toc-wrap {
    padding: 6rem 2rem 2rem 2rem;
    font-size: 2.8rem;
    line-height: 1;
    top: -1.5rem;
  }
  .toc-wrap-ttl {
    width: 16rem;
    margin-top: -8rem;
    padding: 1rem 3rem 1.5rem;
  }
  .toc-wrap ol.chapter {
    font-size: 1.5rem;
  }
  .toc-wrap ol.chapter li:before {
    font-size: 1.6rem;
  }
  .toc-wrap ol.chapter a {
    background-size: 2rem auto;
    padding-right: 3rem;
  }

  .relations-ttl {
    padding-left: 4rem;
    font-size: 2rem;
  }
  .relations-list {
    padding-top: 1rem;
    padding-left: 4rem;
    background-size: 1.4rem auto;
  }
  .relations-list:before {
    height: 13rem;
    left: 1rem;
  }
  .relations-list__item {
    width: 100%;
  }
  .relations-list__picItem {
    width: 100%;
  }

  .slider-wrap {
    margin-bottom: 6rem;
  }
  .slider .slick-slide {
    width: 31rem;
  }
  .slider .slick-next,
.slider .slick-prev {
    width: 3rem;
    height: 0.5rem;
    background-size: auto 100%;
  }
  .slider .slick-next {
    right: -1.5rem;
  }
  .slider .slick-prev {
    left: -1.5rem;
  }
  .slider .caption {
    padding: 0 1rem;
  }

  .slider-title {
    max-width: 32rem;
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .common-title {
    margin-bottom: 2rem;
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .common-title span.sm {
    font-size: 2rem;
  }
  .common-title span.tag {
    padding: var(--s1) 0;
    top: 1.8rem;
    font-size: 1.6rem;
  }
  .common-title.white {
    font-size: 2.6rem;
  }
  .common-title span.green {
    font-size: 3.6rem;
}
  .common-title a {
    display: block;
    padding: 0 3rem;
    background-size: 2.5rem auto;
  }

  /*
  ---------------------------------------------

      TOP section background

  */
  .bg-sec1 {
    background-position: calc(50% + 34rem) top, center;
  }
  .bg-sec1 .l-center {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .intro .name-card {
    margin-top: 20rem;
  }
  .intro .name-card.enkaku:before {
    width: 29rem;
    height: 35rem;
    left: calc(50vw - 14.5rem);
    top: -20rem;
  }
  .intro .name-card.rinjo:after {
    width: 26rem;
    height: 32rem;
    left: auto;
    right: 3rem;
    top: -18rem;
  }

  .l-center.lines {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .bg-gold.slash .l-center {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
  .bg-gold.slash .l-center:before, .bg-gold.slash .l-center:after {
    content: none;
  }

  .bg-gold.slash .common-title {
    margin: 4rem 0 2rem;
    position: static;
  }

  .bg-cream .l-center:before {
    left: -12rem;
    z-index: -1;
  }

  .l-grid-three.flow {
    margin-top: 6rem;
  }

  .title-flow {
    padding-right: 4rem;
    font-size: 2rem;
  }
  .title-flow-wrap {
    align-items: center;
  }
  .title-flow-wrap:before {
    height: 3rem;
    left: 0;
    top: -2rem;
  }

  .common-title.limitline {
    padding-top: 4rem;
  }

  .bg-graypaper {
    z-index: 0;
    position: relative;
  }
  .bg-graypaper .l-center:before {
    left: -13rem;
    z-index: -1;
  }

  .bg-gold80 {
    margin: 3rem -1.6rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding: 3rem var(--s2);
  }

  .sec1-inner {
    max-width: 100%;
  }

  .sec1-title {
    /* padding-bottom: 4rem; */
    font-size: 2.2rem;
    line-height: 1.3;
    background-size: 10rem auto;
  }
  .sec1-title span.st {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
  }
  .sec1-title-en {
    height: 2.4rem;
  }

  .box-fkds {
    justify-content: space-between;
    align-items: flex-start;
  }
  .box-fkds__illust {
    width: 10rem;
  }
  .box-fkds__main {
    width: calc(100% - 9rem);
  }

  .fkds {
    padding: 1.5rem 2rem;
  }
  .fkds:after {
    left: -1.5rem;
    top: 3rem;
  }

  .box-fkds.rightside .fkds:after {
    right: -1.5rem;
  }

  .l-column-vc {
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  .l-column-vc__left {
    width: 100%;
  }
  .l-column-vc__right {
    width: 100%;
    margin-top: 3rem;
  }

  .box-voice {
    display: block;
  }
  .box-voice:after {
    transform: scale(-1, 1);
    left: 0;
    top: 8rem;
  }
  .box-voice .percent {
    width: 10rem;
    height: 10rem;
    font-size: 3rem;
  }
  .box-voice .percent-body {
    width: 100%;
    padding-left: 1.5rem;
  }
  .box-voice .percent-body .title-green {
    margin-top: -3rem;
    padding-left: 10rem;
  }

  .title-green {
    font-size: 2.2rem;
  }

  .title-white {
    margin: 4rem -1.6rem 2rem;
    font-size: 2rem;
  }

  .box-gold {
    padding: 1.5rem;
  }
  .box-gold .l-float-title {
    font-size: 2rem;
    display: flex;
    padding-top: 2rem;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    text-align: center;
    justify-content: center;
  }
  .box-gold .l-float .l-float__right {
    width: 100%;
  }

  .director-pic {
    height: 18rem;
  }
  .director-text {
    padding: 1.5rem;
    padding-top: 0;
  }
  .director-name:before {
    content: none;
  }

  .title-question {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0.5rem 1.5rem 9rem;
    font-size: 2.2rem;
    background-size: auto 101%;
    background-position: calc(50% - 16rem) top;
  }
  .title-question:after {
    width: 7.5rem;
    left: -0.5rem;
    top: auto;
    bottom: 100%;
  }
  .title-question:before {
    font-size: 4rem;
    left: 1rem;
  }

  .fkds-answer__pic {
    width: 4rem;
    margin-bottom: 0.5rem;
  }

  .title-bk-center {
    margin-top: 0;
    font-size: 2.6rem;
  }

  .narrow {
    padding: 0;
  }

  .l-grid-three {
    margin: 4rem 0;
  }
  .box-beige__title {
    font-size: 2.0rem;
}
  .l-grid-three .btn-internal {
    margin: 0 auto;
  }

  .box-case {
    display: block;
  }
  .box-case__num {
    width: 100%;
    padding-top: 1rem;
    height: 5rem;
  }
  .box-case__num:after {
    border-width: 0 0 5.1rem 5rem;
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
  }
  .box-case__num span.number {
    display: inline-block;
    padding-left: 0.5rem;
    font-size: 2.4rem;
  }
  .box-case__body {
    width: 100%;
  }

  .box-summary {
    padding: 3rem 2rem;
    padding-bottom: 21rem;
  }
  .box-summary:after {
    width: 12rem;
    right: -1rem;
  }
  .box-summary:before {
    width: 16rem;
    left: -1rem;
  }
  .box-summary__title {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .box-summary.lower {
    padding: 3rem 2rem;
    padding-bottom: 17rem;
  }
  .box-summary.lower:before {
    width: 14rem;
    left: -2rem;
  }
  .box-summary.lower:after {
    width: 10.5rem;
    right: 0;
  }
  .box-summary.lower .btn-web {
    width: 90%;
  }

  .box-btn {
    padding: 0;
  }
  .box-btn .btn-internal a {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    background-position: right 0.5rem center;
    background-size: 1.6rem auto;
    display: block;
  }

  .l-grid-three .btn-internal a {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    background-position: right 0.5rem center;
    background-size: 1.6rem auto;
    display: block;
  }

  .box-img__title {
    font-size: 2rem;
  }

  .box-gray__title a {
    padding: 2.4rem 5rem 2.4rem 6.5rem;
    background-size: 2.5rem auto;
    font-size: 2rem;
  }

  .bg-graypaper.white .l-center:before {
    left: -12rem;
    top: -0.1rem;
  }

  .bg-graypaper.white .l-center {
    padding-bottom: 6rem;
  }

  .bg-noiz .l-center:before {
    width: 18rem;
    left: -1rem;
    bottom: -1.5rem;
    background-position: center bottom -5rem;
  }
  .bg-noiz .l-center:after {
    width: 20rem;
    right: -1rem;
    bottom: -5rem;
    background-position: center bottom -2rem;
    z-index: -2;
  }
  .bg-noiz .l-center.lines {
    padding-bottom: 20rem;
  }

  .box-gray .btn-corner {
    width: 42%;
  }

  .tag-issue {
    width: 7rem;
    height: 7.5rem;
  }
  .tag-issue span {
    font-size: 2.8rem;
  }

  .deco2:before {
    left: -2.5rem;
    width: 3.5rem;
    background-position: center top;
  }
  .deco2:after {
    width: 1.6rem;
    right: -1rem;
    background-position: center bottom;
  }
  .deco2.pos02:before {
    top: -2rem;
  }

  .lower-common {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .lower-common__title {
    margin-top: -3rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    font-size: 2rem;
    line-height: 1.4;
  }

  .box-director {
    border-width: 1rem;
    padding: 2rem;
    background-size: 8rem auto, 8rem auto;
  }
  .box-director .l-float .l-float__left {
    width: 14rem;
  }
  .box-director__title {
    font-size: 2rem;
  }
  .box-director__title span {
    font-size: 1.4rem;
  }
  .box-director table th {
    width: 100%;
  }
  .box-director .btn-internal {
    display: block;
    width: 90%;
    margin: 2rem auto;
  }
  .box-director .catch-b {
    line-height: 1.5;
  }
  .box-director .catch-b span {
    padding-bottom: 0;
  }
  .box-director table {
    margin: 0;
  }

  .lower-fkds.deco2:before {
    left: -1.2rem;
  }
  .lower-fkds .common-title {
    font-size: 2.6rem;
  }
  .lower-fkds .common-title span.sm {
    font-size: 1.8rem;
  }
}
