@charset "UTF-8";
/* 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: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
/*
---------------------------------------------

    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: 1150px) {
  :root {
    font-size: 0.8695652174vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  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.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  -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;
}

p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

    animation

*/
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/*
---------------------------------------------

    layout center

*/
.l-center {
  max-width: 115rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center--narrow {
  max-width: 100rem;
}

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

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s8);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.l-stack--narrow {
  gap: var(--s4);
}
.l-stack--wide {
  gap: 10rem;
}

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

    layout cluster

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

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

    layout grid

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

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

.l-grid-four {
  --minmum: calc((100% - var(--s3) * 3) / 4);
  display: grid;
  grid-gap: var(--s3);
}

@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: var(--s5);
}
.l-sidebar__side {
  width: 24rem;
}
.l-sidebar__main {
  flex: 1;
}

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

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column__side {
  width: 22rem;
}
.l-column__side02 {
  width: 17rem;
}
.l-column__side03 {
  width: 46rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 40rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 40rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

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

    layout float

*/
.l-float {
  display: flow-root;
}
.l-float__left-pc {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right-pc {
  width: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.l-float__center {
  width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}
.l-float__left {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right {
  width: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}

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

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.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;
}

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

    list

*/
.main-area .subList,
.main-area ul:not([class]),
.remodal-wrapper .subList,
.remodal-wrapper ul:not([class]) {
  margin: var(--s4) 0;
}
.main-area--low ol{
  margin: var(--s4) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li,
.remodal-wrapper .subList li,
.remodal-wrapper ul:not([class]) li {
  padding: 0 0 0 1.6em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before,
.remodal-wrapper .subList li::before,
.remodal-wrapper ul:not([class]) li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #E5007E;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0.3em;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li,
.remodal-wrapper .subList li + li,
.remodal-wrapper ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area ol:not([class]),
.remodal-wrapper ol:not([class]) {
  counter-reset: number;
}
.main-area ol:not([class]) li,
.remodal-wrapper ol:not([class]) li {
  padding: 0 0 0 2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before,
.remodal-wrapper ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.main-area ol:not([class]) li + li,
.remodal-wrapper ol:not([class]) li + li {
  margin-top: 1em;
}

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

    btn

*/
.btn-internal {
  width: 38rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 5.2rem;
  background: #00EEE0 url(img/arrow-01-black-right.svg) no-repeat center right 2.2rem/2.7rem auto;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-internal a span.cl {
  color: #F2B75A;
}
.btn-internal--down a {
  background-image: url(img/arrow-01-white-down.svg);
  background-size: 1.2rem auto;
  background-position: center right var(--s3);
}
.btn-internal:hover a {
  transform: translate(0.4rem, 0.4rem);
  box-shadow: none;
}

.btn-web {
  width: 38rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 5.2rem;
  background: #E5007E;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-web a:before {
  content: "";
  width: 2.8rem;
  height: 3.2rem;
  background: url(img/arrow-btn-web.svg) no-repeat center/contain;
  position: absolute;
  right: var(--s3);
  top: 50%;
  transform: translateY(-50%);
}
.btn-web:hover a {
  transform: translate(0.4rem, 0.4rem);
}

.btn-link {
  margin: var(--s2) 0 var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0 var(--s4) 0 0;
  background: url("img/arrow-02-green-right.svg") no-repeat center right/1.7rem auto;
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.btn-link--white a {
  color: #fff;
  background-image: url(img/arrow-02-white-right.svg);
}

.btn-tel {
  display: none;
}

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

    table

*/
table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.main-area--low table {
  margin-top:var(--s6);
  margin-bottom:var(--s6);
}

th, td {
  padding: 1.1rem;
  border-right: solid 1px #C7C7C7;
  border-bottom: solid 1px #C7C7C7;
  line-height: 1.5;
  word-break: break-all;
}

th {
  background: #F5F8FD;
}

td {
  background: #fff;
}

tbody th {
  background: #e4f5ed;
}

.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;
  display: block;
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: #999;
}
.caption--left {
  text-align: left;
}

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.4rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

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

	catch

*/
.catch-01 {
  font-size: 2.2rem;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 1.5;
  color: #18847F;
}

.catch-02 {
  font-size: 2.4rem;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 1.5;
  color: #18847F;
}

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

	text

*/
.txt_marker, .marker{
  border-bottom: solid 0.3rem #e5007e;
  font-weight: 700;
}
.txt_bold {
  font-weight: 700;
}

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

	subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: 0;
}

.subgrid-card02 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  grid-gap: 0;
}

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

    float wrap

*/
.float-wrap {
  display: flow-root;
}
.main-area--low .float-wrap {
  margin-top: var(--s6);
  margin-bottom: var(--s6);
}
.float-wrap .float-img.fr {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 75rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

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

	pankuzu

*/
#pankuzu {
  width: fit-content;
  margin: var(--s5) auto var(--s5) 0;
  padding: var(--s-2) var(--s2);
  color: #000;
  background: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#pankuzu > span {
  color: #000;
}

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

	tag-01

*/
.tag-01 {
  padding: var(--s-2) var(--s2);
  border: solid 1px;
  border-radius: var(--s4);
  background: #fff;
}

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

    footer

*/
.footer-area {
  margin-top: 14rem;
  padding: var(--s5) 0 0;
  background: #ECECEC;
  position: relative;
}
.footer-area-logo {
  width: 15rem;
  margin: 0 auto var(--s4) 0;
}
.footer-area-logo a:hover {
  opacity: 0.7;
}

.footer-main {
  max-width: 115rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.footer-bottom {
  padding: var(--s1) 0;
  background: #000;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #000;
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.footer-menu-title__link:hover {
  opacity: 0.6;
}

.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.5;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.footer-menu__link:hover {
  opacity: 0.6;
}

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

.footer-disclaimer {
  width: 75rem;
  margin: var(--s7) auto var(--s5);
  padding: var(--s2) var(--s4);
  background: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

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

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

.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
}
.footer-sitemap__link {
  color: #fff;
  text-decoration: none;
}
.footer-sitemap__link:hover {
  color: #fff;
  text-decoration: underline;
}

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

    page

*/
.page-top {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  z-index: 8;
  overflow: hidden;
}
.page-top__link {
  display: block;
  width: 15rem;
  height: 7.5rem;
}
.page-top__link:hover {
  opacity: 0.6;
}

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

    gnavi

*/
.gnavi-btn {
  width: 8rem;
  height: 8rem;
  background: #000;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: var(--s5);
  height: 0.3rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.9rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.4rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.9rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 5.4rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1.4rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.5rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 10rem 0;
  background: #ECECEC;
  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: auto;
}

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url("img/arrow-03-black-down.svg") no-repeat center/100%;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title:hover {
  opacity: 1;
}
.gnavi-box__title.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.2);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
  content: "└";
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 1.2rem var(--s2) 1.2rem var(--s5);
  display: block;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
  opacity: 0.6;
}

.gnavi-menu__item {
  border-bottom: 1px solid #999;
}

.gnavi-menu-sub__item {
  border-top: 1px solid #999;
}

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

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

    toc

*/
.toc-wrap {
  margin: var(--s6) auto;
  max-width: 100rem;
  background: #ECECEC;
  position: relative;
  z-index:1;
}
.toc-wrap__title {
  display: block;
  padding: var(--s3) var(--s5);
  background: linear-gradient(to left, #000 7.2rem, #ECECEC 7.2rem, #ECECEC 0);
  font-size: 2.2rem;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: #000;
  line-height: 1;
  position: relative;
}
.toc-wrap__title span.en {
  margin-left: var(--s5);
  font-size: 1.8rem;
  color: #3E3A39;
}
.toc-wrap--relations .toc-wrap__title {
  background: #ECECEC;
}
.toc-wrap__main {
  padding: var(--s3) var(--s4) var(--s4);
  position: relative;
}
.toc-wrap__main:before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
}
.toc-wrap__main.toc-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) 4%;
}
.toc-wrap__main.toc-top li {
  width: 48%;
}
.toc-wrap .toc-wrap__main.toc-top ul li.chapter-h-two + li {
  margin-top: 0;
}
.toc-wrap ul {
  margin: 0;
  padding: 0;
}
.toc-wrap ul li {
  padding-left: 1.6em;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
.toc-wrap ul li + li {
  margin-top: 1em;
}
.toc-wrap ul li.chapter-h-two {
  padding-left: 2.6em;
}
.toc-wrap ul li.chapter-h-two:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(img/arrow-02-green-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.3em;
  left: var(--s1);
}
.toc-wrap ul li.chapter-h-two + li {
  margin-top: 0.8em;
}
.toc-wrap ul li.chapter-h-three {
  margin: var(--s1) 0 var(--s1) var(--s5);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.toc-wrap ul li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.toc-wrap ul li.chapter-h-three a {
  background: none;
}
.toc-wrap a {
  display: block;
  text-decoration: none;
}
.toc-wrap a:hover {
  text-decoration: underline;
}
.toc-wrap .relations-links {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}
.toc-wrap .relations-links .catch-01{
	font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.5;
    color: #000000;
}
.toc-wrap .relations-links li {
  width: calc((100% - var(--s3)) / 2);
  padding-left: 2em;
  position: relative;
}
.toc-wrap .relations-links li:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(img/arrow-02-pink-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.3em;
  left: var(--s1);
}
.toc-wrap .relations-links li + li {
  margin-top: 0;
}

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  position: relative;
  transition: opacity 0.3s;
}
.toggle-btn::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 1px;
  height: 2.5rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.6rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}
.toggle-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

.toggle-content {
  display: none;
}
.toc-wrap .toggle-content {
  display: block;
}

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

    more

*/
.more-btn {
  max-width: 24rem;
  margin: var(--s10) auto;
  padding: var(--s2) var(--s7);
  background: #fff;
  border-radius: 10rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: #000;
  position: absolute;
  top: 50%;
  right: 3.1rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn:hover {
  opacity: 0.6;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more-content {
  display: none;
}
.more-content.sp-only {
  display: block;
}

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

    modal

*/
.remodal-overlay {
  background: rgba(194, 194, 194, 0.8);
}

.remodal-inner {
  text-align: left;
}
.remodal-inner ul:not([class]) li + li {
  margin-top: 0.4em;
}

.remodal {
  border-radius: var(--s2);
  box-shadow: -1rem 1rem #C8D7E2, -1rem -1rem #C8D7E2, 1rem 1rem #C8D7E2, 1rem -1rem #C8D7E2;
}
.remodal-cancel {
  right: var(--s2);
  top: var(--s2);
}

.modal-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.6rem var(--s6) 0.6rem var(--s2);
  border-radius: var(--s4);
  border: solid 1px #18847F;
  background: #fff url(img/icon-modal.png) no-repeat right var(--s2) center/2rem auto;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.modal-btn:hover {
  opacity: 0.7;
}

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

    titles

*/
.pr-text {
  text-align: center;
  font-size: 1.4rem;
  color:#999;
  margin-top:1rem;
}

.main-area h1, .main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
  font-family: "Noto Sans JP";
  font-weight: 700;
}

h1:not([class]) {
  margin: 0 auto;
  padding: 6rem 0 0;
  font-family: "Noto Sans JP";
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
}
h1:not([class]):first-letter {
  padding:0 1rem;
  color: #fff;
  background: #000;
  margin-right:0.5rem;
}

.main-area--low h2:not([class]), .main-area--low h3:not([class]), .main-area--low h4:not([class]), .main-area--low h5:not([class]), .main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-weight: 700;
}
.main-area--low h2:not([class]) a, .main-area--low h3:not([class]) a, .main-area--low h4:not([class]) a, .main-area--low h5:not([class]) a, .main-area--low h6:not([class]) a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
}
.main-area--low h2 a:hover, .main-area--low h3 a:hover, .main-area--low h4 a:hover, .main-area--low h5 a:hover, .main-area--low h6 a:hover {
  opacity: 0.6;
}
.main-area--low h2:not([class]) {
  padding: 0.6rem var(--s3) 1.2rem var(--s4);
  font-size: 3rem;
  color: #fff;
  background: #000;
  letter-spacing: 0.2rem;
  position: relative;
}
.main-area--low h2:not([class]):before {
  content: "";
  width: 0.2rem;
  height: 80%;
  background: #E5007E;
  position: absolute;
  left: var(--s1);
  top: 10%;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-02-white-right.svg) no-repeat right center;
  background-size: 2rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  padding: 0 0 0.4rem var(--s2);
  background: linear-gradient(transparent 45%, rgba(0, 238, 224, 0.2) 45%);
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-02-green-right.svg) no-repeat right var(--s2) center;
  background-size: 2rem auto;
}
.main-area--low h4:not([class]), .main-area--low h5:not([class]) {
  padding: 0 var(--s2) var(--s1);
  border-bottom: solid 1px #000;
  font-size: 2.2rem;
}
.main-area--low h4:not([class]) a, .main-area--low h5:not([class]) a {
  background: url(img/arrow-02-green-right.svg) no-repeat right center;
  background-size: 2rem auto;
}

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

    TOP

*/
.header-area {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: var(--s3);
}
.header-area__logo {
  width: 15rem;
  height: 10.4rem;
  position: absolute;
  left: var(--s1);
  top: var(--s1);
  z-index: 1;
}
.header-area__name {
  color:#009188;
  font-family:  "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Times New Roman",  serif;
  font-weight:bold;
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing:1px;
}
.header-area__name span{
  color:#fff;
  background:#000;
  font-size: 1.3rem;
  padding: 1px 3px;
  display:table;
  margin-top:0;
}
.header-area a.header-area__name {
  text-decoration: none;
  display: block;
}
.header-area a.header-area__name:hover {
  opacity: 0.6;
}
.header-area .sponsered {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top:6px;
  background: rgba(255, 255, 255, 0.8);
  padding:3px;
  max-width:110px;
}
.header-area .btn-web {
  max-width: 25rem;
  margin: 0;
  position: fixed;
  right: 9rem;
  top: var(--s1);
  z-index: 9;
}
.header-area .btn-web a {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.mainvisual-lower {
  margin-bottom: var(--s2);
  padding: var(--s5) 0 var(--s10);
  position: relative;
}
.mainvisual-lower:before {
  content: "";
  position: absolute;
  width: calc(100% - var(--s8));
  height: calc(100% - var(--s4));
  top: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  background: url(img/mv-bg-low.jpg) no-repeat center/cover;
}
.mainvisual-top {
  position: relative;
  overflow: hidden;
}
.mainvisual-top:before {
  content: "";
  position: absolute;
  width: calc(100% - var(--s8));
  height: calc(100% - var(--s8));
  top: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  background: url(img/bg-sp.jpg)no-repeat;
  background-size:cover;
}
.mainvisual-top__pic {
  width: calc(100% - var(--s4));
  height: auto;
  position: relative;
  left: var(--s4);
  top: 0;
}
.mainvisual-top__pic img{
}
.mainvisual-title {
  max-width: 80.5rem;
  margin: 0;
  font-family: "Noto Serif JP";
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}
.mainvisual-title span {
  display: block;
  margin-bottom: var(--s1);
  max-width: 28.4rem;
}
.mainvisual-title-wrap {
  position: absolute;
  left: 30%;
  top: 16rem;
}
.mainvisual-lead {
  max-width: 80.5rem;
  margin-top: var(--s2);
  padding: var(--s3);
  background: rgba(255, 255, 255, 0.85);
}

.sponsored-p {
  text-align: center;
  font-size: 1.4rem;
}

.main-area {
  padding-bottom: 10rem;
  overflow: clip;
}
.main-area--low {
  padding: 0 0 var(--s5) 0;
  position: relative;
}
.main-area--low:before {
  content: "";
  position: absolute;
  width: calc(100% - var(--s8));
  height: calc(100% - var(--s4));
  top: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  background: url(img/bg.jpg);
}
.main-area--low .l-center {
  padding-top: var(--s9);
}
.main-area--low .l-center:before {
  content: "";
  width: 46rem;
  height: 46rem;
  background: url(img/deco-wave.png) no-repeat center/contain;
  position: absolute;
  left: -23rem;
  top: -7rem;
  z-index: -1;
}
.main-area--low .l-center:after {
  content: "";
  width: 90rem;
  height: 111.5rem;
  background: url(img/bg-deco-02.png) no-repeat left top/contain;
  position: absolute;
  right: -65rem;
  top: -7rem;
}

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

    lower Parts

*/
.lower-summary {
  margin: 6rem auto;
  padding: var(--s5) 0 0 34rem;
  position: relative;
  z-index: 0;
}
.lower-summary:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s10));
  background: #fff;
  position: absolute;
  left: var(--s9);
  top: var(--s5);
  z-index: -1;
}
.lower-summary:after {
  content: "";
  width: 49rem;
  height: 49rem;
  background: url(img/deco-wave.png) no-repeat center/contain;
  position: absolute;
  left: -30rem;
  bottom: -10rem;
  z-index: -1;
}
.lower-summary__title {
  margin-top: -4rem;
  margin-bottom: var(--s3);
  font-family: "Noto Sans JP";
  font-size: 8rem;
  font-weight: 700;
  color: #00EEE0;
  line-height: 1;
}
h2.lower-summary__title {
  font-size: 3rem;
  margin-top: -2rem;
  margin-bottom: var(--s2);
  padding: var(--s1);
  background: #00EEE0;
  display: inline-block;
  color: #000;
  line-height:1.4;
}
.lower-summary__pic {
  width: 30rem;
  height: 30rem;
  position: absolute;
  left: 0;
  top: 0;
}
.lower-summary__pic img {
}
.lower-summary__name {
  margin-top: var(--s1);
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.lower-summary .catch-02 {
  margin-bottom: var(--s3);
}
.lower-summary .btn-web {
  margin-left: 0;
}

.box-case {
  margin: 6rem auto 10rem;
  padding: var(--s5) var(--s8) var(--s5) 0;
  position: relative;
  z-index: 0;
}
.box-case:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s5));
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.box-case:after {
  content: "";
  width: 52.5rem;
  height: 40.5rem;
  background: url(img/deco-dot.png) no-repeat center/contain;
  position: absolute;
  right: -10rem;
  bottom: -6rem;
  z-index: -2;
}
.box-case__title {
  margin-top: -4rem;
  margin-bottom: var(--s3);
  font-family: "Noto Sans JP";
  font-size: 8rem;
  font-weight: 700;
  color: #00EEE0;
  line-height: 1;
}
h2.box-case__title, h3.box-case__title, h4.box-case__title, h5.box-case__title{
  font-size: 3rem;
  margin-top: -2rem;
  margin-bottom: var(--s2);
  padding: var(--s1);
  background: #00EEE0;
  display: inline-block;
  color: #000;
  line-height:1.4;
}
.box-case__pic {
  width: 30rem;
  height: 30rem;
  position: absolute;
  left: 0;
  top: 0;
}
.box-case__pic img {
  border-radius: 50%;
}
.box-case__name {
  margin-top: var(--s1);
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.box-case .catch-02 {
  margin: 1.5rem 0rem 0rem 0rem;
  /*margin-bottom: var(--s3);*/
}
.box-case .btn-web {
  margin-left: 0;
}
.box-case .l-cluster {
  margin: var(--s3) 0;
}

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

    comment

*/
.parts-comment--lower {
  margin: 6rem auto;
}
.parts-comment__catch {
  margin-bottom: var(--s5);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
}
.parts-comment-wrap {
  display: flex;
  gap: var(--s4);
}
.parts-comment-wrap--reverse {
  flex-direction: row-reverse;
}
.parts-comment-wrap__side {
  width: 16rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.parts-comment-wrap__side p {
  margin-top: var(--s1);
  line-height: 1.5;
}
.parts-comment-wrap__side img {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
}
.parts-comment-wrap__main {
  flex: 1;
}
.parts-comment-wrap + .parts-comment-wrap {
  margin-top: var(--s5);
}

.card-comment {
  padding: var(--s4);
  border: solid 1px #00EEE0;
  background: #fff;
  position: relative;
}
.card-comment:before {
  content: "";
  width: 2rem;
  height: 2.5rem;
  background: url(img/fkds-parts.png) no-repeat center right/contain;
  position: absolute;
  left: -1.4rem;
  top: var(--s5);
}
.card-comment--reverse:before {
  left: auto;
  right: -1.4rem;
  transform: rotate(180deg);
}

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

    interview

*/
.interview-section {
  margin: 6rem 0;
}

.interview-box__q {
  min-height: var(--s9);
  margin-bottom: var(--s3);
  padding: 0 0 0 8.8rem;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.interview-box__q::before {
  content: "";
  width: 7rem;
  height: 7rem;
  background: url(img/icon-q.png) no-repeat center/contain;
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
}
.interview-box__a {
  min-height: var(--s9);
  margin-bottom: var(--s3);
  padding: 0 0 0 8.8rem;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  background: #000;
  color:#fff;
}
.interview-box__a::before {
  content: "";
  width: 7rem;
  height: 7rem;
  background: url(img/icon-a.png) no-repeat center/contain;
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
}


.interview-box__content .l-float {
  margin: var(--s3) 0 0;
}
.interview-box__catch {
  padding: 1rem var(--s3);
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.interview-box + .interview-box {
  margin-top: var(--s8);
}

.lower-common {
  overflow: hidden;
  margin-top: 14rem;
  padding: 14rem 0;
}
.lower-common.sec-sponsored {
  margin-bottom: 10rem;
}

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

    TOP common

*/
section {
  padding: 14rem 0;
}
section.no-padding {
  padding: 0;
}

.common-title-en {
  margin-bottom: var(--s4);
  font-family: "Noto Sans JP";
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 238, 224, 0.5);
  position: relative;
}

.subtitle {
  margin-bottom: var(--s4);
  font-family: "Noto Sans JP";
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 238, 224, 0.5);
  position: relative;
}

.common-title {
  margin-bottom: var(--s5);
  font-family: "Noto Sans JP";
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 0;
}
.common-title span.st {
  color: #E4F5EE;
  font-size: 4.6rem;
}
.common-title span.st2 {
  color: #E4F5EE;
  font-size: 5.4rem;
}
.common-title span.bg {
  display: inline-block;
  margin-right: 1.2rem;
  padding: 0.2rem var(--s2);
  background: #000;
  color: #fff;
}
.sec-sponsored .common-title span.bg-white {
  display: inline-block;
  padding: 0.2rem var(--s2);
  background: #fff;
  color: #000;
  font-size: 4.6rem;
}
.sec-sponsored .common-title span{
  font-size:2.8rem;
}
.common-title a {
  text-decoration: none;
  padding-right: 5rem;
  background: url(img/arrow-03-green-right.svg) no-repeat right center/3.7rem auto;
}
.common-title a:hover {
  opacity: 0.7;
}

.common-lead {
  margin-bottom: var(--s10);
  max-width: 78rem;
}
.common-lead--white {
  color: #fff;
}

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

    TOP parts

*/
.bg-sec01 {
  position: relative;
}
.bg-sec01 .l-center:before {
  content: "";
  width: 64rem;
  height: 64rem;
  background: url(img/deco-wave.png) no-repeat center/contain;
  position: absolute;
  right: -20rem;
  top: -7rem;
  z-index: -1;
}

.box-name {
  margin: 10rem auto;
  height: 53rem;
  background: url(img/machine-01.jpg) no-repeat center/auto 100%;
  position: relative;
}
.box-name__list {
  width: fit-content;
  padding: 1.2rem var(--s2) 1.2rem 7.5rem;
  background: #000 url(img/icon-about-01.png) no-repeat left var(--s2) center/auto 5rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  position: absolute;
}
.box-name__list--01 {
  padding-left: 8.5rem;
  left: var(--s5);
  top: 0;
}
.box-name__list--01:before {
  content: "";
  width: 4.4rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  left: 99%;
  top: 50%;
  transform: rotate(22deg);
}
.box-name__list--02 {
  background-image: url(img/icon-about-02.png);
  left: 0;
  top: 22rem;
}
.box-name__list--02:before {
  content: "";
  width: 4.4rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  left: 99%;
  top: 50%;
  transform: rotate(-3deg);
}
.box-name__list--03 {
  background-image: url(img/icon-about-03.png);
  padding-left: 6.5rem;
  bottom: 0;
  left: var(--s7);
}
.box-name__list--03:before {
  content: "";
  width: 4.4rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  left: 99%;
  top: 50%;
  transform: rotate(-22deg);
}
.box-name__list--04 {
  background-image: url(img/icon-about-04.png);
  right: var(--s5);
  top: 0;
}
.box-name__list--04:before {
  content: "";
  width: 4.4rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  right: 99%;
  top: 50%;
  transform: rotate(-22deg);
}
.box-name__list--05 {
  background-image: url(img/icon-about-05.png);
  right: 0;
  top: 22rem;
}
.box-name__list--05:before {
  content: "";
  width: 4.4rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  right: 99%;
  top: 50%;
  transform: rotate(-3deg);
}
.box-name__list--06 {
  padding-left: 8rem;
  background-image: url(img/icon-about-06.png);
  bottom: 0;
  right: var(--s5);
}
.box-name__list--06:before {
  content: "";
  width: 4.4rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  right: 99%;
  top: 50%;
  transform: rotate(22deg);
}

.bg-sec02 {
  position: relative;
}
.bg-sec02:before {
  content: "";
  position: absolute;
  width: calc(100% - var(--s8));
  height: calc(100% - var(--s8));
  top: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  background: url(img/bg-photo.jpg) repeat-y center top/100% auto;
}
.bg-sec02:after {
  content: "";
  width: 52.5rem;
  height: 40.5rem;
  background: url(img/deco-dot.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: -6rem;
  z-index: -3;
}
.bg-sec02 .l-center {
  position: relative;
}
.bg-sec02 .l-center:before {
  content: "";
  position: absolute;
  width: 54.4rem;
  height: 31.2rem;
  top: -17rem;
  right: -25rem;
  z-index: -1;
  background: url(img/sec01-illust-01.png) no-repeat center/contain;
}

.card-exam__pic {
  display: block;
  margin-bottom: var(--s2);
  padding: var(--s3);
  width: 100%;
  height: 32rem;
  border: solid 2px #00EEE0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.card-exam__pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/sec02-pic-01.jpg) no-repeat center/cover;
  filter: grayscale(100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: filter 0.3s, background 0.3s;
}
.card-exam__pic:after {
  content: "";
  width: 8rem;
  height: 8rem;
  background: #000 url(img/arrow-02-white-right.svg) no-repeat center/3rem auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
.card-exam__pic:hover:before {
  filter: grayscale(0%);
}
.card-exam__pic--02:before {
  background-image: url(img/sec02-pic-02.jpg);
}
.card-exam__pic--03:before {
  background-image: url(img/sec02-pic-03.jpg);
}
.card-exam__pic--04:before {
  background-image: url(img/sec02-pic-04.jpg);
}
.card-exam__pic--04:hover:before {
  filter: brightness(1);
}
.card-exam__pic--05:before {
  background-image: url(img/sec02-pic-05.jpg);
}
.card-exam__pic--06:before {
  background-image: url(img/sec02-pic-06.jpg);
}
.card-exam__pic--07:before {
  background-image: url(img/sec02-pic-07.jpg);
}
.card-exam__pic--08:before {
  background-image: url(img/sec02-pic-08.jpg);
  filter: brightness(0.6);
}
.card-exam__pic--08:hover:before {
  filter: brightness(1);
}
.card-exam__title {
  width: fit-content;
  margin-bottom: var(--s2);
  padding: 0 var(--s1);
  background: #00EEE0;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 3rem;
  display: inline-block;
}
.card-exam__en {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
.card-exam .l-cluster {
  margin: 2rem auto;
}

.with-deco {
  position: relative;
}
.with-deco:after {
  content: "";
  width: 53rem;
  height: 53rem;
  background: url(img/deco-wave.png) no-repeat center/contain;
  position: absolute;
  right: -10rem;
  bottom: -40rem;
  z-index: -1;
}

.bg-sec03 .l-center {
  position: relative;
}
.bg-sec03 .l-center:before {
  content: "";
  width: 101.5rem;
  height: 120rem;
  background: url(img/deco-paint.jpg) no-repeat center/contain;
  position: absolute;
  left: -50rem;
  top: 8rem;
  z-index: -1;
}
.bg-sec03 .l-center:after {
  content: "";
  width: 90rem;
  height: 111.5rem;
  background: url(img/bg-deco-02.png) no-repeat left top/contain;
  position: absolute;
  right: -65rem;
  bottom: -15rem;
  z-index: -1;
}

.box-number {
  margin: 10rem auto;
  counter-reset: numb;
}

.card-number {
  padding: var(--s4);
  padding-top: var(--s6);
  background: #ECECEC;
  counter-increment: numb;
  position: relative;
}
.card-number:before {
  content: counter(numb, decimal-leading-zero);
  width: fit-content;
  color: transparent;
  font-family: "Noto Sans JP";
  font-size: 6rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #00EEE0;
  text-stroke: 1px #00EEE0;
  position: absolute;
  top: -5rem;
  left: var(--s4);
}
.card-number:nth-of-type(even) {
  background: #C2C2C2;
}
.card-number__title {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}
.card-number__title a {
  display: block;
  width: 100%;
  padding-right: 3rem;
  background: url(img/arrow-02-green-right.svg) no-repeat right center/1.7rem auto;
  text-decoration: none;
}
.card-number__title a:hover {
  opacity: 0.6;
}
.card-number .btn-link {
  margin-bottom: 0;
}

.sec-sponsored {
  padding-bottom: 6rem;
  position: relative;
}
.sec-sponsored:before {
  content: "";
  position: absolute;
  width: calc(100% - var(--s8));
  height: calc(100% - var(--s8));
  top: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  background: url(img/bg-sponsored.jpg) repeat-y center top/cover;
}
.sec-sponsored:after {
  content: "";
  width: 52.5rem;
  height: 40.6rem;
  background: url(img/deco-dot-01.png) no-repeat center/contain;
  position: absolute;
  right: -4rem;
  bottom: -15rem;
  opacity: 0.8;
  z-index: -3;
}
.sec-sponsored .common-title {
  max-width: 57.5rem;
  color: #fff;
}
.sec-sponsored .common-title a {
  color: #fff;
}
.sec-sponsored .common-title__wrap {
  position: relative;
}
.sec-sponsored .common-title__wrap:before {
  content: "";
  width: 21.3rem;
  height: 28.3rem;
  background: url(img/illust-spnsored.png) no-repeat center/contain;
  position: absolute;
  right: -9rem;
  top: -26rem;
}
.sec-sponsored .l-center {
  position: relative;
}
.sec-sponsored .l-center:before {
  content: "";
  width: 45.4rem;
  height: 35.2rem;
  background: url(img/deco-dot-01.png) no-repeat center/contain;
  position: absolute;
  left: -18rem;
  top: -28rem;
  opacity: 0.8;
  z-index: -1;
}
.sec-sponsored .l-center:after {
  content: "";
  width: 64rem;
  height: 40.5rem;
  background: url(img/machine-02.png) no-repeat center/contain;
  position: absolute;
  left: -13rem;
  bottom: -15rem;
}
.sec-sponsored__pic {
  width: 57.8rem;
  height: 58.3rem;
  position: absolute;
  right: 0;
  top: 11rem;
}
.sec-sponsored__pic:before {
  content: "";
  width: 43rem;
  height: 43rem;
  background: url(img/deco-wave.png) no-repeat center/contain;
  position: absolute;
  right: -20rem;
  bottom: -17rem;
  z-index: -1;
}
.sec-sponsored .common-lead {
  width: 50%;
  margin-bottom: 28rem;
}

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

      sp base settings

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

  body {
    font-size: 1.5rem;
  }

  .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;
  }

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

      sp layout stack

  */
  .l-stack {
    gap: var(--s4);
  }
  .l-stack--wide {
    gap: var(--s8);
  }
  .l-stack--narrow {
    gap: var(--s2);
  }

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

      sp layout cluster

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

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

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s3);
    grid-template-columns: 100%;
  }
  .l-grid--sptoo {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }

  .l-grid-three {
    grid-gap: var(--s5);
    grid-template-columns: 100%;
  }
  .l-grid-three--narrow {
    grid-gap: 0;
  }

  .l-grid-four {
    --minmum: calc((100% - var(--s2)) / 2);
    grid-gap: var(--s2);
  }

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

      sp layout sidebar

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

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

      sp layout column

  */
  .l-column {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }
  .l-column--sp-reverse {
    flex-direction: column-reverse;
  }

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

      sp layout grid areas

  */
  .l-grid-areas {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s2);
  }

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

      sp layout float

  */
  .l-float__left-pc {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .l-float__right-pc {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .l-float__left {
    width: 45%;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }
  .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-x: auto;
    overflow-y: hidden;
  }
  .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;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal,
.btn-web {
    width: 94%;
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    padding: 1.8rem 4rem;
    min-height: initial;
    background-size: 2.2rem auto;
    background-position: right 1.6rem center;
    font-size: 1.6rem;
  }
  .btn-internal:hover a,
.btn-web:hover a {
    transform: translate(0, 0);
  }
  .btn-internal--down a,
.btn-web--down a {
    background-size: 1.4rem auto;
  }

  .btn-web a:before {
    width: 3rem;
    height: 2.6rem;
    right: 1.2rem;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding: 0.5rem 3.2rem 0.5rem 0;
    background-position: right var(--s1) center;
    background-size: 1.8rem auto;
    line-height: 1.4;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  .btn-tel {
    width: 94%;
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 4.5rem;
    background: #000 url("img/icon-tel.png") no-repeat center left 1.5rem/2.4rem auto;
    border-radius: 5rem;
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }

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

      sp table

  */
  .sp-table thead, .sp-table tbody, .sp-table tr {
    display: block;
  }
  .sp-table th, .sp-table td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #F5F8FD;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #F5F8FD;
    border-right: solid 1px #C7C7C7;
    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;
  }

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

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

      sp caption

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

  .caption-scroll {
    font-size: 0.9rem;
  }
  .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;
  }

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

  	catch

  */
  .catch-01 {
    font-size: 1.8rem;
  }

  .catch-02 {
    font-size: 1.8rem;
  }

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

      sp float wrap

  */
  .float-wrap .float-img.fr {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

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

  	sp pankuzu

  */
  #pankuzu {
    width: 100%;
    margin-bottom: var(--s2);
	margin-top:7rem;
  }

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

      sp footer

  */
  .footer-area {
    margin-top: var(--s5);
    padding: var(--s4) 0 0;
  }
  .footer-area-logo {
    margin: 0 auto var(--s3);
  }

  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }

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

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

  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: url("img/arrow-03-black-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link:hover {
    opacity: 1;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-03-black-right.svg") no-repeat center/contain;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.8);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
  }
  .footer-menu__link:hover {
    opacity: 1;
  }

  .footer-menu-sub {
    margin-left: var(--s2);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }
  .footer-menu-sub__link:hover {
    opacity: 1;
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

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

  .footer-sitemap {
    display: none;
  }

  .footer-tel {
    display: block;
    width: 50%;
    height: 5rem;
    padding: var(--s1) var(--s2);
    border-radius: 0;
    position: fixed;
    background: #000 url("img/icon-tel.png") no-repeat center right 1.2rem/1.8rem auto;
    justify-content: flex-start;
    font-size: 1.2rem;
    color: #fff;
    text-align: left;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 9;
    text-decoration: none;
    font-weight: bold;
  }

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

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
    right: 0;
    top: 0;
  }
  .gnavi-btn span {
    width: var(--s3);
    height: 0.2rem;
    left: 1.2rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.6rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.4rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.2rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.8rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s3) 0;
  }
  .gnavi-area-logo {
    width: 10rem;
    margin: 0 auto var(--s3) var(--s2);
  }

  .gnavi-box__title {
    font-size: 1.5rem;
  }

  .gnavi-menu__link,
.gnavi-menu-sub__link {
    font-size: 1.4rem;
  }

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

      sp page

  */
  .page-top {
    width: 8rem;
    height: 4rem;
    position: fixed;
    right: 0;
    left: auto;
    bottom: 5rem;
    transform: none;
    z-index: 9;
  }
  .page-top__link {
    width: 100%;
    height: 4.5rem;
  }
  .page-top__link:hover {
    opacity: 1;
  }

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

      toc

  */
  .toc-wrap {
    margin: var(--s4) auto;
    border-width: 0.2rem;
  }
  .toc-wrap__title {
    padding: var(--s2) var(--s3);
    font-size: 1.8rem;
    background: linear-gradient(to left, #000 5rem, #ECECEC 5rem, #ECECEC 0);
  }
  .toc-wrap__title span.en {
    margin-left: var(--s2);
    font-size: 1.3rem;
  }
  .toc-wrap__main {
    border-width: 0.2rem;
    padding: var(--s2) var(--s2) var(--s3);
  }
  .toc-wrap ul li {
    font-size: 1.5rem;
  }
  .toc-wrap .relations-links li {
    width: 100%;
    padding-left: 3.2rem;
  }
  .toc-wrap .relations-links li a:before {
    width: 2rem;
  }

  .toc-wrap__main.toc-top li {
    width: 100%;
  }

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

       sp toggle sp

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

  .toggle-btn::before {
    content: "";
    width: 2.1rem;
    right: 1.4rem;
  }
  .toggle-btn::after {
    content: "";
    height: 2.1rem;
    right: 2.4rem;
  }

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

      more

  */
  .more-btn {
    max-width: initial;
    width: 100%;
    margin: 0 auto var(--s2);
    padding: 1rem 4.6rem;
    border-radius: 0;
  }
  .more-btn:hover {
    opacity: 1;
  }

  .more-content.sp-only {
    display: none;
  }

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

      titles

  */
  .pr-text {
    margin-bottom: var(--s1);
    font-size: 1.3rem;
	padding-right:1rem;
	padding-left:1rem;
  }

  h1:not([class]) {
    padding-top: 1rem;
    min-height: initial;
    font-size: 2.5rem;
    text-align: left;
  }
  h1:not([class]):before {
    font-size: 3.2rem;
  }

  .main-area--low h2:not([class]), .main-area--low h3:not([class]), .main-area--low h4:not([class]), .main-area--low h5:not([class]), .main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h2:not([class]) a, .main-area--low h3:not([class]) a, .main-area--low h4:not([class]) a, .main-area--low h5:not([class]) a, .main-area--low h6:not([class]) a {
    padding-right: var(--s3);
  }
  .main-area--low h2:not([class]) {
    padding: var(--s1) var(--s2) var(--s1) var(--s3);
    font-size: 2.1rem;
  }
  .main-area--low h2:not([class]) a {
    background-size: 1.2rem auto;
  }
  .main-area--low h3:not([class]) {
    padding-left: var(--s1);
    font-size: 1.9rem;
	background:#c9faf6;
  }
  .main-area--low h3:not([class]) a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]).icon-title {
    padding-left: 9rem;
  }
  .main-area--low h3:not([class]).icon-title .icon-title__tag {
    width: 8rem;
    height: 8rem;
    font-size: 1.4rem;
  }
  .main-area--low h3:not([class]).icon-title .icon-title__tag span.st {
    font-size: 2rem;
  }
  .main-area--low h3:not([class]).icon-title span.small {
    font-size: 1.5rem;
  }
  .main-area--low h4:not([class]) {
    padding-left: var(--s1);
    font-size: 1.8rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.6rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp Header

  */
  .header-area__logo {
    width: auto;
    z-index: 1;
  }
  .header-area__logo img {
    width: 6rem;
  }
  .header-area .sponsored {
    font-size: 1rem;
  }
  .footer-area .btn-web {
    width: auto;
	max-width: 25rem;
    margin: 0;
    position: fixed;
    right: 9rem;
    top: var(--s1);
    z-index: 9;
  }
  .footer-area .btn-web a {
    width: 50%;
    height: 5rem;
    padding: var(--s1) var(--s2);
    border-radius: 0;
    position: fixed;
    justify-content: flex-start;
    font-size: 1.2rem;
    text-align: left;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 9;
  }
  .header-area .btn-web a:before {
    width: 2.4rem;
    height: 2.8rem;
    right: var(--s1);
  }

  .mainvisual-top {
    margin-bottom: var(--s2);
  }
  .mainvisual-top__pic02{
    margin-bottom: 2rem;
  }
  .mainvisual-top:before {
    width: calc(100% - var(--s2));
    height: calc(100% - var(--s2));
    top: var(--s2);
	background: url(img/bg-sp.jpg);
  }
  .mainvisual-top__pic {
    width: calc(100% - var(--s1));
    left: var(--s1);
    top: var(--s7);
  }
  .mainvisual-logo {
    margin-bottom: var(--s2);
    width: 16rem;
  }
  .mainvisual-title-wrap {
    position: relative;
    z-index: 1;
    left: 0;
    top: 3rem;
  }
  .mainvisual-title span {
    width: 22rem;
  }
  .mainvisual-title img {
    display: block;
  }
  .mainvisual-lead {
    padding: var(--s2);
	width: 90%;
    margin: 1rem auto 0;
  }
  .mainvisual-lower {
    padding: 5rem var(--s1) var(--s2);
  }
  .mainvisual-lower:before {
    width: calc(100% - var(--s2));
    height: calc(100% - var(--s2));
    top: var(--s2);
  }

  .sponsored-p {
    padding: 0 var(--s2);
    font-size: 1.2rem;
  }

  .main-area--low:before {
    width: calc(100% - var(--s2));
    height: calc(100% - var(--s2));
    top: var(--s2);
  }
  .main-area--low .l-center {
    padding-top: var(--s4);
  }
  .main-area--low .l-center:before {
    width: 24rem;
    height: 24rem;
    left: -15rem;
    top: -4rem;
  }
  .main-area--low .l-center:after {
    width: 45rem;
    height: 60rem;
    right: -30rem;
    top: 10rem;
  }

  .parts-comment__catch {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }

  .parts-comment-wrap {
    gap: var(--s2);
  }
  .parts-comment-wrap__side {
    width: 8rem;
  }
  .parts-comment-wrap__side p {
    margin-top: var(--s-2);
    line-height: 1.5;
  }
  .parts-comment-wrap__side img {
    width: 8rem;
    height: 8rem;
  }

  .card-comment {
    padding: var(--s3);
  }

  .interview-section {
    margin-bottom: var(--s6);
  }

  .interview-box__q::before {
    width: var(--s7);
    height: var(--s7);
    font-size: 3.2rem;
  }

  .interview-box__q {
    min-height: var(--s7);
    margin-bottom: var(--s2);
    padding-left: var(--s8);
    font-size: 2rem;
  }
	
  .interview-box__a::before {
    width: var(--s7);
    height: var(--s7);
    font-size: 3.2rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .interview-box__a {
    min-height: var(--s7);
    margin-bottom: var(--s2);
    padding-left: var(--s8);
    font-size: 2rem;
	padding-top:0.5rem;
	padding-bottom:0.5rem;
  }

  .interview-box__catch {
    padding: var(--s1) var(--s2);
    font-size: 1.8rem;
  }

  .lower-summary {
    padding: 0;
  }
  .lower-summary:before {
    left: -2.4rem;
  }
  .lower-summary__pic {
    position: static;
    width: 18rem;
    height: auto;
    margin: 0 auto var(--s4);
  }
  .lower-summary__title {
    margin: var(--s2) auto;
    font-size: 4rem;
  }
  h2.lower-summary__title {
    font-size: 2.1rem;
  }
  .lower-summary .btn-web {
    margin: var(--s3) auto;
  }

  .box-case {
    padding-right: var(--s2);
	margin-top:3rem;
  }
  .box-case:before {
    height: calc(100% - var(--s3));
  }
  .box-case:after {
    bottom: -4rem;
  }
  .box-case__title {
    font-size: 4rem;
  }
  h2.box-case__title, h3.box-case__title, h4.box-case__title, h5.box-case__title{
    font-size: 2.1rem;
  }

  .lower-common {
    margin-top: var(--s6);
    padding: 6rem 0;
  }

  .common-title {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
  .common-title span.st,
.common-title span.st2 {
    font-size: 2.5rem;
  }
  .common-title span.st--nar,
.common-title span.st2--nar {
    letter-spacing: -0.2rem;
  }
  .common-title span.sm {
    font-size: 1.9rem;
  }
  .common-title-en {
    margin-bottom: var(--s2);
    font-size: 3rem;
  }

.subtitle {
  margin-bottom: var(--s4);
  font-family: "Noto Sans JP";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 238, 224, 0.5);
  position: relative;
  line-height: 3.3rem;
}
	
.common-title span.bg {
    margin-right: var(--s1);
    padding-right: var(--s1);
    padding-left: var(--s1);
  }
  .common-title a {
    padding-right: 3rem;
    background-size: 1.5rem auto;
  }

  h2.common-title--vertical {
    font-family: "Noto Serif JP";
  }

  .common-title--vertical span.bg-bk--link {
    padding-right: var(--s6);
    padding-bottom: var(--s1);
    background-position: right var(--s2) top 55%;
    background-size: 2rem auto;
  }

  .common-title--vertical span.bg-bk {
    padding-top: var(--s1);
    padding-bottom: var(--s1);
  }

  .common-lead {
    margin-bottom: var(--s3);
  }

  section {
    padding: var(--s10) 0;
  }

  .bg-sec01 .l-center:before {
    width: 30rem;
    height: 30rem;
    right: -13rem;
    top: -3rem;
    opacity: 0.6;
  }

  .box-name {
    margin: 0 0 var(--s5);
    padding-top: 27rem;
    background-position: center top;
    background-size: 100% auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .box-name__list {
    position: static;
    width: 49%;
    margin-top: var(--s1);
    padding: 1rem 1rem 1rem 4.5rem;
    font-size: 1.4rem;
    background: #000 url(img/icon-about-01.png) no-repeat left 1rem center / auto 2.5rem;
  }
.box-name__list--02 {
  background-image: url(img/icon-about-02.png);
  left: 0;
  top: 22rem;
}
.box-name__list--03 {
  background: #000 url(img/icon-about-03.png) no-repeat left 1.5rem center / auto 2.5rem;
  bottom: 0;
  left: var(--s7);
}
.box-name__list--04 {
  background-image: url(img/icon-about-04.png);
  right: var(--s5);
  top: 0;
}
.box-name__list--05 {
  background-image: url(img/icon-about-05.png);
  right: 0;
  top: 22rem;
}
.box-name__list--06 {
  background-image: url(img/icon-about-06.png);
  bottom: 0;
  right: var(--s5);
}	
  .box-name__list--01:before, .box-name__list--02:before, .box-name__list--03:before, .box-name__list--04:before, .box-name__list--05:before, .box-name__list--06:before {
    display: none;
  }

  .bg-sec02:before {
    width: calc(100% - var(--s2));
    height: calc(100% - var(--s2));
  }
  .bg-sec02:after {
    width: 24.5rem;
    height: 18.5rem;
    top: -3rem;
  }
  .bg-sec02 .l-center:before {
    width: 20rem;
    height: 10rem;
    right: -1rem;
    top: -10rem;
  }
  .card-exam{
    margin-bottom:2.5rem;
  }
  .card-exam__title {
    font-size: 1.8rem;
  }
  .card-exam__en {
    font-size: 1.6rem;
  }
  .card-exam__pic {
    padding: var(--s5) var(--s2);
    height: auto;
	margin-bottom:0;
  }
	
	
	
  .card-exam__pic:after {
    width: 5rem;
    height: 5rem;
    background-size: 2rem auto;
  }

  .with-deco:after {
    width: 26rem;
    height: 26rem;
    bottom: -19rem;
  }

  .box-number {
    margin: var(--s6) auto;
  }

  .card-number {
    padding: var(--s3);
    padding-top: var(--s4);
  }
  .card-number:before {
    font-size: 5.5rem;
    top: -4.5rem;
    left: var(--s3);
  }
  .card-number__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .card-number .btn-link {
    margin-right: 0;
  }

  .bg-sec03:before {
    width: calc(100% - var(--s2));
    height: calc(100% - var(--s2));
  }
  .bg-sec03 .l-center:before {
    width: 63.5rem;
    height: 56rem;
    left: -30rem;
    top: 0;
  }

  .sec-sponsored {
    padding-bottom: 2rem;
  }
  .sec-sponsored:before {
    width: calc(100% - var(--s2));
    height: calc(100% - var(--s2));
  }
  .sec-sponsored:after {
    width: 25rem;
    height: 18rem;
    bottom: -7rem;
  }
  .sec-sponsored .l-center:before {
    width: 25rem;
    height: 18rem;
    left: -10rem;
    top: -14rem;
  }
  .sec-sponsored .l-center:after {
    width: 20rem;
    height: 12rem;
    left: -1rem;
    bottom: -8rem;
  }
  .sec-sponsored__pic {
    margin-bottom: var(--s2);
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  .sec-sponsored__pic:before {
    width: 26rem;
    height: 26rem;
    right: -10rem;
    bottom: -10rem;
  }
  .sec-sponsored .common-title__wrap:before {
    width: 10rem;
    height: 13rem;
    right: -1.6rem;
    top: -10rem;
  }
  .sec-sponsored .common-lead {
    width: 100%;
    margin-bottom: var(--s2);
  }
.lower-summary:after {
  content: "";
  width: 49rem;
  height: 49rem;
  background: url(img/deco-wave.png) no-repeat center/contain;
  position: absolute;
  left: -35rem;
  bottom: -20rem;
  z-index: -1;
}
.header-area__name {
  font-size: 2.0rem;
  letter-spacing:1px;
}
.sec-sponsored .common-title span.bg-white {
  font-size: 2.8rem;
  margin-top:0.5rem;
}
.sec-sponsored .common-title span{
  font-size: 1.8rem;
}
.header-area .sponsered {
  max-width:unset;
}
}
