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

    base settings

*/
:root {
  font-size: 62.5%;
  --s-5: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s1-5: calc(var(--s1) * 1.5);
  --s2: calc(var(--s1) * 2);
  --s2-5: calc(var(--s1) * 2.5);
  --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);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
  --color01: #230000;
  --color02: #ffffff;
  --color03: #F0ECDF;
  --color04: #3C459A;
  --color05: #D6007F;
  --color06: #FF6641;
  --color07: #FFCD56;
  --color08: #FFD97F;
  --color09: #55BA63;
  --color10: #E9E5E7;
  --sidebar-width: 32rem;
}

@media screen and (max-width: 1048px) {
  :root {
    font-size: 0.9541984733vw;
  }
}
@media screen and (max-width: 1365px) {
  :root {
    --sidebar-width: 0rem;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #230000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

a:active {
  color: #230000;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: #230000;
    text-decoration: none;
  }
}
p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 900;
}

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 !important;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}
/*
---------------------------------------------

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loopXAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
@keyframes downAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10%);
  }
}
@keyframes upAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10%);
  }
}
/*
---------------------------------------------

    layout center

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

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

    layout stack

*/
.l-stack,
.l-stack-small,
.l-stack-large {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.l-stack > *,
.l-stack-small > *,
.l-stack-large > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.l-stack-large {
  gap: var(--s7);
}

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

.l-stack-small {
  gap: var(--s3);
  margin-bottom: 0rem !important;
}

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

    layout grid

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

.l-grid-three {
  --minimum: calc((100% - var(--s2-5) * 2) / 3);
  display: grid;
  grid-gap: var(--s2-5);
}

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

    layout sidebar

*/
.l-sidebar {
  display: flex;
}
.l-sidebar__side {
  width: 32rem;
}
.l-sidebar__main {
  flex: 1;
}
.l-sidebar--low {
  overflow: hidden;
}

@media screen and (max-width: 1365px) {
  .l-sidebar__side {
    display: none;
  }
}
/*
---------------------------------------------

    layout column

*/
.l-column-01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s5);
}
.l-column-01__side {
  width: 23rem;
}
.l-column-01__main {
  flex: 1;
}

.l-column-02 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}
.l-column-02__side {
  width: 7.2rem;
}
.l-column-02__main {
  flex: 1;
}

.l-column-03 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-column-04 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s5);
}
.l-column-04__side {
  width: 48rem;
}
.l-column-04__main {
  flex: 1;
}

.l-column-05 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--s3);
}
.l-column-05__side {
  width: 68rem;
}
.l-column-05__main {
  flex: 1;
}
.l-column-05--row-reverse {
  flex-direction: row-reverse;
}

.l-column-06 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--s5);
}
.l-column-06__side {
  width: 13.3rem;
}
.l-column-06__main {
  flex: 1;
}
.l-column-06--row-reverse {
  flex-direction: row-reverse;
}

.l-column-07 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column-07__main {
  flex: 1;
}

.l-column-08 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
}
.l-column-08__side {
  width: 16.1rem;
}
.l-column-08__main {
  flex: 1;
}

.l-column-09 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.l-column-09__side {
  width: 42.3rem;
}
.l-column-09__main {
  flex: 1;
}

.l-column-10 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column-10__side {
  width: 49.2rem;
}
.l-column-10__main {
  flex: 1;
}

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

    layout grid areas

*/
.l-grid-areas-01 {
  display: grid;
  grid-template-areas: "label side main";
  grid-template-columns: 5.6rem 13.3rem 1fr;
  grid-template-rows: auto;
  grid-gap: var(--s3) var(--s5);
}
.l-grid-areas-01__cell-01 {
  grid-area: label;
}
.l-grid-areas-01__cell-02 {
  grid-area: side;
}
.l-grid-areas-01__cell-03 {
  grid-area: main;
}

.l-grid-areas-02 {
  display: grid;
  grid-template-areas: "label main";
  grid-template-columns: 5.6rem 1fr;
  grid-template-rows: auto;
  grid-gap: 0 var(--s8);
}
.l-grid-areas-02__cell-01 {
  grid-area: label;
}
.l-grid-areas-02__cell-02 {
  grid-area: main;
}

.l-grid-areas-03 {
  display: grid;
  grid-template-areas: "title thumb" "text thumb" "text btn";
  grid-template-columns: 1fr 35rem;
  grid-template-rows: auto auto 1fr;
  grid-gap: 0 var(--s4);
}
.l-grid-areas-03__cell-01 {
  grid-area: title;
}
.l-grid-areas-03__cell-02 {
  grid-area: thumb;
}
.l-grid-areas-03__cell-03 {
  grid-area: text;
}
.l-grid-areas-03__cell-04 {
  grid-area: btn;
}

.l-grid-areas-04 {
  display: grid;
  grid-template-areas: "title movie" "text movie";
  grid-template-columns: 1fr 44rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2-5) var(--s6);
}
.l-grid-areas-04__cell-01 {
  grid-area: title;
  margin-bottom: 0rem !important;
  gap: var(--s1);
}
.l-grid-areas-04__cell-02 {
  grid-area: movie;
}
.l-grid-areas-04__cell-03 {
  grid-area: text;
}

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

    layout float

*/
.l-float-01 {
  display: flow-root;
}
.l-float-01__float-item {
  width: 11.6rem;
  margin-right: var(--s4);
  margin-bottom: var(--s2);
  float: left;
}

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

    layout btn

*/
.l-btn-01 {
  margin: var(--s2) 0;
  display: flex;
  justify-content: center;
  gap: var(--s3) var(--s2-5);
}
.l-btn-01 > * {
  margin: 0 !important;
}

.l-btn-01-wrapper {
  margin: var(--s5) 0;
  display: flex;
  gap: var(--s5);
  justify-content: center;
}
.l-btn-01-wrapper .l-btn-01 {
  margin: 0;
  gap: var(--s3) var(--s1-5);
}

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

    layout header

*/
.l-header {
  display: grid;
  grid-template-areas: "logo sitename sponsored" "logo note note";
  grid-template-columns: 17.6rem 1fr max-content;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s1);
}
.l-header__logo {
  grid-area: logo;
}
.l-header__sitename {
  grid-area: sitename;
}
.l-header__sponsored {
  grid-area: sponsored;
}
.l-header__note {
  grid-area: note;
}

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s3) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.25em;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: var(--color09);
  position: absolute;
  top: 0.5em;
  left: 0.25em;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area ol:not([class]) {
  margin: var(--s3) 0;
  counter-reset: number;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 1.5em;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.2em;
  height: 1.2em;
  background: var(--color04);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color02);
  text-align: center;
  position: absolute;
  top: 0.12em;
  left: 0;
}
.main-area ol:not([class]) li + li {
  margin-top: 0.8em;
}

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

    btn

*/
.btn-web,
.btn-internal {
  width: 36rem;
  margin: var(--s5) auto;
  position: relative;
  z-index: 1;
}
.btn-web a,
.btn-internal a {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  margin: 0;
  padding: var(--s1) var(--s6) var(--s1) var(--s4);
  background: no-repeat center right var(--s2)/var(--s4) var(--s4);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color02);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
}
.btn-web::after,
.btn-internal::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color01);
  border-radius: 10rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0, 0.7rem);
}

.btn-web a {
  background-color: var(--color05);
  background-image: url("img/icon-outer-01.svg");
}

.btn-internal a {
  background-size: 2.5rem;
  background-color: var(--color04);
  background-image: url("img/arrow-01-blue-right.svg");
}

@media (hover: hover) {
  .btn-web a:hover, .btn-internal a:hover {
    transform: translate(0, 0.7rem);
  }
}
.btn-link {
  margin: var(--s3) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding-right: var(--s3);
  background: url("img/arrow-01-blue-right-small.svg") no-repeat center right/var(--s2) var(--s2);
  display: inline-block;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: underline;
}

@media (hover: hover) {
  .btn-link a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.btn-tel {
  display: none;
}

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

    background

*/
.bg-01 {
  position: relative;
  z-index: 1;
}
.bg-01::after {
  content: "";
  width: 100vw;
  height: calc(100% + 14rem);
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 0 var(--s5) 0 0;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.bg-01--orange::after {
  background: var(--color07);
}
.bg-01--green::after {
  background: var(--color09);
}
.bg-01--white::after {
  background: var(--color02);
}

.bg-02 {
  position: relative;
  z-index: 1;
}
.bg-02::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 0 var(--s5) var(--s5) 0;
  box-sizing: border-box;
  position: absolute;
  right: calc((100vw - 100rem - var(--sidebar-width)) / 2 * -1);
  bottom: 0;
  z-index: -1;
}
.bg-02--orange::after {
  background: var(--color07);
}
.bg-02--green::after {
  background: var(--color09);
}
.bg-02--white::after {
  background: var(--color02);
}

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

    table

*/
table {
  width: 100%;
  margin: var(--s5) auto;
  border-collapse: collapse;
  border-top: 1px solid #230000;
  border-left: 1px solid #230000;
}

th, td {
  padding: var(--s1) var(--s2);
  border-right: solid 1px #230000;
  border-bottom: solid 1px #230000;
  line-height: 1.5;
  word-break: break-all;
  text-align: left;
}

th {
  background: #E9E5E7;
  font-weight: normal;
}

tbody th {
  background: #E9E5E7;
}

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

.caption-large {
  margin-top: 0.8em;
  display: block;
  color: #b9b9b9;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption-large a {
  color: #575757;
}
.caption-large--align-left {
  text-align: left;
}

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

    catch

*/
.catch-01 {
  color: var(--color04);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
}

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

    text

*/
.marker {
  background: linear-gradient(transparent 90%, var(--color07) 91%);
  font-weight: 900;
}

.txt_bold {
  color: #e85633;
  font-weight: 900;
}

.text-em-01 {
  font-weight: 900;
}

.text-em-02 {
  color: var(--color05);
  font-weight: 900;
}

.text-note {
  color: #230000;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}

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

    summary

*/
.summary-01__row {
  display: flex;
  gap: var(--s1-5);
}
.summary-01__row + .summary-01__row {
  margin-top: var(--s1-5);
}
.summary-01__label {
  width: var(--s10);
  padding: var(--s1);
  background: var(--color02);
  border-radius: var(--s1-5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
}
.summary-01__content {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.5;
}
.summary-01__content--align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-5);
}
.summary-01__em-01 {
  font-size: 1.6rem;
  font-weight: 900;
}
.summary-01__note-01 {
  font-size: 1.1rem;
  font-weight: 900;
}

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

    float wrap

*/
.float-wrap {
  display: flow-root;
}
.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: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}
.float-wrap .catch-01 + p {
  margin-top: 1em;
}

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

    pankuzu

*/
#pankuzu {
  width: 100%;
  margin: var(--s1) auto var(--s5);
  padding: 0 0 var(--s1);
  color: #7D7D7D;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#pankuzu a {
  color: #7D7D7D;
}

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

    header

*/
.header-area {
  width: 100%;
  padding: var(--s3) var(--s4) var(--s1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-area .text-note {
  text-align: right;
}

.header-logo {
  width: 100%;
}
.header-logo__link {
  display: block;
}

@media (hover: hover) {
  .header-logo__link:hover {
    opacity: 0.6;
  }
}
.header-sitename {
  color: #2D2D2D;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: right;
}
.header-sitename__link {
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .header-sitename__link:hover {
    text-decoration: underline;
  }
}
.header-sponsored {
  color: #2D2D2D;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
}

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

    main

*/
.main-area--low {
  padding-bottom: 12rem;
}

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

    footer

*/
.footer-area {
  position: relative;
  z-index: 1;
}
.footer-area::after {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s9));
  background: var(--color04);
  border-radius: var(--s5) var(--s5) 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-about {
  width: calc(100% - var(--s4));
  max-width: 91rem;
  margin: 0 auto var(--s5);
  padding: var(--s5) var(--s4);
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: var(--s4);
}
.footer-about__title {
  font-size: 2rem;
  font-weight: 900;
}
.footer-about__logo__link {
  display: block;
  text-decoration: none;
}
.footer-about .btn-link {
  margin-right: 0;
  margin-bottom: 0;
}

@media (hover: hover) {
  .footer-about__logo__link:hover {
    opacity: 0.6;
  }
}
.footer-main {
  max-width: 91rem;
  margin-right: auto;
  margin-left: auto;
}

.footer-bottom {
  padding: var(--s2) 0;
  color: var(--color01);
  position: relative;
  z-index: 2;
}
.footer-bottom::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color05);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.footer-bottom__inner {
  max-width: 91rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.footer-menu-title {
  margin-bottom: var(--s1);
  color: var(--color02);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid var(--color02);
}
.footer-menu-title__link {
  padding: var(--s1-5) var(--s5) var(--s1-5) 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/var(--s3) var(--s3);
  display: inline-block;
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--s7);
}
.footer-menu__item {
  width: calc((100% - var(--s7) * 2) / 3);
  font-size: 1.5rem;
  line-height: 1.5;
}
.footer-menu__link {
  padding: var(--s1) var(--s3) var(--s1) 0;
  display: inline-block;
  background: url("img/arrow-02-white-right.svg") no-repeat top var(--s1-5) right/1.4rem 1.2rem;
  color: var(--color02);
  text-decoration: none;
}

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

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.footer-disclaimer {
  margin: 12rem auto var(--s5);
  padding: var(--s2) var(--s4);
  background: #2F3788;
  border-radius: var(--s2-5);
  color: var(--color02);
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-disclaimer a{
    color: #ffffff;
}

.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}
.footer-disclaimer__link {
  color: var(--color02);
}

@media (hover: hover) {
  .footer-disclaimer__link:hover {
    color: var(--color02);
    text-decoration: none;
  }
}
.footer-nocopy {
  margin: var(--s5) 0;
  color: var(--color02);
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: center;
}

.footer-copyright {
  width: 70%;
  color: var(--color02);
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: center;
}
.footer-copyright__link {
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-copyright__link:hover {
    color: var(--color02);
    text-decoration: underline;
  }
}
.footer-sitemap {
  margin: 0;
  color: var(--color02);
  font-weight: 900;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.footer-sitemap__link {
  display: block;
  color: var(--color02);
}

@media (hover: hover) {
  .footer-sitemap__link:hover {
    color: var(--color02);
    text-decoration: none;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: var(--s7);
  height: var(--s7);
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: var(--s2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: var(--s3);
  right: var(--s3);
  z-index: 200;
  transition: opacity 0.3s, visibility 0.3s;
}
.gnavi-btn span {
  width: var(--s4);
  height: 1px;
  display: inline-block;
  background: var(--color01);
  position: absolute;
  left: var(--s1-5);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.75rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.75rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.75rem;
}
.gnavi-btn.is-active {
  background-color: var(--color01);
}
.gnavi-btn.is-active span {
  background-color: var(--color02);
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1rem) rotate(45deg);
}
.gnavi-btn.is-show {
  opacity: 1;
  visibility: visible;
}

.gnavi-area {
  width: 100%;
  max-width: 54.3rem;
  height: 100vh;
  padding: var(--s3) 0;
  background: var(--color01);
  border-radius: var(--s5) 0 0 var(--s5);
  display: block;
  opacity: 0;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.gnavi-logo {
  width: 17.6rem;
  margin: 0 auto;
}
.gnavi-logo__link {
  display: block;
}

@media (hover: hover) {
  .gnavi-logo__link:hover {
    opacity: 0.5;
  }
}
.gnavi-banner-01 {
  width: calc(100% - var(--s10));
  margin: var(--s2) auto;
}
.gnavi-banner-01__link {
  padding-right: var(--s5);
  background: var(--color04) url("img/arrow-01-blue-right-small.svg") no-repeat right var(--s1) center/var(--s3) var(--s3);
  border: 2px solid var(--color01);
  display: flex;
  color: var(--color02);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
}
.gnavi-banner-01__label {
  padding: var(--s-5);
  background: var(--color05);
  border-right: 2px solid var(--color01);
  border-bottom: 2px solid var(--color01);
  border-radius: 0 0 var(--s1-5) 0;
  color: var(--color02);
  font-size: 1rem;
  font-family: "Noto Sans JP Vertical", sans-serif;
  font-weight: 900;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
.gnavi-banner-01__thumb {
  width: 10rem;
  border-right: 2px solid var(--color01);
  flex-shrink: 0;
}
.gnavi-banner-01__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.gnavi-banner-01__text {
  padding: var(--s1) 0 var(--s1) var(--s3);
  display: flex;
  align-items: center;
}

@media (hover: hover) {
  .gnavi-banner-01__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.gnavi-banner-02 {
  width: calc(100% - var(--s10));
  margin: var(--s2) auto;
}
.gnavi-banner-02__link {
  padding: var(--s2) var(--s4) var(--s2) var(--s2);
  background: var(--color05) url("img/icon-outer-01-small.svg") no-repeat center right var(--s1)/var(--s3) var(--s3);
  border: 2px solid var(--color01);
  display: block;
  color: var(--color02);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.gnavi-banner-02__link::before {
  content: "INTERNSHIP";
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -0.2em;
  right: var(--s2-5);
  z-index: -1;
}

@media (hover: hover) {
  .gnavi-banner-02__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.gnavi-nav {
  width: calc(100% - var(--s10));
  margin: var(--s1) auto;
  display: flex;
  align-items: flex-end;
  gap: var(--s2-5);
}
.gnavi-nav__item {
  width: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
}
.gnavi-nav__item + .gnavi-nav__item {
  position: relative;
}
.gnavi-nav__item + .gnavi-nav__item::before {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--color02);
  position: absolute;
  left: -1rem;
  bottom: 0;
  transform: translate(-50%, 0);
}
.gnavi-nav__link {
  display: block;
  color: var(--color02);
  text-decoration: none;
}
.gnavi-nav__label {
  width: fit-content;
  margin-bottom: var(--s-5);
  padding: 0.2rem var(--s1);
  display: block;
  border-radius: 1rem;
  background: #422B2B;
  color: var(--color02);
  font-size: 1.5rem;
}
.gnavi-nav__text {
  display: block;
  padding-right: var(--s3);
  background: url("img/arrow-01-blue-right-small.svg") no-repeat center right/var(--s3) var(--s3);
  font-size: 1.5rem;
}

@media (hover: hover) {
  .gnavi-nav__link:hover {
    color: var(--color02);
    opacity: 0.5;
  }
}
.gnavi-box {
  margin: 0 var(--s3);
}
.gnavi-box__title {
  padding: var(--s3) var(--s5) var(--s3) var(--s2);
  border-bottom: 1px solid var(--color02);
  color: var(--color02);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title .toggle-icon {
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}
.gnavi-box__content {
  background: #2D1B1B;
}
.gnavi-box:first-child {
  border-top: 1px solid var(--color02);
}

.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: var(--s2) var(--s5) var(--s2) var(--s2);
  background: url("img/arrow-02-white-right.svg") no-repeat center right 2rem/1.4rem 1.2rem;
  display: block;
  color: var(--color02);
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
}

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

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

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

@media (hover: hover) {
  .gnavi-menu__link:hover,
  .gnavi-menu-sub__link:hover {
    color: var(--color02);
    opacity: 0.5;
  }
}
.gnavi-mask {
  width: 100%;
  height: 100%;
  background: rgba(96, 96, 96, 0.2);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: opacity 0.3s, visibility 0.3s;
}
.is-gnavi-open .gnavi-mask {
  opacity: 1;
  visibility: visible;
}

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

    sidebar

*/
.sidebar-area {
  width: 32rem;
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 0 var(--s5) var(--s5) 0;
  padding: var(--s4) 0;
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translate(0, -50%);
}
.sidebar-area .text-note {
  margin-top: var(--s1);
  text-align: center;
}
.sidebar-area.js-scroll-show {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sidebar-area.js-scroll-show.is-show {
  opacity: 1;
  visibility: visible;
}

.sidebar-logo {
  width: 17.6rem;
  margin: 0 auto;
}
.sidebar-logo__link {
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .sidebar-logo__link:hover {
    opacity: 0.5;
  }
}
.sidebar-banner-01 {
  width: calc(100% - var(--s5));
  margin: var(--s3) auto;
}
.sidebar-banner-01__link {
  background: var(--color04) url("img/arrow-01-blue-right-small.svg") no-repeat right var(--s1) bottom var(--s1)/var(--s2-5) var(--s2-5);
  border: 1px solid var(--color01);
  display: flex;
  color: var(--color02);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
}
.sidebar-banner-01__label {
  padding: var(--s-5);
  background: var(--color05);
  border: 1px solid var(--color01);
  border-radius: 0 0 var(--s1-5) 0;
  color: var(--color02);
  font-size: 1.2rem;
  font-family: "Noto Sans JP Vertical", sans-serif;
  font-weight: 900;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
.sidebar-banner-01__thumb {
  width: 9.6rem;
  /* border-right: 1px solid var(--color01); */
  flex-shrink: 0;
}
.sidebar-banner-01__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.sidebar-banner-01__text {
  padding: var(--s3) var(--s2);
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

@media (hover: hover) {
  .sidebar-banner-01__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.sidebar-banner-02 {
  width: 100%;
  margin: 0 auto;
}
.sidebar-banner-02__link {
  padding: var(--s2-5) var(--s2) var(--s1);
  background: var(--color05);
  border-bottom: 1px solid var(--color01);
  border-top: 1px solid var(--color01);
  display: block;
  color: var(--color02);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
}
.sidebar-banner-02__link::before {
  content: "INTERNSHIP";
  color: rgba(255, 255, 255, 0.2);
  font-size: 2.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -0.2em;
  left: var(--s2);
  z-index: -1;
}
.sidebar-banner-02__link::after {
  content: "";
  width: 13.3rem;
  height: 17rem;
  background: url("img/banner-illust-01.png") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translate(0, -50%);
}
.sidebar-banner-02__em {
  font-size: 1.8rem;
}
.sidebar-banner-02__more {
  width: fit-content;
  margin-top: var(--s1);
  padding-right: var(--s3);
  background: url("img/icon-outer-01-small.svg") no-repeat center right/var(--s2-5) var(--s2-5);
  display: block;
  font-size: 1.9rem;
}

@media (hover: hover) {
  .sidebar-banner-02__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.sidebar-nav {
  margin: var(--s3) 0;
  display: flex;
}
.sidebar-nav__item {
  width: 50%;
  padding: 0 var(--s1);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.sidebar-nav__item + .sidebar-nav__item {
  position: relative;
}
.sidebar-nav__item + .sidebar-nav__item::before {
  content: "";
  width: 1px;
  height: calc(100% - var(--s2));
  background: var(--color01);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 0);
}
.sidebar-nav__link {
  height: 100%;
  padding-bottom: var(--s3);
  background: url("img/arrow-01-blue-right-small.svg") no-repeat center bottom/var(--s2-5) var(--s2-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sidebar-nav__label {
  margin-bottom: var(--s-5);
  padding: 0.2rem var(--s-5);
  background: var(--color01);
  color: var(--color02);
  font-size: 1.4rem;
}

@media (hover: hover) {
  .sidebar-nav__link:hover {
    opacity: 0.5;
  }
}
/*
---------------------------------------------

    page

*/
.page-top {
  width: 6rem;
  height: 6rem;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: var(--s4);
  bottom: var(--s7);
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
}
.page-top__link {
  display: block;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    section

*/
.section-title-01 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.section-title-01__em-01 {
  padding: 0 0.4em;
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  color: var(--color05);
}
.section-title-01__label-01 {
  margin-bottom: var(--s2);
  display: block;
  font-size: 1.9rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.5;
}
.section-title-01__small-01 {
  font-size: 3.2rem;
}
.section-title-01--align-center {
  text-align: center;
}

.section-label-wave {
  width: fit-content;
  padding-bottom: var(--s1-5);
  font-size: 2.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}
.section-label-wave::after {
  content: "";
  width: 52.6rem;
  height: 0.95rem;
  background: url("img/line-wave-01-black.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 12s linear infinite;
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-label-wave--vertical {
  padding-top: var(--s1-5);
  padding-bottom: 0;
  transform-origin: top left;
  transform: rotate(90deg) translateY(-100%);
}
.section-label-wave--vertical::after {
  top: 0;
  bottom: auto;
}
.section-label-wave--align-center {
  margin-left: auto;
  margin-right: auto;
}
.section-label-wave--white {
  color: var(--color02);
}
.section-label-wave--white::after {
  background-image: url("img/line-wave-01.png");
}

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

    index box

*/
.index-box-01 {
  max-width: 60rem;
  margin: var(--s8) auto;
  padding-bottom: var(--s5);
  position: relative;
  z-index: 1;
}
.index-box-01__label {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
.index-box-01__label::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: var(--color01);
}
.index-box-01 .chapter {
  counter-reset: number;
}
.index-box-01 .chapter-h {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.index-box-01 .chapter-h > a {
  display: block;
  text-decoration: none;
}
.index-box-01 .chapter-h:first-child {
  margin-top: 0 !important;
}
.index-box-01 .chapter-h-two {
  margin: 1em 0;
  counter-increment: number;
}
.index-box-01 .chapter-h-two::before {
  content: counter(number, decimal-leading-zero) ".";
  font-size: 2rem;
  color: var(--color04);
  position: absolute;
  top: -0.2em;
  left: 0;
}
.index-box-01 .chapter-h-two > a {
  padding-left: var(--s5);
}
.index-box-01 .chapter-h-two + .chapter-h-two {
  margin-top: 1em;
}
.index-box-01 .chapter-h-three {
  margin: 0.5em var(--s5);
  font-size: 1.4rem;
}
.index-box-01 .chapter-h-three::before {
  content: "";
  width: var(--s1-5);
  height: 1px;
  background: var(--color04);
  position: absolute;
  top: 0.75em;
  left: 0;
}
.index-box-01 .chapter-h-three > a {
  padding-left: var(--s3);
}

@media (hover: hover) {
  .index-box-01 .chapter-h > a:hover {
    opacity: 0.5;
  }
}
/*
---------------------------------------------

    relations

*/
.relations-box-01 {
  max-width: 60rem;
  margin: var(--s8) auto;
  padding: 0 0 var(--s3);
  border-bottom: 1px solid var(--color01);
  position: relative;
  z-index: 1;
}
.relations-box-01__label {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 1.9rem;
  font-weight: 900;
}
.relations-box-01__label::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: var(--color01);
}
.relations-box-01 ul:not([class]) {
  margin: 0 !important;
}
.relations-box-01 ul:not([class]) li {
  padding: 0 0 0 2.2em;
  font-size: 1.6rem;
  font-weight: 900;
}
.relations-box-01 ul:not([class]) li::before {
  width: 0.8em;
  height: 0.8em;
  background: var(--color04);
  border-radius: 10rem;
  top: 0.4em;
  left: 0.8em;
}
.relations-box-01 ul:not([class]) li + .relations-box-01 ul:not([class]) li {
  margin-top: 1em;
}
.relations-box-01 ul:not([class]) a {
  padding-right: var(--s4);
  background: url("img/arrow-01-pink-right-small.svg") no-repeat center right/var(--s3) var(--s3);
  display: block;
  text-decoration: none;
}

.related-article01-frame {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: 0 0 var(--s3);
  border-bottom: 1px solid var(--color01);
  position: relative;
  z-index: 1;
}

.related-article01-title {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 1.9rem;
  font-weight: 900;
}
.related-article01-title::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: var(--color01);
}

.related-article01-list > li {
  padding: 0 0 0 2.2em;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.related-article01-list > li::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: var(--color04);
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0.8em;
}
.related-article01-list > li + li {
  margin-top: 1em;
}
.related-article01-list a {
  padding-right: var(--s4);
  background: url("img/arrow-01-pink-right-small.svg") no-repeat center right/var(--s3) var(--s3);
  display: block;
  text-decoration: none;
}

.relations-box {
  display: block;
  text-decoration: none;
}
.relations-box .catch-01 {
  color: var(--color01);
  font-size: 1.6rem;
  font-weight: 900;
}

@media (hover: hover) {
  .relations-box:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    link

*/
.link-box-01 {
  margin: var(--s8) 0;
}

.link-card-01 {
  border: 1px solid var(--color01);
}
.link-card-01__link {
  display: block;
  text-decoration: none;
}
.link-card-01__text {
  padding: var(--s1-5) var(--s6) var(--s1-5) var(--s1-5);
  background: url("img/arrow-01-pink-right.svg") no-repeat center right var(--s1-5)/var(--s4) var(--s4);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
}
.link-card-01__thumb + .link-card-01__text {
  border-top: 1px solid var(--color01);
}

@media (hover: hover) {
  .link-card-01__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    qa box

*/
.qa-box-01 {
  margin: var(--s8) 0 var(--s1);
  padding-left: var(--s7);
}
.qa-box-01__q {
  margin-bottom: var(--s1);
  color: var(--color04);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.qa-box-01__q::before {
  content: "";
  width: 3.4rem;
  height: 0.7rem;
  background: #d1d4eb;
  /* border: 1px solid var(--color01); */
  border-radius: 0 10rem 10rem 0;
  position: absolute;
  top: 41%;
  left: calc(var(--s7) * -1);
}
.qa-box-01__em-01 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
}

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

    interview box

*/
.interview-box-01 {
  margin: var(--s8) 0;
  position: relative;
  z-index: 1;
}
.interview-box-01::after {
  content: "";
  width: calc(100% + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  border: 1px solid var(--color01);
  border-radius: var(--s5) 0 0 var(--s5);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.interview-box-01__label {
  height: 100%;
  background: var(--color06);
  border-radius: var(--s5) 0 0 var(--s5);
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.8rem;
  font-weight: 900;
  position: relative;
  z-index: -2;
}
.interview-box-01__label__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  transform-origin: top left;
  position: absolute;
  top: var(--s4);
  left: var(--s2);
  transform: rotate(90deg) translateY(-100%);
}
.interview-box-01--category02 .interview-box-01__label {
  background-color: var(--color09);
}
.interview-box-01--category03 .interview-box-01__label {
  background-color: var(--color07);
}
.interview-box-01__em-01 {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.5;
}
.interview-box-01__profile {
  padding-top: var(--s4);
}
.interview-box-01__content {
  padding-top: var(--s4);
  padding-bottom: var(--s4);
}
.interview-box-01 .btn-internal {
  margin: 0 auto;
}

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

    profile box

*/
.profile-box-01__thumb {
  width: 11.6rem;
  height: 11.6rem;
  border: 1px solid var(--color01);
  border-radius: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-box-01__category {
  width: 100%;
  margin-top: calc(var(--s2) * -1);
  margin-bottom: var(--s-5);
  padding: 0 var(--s1);
  background: var(--color06);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  color: var(--color02);
  font-weight: 400;
  position: relative;
}
.profile-box-01__category::before {
  content: "";
  width: 3.9rem;
  height: 3.9rem;
  background: url("img/icon-tomato.svg") no-repeat center/contain;
}
.interview-box-01--category02 .profile-box-01__category, .special-box-01--category02 .profile-box-01__category {
  background-color: var(--color09);
}
.interview-box-01--category02 .profile-box-01__category::before, .special-box-01--category02 .profile-box-01__category::before {
  background-image: url("img/icon-beef.svg");
}
.interview-box-01--category03 .profile-box-01__category, .special-box-01--category03 .profile-box-01__category {
  background-color: #e6b43c;
}
.interview-box-01--category03 .profile-box-01__category::before, .special-box-01--category03 .profile-box-01__category::before {
  background-image: url("img/icon-track.svg");
}
.profile-box-01__name {
  display: block;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
.profile-box-01__name__em {
  font-size: 1.8rem;
}
.profile-box-01__year {
  display: block;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}

.profile-box-02 {
  text-align: center;
}
.profile-box-02__thumb {
  width: 11.6rem;
  height: 11.6rem;
  border: 1px solid var(--color01);
  border-radius: 10rem;
  overflow: hidden;
}
.profile-box-02__category {
  width: fit-content;
  margin: calc(var(--s2) * -1) auto var(--s-5);
  padding: var(--s1) var(--s2);
  background: var(--color04);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: block;
  color: var(--color02);
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.profile-box-02__name {
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
.profile-box-02__name__em {
  font-size: 1.6rem;
}

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

    summary box

*/
.summary-box-01 {
  margin: var(--s8) 0;
  padding: var(--s5) var(--s6);
  background: var(--color03);
  border-radius: var(--s5);
  position: relative;
}
.summary-box-01::before {
  content: "SUMMARY";
  color: var(--color02);
  font-size: 2.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  position: absolute;
  top: 0.6rem;
  left: var(--s9);
}
.summary-box-01__message {
  padding: var(--s2-5) var(--s4);
  background: var(--color02);
  border-radius: var(--s2-5);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.summary-box-01__message::before {
  content: "";
  width: var(--s1);
  height: var(--s5);
  background: var(--color05);
  border: 1px solid var(--color01);
  border-radius: 0 var(--s2-5) var(--s2-5) 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  margin: var(--s3) auto;
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: #000;
  border: 0.2rem solid #000;
  color: #FFF;
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
  display: none;
}

.toggle-icon {
  width: var(--s3);
  height: var(--s3);
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: block;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-icon::before {
  content: "";
  width: var(--s1-5);
  height: 0.2rem;
  background: var(--color04);
  border-radius: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translate(0, -50%);
}
.toggle-icon::after {
  content: "";
  width: 0.2rem;
  height: var(--s1-5);
  background: var(--color04);
  border-radius: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.is-open .toggle-icon::after {
  transform: translate(0, -50%) rotate(90deg);
}

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

    more gradient

*/
.more-gradient-btn {
  width: 15.3rem;
  padding: var(--s1-5) var(--s3);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translate(-50%, 0);
  transition: opacity 0.3s;
}
.more-gradient-btn::before {
  content: "";
  width: var(--s1-5);
  height: 1px;
  background: var(--color01);
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-gradient-btn::after {
  content: "";
  width: 1px;
  height: var(--s1-5);
  background: var(--color01);
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(50%, -50%);
  transition: transform 0.3s;
}
.more-gradient-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

@media (hover: hover) {
  .more-gradient-btn:hover {
    opacity: 0.6;
  }
}
.more-gradient-content {
  height: 16rem;
  padding-bottom: var(--s3);
  overflow: hidden;
  position: relative;
  transition: height 0.6s ease;
}
.more-gradient-content::after {
  content: "";
  width: 100%;
  height: 12rem;
  background: linear-gradient(to bottom, transparent, var(--color02));
  opacity: 1;
  visibility: visible;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.more-gradient-content.is-open::after {
  opacity: 0;
  visibility: hidden;
}

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

    more gradient sp

*/
.more-gradient-sp-btn {
  display: none;
}

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

    tab

*/
.tab-btn {
  margin-top: var(--s2);
  padding: var(--s7) var(--s4) var(--s4);
  background: var(--color06) url("img/icon-tab-btn-01.svg") no-repeat bottom left/7.5rem 7.5rem;
  border: 1px solid var(--color01);
  border-radius: var(--s4);
  box-shadow: 0 1.5rem 0 var(--color01);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  flex: 1;
  color: var(--color02);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity ease 0.6s;
  position: relative;
  z-index: 1;
}
.tab-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 3.2rem solid var(--color06);
  border-left: 1.6rem solid transparent;
  border-right: 1.6rem solid transparent;
  border-bottom: 3.2rem solid transparent;
  display: none;
  position: absolute;
  left: 50%;
  bottom: 1px;
  z-index: -1;
  transform: translate(-50%, 100%);
}
.tab-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 3.2rem solid var(--color01);
  border-left: 1.6rem solid transparent;
  border-right: 1.6rem solid transparent;
  border-bottom: 3.2rem solid transparent;
  display: none;
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  z-index: -2;
  transform: translate(-50%, 100%);
}
.tab-btn__label-01 {
  width: calc(100% - var(--s8));
  padding: var(--s1-5) var(--s2);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  color: var(--color01);
  font-size: 1.8rem;
  text-align: center;
  position: absolute;
  top: calc(var(--s2) * -1);
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}
.tab-btn__label-02 {
  padding: var(--s1) var(--s2);
  background: var(--color01);
  border-radius: 10rem;
  font-size: 1.8rem;
}
.tab-btn__link {
  display: block;
  color: var(--color02);
  text-decoration: none;
}
.tab-btn--02 {
  background-image: url("img/icon-tab-btn-02.svg");
}
.tab-btn.is-active {
  opacity: 1;
}
.tab-btn.is-active::before, .tab-btn.is-active::after {
  display: block;
}

@media (hover: hover) {
  .tab-btn:hover {
    opacity: 1;
  }
}
.tab-btn-wrapper {
  margin-bottom: var(--s8);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s5);
}
.tab-btn-wrapper--bottom {
  margin-top: var(--s10);
  margin-bottom: 0;
  align-items: flex-start;
}
.tab-btn-wrapper--bottom .tab-btn::before {
  border-top-color: transparent;
  border-bottom-color: var(--color06);
  top: -1.5rem;
  bottom: auto;
  transform: translate(-50%, -100%);
}
.tab-btn-wrapper--bottom .tab-btn::after {
  display: none;
}

.tab-content {
  display: none;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

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

    top

*/
.mv-block {
  position: relative;
  z-index: 1;
}
.mv-block::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 0 0 var(--s5) var(--s5);
  box-sizing: border-box;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.mv-block__inner {
  padding-top: var(--s12);
  padding-bottom: 7.4rem;
  overflow: visible;
}

.mv-deco-01 {
  width: 30.3rem;
  opacity: 0;
  position: absolute;
  top: 0;
  right: -7.5rem;
  transform: translateY(15%);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
}
.mv-deco-01.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.mv-deco-01.is-inview .mv-deco-01__img {
  animation: upAnimation 4.5s 1s ease-in-out infinite alternate;
}

.mv-deco-02 {
  width: 32.9rem;
  opacity: 0;
  position: absolute;
  top: 12rem;
  right: 10rem;
  transform: translateY(15%);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
}
.mv-deco-02.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.mv-deco-02.is-inview .mv-deco-02__img {
  animation: downAnimation 6s 1s ease-in-out infinite alternate;
}

.mv-deco-03 {
  width: 38.4rem;
  opacity: 0;
  position: absolute;
  top: 34rem;
  right: -17.6rem;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
}
.mv-deco-03.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.mv-deco-03.is-inview .mv-deco-03__img {
  animation: upAnimation 3.5s 1s ease-in-out infinite alternate;
}

.mv-box-01 {
  padding: var(--s4) var(--s7) var(--s7);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: var(--s5);
  position: relative;
  z-index: 1;
}

.mv-title {
  padding-bottom: var(--s7);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.7;
  opacity: 0;
  position: relative;
  transform: translateY(15%);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
}
.mv-title::after {
  content: "";
  width: 17.8rem;
  height: 1px;
  background: var(--color01);
  position: absolute;
  left: 0;
  bottom: 0;
}
.mv-title__em-01 {
  padding: 0 var(--s3) var(--s2) var(--s1-5);
  display: inline-block;
  color: var(--color02);
  position: relative;
  z-index: 1;
}
.mv-title__em-01::after {
  content: "";
  width: calc(100% - var(--s1-5));
  height: calc(100% - var(--s2));
  background: #429e4f;
  border: 1px solid var(--color01);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv-title__em-02 {
  padding-right: var(--s1-5);
  color: var(--color07);
  -webkit-text-stroke: 1px var(--color01);
}
.mv-title.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.mv-text-01 {
  margin-bottom: var(--s7);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.5;
}

.mv-text-02 {
  margin-top: var(--s4);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.5;
}
.mv-text-02__em-01 {
  font-size: 2.9rem;
}
.mv-text-02__em-02 {
  padding: 0 var(--s2);
  color: var(--color05);
  font-size: 3.4rem;
  position: relative;
  z-index: 1;
}
.mv-text-02__em-02::after {
  content: "";
  width: 6.2rem;
  height: 6.8rem;
  background: url("img/mv-bg-01.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.mv-text-02__em-02__small {
  font-size: 2.1rem;
}

.index-block-01 {
  margin: var(--s12) 0;
}

.index-list__item {
  border-bottom: 1px solid var(--color03);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.5;
}
.index-list__item + .index-list__item {
  margin-top: var(--s1);
}
.index-list__link {
  padding: var(--s1) var(--s4) var(--s1) var(--s-5);
  background: url("img/arrow-01-gray-down-small.svg") no-repeat center right var(--s-5)/var(--s3) var(--s3);
  display: block;
  text-decoration: none;
}

.sponsor-block-01 {
  margin: var(--s12) 0;
  padding-top: 2.8rem;
}
.sponsor-block-01__inner {
  position: relative;
  z-index: 1;
}
.sponsor-block-01__inner::after {
  content: "";
  width: calc(100rem + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  border: 1px solid var(--color01);
  border-radius: var(--s5) 0 0 var(--s5);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: var(--s3);
  z-index: -1;
}
.l-center .sponsor-block-01__inner::after {
  left: 0;
}
.sponsor-block-01__header {
  padding: var(--s5) var(--s3);
  position: relative;
}
.sponsor-block-01__header::after {
  content: "";
  width: calc(100rem + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  background: var(--color04);
  border-radius: var(--s5) 0 0 0;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sponsor-block-01__content {
  padding: var(--s5) 0 var(--s5) var(--s5);
}
.sponsor-block-01__content > .l-btn-01-wrapper:last-child,
.sponsor-block-01__content > .l-btn-01:last-child {
  margin-bottom: 0;
}
.sponsor-block-01__movie {
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.sponsor-block-01__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sponsor-block-01__title-01 {
  color: var(--color02);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.sponsor-block-01__title-02 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.sponsor-block-01__label-01 {
  width: 22.2rem;
  height: var(--s7);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: var(--s7);
  transform: translate(0, -50%);
  overflow: hidden;
}
.l-center .l-center .sponsor-block-01__label-01 {
  left: var(--s4);
}
.sponsor-block-01__label-01::before {
  content: "";
  width: 60.2rem;
  height: 3rem;
  margin-top: -1.5rem;
  background: url("img/text-loop-sponsored.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 10s linear infinite;
  position: absolute;
  top: 50%;
  right: 0;
}
.sponsor-block-01__label-02 {
  color: var(--color04);
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  text-align: center;
}
.sponsor-block-01__em-01 {
  color: var(--color07);
}

.about-block-01 {
  margin: var(--s12) 0;
}
.about-block-01__text {
  max-width: 93rem;
  margin-right: auto;
  margin-left: auto;
}
.about-block-01 .btn-internal:last-child {
  margin-bottom: 0;
}

.about-card-01-wrapper {
  margin-top: var(--s9);
}

.about-card-01 {
  padding-top: var(--s5);
  position: relative;
  z-index: 1;
}
.about-card-01::after {
  content: "";
  width: 100%;
  height: calc(100% - var(--s5));
  background: var(--color03);
  border: 1px solid var(--color01);
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.about-card-01__label {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s1-5);
  background: var(--color07);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  font-size: 1.8rem;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}
.about-card-01__label::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.4rem solid var(--color07);
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.4rem solid transparent;
  position: absolute;
  left: 50%;
  bottom: 2px;
  z-index: -1;
  transform: translate(-50%, 100%);
}
.about-card-01__label::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.4rem solid var(--color01);
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.4rem solid transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -2;
  transform: translate(-50%, 100%);
}
.about-card-01__icon {
  width: var(--s4);
  height: var(--s4);
  background: var(--color02);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-01__icon__img {
  width: 2.1rem;
}
.about-card-01__thumb {
  width: calc(100% - 2px);
  height: 19.2rem;
  margin: 1px auto 0;
}
.about-card-01__thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-card-01__content {
  margin-top: calc(var(--s4) * -1);
  padding: 0 var(--s2-5) var(--s2-5);
  position: relative;
  z-index: 1;
}
.about-card-01__title {
  padding: var(--s1-5);
  background: var(--color02);
  border-radius: var(--s2-5);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.voice-block-01 {
  margin-top: 20rem;
}
.voice-block-01__inner {
  padding-top: var(--s10);
  padding-bottom: var(--s10);
  position: relative;
}
.voice-block-01__thumb {
  width: 42rem;
  position: absolute;
  top: 13px;
  right: var(--s3);
  z-index: 1;
  transform: translate(0, -100%);
}
.voice-block-01__header {
  padding-bottom: var(--s10);
  background: url("img/line-comment-01.svg") no-repeat left bottom/auto 3.4rem;
}
.voice-block-01__label-01 {
  width: 22.2rem;
  height: var(--s7);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: var(--s3);
  z-index: 2;
  transform: translate(0, -50%);
  overflow: hidden;
}
.voice-block-01__label-01::before {
  content: "";
  width: 58.2rem;
  height: 3rem;
  margin-top: -1.5rem;
  background: url("img/text-loop-voice.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 10s linear infinite;
  position: absolute;
  top: 50%;
  right: 0;
}
.voice-block-01 .btn-internal:last-child {
  margin-bottom: 0;
}

.voice-box-01 {
  margin: var(--s8) 0;
  padding: 1px;
  position: relative;
  z-index: 1;
}
.voice-box-01::after {
  content: "";
  width: calc(100% + (100vw - 100% - var(--sidebar-width)) / 2);
  height: 100%;
  background: var(--color02);
  border: 1px solid var(--color01);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.voice-box-01 .caption-large {
  margin: 1em;
  display: block;
  text-align: left;
}
.voice-box-01.l-column-05--row-reverse::after {
  width: 100vw;
  left: auto;
  right: 0;
}
.voice-box-01 .caption-large {
  margin: 0rem 3rem 3rem;
}
.voice-box-01__label-01 {
  padding: var(--s1) var(--s3);
  color: var(--color02);
  background: var(--color01);
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s1);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: var(--s4);
  transform: translate(0, -50%);
}
.voice-box-01__thumb img{
  padding: 5rem 0 3rem 3rem;
}
.l-column-05--row-reverse .voice-box-01__thumb img{
  padding: 5rem 3rem 3rem 0;
}
.voice-box-01__label-01__icon {
  width: 2.6rem;
  height: 2.6rem;
}
.l-column-05--row-reverse .voice-box-01__label-01 {
  left: auto;
  right: var(--s4);
}
.voice-box-01__label-02 {
  width: fit-content;
  padding: var(--s-5) var(--s1-5);
  background: var(--color03);
  border-radius: 10rem;
  font-weight: 900;
  line-height: 1.5;
}
.voice-box-01__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
}
.voice-box-01__content {
  padding-top: var(--s8);
  padding-bottom: var(--s5);
}

.special-block-01.bg-01::after {
  top: var(--s8);
}
.special-block-01__inner {
  padding-top: var(--s8);
  padding-bottom: 12rem;
  overflow: hidden;
}
.special-block-01__header {
  padding: var(--s8) 0;
  position: relative;
  z-index: 1;
}
.special-block-01__deco-01 {
  width: 33.2rem;
  height: 33.2rem;
  position: absolute;
  top: -5.6rem;
  right: 9rem;
  z-index: 1;
  animation: downAnimation 6s ease-in-out infinite alternate;
}
.special-block-01__deco-01::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color06);
  border: 1px solid var(--color01);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -1.6rem;
  z-index: -1;
}
.special-block-01__deco-02 {
  width: 19.6rem;
  height: 19.6rem;
  position: absolute;
  top: 19rem;
  right: 30rem;
  z-index: 1;
  animation: upAnimation 5s ease-in-out infinite alternate;
}
.special-block-01__deco-02::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color05);
  border: 1px solid var(--color01);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -1.2rem;
  z-index: -1;
}
.special-block-01__deco-03 {
  width: 16rem;
  height: 16rem;
  position: absolute;
  top: 29rem;
  right: 8rem;
  z-index: 1;
  animation: downAnimation 4s ease-in-out infinite alternate;
}
.special-block-01__deco-03::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color09);
  border: 1px solid var(--color01);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  z-index: -1;
}
.special-block-01__deco-04 {
  width: 22rem;
  position: absolute;
  top: -1.4rem;
  right: 39rem;
  z-index: 1;
  animation: downAnimation 4s ease-in-out infinite alternate;
}
.special-block-01__deco-05 {
  width: 18.3rem;
  position: absolute;
  top: 12.7rem;
  right: 0.3rem;
  z-index: 1;
  animation: upAnimation 3s ease-in-out infinite alternate;
}
.special-block-01__deco-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid var(--color01);
  overflow: hidden;
  object-fit: cover;
}
.special-block-01__content {
  padding: 0 var(--s5) var(--s7);
  position: relative;
  z-index: 1;
}
.special-block-01__content::after {
  content: "";
  width: 100%;
  height: calc(100% - var(--s4));
  background: var(--color02);
  border: 1px solid var(--color01);
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.special-block-01__label-01 {
  padding: 0.5em 1em;
  background: var(--color04);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: block;
  color: var(--color02);
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.special-block-01__label-01::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.4rem solid var(--color04);
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.4rem solid transparent;
  position: absolute;
  left: 50%;
  bottom: 2px;
  z-index: -1;
  transform: translate(-50%, 100%);
}
.special-block-01__label-01::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.4rem solid var(--color01);
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.4rem solid transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -2;
  transform: translate(-50%, 100%);
}
.special-block-01__title-01 {
  margin-bottom: var(--s4);
  padding-top: var(--s10);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--color01);
  font-size: 3.3rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  position: relative;
}

.special-box-01 + .special-box-01 {
  margin-top: var(--s8);
}
.special-box-01__q {
  margin-bottom: var(--s2);
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.special-box-01__q::before {
  content: "Q";
  width: var(--s8);
  height: var(--s8);
  background: var(--color06);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  color: var(--color02);
  font-size: 4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
.special-box-01--category02 .special-box-01__q::before {
  background-color: var(--color09);
}
.special-box-01--category03 .special-box-01__q::before {
  background-color: var(--color07);
}
.special-box-01__a {
  padding: var(--s3);
  background: #FFE4DE;
  border-radius: var(--s5);
  position: relative;
  z-index: 1;
}
.special-box-01__a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-left: 3.2rem solid transparent;
  border-right: 3.2rem solid #FFE4DE;
  border-bottom: 2rem solid transparent;
  position: absolute;
  top: var(--s7);
  left: 2px;
  z-index: -1;
  transform: translate(-100%, 0);
}
.l-column-06--row-reverse .special-box-01__a::before {
  left: auto;
  right: 2px;
  transform: rotate(180deg) translate(-100%, 0);
}
.special-box-01--category02 .special-box-01__a {
  background-color: #DDFFE1;
}
.special-box-01--category02 .special-box-01__a::before {
  border-right-color: #DDFFE1;
}
.special-box-01--category03 .special-box-01__a {
  background: #FFF1D1;
}
.special-box-01--category03 .special-box-01__a::before {
  border-right-color: #FFF1D1;
}
.special-box-01__em-01 {
  padding: var(--s2-5);
  background: var(--color02);
  border-radius: var(--s2-5);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
}
.special-box-01__text {
  padding: 0 var(--s2-5);
}

.career-block-01__inner {
  padding-top: var(--s10);
  padding-bottom: 17rem;
  position: relative;
}
.career-block-01__label-01 {
  width: 22.2rem;
  height: var(--s7);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: var(--s3);
  transform: translate(0, -50%);
  overflow: hidden;
}
.career-block-01__label-01::before {
  content: "";
  width: 66.6rem;
  height: 3rem;
  margin-top: -1.5rem;
  background: url("img/text-loop-career.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 10s linear infinite;
  position: absolute;
  top: 50%;
  right: 0;
}
.career-block-01 .l-btn-01:last-child {
  margin-bottom: 0;
}

.career-photo-01 {
  padding: var(--s2) var(--s2);
  background: #ffffff;
  border-radius: var(--s5);
}

.career-title-01 {
  padding-top: var(--s4);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  color: var(--color02);
  font-size: 3.2rem;
  font-weight: 900;
  font-family: "Noto Sans JP Vertical", sans-serif;
  line-height: 1.5;
  writing-mode: vertical-rl;
  position: sticky;
  top: var(--s5);
  left: 0;
}
.career-title-01::before {
  content: "";
  width: 7.6rem;
  height: 7.5rem;
  background: url("img/icon-q.svg") no-repeat center center/contain;
  position: absolute;
  top: -0.5rem;
  right: 3rem;
  z-index: 1;
}
.career-title-01::after {
  content: "";
  width: 7.1rem;
  height: 6.8rem;
  background: url("img/icon-a.svg") no-repeat center center/contain;
  position: absolute;
  top: 3.5rem;
  left: 1.5rem;
  z-index: 1;
}
.career-title-01__line {
  padding: var(--s5) var(--s2) var(--s4);
  background: var(--color01);
  border-radius: var(--s2-5);
}
.career-title-01__line + .career-title-01__line {
  margin-top: var(--s5);
}

.career-box-01 {
  padding: var(--s4);
  position: relative;
  z-index: 1;
}
.career-box-01::after {
  content: "";
  width: calc(100% + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: var(--s5) 0 0 var(--s5);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.career-box-01 + .career-box-01 {
  margin-top: var(--s5);
}
.career-box-01__q {
  margin-bottom: var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--color01);
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.career-box-01__q::before {
  content: "Q";
  width: var(--s8);
  height: var(--s8);
  background: var(--color05);
  border: 1px solid var(--color01);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  color: var(--color02);
  font-size: 4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}

.interview-block-01.bg-02 {
  margin-top: var(--s12);
  margin-bottom: var(--s12);
}
.interview-block-01__inner {
  padding-top: var(--s8);
  padding-bottom: var(--s8);
  position: relative;
}
.interview-block-01__label-01 {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: var(--s1);
  color: var(--color07);
  font-size: 2.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
.interview-block-01__label-01::before {
  content: "";
  width: var(--s2);
  height: var(--s2);
  margin-top: 0.25em;
  background: var(--color07);
  border-radius: 100%;
}
.interview-block-01__header {
  color: var(--color02);
  text-align: center;
}
.interview-block-01__deco-01 {
  width: 25.5rem;
  position: absolute;
  top: -3.5rem;
  left: -6rem;
  z-index: 1;
  animation: downAnimation 4s ease-in-out infinite alternate;
}
.interview-block-01__deco-02 {
  width: 24rem;
  position: absolute;
  top: 3.5rem;
  right: -1.8rem;
  z-index: 2;
  animation: upAnimation 3s ease-in-out infinite alternate;
}
.interview-block-01__deco-03 {
  width: 21.6rem;
  position: absolute;
  top: -13rem;
  right: -7.8rem;
  z-index: 1;
  animation: downAnimation 3s ease-in-out infinite alternate;
}
.interview-block-01 .l-btn-01:last-child {
  margin-bottom: 0;
}

.interview-tab-wrapper {
  margin: var(--s8) 0 var(--s10);
}

.interview-box-02 {
  position: relative;
  z-index: 1;
}
.interview-box-02::before {
  content: "";
  width: calc(100rem + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  background: var(--color02);
  border-radius: var(--s5) 0 0 var(--s5);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.interview-box-02::after {
  content: "";
  width: calc(100rem + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  border: 1px solid var(--color01);
  border-radius: var(--s5) 0 0 var(--s5);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.interview-box-02__label-01 {
  height: 100%;
  background: var(--color06);
  border-radius: var(--s5) 0 0 var(--s5);
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.8rem;
  font-weight: 900;
  position: relative;
  z-index: -1;
}
.interview-box-02__label-01__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  transform-origin: top left;
  position: absolute;
  top: var(--s4);
  left: var(--s2);
  transform: rotate(90deg) translateY(-100%);
}
.interview-box-02__label-02 {
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--color06);
  font-weight: 900;
  line-height: 1.5;
}
.interview-box-02__label-02::after {
  content: "";
  width: var(--s8);
  height: 1px;
  background: var(--color06);
}
.interview-box-02__content {
  padding: var(--s6) 0;
}
.interview-box-02__title-01 {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.5;
}
.interview-box-02__title-02 {
  margin: var(--s2) 0;
  padding: var(--s1-5);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.interview-box-02__title-02::before {
  content: "REAL VOICE";
  margin-bottom: var(--s1);
  display: block;
  color: var(--color07);
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
.interview-box-02__title-02::after {
  content: "";
  width: calc(100% + var(--s8));
  height: 100%;
  background: #FFFDBD;
  border-radius: var(--s2-5) 0 0 var(--s2-5);
  position: absolute;
  top: 0;
  left: calc(var(--s2) * -1);
  z-index: -1;
}
.interview-box-02__thumb {
  border-radius: var(--s2-5);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.interview-box-02__text {
  padding: 0 var(--s2);
}
.interview-box-02 .btn-internal {
  margin-top: var(--s2-5);
  margin-bottom: 0;
}

.interview-box-03__header {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  position: relative;
}
.interview-box-03__header::before {
  content: "";
  width: 5.3rem;
  height: 5.3rem;
  background: url("img/icon-speech-bubble-02.svg") no-repeat center center/contain;
  margin-right: var(--s1);
}
.interview-box-03__content {
  padding: var(--s5) var(--s5);
  color: var(--color02);
  position: relative;
  z-index: 1;
}
.interview-box-03__content::after {
  content: "";
  width: calc(100% + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  background: #2B8137;
  border-radius: var(--s2-5);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: calc((100vw - 100rem - var(--sidebar-width)) / 2 * -1);
  z-index: -1;
}
.interview-box-03__thumb + .interview-box-03__content::after {
  width: calc(100% + var(--s5) + (100vw - 100rem - var(--sidebar-width)) / 2);
}
.interview-box-03__thumb {
  border-radius: var(--s2-5);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.interview-box-03__title-01 {
  margin-left: var(--s3);
  background: var(--color02);
  border: 1px solid var(--color01);
  display: flex;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.5;
}
.interview-box-03__title-01__line-01 {
  padding: var(--s1) var(--s2) var(--s1) var(--s1);
  background: var(--color01);
  color: var(--color02);
}
.interview-box-03__title-01__line-02 {
  padding: var(--s1) 0 var(--s1) var(--s2);
}
.interview-box-03__title-01__line-03 {
  padding: var(--s1) var(--s2) var(--s1) 0;
}
.interview-box-03__title-02 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.interview-box-03__title-02::after {
  content: "”";
  color: var(--color01);
  font-size: 20rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1;
  opacity: 0.1;
  position: absolute;
  top: calc(var(--s8) * -1);
  right: calc(var(--s6) * -1);
}

.recruit-block-01.bg-01::after {
  top: 10rem;
}
.recruit-block-01.bg-02 {
  margin-top: var(--s3);
  margin-bottom: var(--s12);
}
.recruit-block-01.bg-02::after {
  height: calc(100% - 10rem);
}
.recruit-block-01__inner-01 {
  padding-top: 10rem;
}
.recruit-block-01.bg-01 .recruit-block-01__inner-01 {
  overflow: hidden;
}
.recruit-block-01__inner-02 {
  padding-top: var(--s10);
  padding-bottom: 12rem;
  position: relative;
}
.recruit-block-01.bg-02 .recruit-block-01__inner-02 {
  padding-top: var(--s8);
  padding-bottom: var(--s8);
}
.recruit-block-01__deco-01 {
  width: 20.9rem;
  height: 20.9rem;
  border: 1px solid var(--color01);
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: -9rem;
  right: -8rem;
  z-index: 1;
  animation: downAnimation 3.6s ease-in-out infinite alternate;
}
.recruit-block-01__deco-02 {
  width: 21.6rem;
  height: 21.6rem;
  border: 1px solid var(--color01);
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 2rem;
  right: 14.5rem;
  z-index: 1;
  animation: downAnimation 5s ease-in-out infinite alternate;
}
.recruit-block-01__deco-03 {
  width: 14.5rem;
  height: 14.5rem;
  border: 1px solid var(--color01);
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 15.8rem;
  right: 0;
  z-index: 1;
  animation: upAnimation 4s ease-in-out infinite alternate;
}
.recruit-block-01__label-01 {
  width: 22.2rem;
  height: var(--s7);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  overflow: hidden;
}
.recruit-block-01__label-01::before {
  content: "";
  width: 70.8rem;
  height: 3rem;
  margin-top: -1.5rem;
  background: url("img/text-loop-recruit.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 10s linear infinite;
  position: absolute;
  top: 50%;
  right: 0;
}
.recruit-block-01.bg-01 .recruit-block-01__label-01 {
  left: var(--s3);
}
.recruit-block-01__logo {
  width: 36rem;
  margin-bottom: var(--s3);
}
.recruit-block-01__note {
  margin-top: var(--s2);
  color: #A4A4A4;
  font-size: 1.2rem;
  line-height: 1.5;
}

.sns-box-01 {
  margin-top: var(--s12);
  margin-bottom: var(--s12);
}
.sns-box-01__photo-01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s2);
}
.sns-box-01__photo-01__img {
  width: calc((100% - var(--s2)) / 2);
}
.sns-box-01__label-01 {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s1) var(--s2);
  background: var(--color04);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  color: var(--color02);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
}
.sns-box-01__label-02 {
  width: 100%;
  height: 5rem;
  border-top: 1px solid var(--color01);
  border-bottom: 1px solid var(--color01);
  overflow: hidden;
  position: relative;
}
.sns-box-01__label-02::before {
  content: "";
  width: 193.6rem;
  height: 2.7rem;
  margin-top: -1.35rem;
  background: url("img/text-loop-check.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 28s linear infinite;
  position: absolute;
  top: 50%;
  right: 0;
}
.sns-box-01__content {
  position: relative;
  z-index: 1;
}
.sns-box-01__content::after {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: var(--s4);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.sns-box-01__text {
  padding: var(--s2-5) var(--s4);
}
.sns-box-01__note {
  color: #707070;
  font-size: 1rem;
  line-height: 1.5;
}
.sns-box-01 .l-btn-01 {
  margin-top: var(--s3);
  margin-bottom: var(--s3);
}

.sns-btn-01 {
  width: 8.4rem;
  height: 8.4rem;
  position: relative;
  z-index: 1;
}
.sns-btn-01::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color01);
  border-radius: 10rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0, 0.7rem);
}
.sns-btn-01__link {
  width: 100%;
  height: 100%;
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.3s;
}
.sns-btn-01__img {
  width: 3.8rem;
  height: 3.8rem;
}

@media (hover: hover) {
  .sns-btn-01__link:hover {
    transform: translate(0, 0.7rem);
  }
}
.column-block-01__inner {
  padding-top: var(--s10);
  padding-bottom: var(--s10);
  position: relative;
}
.column-block-01__label-01 {
  width: 22.2rem;
  height: var(--s7);
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: var(--s3);
  transform: translate(0, -50%);
  overflow: hidden;
}
.column-block-01__label-01::before {
  content: "";
  width: 69.9rem;
  height: 3rem;
  margin-top: -1.5rem;
  background: url("img/text-loop-column.png") repeat-x center right/auto 100%;
  animation: loopXAnimation 10s linear infinite;
  position: absolute;
  top: 50%;
  right: 0;
}

.column-box-01 {
  padding-top: var(--s2);
  position: relative;
  z-index: 1;
}
.column-box-01__link {
  border: 1px solid var(--color01);
  display: block;
  text-decoration: none;
}
.column-box-01__content {
  padding: var(--s2-5) var(--s4);
}
.column-box-01__label {
  width: fit-content;
  padding: 0 var(--s2);
  background: var(--color05);
  border-radius: 10rem;
  color: var(--color02);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  position: absolute;
  top: var(--s2);
  left: var(--s4);
  transform: translate(0, -50%);
}
.column-box-01__label--blue {
  background: var(--color04);
}
.column-box-01__label--green {
  background: var(--color09);
}
.column-box-01__thumb {
  width: 100%;
  height: 11.5rem;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.column-box-01__thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease;
}
.column-box-01__title {
  padding-right: var(--s5);
  background: url("img/arrow-01-pink-right.svg") no-repeat center right/var(--s4) var(--s4);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
}
.column-box-01:nth-child(odd) {
  transform: translate(0, -10rem);
}

@media (hover: hover) {
  .column-box-01__link:hover .column-box-01__thumb__img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
/*
---------------------------------------------

    low

*/
.main-area--low h2:not([class]) {
  margin: 3em 0 1em;
  padding: var(--s2-5) 0 var(--s2-5) var(--s5);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.main-area--low h2:not([class])::before {
  content: "";
  width: var(--s3);
  height: 100%;
  background: var(--color06);
  border: 1px solid var(--color01);
  border-radius: 1.8rem 0 0 1.8rem;
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.main-area--low h2:not([class])::after {
  content: "";
  width: calc(100rem + (100vw - 100rem - var(--sidebar-width)) / 2);
  height: 100%;
  background: var(--color08);
  border: 1px solid var(--color01);
  border-radius: 1.8rem 0 0 1.8rem;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.main-area--low h2:not([class]) a {
  padding-right: var(--s5);
  background: url("img/arrow-01-gray-right.svg") no-repeat right center/var(--s4) var(--s4);
  display: block;
  text-decoration: none;
}
.main-area--low h3:not([class]) {
  margin: var(--s4) 0 var(--s2);
  padding: var(--s2-5) 0 var(--s2-5) var(--s5);
  border-bottom: 1px solid var(--color01);
  color: var(--color09);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.main-area--low h3:not([class])::before {
  content: "";
  width: 1.8rem;
  height: 2.6rem;
  background: #d7eeda;
  border: 1px solid var(--color01);
  border-radius: 10rem 0 0 10rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.main-area--low h3:not([class]) a {
  padding-right: var(--s5);
  background: url("img/arrow-01-gray-right.svg") no-repeat right center/var(--s4) var(--s4);
  display: block;
  color: var(--color09);
  text-decoration: none;
}
.main-area--low h4:not([class]) {
  margin: 2em 0 1em;
  padding: 0 0 0 var(--s5);
  color: var(--color06);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
}
.main-area--low h4:not([class])::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: var(--color08);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  left: 0.25em;
  transform: translate(0, -50%);
}
.main-area--low h4:not([class]) a {
  padding: var(--s-5) var(--s5) var(--s-5) 0;
  background: url("img/arrow-01-gray-right.svg") no-repeat right center/var(--s4) var(--s4);
  display: block;
  color: var(--color06);
  text-decoration: none;
}
.main-area--low h5:not([class]) {
  margin: 2em 0 1em;
  padding: 0 0 0 var(--s5);
  color: var(--color04);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.5;
}
.main-area--low h5:not([class]) a {
  padding: var(--s-5) var(--s5) var(--s-5) 0;
  background: url("img/arrow-01-gray-right.svg") no-repeat right center/var(--s4) var(--s4);
  display: block;
  color: var(--color04);
  text-decoration: none;
}

@media (hover: hover) {
  h2 a:hover,
  h3 a:hover,
  h4 a:hover,
  h5 a:hover {
    opacity: 0.5;
  }
}
.low-mv-block {
  margin-bottom: var(--s2);
  padding: var(--s12) 0 var(--s12) var(--sidebar-width);
  position: relative;
  z-index: 1;
}
.low-mv-block::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color03);
  border: 1px solid var(--color01);
  border-radius: 0 0 var(--s5) var(--s5);
  box-sizing: border-box;
  position: absolute;
  right: 0;
  bottom: var(--s5);
  z-index: -1;
}

.low-mv-title {
  width: calc(100rem + (100vw - 100rem - var(--sidebar-width)) / 2);
  margin-left: calc((100vw - 100rem - var(--sidebar-width)) / 2 * -1);
  padding-top: var(--s2-5);
  position: relative;
}
.low-mv-title__label {
  padding: var(--s1-5) var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: 10rem;
  font-size: 1.8rem;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 10rem;
}
.low-mv-title__label::after {
  content: "";
  width: 3rem;
  height: 3rem;
  display: block;
  background: url("img/icon-speech-bubble-01.png") no-repeat center/contain;
}
.low-mv-title__deco-01 {
  width: 17.2rem;
  position: absolute;
  top: -3rem;
  right: -8.8rem;
}
.low-mv-title__deco-02 {
  width: 18.35rem;
  position: absolute;
  top: 4.8rem;
  right: 2.8rem;
}
.low-mv-title__deco-03 {
  width: 18.7rem;
  position: absolute;
  right: -10.6rem;
  top: 16.4rem;
}
.low-mv-title h1 {
  min-height: 19.6rem;
  padding: var(--s6) 24rem var(--s6) var(--s5);
  background: var(--color02);
  border: 1px solid var(--color01);
  border-radius: var(--s5);
  display: flex;
  align-items: center;
  color: var(--color06);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.5;
}

@media screen and (max-width: 1365px) {
  .low-mv-title {
    width: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }
  .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-large {
    gap: var(--s4);
  }
  .l-stack {
    gap: var(--s2);
  }
  /*
  ---------------------------------------------

      sp layout grid

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

      sp layout sidebar

  */
  .l-sidebar__main {
    width: 100%;
    overflow-x: hidden;
  }
  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column-01 {
    flex-direction: column;
    align-items: center;
    gap: var(--s2);
  }
  .l-column-01__side {
    width: 16rem;
  }
  .l-column-01__main {
    width: 100%;
  }
  .l-column-02 {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }
  .l-column-02__side {
    width: inherit;
  }
  .l-column-02__main {
    width: 100%;
    position: relative;
  }
  .l-column-03 {
    flex-direction: row;
    align-items: center;
    gap: var(--s1-5);
  }
  .l-column-04 {
    gap: var(--s1);
  }
  .l-column-04__side {
    width: 100%;
  }
  .l-column-04__main {
    width: 100%;
  }
  .l-column-05 {
    gap: var(--s1);
  }
  .l-column-05__side {
    width: 100%;
  }
  .l-column-05__main {
    width: 100%;
  }
  .l-column-06 {
    gap: var(--s1-5);
  }
  .l-column-06__side {
    width: 100%;
  }
  .l-column-06__main {
    width: 100%;
  }
  .l-column-07 {
    gap: var(--s2-5);
  }
  .l-column-07__main {
    width: 100%;
  }
  .l-column-08 {
    gap: var(--s4);
  }
  .l-column-08__side {
    width: 100%;
  }
  .l-column-08__main {
    width: 100%;
  }
  .l-column-09 {
    gap: var(--s2) 0;
  }
  .l-column-09__side {
    width: 100%;
  }
  .l-column-09__main {
    width: 100%;
  }
  .l-column-10 {
    gap: var(--s2);
  }
  .l-column-10__side {
    width: 100%;
  }
  .l-column-10__main {
    width: 100%;
  }
  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas-01 {
    grid-template-areas: "label side" "label main";
    grid-template-columns: 2.7rem 1fr;
    grid-template-rows: auto 1fr;
    grid-gap: 0 var(--s2);
  }
  .l-grid-areas-02 {
    grid-template-columns: var(--s2-5) 1fr;
    grid-gap: 0 var(--s2-5);
  }
  .l-grid-areas-03 {
    grid-template-areas: "title" "thumb" "text" "btn";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto 1fr;
    grid-gap: var(--s2) 0;
  }
  .l-grid-areas-04 {
    grid-template-areas: "title" "movie" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr;
  }
  /*
  ---------------------------------------------

      sp layout float

  */
  .l-float-01__float-item {
    width: 7.6rem;
    margin-right: 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;
  }
  /*
  ---------------------------------------------

      sp layout btn

  */
  .l-btn-01 {
    margin: var(--s3) 0;
    flex-wrap: wrap;
  }
  .l-btn-01-wrapper {
    margin: var(--s3) 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s3) var(--s2);
  }
  /*
  ---------------------------------------------

      sp layout header

  */
  .l-header {
    display: grid;
    grid-template-areas: "sitename" "logo" "sponsored";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
  .l-header__note {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-web,
  .btn-internal {
    width: 100%;
    margin: var(--s3) auto;
  }
  .btn-link {
    margin: var(--s2) auto;
  }
  .btn-tel {
    width: 100%;
    margin: var(--s3) auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  .btn-tel a {
    width: 100%;
    height: 100%;
    min-height: 9rem;
    margin: 0;
    padding: var(--s1) var(--s6);
    background-image: url("img/icon-tel.png"), url("img/arrow-01-green-right.svg");
    background-color: var(--color09);
    background-repeat: no-repeat, no-repeat;
    background-position: center left var(--s2), center right var(--s2);
    background-size: var(--s4) var(--s4), var(--s4) var(--s4);
    border: 1px solid var(--color01);
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color02);
    font-weight: 900;
    line-height: 1.5;
    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: var(--color01);
    border-radius: 10rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0, 0.7rem);
  }
  /*
  ---------------------------------------------

      sp background

  */
  .bg-01::after {
    border-radius: 0 var(--s2-5) 0 0;
  }
  .bg-02::after {
    right: calc(var(--s2) * -1);
    border-radius: 0 var(--s2-5) var(--s2-5) 0;
  }
  /*
  ---------------------------------------------

      sp table

  */
  table {
    margin: var(--s3) auto;
  }
  table:not(.keep-layout-sp) thead, table:not(.keep-layout-sp) tbody, table:not(.keep-layout-sp) tr {
    display: block;
  }
  table:not(.keep-layout-sp) th, table:not(.keep-layout-sp) td {
    width: 100%;
    display: block;
  }
  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #E9E5E7;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #E9E5E7;
    border-right: solid 1px #230000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }
  .l-scroll-x,
  .l-scroll-x-sp {
    margin: var(--s3) auto;
  }
  .l-scroll-x table,
  .l-scroll-x-sp table {
    margin: 0;
  }
  .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;
  }
  /*
  ---------------------------------------------

  	sp catch

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

      sp float wrap

  */
  .float-wrap {
    margin: var(--s3) 0;
  }
  .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 {
    margin-bottom: var(--s3);
  }
  /*
  ---------------------------------------------

      sp header

  */
  .header-area {
    padding: var(--s1);
  }
  .header-area .text-note {
    text-align: center;
  }
  .header-logo {
    width: 17rem;
    margin: 0 auto;
  }
  .header-sitename {
    text-align: center;
  }
  .header-sponsored {
    text-align: center;
  }
  /*
  ---------------------------------------------

      sp main

  */
  .main-area--low {
    padding-bottom: var(--s7);
  }
  /*
  ---------------------------------------------

      sp footer

  */
  .footer-area::after {
    height: calc(100% - 12.8rem);
    border-radius: var(--s2-5) var(--s2-5) 0 0;
  }
  .footer-about {
    margin: 0 auto var(--s2);
    padding: var(--s3) var(--s2);
    border-radius: var(--s2-5);
  }
  .footer-about__title {
    text-align: center;
  }
  .footer-bottom {
    padding: var(--s1);
  }
  .footer-box + .footer-box {
    margin-top: 0;
  }
  .footer-menu-title {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  .footer-menu-title__link {
    padding: var(--s1-5) var(--s6) var(--s1-5) var(--s2);
    background-position: center right var(--s2);
    display: block;
    position: relative;
  }
  .footer-menu-title__link:not(.footer-menu-title__link--not-toggle) {
    background: none;
  }
  .footer-menu-title__link .toggle-icon {
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%);
  }
  .footer-menu {
    background: #2F3788;
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
    border-bottom: 1px solid #7179BD;
    font-size: 1.4rem;
  }
  .footer-menu__link {
    padding: var(--s1-5) var(--s5) var(--s1-5) var(--s2);
    background-position: center right var(--s2-5);
    display: block;
  }
  .footer-menu-sub__item {
    border-top: 1px solid #7179BD;
  }
  .footer-menu-sub__link {
    padding: var(--s1-5) var(--s5) var(--s1-5) var(--s4);
    background: url("img/arrow-02-white-right.svg") no-repeat center right var(--s2-5)/1.4rem 1.2rem;
  }
  .footer-menu-sub__link::before {
    top: 50%;
    left: var(--s2);
    transform: translate(0, -50%);
  }
  .footer-disclaimer {
    width: calc(100% - var(--s5));
    margin: var(--s4) auto;
    padding: var(--s3);
  }
  .footer-nocopy {
    margin: var(--s4) var(--s1);
  }
  .footer-copyright {
    width: 100%;
  }
  .footer-sitemap {
    display: none;
  }
  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
    border-radius: var(--s1);
    top: var(--s2);
    right: var(--s2);
  }
  .gnavi-btn span {
    width: var(--s4);
    left: var(--s1);
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.4rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.2rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.1rem;
  }
  .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 {
    max-width: 100%;
    padding: var(--s3) 0;
    border-radius: 0;
  }
  .gnavi-logo {
    width: 17rem;
  }
  .gnavi-banner-01 {
    width: calc(100% - var(--s4));
    margin: var(--s2) auto;
  }
  .gnavi-banner-01__thumb {
    width: 12rem;
  }
  .gnavi-banner-02 {
    width: calc(100% - var(--s4));
    margin: var(--s2) auto;
  }
  .gnavi-nav {
    width: calc(100% - var(--s4));
    margin: var(--s2) auto;
  }
  .gnavi-box {
    margin: 0;
  }
  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    right: var(--s2);
    bottom: var(--s2);
  }
  /*
  ---------------------------------------------

      sp section

  */
  .section-title-01 {
    font-size: 2.5rem;
  }
  .section-title-01__label-01 {
    font-size: 1.6rem;
  }
  .section-title-01__small-01 {
    font-size: 2.5rem;
  }
  .section-label-wave {
    font-size: 2rem;
  }
  .section-label-wave--vertical {
    padding-top: 0;
    padding-bottom: var(--s1-5);
    transform: rotate(0deg) translateY(0);
  }
  .section-label-wave--vertical::after {
    top: auto;
    bottom: 0;
  }
  /*
  ---------------------------------------------

      sp index box

  */
  .index-box-01 {
    margin: var(--s5) auto;
  }
  /*
  ---------------------------------------------

      sp relations

  */
  .relations-box-01 {
    margin: var(--s5) auto;
  }
  .related-article01-frame {
    margin: var(--s5) auto;
  }
  /*
  ---------------------------------------------

      sp link

  */
  .link-box-01 {
    margin: var(--s5) 0;
  }
  /*
  ---------------------------------------------

      sp qa box

  */
  .qa-box-01 {
    margin: var(--s5) 0;
    padding-left: 0;
  }
  .qa-box-01__q {
    margin-bottom: var(--s1);
    padding-left: var(--s1-5);
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .qa-box-01__q::before {
    width: 2rem;
    height: 0.8rem;
    top: 0.5em;
    left: calc(var(--s2-5) * -1);
  }
  .qa-box-01__em-01 {
    padding-left: var(--s1-5);
    font-size: 1.8rem;
  }
  /*
  ---------------------------------------------

      sp interview box

  */
  .interview-box-01 {
    margin: var(--s5) 0;
  }
  .interview-box-01::after {
    width: 100vw;
    border-radius: var(--s2-5) 0 0 var(--s2-5);
  }
  .interview-box-01__label {
    border-radius: var(--s2-5) 0 0 var(--s2-5);
    font-size: 2rem;
  }
  .interview-box-01__label__text {
    top: var(--s2-5);
    left: var(--s-5);
  }
  .interview-box-01__em-01 {
    font-size: 1.5rem;
  }
  .interview-box-01__profile {
    padding-top: var(--s2);
  }
  .interview-box-01__content {
    padding-top: var(--s2);
  }
  /*
  ---------------------------------------------

      sp profile box

  */
  .profile-box-01__thumb {
    width: var(--s10);
    height: var(--s10);
  }
  .profile-box-01__category {
    width: fit-content;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.3rem;
  }
  .profile-box-01__category::before {
    width: 2.7rem;
    height: 2.7rem;
  }
  .profile-box-01__name {
    margin-right: var(--s1);
    display: inline-block;
    text-align: left;
  }
  .profile-box-01__year {
    display: inline-block;
    text-align: left;
  }
  .profile-box-02__thumb {
    width: 7rem;
    height: 7rem;
  }
  .profile-box-02__category {
    width: 100%;
    margin: calc(var(--s1) * -1) auto var(--s-5);
    padding: var(--s-5) var(--s1);
    font-size: 1.4rem;
  }
  /*
  ---------------------------------------------

      sp summary box

  */
  .summary-box-01 {
    margin: var(--s5) 0;
    padding: var(--s4) var(--s2);
    border-radius: var(--s2-5);
  }
  .summary-box-01::before {
    font-size: 2.2rem;
    top: 0.4rem;
    left: var(--s5);
  }
  .summary-box-01__message {
    padding: var(--s2) var(--s2) var(--s2) var(--s3);
    border-radius: var(--s2);
    font-size: 1.8rem;
  }
  /*
  ---------------------------------------------

       sp toggle sp

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

      sp more gradient sp

  */
  .more-gradient-sp-btn {
    width: 15.3rem;
    padding: var(--s1-5) var(--s3);
    background: var(--color02);
    border: 1px solid var(--color01);
    border-radius: 10rem;
    display: block;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    transform: translate(-50%, 50%);
    transition: opacity 0.3s;
  }
  .more-gradient-sp-btn::before {
    content: "";
    width: var(--s1-5);
    height: 1px;
    background: var(--color01);
    position: absolute;
    top: 50%;
    right: var(--s3);
    transform: translate(0, -50%);
  }
  .more-gradient-sp-btn::after {
    content: "";
    width: 1px;
    height: var(--s1-5);
    background: var(--color01);
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translate(50%, -50%);
    transition: transform 0.3s;
  }
  .more-gradient-sp-btn.is-open::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .more-gradient-sp-btn--small {
    width: 9rem;
    padding: var(--s1) var(--s1-5);
    font-size: 1.3rem;
  }
  .more-gradient-sp-btn--small::before {
    right: var(--s1-5);
  }
  .more-gradient-sp-btn--small::after {
    right: 1.8rem;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .more-gradient-btn:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .more-gradient-sp-content {
    height: 16rem;
    padding-bottom: var(--s5);
    overflow: hidden;
    position: relative;
    transition: height 0.6s ease;
  }
  .more-gradient-sp-content::after {
    content: "";
    width: 100%;
    height: 12rem;
    background: linear-gradient(to bottom, transparent, var(--color02));
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .more-gradient-sp-content.is-open::after {
    opacity: 0;
    visibility: hidden;
  }
  .more-gradient-sp-content--narrow {
    height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp tab

  */
  .tab-btn {
    margin-top: var(--s5);
    padding: var(--s3) var(--s1) var(--s2);
    background-image: none;
    border-radius: var(--s2);
    box-shadow: 0 0.8rem 0 var(--color01);
    flex-direction: column;
    gap: var(--s-5);
    font-size: 1.7rem;
  }
  .tab-btn::before {
    border-top: 1.6rem solid var(--color06);
    border-left: 1.2rem solid transparent;
    border-right: 1.2rem solid transparent;
    border-bottom: 1.6rem solid transparent;
  }
  .tab-btn::after {
    border-top: 1.6rem solid var(--color01);
    border-left: 1.2rem solid transparent;
    border-right: 1.2rem solid transparent;
    border-bottom: 1.6rem solid transparent;
    bottom: -0.8rem;
  }
  .tab-btn__label-01 {
    width: 100%;
    padding: var(--s1);
    font-size: 1.3rem;
    top: calc(var(--s5) * -1);
  }
  .tab-btn__label-02 {
    font-size: 1.3rem;
  }
  .tab-btn-wrapper {
    margin-bottom: var(--s4);
    gap: var(--s1);
  }
  .tab-btn-wrapper--bottom {
    margin-top: 2.8rem;
    margin-bottom: 0;
  }
  .tab-btn-wrapper--bottom .tab-btn::before {
    top: -4rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp top

  */
  .mv-block .text-note {
    text-align: center;
  }
  .mv-block__inner {
    padding-top: 13.6rem;
    padding-bottom: var(--s3);
  }
  .mv-deco-01 {
    width: 15.3rem;
    top: -0.6rem;
    right: 5.2rem;
  }
  .mv-deco-02 {
    width: 17.8rem;
    top: 2.7rem;
    right: 14.2rem;
  }
  .mv-deco-03 {
    width: 17.2rem;
    top: 7.7rem;
    right: 0.8rem;
  }
  .mv-box-01 {
    margin-bottom: var(--s2);
    padding: 24.8rem var(--s2) var(--s4);
    border-radius: var(--s2-5);
  }
  .mv-title {
    padding-left: var(--s1-5);
    padding-bottom: var(--s2);
    font-size: 2.6rem;
    line-height: 1.5;
  }
  .mv-title__em-01 {
    margin-left: calc(var(--s1-5) * -1);
    padding: 0 var(--s2) var(--s1) var(--s1-5);
  }
  .mv-title__em-01::after {
    width: calc(100% - var(--s1));
    height: calc(100% - var(--s1));
  }
  .mv-title__em-02 {
    padding-right: var(--s-5);
    -webkit-text-stroke: 1px var(--color01);
  }
  .mv-text-02 {
    margin-top: var(--s1-5);
    font-size: 1.8rem;
  }
  .mv-text-02__em-01 {
    font-size: 1.8rem;
  }
  .mv-text-02__em-02 {
    padding: 0 var(--s1);
    font-size: 2.7rem;
  }
  .mv-text-02__em-02::after {
    width: 4.5rem;
    height: 5.2rem;
  }
  .mv-text-02__em-02__small {
    font-size: 1.5rem;
  }
  .index-block-01 {
    margin: var(--s7) 0;
    padding-bottom: var(--s3);
  }
  .sponsor-block-01 {
    margin: var(--s7) 0;
    padding-top: var(--s2-5);
  }
  .sponsor-block-01__inner::after {
    width: calc(100% - var(--s4));
    border-radius: var(--s2-5);
    left: var(--s2);
  }
  .l-center .sponsor-block-01__inner::after {
    width: 100%;
  }
  .sponsor-block-01__header {
    padding: var(--s4) var(--s2) var(--s3);
  }
  .sponsor-block-01__header::after {
    width: 100%;
    border-radius: var(--s2-5) var(--s2-5) 0 0;
  }
  .sponsor-block-01__content {
    padding: var(--s2) var(--s2) var(--s4);
  }
  .sponsor-block-01__title-01 {
    font-size: 2.2rem;
  }
  .sponsor-block-01__label-01 {
    width: 15rem;
    height: var(--s5);
    left: var(--s4);
  }
  .l-center .l-center .sponsor-block-01__label-01 {
    left: var(--s2);
  }
  .sponsor-block-01__label-01::before {
    height: 2rem;
    margin-top: -1rem;
  }
  .about-block-01 {
    margin: var(--s7) 0;
  }
  .about-card-01-wrapper {
    margin-top: var(--s5);
  }
  .about-card-01 {
    padding-top: var(--s4);
  }
  .about-card-01::after {
    height: calc(100% - var(--s4));
  }
  .about-card-01__label {
    font-size: 1.6rem;
  }
  .about-card-01__icon {
    width: 2.7rem;
    height: 2.7rem;
  }
  .about-card-01__icon__img {
    width: 1.9rem;
  }
  .about-card-01__thumb {
    height: 14.5rem;
  }
  .about-card-01__thumb__img {
    object-position: top center;
  }
  .about-card-01__content {
    margin-top: calc(var(--s2-5) * -1);
    padding: 0 var(--s2) var(--s2-5);
  }
  .voice-block-01 {
    margin-top: 12rem;
  }
  .voice-block-01__inner {
    padding-top: var(--s5);
    padding-bottom: var(--s5);
  }
  .voice-block-01__thumb {
    width: 20rem;
    right: var(--s2);
  }
  .voice-block-01__header {
    padding-bottom: 0;
    background: none;
  }
  .voice-block-01__label-01 {
    height: var(--s5);
    left: var(--s2);
  }
  .voice-block-01__title-wapper {
    padding-bottom: 2.8rem;
    background: url("img/line-comment-01.svg") no-repeat left bottom/auto 1.4rem;
  }
  .voice-box-01 {
    margin: var(--s5) 0;
  }
  .voice-box-01::after {
    left: auto;
    right: 0;
  }
  .voice-box-01 .caption-large {
    text-align: center;
  }
  .voice-box-01.l-column-05--row-reverse::after {
    left: 0;
    right: auto;
  }
  .voice-box-01.l-column-05--row-reverse .caption-large {
    margin-left: 1em;
  }
  .voice-box-01__label-01 {
    padding: var(--s1) var(--s2);
    font-size: 1.4rem;
    left: var(--s2);
  }
  .voice-box-01__label-01__icon {
    width: 1.9rem;
    height: 1.9rem;
  }
  .l-column-05--row-reverse .voice-box-01__label-01 {
    left: var(--s2);
    right: auto;
  }
  .voice-box-01__title {
    font-size: 2rem;
  }
  .voice-box-01__content {
    padding: 0 var(--s2) var(--s3) 0;
  }
  .l-column-05--row-reverse .voice-box-01__content {
    padding: 0 0 var(--s3) var(--s2);
  }
    .voice-box-01__thumb img,
  .l-column-05--row-reverse .voice-box-01__thumb img {
    padding: 2rem 1rem 0;
}
  .special-block-01.bg-01::after {
    top: 5rem;
  }
  .special-block-01__inner {
    padding-top: 5rem;
    padding-bottom: var(--s8);
  }
  .special-block-01__header {
    padding: var(--s4) 0;
  }
  .special-block-01__deco-01 {
    width: 12rem;
    height: 12rem;
    top: -4.2rem;
    right: -1.6rem;
  }
  .special-block-01__deco-01::after {
    bottom: -0.4rem;
  }
  .special-block-01__deco-02 {
    width: 8rem;
    height: 8rem;
    top: 4.5rem;
    right: 4rem;
  }
  .special-block-01__deco-02::after {
    bottom: -0.4rem;
  }
  .special-block-01__deco-03 {
    display: none;
  }
  .special-block-01__deco-04 {
    width: 10.2rem;
    top: -3.6rem;
    right: 9.8rem;
  }
  .special-block-01__deco-05 {
    display: none;
  }
  .special-block-01__content {
    padding: 0 var(--s2) var(--s5);
  }
  .special-block-01__content::after {
    height: calc(100% - var(--s2-5));
  }
  .special-block-01__label-01 {
    width: calc(100% + var(--s6));
    font-size: 1.7rem;
  }
  .special-block-01__title-01 {
    margin-bottom: var(--s3);
    padding-top: var(--s9);
    padding-bottom: var(--s3);
    font-size: 2rem;
  }
  .special-box-01 + .special-box-01 {
    margin-top: var(--s5);
  }
  .special-box-01__q {
    gap: var(--s1);
    font-size: 1.6rem;
  }
  .special-box-01__q::before {
    width: var(--s5);
    height: var(--s5);
    flex-shrink: 0;
    font-size: 2.5rem;
  }
  .special-box-01__a {
    padding: var(--s2);
    border-radius: var(--s2-5);
  }
  .special-box-01__a::before {
    border-top: 2rem solid transparent;
    border-left: 1.2rem solid transparent;
    border-right: 1.2rem solid transparent;
    border-bottom: 2rem solid #FFE4DE;
    top: 1px;
    left: 2.8rem;
    transform: translate(0, -100%);
  }
  .l-column-06--row-reverse .special-box-01__a::before {
    left: 2.8rem;
    right: auto;
    transform: translate(0, -100%);
  }
  .special-box-01--category02 .special-box-01__a::before {
    border-right-color: transparent;
    border-bottom-color: #DDFFE1;
  }
  .special-box-01--category03 .special-box-01__a::before {
    border-right-color: transparent;
    border-bottom-color: #FFF1D1;
  }
  .special-box-01__em-01 {
    padding: var(--s2);
    font-size: 1.5rem;
  }
  .special-box-01__text {
    padding: 0 0 var(--s5);
  }
  .special-box-01 .more-gradient-sp-content::after {
    background: linear-gradient(to bottom, transparent, #FFE4DE);
  }
  .special-box-01 .more-gradient-sp-btn {
    background-color: #FFE4DE;
    bottom: var(--s2);
    transform: translate(-50%, 0);
  }
  .special-box-01--category02 .more-gradient-sp-content::after {
    background: linear-gradient(to bottom, transparent, #DDFFE1);
  }
  .special-box-01--category02 .more-gradient-sp-btn {
    background-color: #DDFFE1;
  }
  .special-box-01--category03 .more-gradient-sp-content::after {
    background: linear-gradient(to bottom, transparent, #FFF1D1);
  }
  .special-box-01--category03 .more-gradient-sp-btn {
    background-color: #FFF1D1;
  }
  .career-block-01__inner {
    padding-top: var(--s5);
    padding-bottom: var(--s10);
  }
  .career-block-01__label-01 {
    height: var(--s5);
    left: var(--s2);
  }
  .career-photo-01 {
    width: 64rem;
    padding: var(--s2) var(--s2);
    border-radius: var(--s2-5);
  }
  .career-photo-01-wrapper {
    margin: var(--s3) 0;
  }
  .career-photo-01-wrapper .l-scroll-x-sp {
    margin-top: 0;
    margin-bottom: 0;
  }
  .career-photo-01-wrapper__note {
    margin-bottom: 0.5em;
    font-weight: 900;
    text-align: center;
  }
  .career-title-01 {
    width: fit-content;
    margin-top: var(--s4);
    padding: var(--s1) var(--s2) var(--s1) var(--s7);
    background: var(--color01);
    border-radius: var(--s1);
    display: block;
    font-size: 2.2rem;
    font-family: "Noto Sans JP", sans-serif;
    writing-mode: horizontal-tb;
    position: relative;
    top: 0;
  }
  .career-title-01::before {
    width: 5.3rem;
    height: 5.1rem;
    top: -3.2rem;
    left: 0.8rem;
    right: auto;
  }
  .career-title-01::after {
    width: 5rem;
    height: 4.8rem;
    top: 0;
    left: -1.2rem;
  }
  .career-title-01__line {
    padding: 0;
    background: none;
  }
  .career-title-01__line + .career-title-01__line {
    margin-top: 0;
  }
  .career-box-01 {
    padding: var(--s4) 0 var(--s2) var(--s2);
  }
  .career-box-01::after {
    width: 100vw;
    border-radius: var(--s2-5) 0 0 var(--s2-5);
  }
  .career-box-01 + .career-box-01 {
    margin-top: var(--s5);
  }
  .career-box-01__q {
    margin-bottom: var(--s2);
    padding-bottom: var(--s2);
    display: block;
    font-size: 1.7rem;
  }
  .career-box-01__q::before {
    width: var(--s6);
    height: var(--s6);
    font-size: 2.8rem;
    position: absolute;
    top: calc(var(--s4) * -1);
    left: 0;
    transform: translate(0, -50%);
  }
  .interview-block-01.bg-02 {
    margin-top: var(--s7);
    margin-bottom: var(--s7);
  }
  .interview-block-01__inner {
    padding-top: var(--s5);
    padding-bottom: var(--s5);
  }
  .interview-block-01.bg-02 .interview-block-01__inner {
    padding-bottom: var(--s3);
  }
  .interview-block-01__label-01 {
    margin-left: 0;
    font-size: 1.8rem;
  }
  .interview-block-01__label-01::before {
    margin-top: 0.2em;
  }
  .interview-block-01__header {
    text-align: left;
  }
  .interview-block-01__deco-01 {
    width: 10.6rem;
    top: -5.5rem;
    left: auto;
    right: 7.5rem;
  }
  .interview-block-01__deco-02 {
    width: 9rem;
    top: -5.5rem;
    right: 0;
  }
  .interview-block-01__deco-03 {
    width: 8.8rem;
    top: 2.8rem;
    right: 0;
  }
  .interview-tab-wrapper {
    margin: var(--s5) 0;
  }
  .interview-box-02 {
    width: calc(100% + var(--s2));
    margin-left: calc(var(--s2) * -1);
  }
  .interview-box-02::before {
    width: 100vw;
    border-radius: 0;
  }
  .interview-box-02::after {
    width: 100vw;
    border-radius: 0;
  }
  .interview-box-02__label-01 {
    border-radius: 0;
  }
  .interview-box-02__label-01__text {
    display: none;
  }
  .interview-box-02__content {
    padding: var(--s3) 0 var(--s4);
  }
  .interview-box-02__title-01 {
    font-size: 1.8rem;
  }
  .interview-box-02__title-02 {
    margin: 0;
    padding: var(--s1) var(--s2);
    font-size: 1.8rem;
  }
  .interview-box-02__title-02::before {
    margin-bottom: var(--s-5);
  }
  .interview-box-02__title-02::after {
    width: calc(100% + var(--s2));
    border-radius: var(--s1) 0 0 var(--s1);
    left: 0;
  }
  .interview-box-02__thumb {
    width: 20rem;
    margin: 0 auto;
  }
  .interview-box-02__text {
    padding: 0;
  }
  .interview-box-02 .btn-internal {
    margin-top: 0;
  }
  .interview-box-03__header {
    margin-bottom: var(--s3);
    flex-wrap: wrap;
    gap: var(--s2) 0;
  }
  .interview-box-03__content {
    padding: 0 0 var(--s4);
  }
  .interview-box-03__content::after {
    width: 100vw;
    height: calc(100% + 10rem);
    top: auto;
    right: calc(var(--s2) * -1);
    bottom: 0;
  }
  .interview-box-03__thumb + .interview-box-03__content::after {
    width: 100vw;
  }
  .interview-block-01.bg-02 .interview-box-03__content::after {
    display: none;
  }
  .interview-box-03__title-01 {
    width: 100%;
    margin-left: 0;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }
  .interview-box-03__title-01__line-02 {
    padding: var(--s1) var(--s2);
    background: var(--color02);
    border: 1px solid var(--color01);
  }
  .interview-box-03__title-01__line-03 {
    padding: var(--s1) var(--s2);
    background: var(--color02);
    border: 1px solid var(--color01);
  }
  .interview-box-03__title-02 {
    font-size: 2.2rem;
  }
  .interview-box-03__title-02::after {
    display: none;
  }
  .recruit-block-01.bg-01::after {
    top: 7.2rem;
  }
  .recruit-block-01.bg-02 {
    margin-bottom: var(--s7);
  }
  .recruit-block-01.bg-02::after {
    height: calc(100% - 7.2rem);
  }
  .recruit-block-01__inner-01 {
    padding-top: 7.2rem;
  }
  .recruit-block-01__inner-02 {
    padding-top: var(--s7);
    padding-bottom: var(--s8);
  }
  .recruit-block-01.bg-02 .recruit-block-01__inner-02 {
    padding-top: var(--s7);
    padding-bottom: var(--s5);
  }
  .recruit-block-01__deco-01 {
    width: 8.8rem;
    height: 8.8rem;
    top: -7rem;
    right: 0.6rem;
  }
  .recruit-block-01__deco-02 {
    display: none;
  }
  .recruit-block-01__deco-03 {
    width: 6.1rem;
    height: 6.1rem;
    top: -0.5rem;
    right: 6rem;
  }
  .recruit-block-01__label-01 {
    height: var(--s5);
    left: var(--s2);
  }
  .recruit-block-01__logo {
    width: 32.5rem;
  }
  .sns-box-01 {
    margin-top: var(--s7);
    margin-bottom: var(--s7);
  }
  .sns-box-01__photo-01 {
    gap: 0.6rem;
  }
  .sns-box-01__photo-01__img {
    width: calc((100% - 1.8rem) / 4);
  }
  .sns-box-01__label-01 {
    font-size: 1.5rem;
  }
  .sns-box-01__content::after {
    border-radius: var(--s2-5);
  }
  .sns-box-01__text {
    padding: var(--s2-5);
  }
  .sns-btn-01 {
    width: 7.7rem;
    height: 7.7rem;
  }
  .sns-btn-01__img {
    width: 3.4rem;
    height: 3.4rem;
  }
  .column-block-01__inner {
    padding-top: var(--s5);
    padding-bottom: var(--s7);
  }
  .column-block-01__label-01 {
    height: var(--s5);
    left: var(--s2);
  }
  .column-box-01__content {
    padding: var(--s2);
  }
  .column-box-01__label {
    padding: 0.5rem var(--s2);
    left: 0;
    font-size: 1.4rem;
    font-weight: 900;
  }
  .column-box-01__thumb {
    height: 8rem;
  }
  .column-box-01__title {
    font-size: 1.8rem;
  }
  .column-box-01:nth-child(odd) {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp low

  */
  .main-area--low h2:not([class]) {
    padding: var(--s1) 0 var(--s1) var(--s3);
    font-size: 2rem;
  }
  .main-area--low h2:not([class])::before {
    border-radius: 1rem 0 0 1rem;
    width: var(--s2);
  }
  .main-area--low h2:not([class])::after {
    width: 100vw;
    border-radius: 1rem 0 0 1rem;
  }
  .main-area--low h3:not([class]) {
    padding: var(--s1) 0 var(--s1) var(--s4);
    font-size: 1.8rem;
  }
  .main-area--low h4:not([class]) {
    padding: 0 0 0 var(--s3);
    font-size: 1.8rem;
  }
  .main-area--low h5:not([class]) {
    padding: 0 0 0 var(--s3);
    font-size: 1.5rem;
  }
  .low-mv-block {
    margin-bottom: var(--s2);
    padding: 13.6rem 0 var(--s3);
  }
  .low-mv-block::after {
    border-radius: 0 0 var(--s2-5) var(--s2-5);
    bottom: 0;
  }
  .low-mv-title {
    width: 100%;
    padding-top: var(--s2);
  }
  .low-mv-title__label {
    padding: var(--s-5) var(--s2);
    font-size: 1.4rem;
    left: var(--s2-5);
  }
  .low-mv-title__label::after {
    width: 2.4rem;
    height: 2.4rem;
  }
  .low-mv-title__deco-01 {
    display: none;
  }
  .low-mv-title__deco-02 {
    display: none;
  }
  .low-mv-title__deco-03 {
    display: none;
  }
  .low-mv-title h1 {
    min-height: inherit;
    margin-bottom: var(--s2);
    padding: var(--s4) var(--s2-5);
    border-radius: var(--s2-5);
    font-size: 2.7rem;
  }
}
/*
---------------------------------------------
    固定ボタンエリア（バナー＋トップへ戻る）
---------------------------------------------
*/
.fixed-bottom-btns {
  position: fixed;
  right: var(--s3);   /* PC時の右からの余白 */
  bottom: var(--s3);  /* PC時の下からの余白 */
  z-index: 100;
  display: flex;
  align-items: flex-end; /* 下のラインを揃える */
  gap: 1.6rem;           /* バナーとボタンの隙間 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* スクロールして表示された時の状態 */
.fixed-bottom-btns.is-show {
  opacity: 1;
  visibility: visible;
}

/* ラッパーの中に入ったpage-topの調整（元々のfixedを解除） */
.fixed-bottom-btns .page-top {
  position: static;
  opacity: 1;
  visibility: visible;
}

/* ラッパーの中に入ったバナーの調整（基本は非表示にする） */
.fixed-bottom-btns .gnavi-banner-02 {
  display: none;
  width: auto;
  margin: 0;
}

/* サイドカラムが消える画面幅（1365px以下）になったらバナーを表示する */
@media screen and (max-width: 1365px) {
  .fixed-bottom-btns .gnavi-banner-02 {
    display: block;
    font-size: 1.3rem;
  }
}

/* スマホ表示時の調整 */
@media screen and (max-width: 767px) {
  .fixed-bottom-btns {
    right: var(--s2);
    bottom: var(--s2);
     /* スマホでは縦並びにしたい場合は有効化、横並びのままであれば削除してください */
    align-items: flex-end;
    gap: 1rem;
  }
}