@charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP Vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-vertical.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: #000;
  --color02: #fff;
  --color03: #808080;
  --color04: #DFDFDF;
  --color05: #E6E6E6;
  --color06: #293337;
  --color07: #00A0E9;
  --color08: #64B3DA;
  --color09: #BFE4F5;
  --color10: #D9EFF9;
  --color11: #F24943;
  --color12: #FFEF9D;
}

@media screen and (max-width: 1248px) {
  :root {
    font-size: 0.8012820513vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: var(--color02);
  color: var(--color01);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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.4rem;
  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: var(--color01);
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active {
  color: var(--color01);
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: var(--color01);
    text-decoration: none;
  }
}
p {
  line-height: 1.7;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

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

    animation

*/
@keyframes marqueeAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollBarAnimation {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes flashAnimation {
  25% {
    background-color: rgba(255, 255, 255, 0.25);
  }
}
/*
---------------------------------------------

    layout center

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

.l-center-02 {
  max-width: 110rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.main-area--lower .l-center-02{
  max-width: 100rem;
}
.vs-block.cb-box{
  margin-bottom: 0;
}

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

    layout stack

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

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

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

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

    layout cluster

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

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

    layout grid

*/
.l-grid {
  --minimum: calc((100% - var(--s5)) / 2);
  display: grid;
  grid-gap: var(--s5);
}
.l-grid--no-gap {
  --minimum: 50%;
  grid-gap: 0;
}
.l-grid--no-row-gap {
  --minimum: calc((100% - var(--s6)) / 2);
  grid-gap: 0 var(--s6);
}
.l-grid--vs {
  --minimum: calc((100% - 10rem) / 2);
  grid-gap: 0 10rem;
}

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

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

    layout column

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

.l-column-02 {
  display: flex;
  flex-wrap: wrap;
}
.l-column-02__side {
  width: 30rem;
  position: relative;
}
.l-column-02__main {
  flex: 1;
}

.l-column-03 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s10);
}
.l-column-03__side {
  width: 32rem;
  position: relative;
}
.l-column-03__main {
  flex: 1;
}

.l-column-04 {
  display: flex;
  flex-wrap: wrap;
}
.l-column-04__side {
  flex: 1;
}
.l-column-04__main {
  width: 50%;
  position: relative;
}
.l-column-04--row-reverse {
  flex-direction: row-reverse;
}

.l-column-05 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column-05__side {
  width: 26.8rem;
  position: relative;
}
.l-column-05__main {
  flex: 1;
}

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

    layout grid areas

*/
.l-grid-areas-01 {
  display: grid;
  grid-template-areas: "logo title" "logo text";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
  align-items: center;
}
.l-grid-areas-01__cell-01 {
  grid-area: title;
}
.l-grid-areas-01__cell-02 {
  grid-area: logo;
}
.l-grid-areas-01__cell-03 {
  grid-area: text;
}

.l-grid-areas-02 {
  display: grid;
  grid-template-areas: "label content profile";
  grid-template-columns: 22rem 1fr auto;
  grid-template-rows: auto;
  grid-gap: 0 var(--s5);
}
.l-grid-areas-02__cell-01 {
  grid-area: label;
}
.l-grid-areas-02__cell-02 {
  grid-area: profile;
}
.l-grid-areas-02__cell-03 {
  grid-area: content;
}
.l-grid-areas-02--reverse {
  grid-template-areas: "label profile content";
  grid-template-columns: 22rem auto 1fr;
}

.l-grid-areas-03 {
  display: grid;
  grid-template-areas: "sponsored-by sponsored-by" "name thumb" "text thumb";
  grid-template-columns: 1fr 34rem;
  grid-template-rows: auto auto 1fr;
  grid-gap: var(--s2-5) var(--s5);
}
.l-grid-areas-03__cell-01 {
  grid-area: sponsored-by;
}
.l-grid-areas-03__cell-02 {
  grid-area: name;
}
.l-grid-areas-03__cell-03 {
  grid-area: thumb;
}
.l-grid-areas-03__cell-04 {
  grid-area: text;
}

.l-grid-areas-04 {
  display: grid;
  grid-template-areas: "title profile" "text profile";
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s2-5);
}
.l-grid-areas-04__cell-01 {
  grid-area: profile;
}
.l-grid-areas-04__cell-02 {
  grid-area: title;
}
.l-grid-areas-04__cell-03 {
  grid-area: text;
}
.l-grid-areas-04--reverse {
  grid-template-areas: "profile title" "profile text";
  grid-template-columns: auto 1fr;
}

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

    layout header

*/
.l-header-01 {
  display: grid;
  grid-template-areas: "logo site-name" "logo note";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s-5) var(--s3);
}
.l-header-01__cell-01 {
  grid-area: logo;
}
.l-header-01__cell-02 {
  grid-area: site-name;
  display: flex;
  gap: var(--s-5) var(--s2);
}
.l-header-01__cell-03 {
  grid-area: note;
}

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

    layout btn

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

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

    list

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

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

    fixed bg

*/
.fixed-bg-blue {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: var(--color09);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 1s ease, visibility 1.6s ease;
}
.question-block.is-inview .fixed-bg-blue {
  opacity: 1;
  visibility: visible;
}

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

    btn

*/
.btn-web {
  margin: var(--s4) auto;
  position: relative;
}
.btn-web a {
  width: 37.5rem;
  height: 100%;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s1) var(--s6);
  background: var(--color11);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color02);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 0 rgb(255 196 196);
  position: relative;
}
.btn-web a::after {
  content: "";
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.btn-web a .icon-window-01 {
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}

@media (hover: hover) {
  .btn-web a:hover{
      top: 4px;
      box-shadow: none;
  }
  .btn-web a:hover::after {
    animation: flashAnimation 0.6s cubic-bezier(0.47, 0.16, 0.24, 1) forwards;
  
  }
}
.btn-internal {
  margin: var(--s4) auto;
  position: relative;
}
.btn-internal a {
  width: 37.5rem;
  height: 100%;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s1) var(--s6);
  background: var(--color01);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color02);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 0 rgb(0 159 233);
}
.btn-internal a::after {
  content: "";
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 0;
}
/*.btn-internal a .icon-arrow-02 {
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}*/

@media (hover: hover) {
  .btn-internal a:hover{
      top: 4px;
      box-shadow: none;
  }
  .btn-internal a:hover::after {
    animation: flashAnimation 0.6s cubic-bezier(0.47, 0.16, 0.24, 1) forwards;
  }
}
.btn-link {
  margin: var(--s3) 0;
  padding-right: var(--s2-5);
  text-align: right;
  position: relative;
}
.btn-link a {
  padding-bottom: 2px;
  background: linear-gradient(var(--color11), var(--color11)) no-repeat left bottom/100% 1px;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  transition: background-size 0.6s ease;
  font-weight: 700;
  /*color: var(--color11);*/
}
.btn-link a::after {
  content: "";
  width: 0.8rem;
  height: 0.8em;
  background: url("img/arrow-04-red-right.svg") no-repeat center right/contain;
  display: block;
  position: absolute;
  top: 55%;
  right: 0;
  transform: translate(0, -50%);
}
.btn-link--white a {
  background-image: linear-gradient(var(--color02), var(--color02));
  color: var(--color02);
}
.btn-link--white a::after {
  background-image: url("img/arrow-04-white-right.svg");
}

@media (hover: hover) {
  .btn-link a:hover {
    background-size: 0% 1px;
    background-position: right bottom;
  }
}
.btn-tel {
  display: none;
}

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

    icon

*/
/*.icon-window-01 {
  width: var(--s4);
  height: var(--s4);
  overflow: hidden;
  position: relative;
}
.icon-window-01::before, .icon-window-01::after {
  content: "";
  width: 120%;
  height: 100%;
  background: url("img/icon-window.svg") no-repeat center/var(--s2-5) auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transition: transform 0.5s;
}
.icon-window-01::before {
  transform: translate(-50%, -50%);
}
.icon-window-01::after {
  transform: translate(-150%, -50%);
}

.btn-web a:before{
  width: var(--s4);
  height: var(--s4);
  overflow: hidden;
  position: relative;
}*/
.btn-web a::before{
  content: "";
  width: 3.2rem;
  height: 2rem;
  background: url("img/icon-window.svg") repeat-x center right / var(--s5) auto;
  background-position: -17px 0px;
  position: absolute;
  top: 38%;
  left: 86%;
  z-index: 1;
  transition: all 0.4s;
  overflow: hidden;
}
.btn-web a:hover::before{
      background-position: 23px 0px;  
  }


@media (hover: hover) {
  a:hover > .icon-window-01::before {
    transform: translate(150%, -50%);
  }
  a:hover > .icon-window-01::after {
    transform: translate(-50%, -50%);
  }
}
.icon-arrow-01 {
  width: var(--s4);
  height: var(--s4);
  background: var(--color02) url("img/arrow-05-blue-right.svg") no-repeat center left 0.9rem/1.4rem auto;
  border: 1px solid var(--color05);
  border-radius: 100%;
  position: relative;
  transition: background-position 0.5s, border-color 0.5s;
}
.icon-arrow-01::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("img/arrow-05-white-right.svg") no-repeat center right 4.8rem/1.4rem auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: background-position 0.5s;
}
.icon-arrow-01::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color07);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
}


@media (hover: hover) {
  /*a:hover > .icon-arrow-01 {
    background-position: center left 4.9rem;
    border-color: transparent;
  }*/
  a:hover > .icon-arrow-01::before {
    background-position: center right 0.8rem;
  }
  a:hover > .icon-arrow-01::after {
    transform: translate(-50%, -50%) scale(1.2);
  }
  a:hover > .btn-internal a::after{
    background-position: center right 0.8rem;
  }
  a:hover > .btn-internal a::before {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.btn-internal a:before{
  width: var(--s4);
  height: var(--s4);
  overflow: hidden;
  position: relative;
}
.btn-internal a::before{
  content: "";
  width: 2.2rem;
  height: 2rem;
  background: url(img/arrow-01-white-right.svg) repeat-x center right / var(--s5) auto;
  background-position: -19px 0px;
  position: absolute;
  top: 42%;
  left: 87%;
  z-index: 1;
  transition: all 0.4s;
  overflow: hidden;
}
.btn-internal a:hover::before{
      background-position: 21px 0px;  
  }
/*.btn-internal a::before{
  transform: translate(-150%, -50%);
}*/

@media (hover: hover) {

  a:hover > .btn-internal a::before {
      background-position: 18px 0px;  
  }
}
/*
---------------------------------------------

    table

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

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

th {
  background: #E6E6E6;
}

tbody th {
  background: #E6E6E6;
}

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

    caption

*/
.caption {
  margin-top: 0.8em;
  display: block;
  color: var(--color03);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: var(--color03);
}

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

    catch

*/
.catch-01 {
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}

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

    text

*/
.marker {
  padding-bottom: var(--s-5);
  background: linear-gradient(transparent 92%, #F24943 92%);
  font-weight: 700;
}

.marker-02 {
  background: var(--color12);
  font-weight: 700;
  padding: 0 0.2rem;
}

.marker-03 {
  background: linear-gradient(transparent 63%, #E3F0F6 63%);
}

.txt_bold {
  color: var(--color11);
  font-weight: 700;
}

.text-note-01 {
  color: var(--color03);
  font-size: 1.2rem;
  line-height: 1.33;
}

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

    subgrid card

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

.subgrid-card-02 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-gap: var(--s2);
}

.subgrid-card-03 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  grid-gap: 0;
}

.subgrid-card-04 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  grid-gap: var(--s2);
}

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

    float wrap

*/
.float-wrap {
  margin: var(--s3) 0 var(--s10) ;
  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(--s2) auto var(--s5);
  color: var(--color03);
  font-size: 1.2rem;
  line-height: 1.6;
}
#pankuzu a {
  color: var(--color03);
}

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

    header

*/
.header-main {
  width: 100%;
  padding: var(--s2) var(--s12) var(--s2) var(--s2-5);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 15;
  transform: translate(-50%, 0);
}

.header-logo {
  width: 21rem;
}
.header-logo__link {
  display: inline-block;
}

@media (hover: hover) {
  .header-logo__link:hover {
    opacity: 0.6;
  }
}
.header-site-name {
  color: var(--color02);
  font-size: 1.1rem;
  line-height: 1.33;
}
.header-site-name__link {
  display: inline-block;
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .header-site-name__link:hover {
    color: var(--color02);
    text-decoration: underline;
  }
}
.header-sponsored {
  color: var(--color02);
  font-size: 1.1rem;
  line-height: 1.33;
}

.header-note {
  color: var(--color02);
  font-size: 1.1rem;
  line-height: 1.33;
}

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

    gnavi

*/
.gnavi-btn {
  width: var(--s9);
  height: var(--s9);
  background: var(--color07);
  display: block;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
}
.gnavi-btn span {
  width: var(--s4);
  height: 0.2rem;
  background: var(--color02);
  display: inline-block;
  position: absolute;
  left: var(--s2-5);
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.6rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.5rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.4rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.9rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.9rem) rotate(45deg);
}

.gnavi-area {
  width: 100%;
  max-width: 42rem;
  height: 100vh;
  padding: 10rem 0;
  background: var(--color06);
  display: block;
  opacity: 0;
  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;
}
.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

.gnavi-box__title {
  padding: var(--s1-5) var(--s6) var(--s1-5) var(--s2);
  border-bottom: 1px solid var(--color04);
  display: block;
  color: var(--color02);
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
}
.gnavi-box__title .toggle-icon {
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.1);
}
.gnavi-box:first-child {
  border-top: 1px solid var(--color02);
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
  content: "└";
  color: var(--color02);
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: var(--s1-5) var(--s2) var(--s1-5) var(--s5);
  display: block;
  color: var(--color02);
  line-height: 1.6;
  text-decoration: none;
}

@media (hover: hover) {
  .gnavi-menu__link:hover,
  .gnavi-menu-sub__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.gnavi-menu__item {
  border-bottom: 1px solid var(--color02);
}

.gnavi-menu-sub__item {
  border-top: 1px solid var(--color02);
}

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

    main

*/
.main-area {
  overflow: clip;
}
.main-area--lower {
  margin-bottom: 12rem;
}

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

    footer

*/
.footer-area {
  background: var(--color06);
  overflow: hidden;
}

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

.footer-bottom {
  padding: var(--s1-5) 0;
  background: var(--color07);
  color: var(--color02);
}
.footer-bottom__inner {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-about {
  width: calc(100% - var(--s4));
  max-width: 90rem;
  margin: var(--s7) auto;
  padding: var(--s4) var(--s5);
  background: #5E686E;
  color: var(--color02);
}
.footer-about__logo {
  width: 21rem;
}
.footer-about__logo-link {
  display: block;
}
.footer-about__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.33;
}
.footer-about .btn-link {
  margin-bottom: 0;
}

@media (hover: hover) {
  .footer-about__logo-link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.footer-box + .footer-box {
  margin-top: var(--s4);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  padding-bottom: var(--s1);
  border-bottom: 1px solid var(--color02);
  font-size: 1.5rem;
  line-height: 1.6;
}
.footer-menu-title__link {
  color: var(--color02);
  display: inline-block;
  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: var(--s3);
}
.footer-menu__item {
  width: calc((100% - var(--s3) * 3) / 4);
  line-height: 1.6;
}
.footer-menu__link {
  display: block;
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  line-height: 1.6;
}
.footer-menu-sub__link {
  padding: var(--s-5) var(--s-5) var(--s-5) 1.2em;
  display: block;
  color: var(--color02);
  font-size: 1.2rem;
  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 {
  width: 75rem;
  margin: var(--s5) auto;
  color: var(--color02);
  font-size: 1.2rem;
  line-height: 1.6;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}
.footer-disclaimer__text > a {
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-disclaimer__text > a:hover {
    text-decoration: underline;
  }
}
.footer-nocopy {
  margin: var(--s3) 0;
  color: var(--color02);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 1.2rem;
  line-height: 1.6;
}
.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;
  font-size: 1.2rem;
}
.footer-sitemap__link {
  display: block;
  color: var(--color02);
  text-decoration: none;
}

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

    page

*/
.page-top {
  width: var(--s9);
  height: var(--s9);
  background: var(--color02);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 0;
  bottom: var(--s4);
  z-index: 10;
  transform: translate(100%, 0);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.8s ease;
}
.page-top__link {
  width: 100%;
  height: 100%;
  padding-top: var(--s6);
  background: var(--color07) url("img/arrow-03-blue-up.svg") no-repeat top var(--s1) center/var(--s4) var(--s4);
  display: flex;
  justify-content: center;
  color: var(--color02);
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

@media (hover: hover) {
  .page-top__link:hover {
    color: var(--color02);
    opacity: 0.6;
  }
}
.page-banner-01 {
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 0;
  bottom: 12.8rem;
  z-index: 10;
  transform: translate(100%, 0);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.8s ease;
}
.page-banner-01::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color01);
  position: absolute;
  top: var(--s1);
  left: var(--s1);
  z-index: -1;
}
.page-banner-01__link {
  padding: var(--s2) var(--s5) var(--s2) var(--s2);
  background: #ffe24e url("img/arrow-05-black-right.svg") no-repeat center right var(--s2)/auto 1.3rem;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.6;
  transition: transform 0.4s;
}
.page-banner-01--web .page-banner-01__link {
  background-color: var(--color11);
  background-image: url("img/arrow-05-white-right.svg");
  color: var(--color02);
}
.page-banner-01__label-01, .page-banner-01__label-02 {
  margin-bottom: var(--s1-5);
  padding: 0 var(--s1);
  border-radius: var(--s-5);
  background: var(--color02);
  color: var(--color01);
}
.page-banner-01__label-01 {
  width: fit-content;
  display: block;
}
.page-banner-01__label-02 {
  margin-bottom: var(--s-5);
  margin-right: var(--s-5);
  display: inline-block;
}
.page-banner-01.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

@media (hover: hover) {
  .page-banner-01__link:hover {
    transform: translate(var(--s1), var(--s1));
  }
  .page-banner-01--web .page-banner-01__link:hover {
    color: var(--color02);
  }
}
.page-index-block {
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  left: 50%;
  z-index: 10;
}

.page-index-01-wrapper {
  margin: var(--s3) 0;
  display: flex;
  justify-content: center;
  counter-reset: number;
}

.page-index-01 {
  min-width: 25rem;
  min-height: var(--s9);
  font-weight: 700;
  text-align: center;
  line-height: 1.33;
  counter-increment: number;
  position: relative;
}
.page-index-01::after {
  content: "";
  width: 1px;
  height: calc(100% - var(--s2));
  background: var(--color07);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.page-index-01__link {
  width: 100%;
  height: 100%;
  padding: var(--s2-5) var(--s2) var(--s1-5);
  background: url("img/arrow-04-blue-down.svg") no-repeat center bottom 0.2rem/1rem 0.7rem;
  display: block;
  text-decoration: none;
  position: relative;
}
.page-index-01__link::before {
  content: "Mile-Rule " counter(number, decimal-leading-zero);
  padding: 0 var(--s1);
  background: var(--color07);
  color: var(--color02);
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: center;
  position: absolute;
  top: var(--s-5);
  left: 50%;
  transform: translate(-50%, 0);
}
.page-index-01:first-child::before {
  content: "";
  width: 1px;
  height: calc(100% - var(--s1));
  background: var(--color07);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

@media (hover: hover) {
  .page-index-01__link:hover {
    opacity: 0.5;
  }
}
/*
---------------------------------------------

    section

*/
.section-title-01 {
  margin-bottom: var(--s4);
  padding-top: var(--s7);
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.33;
  position: relative;
}
.section-title-01__small {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.section-title-01:target {
  scroll-margin-top: var(--s11);
}
.section-title-01::before {
  content: "";
  width: 100%;
  height: 6rem;
  background: no-repeat center left/auto 100%;
  position: absolute;
  top: 0;
  left: calc(var(--s7) * -1);
}
.section-title-01--sponsored-by {
  padding-top: var(--s9);
}
.section-title-01--sponsored-by::before {
  height: 8.4rem;
  background-image: url("img/text-sponsored-by.svg");
  left: calc(var(--s10) * -1);
}
.section-title-01--rule-01::before {
  background-image: url("img/text-mile-rule-01.svg");
}
.section-title-01--rule-02::before {
  background-image: url("img/text-mile-rule-02.svg");
}
.section-title-01--rule-03::before {
  background-image: url("img/text-mile-rule-03.svg");
}

.section-title-02 {
  margin-top: var(--s7);
  margin-bottom: var(--s3);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.33;
  position: relative;
}
.section-title-02__em-01 {
  color: var(--color07);
  font-size: 5.8rem;
}
.section-title-02__em-02 {
  font-size: 5.8rem;
}
.section-title-02__em-03 {
  background: linear-gradient(transparent 15%, #fff 15%, #fff 95%, transparent 95%);
  color: var(--color07);
  font-size: 5.8rem;
}

.section-title-03 {
  margin-top: 12rem;
  margin-bottom: var(--s4);
  padding-bottom: var(--s5);
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  position: relative;
}
.section-title-03::before {
  content: "";
  width: 54.7rem;
  height: 10.4rem;
  background: no-repeat bottom center/auto 100%;
  position: absolute;
  left: calc(50% + 2.8rem);
  bottom: 0;
}
.section-title-03__em-01 {
  color: var(--color07);
  font-size: 4.6rem;
}
.section-title-03__em-02 {
  font-size: 4.6rem;
}
.section-title-03__em-03 {
  background: linear-gradient(transparent 15%, #fff 15%, #fff 95%, transparent 95%);
  color: var(--color07);
  font-size: 4.6rem;
}
.section-title-03--style {
  margin-top: 18rem;
  margin-bottom: var(--s2);
  padding-bottom: var(--s7);
}
.section-title-03--style::before {
  background-image: url("img/text-sales-style.svg");
  left: calc(50% + 7.4rem);
}
.section-title-03--culture::before {
  background-image: url("img/text-work-culture.svg");
  left: calc(50% + 1.2rem);
}
.section-title-03--career {
  margin-bottom: var(--s6);
  padding-bottom: var(--s3);
}
.section-title-03--career::before {
  background-image: url("img/text-career-paths.svg");
  left: calc(50% + 7.1rem);
}
.section-title-03--vs::before {
  background-image: url("img/text-vendor-vs-independent.svg");
}

.section-text-01 {
  max-width: 65rem;
  font-size: 1.8rem;
}

.section-text-02 {
  max-width: 88rem;
  margin: 0 auto var(--s7);
  font-size: 1.8rem;
  text-align: center;
}

.section-header-01 {
  padding-top: 24rem;
  padding-bottom: var(--s8);
  position: relative;
}
.section-header-01::after {
  content: "";
  width: 100vw;
  height: calc(100% - 33.6rem);
  background: var(--color10);
  position: absolute;
  right: calc(50% - 24rem);
  bottom: 0;
  z-index: -1;
}
.section-header-01__photo {
  width: calc(50vw + 22rem);
  min-width: 100rem;
  height: 45rem;
  position: absolute;
  top: 0;
  left: calc(50% - 22rem);
  z-index: -2;
}
.section-header-01__photo::before {
  content: "";
  width: 68%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.section-header-01__photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header-02 {
  margin-bottom: var(--s8);
  padding-top: 36.8rem;
  position: relative;
  z-index: 1;
}
.section-header-02__photo {
  width: calc(50vw + 33rem);
  min-width: 108rem;
  height: 43rem;
  position: absolute;
  top: 0;
  right: calc(50% - 33rem);
  z-index: -1;
}
.section-header-02__photo::before {
  content: "";
  width: 100%;
  height: 53%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-header-02__photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-header-02__en {
  color: transparent;
  font-size: 10rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--color07);
}
.section-header-02--align-right-pc .section-header-02__en {
  text-align: right;
}
.section-header-02--align-right-pc .section-title-02 {
  text-align: right;
}
.section-header-02--align-right-pc .section-text-01 {
  margin-left: auto;
}

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

    index box

*/
.index-box-01 {
  max-width: 90rem;
  margin: var(--s10) auto;
  padding: var(--s4) var(--s6) 0;
  border: 1px solid var(--color05);
  position: relative;
  z-index: 1;
}
.index-box-01__label {
  margin-bottom: var(--s3);
  font-size: 2.6rem;
  font-weight: 700;
}
.index-box-01 .chapter {
  counter-reset: number;
}
.index-box-01 .chapter-h {
  line-height: 1.6;
  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-top: 1em;
  font-size: 1.8rem;
  font-weight: 700;
  counter-increment: number;
}
.index-box-01 .chapter-h-two > a {
  display: flex;
  gap: 0 var(--s1-5);
}
.index-box-01 .chapter-h-two > a::before {
  content: counter(number, decimal-leading-zero);
  height: 2.7rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.index-box-01 .chapter-h-three {
  margin-top: 0.5em;
  margin-left: var(--s4);
  font-size: 1.6rem;
}
.index-box-01 .chapter-h-three::before {
  content: "";
  width: var(--s1);
  height: var(--s1-5);
  border-left: 1px solid var(--color06);
  border-bottom: 1px solid var(--color06);
  box-sizing: border-box;
  position: absolute;
  top: 0.25em;
  left: 0;
}
.index-box-01 .chapter-h-three > a {
  padding-left: var(--s2);
}

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

    summary box

*/
.summary-box-01 {
  margin: var(--s10) 0;
}
.summary-box-01__label {
  margin-bottom: var(--s3);
  color: transparent;
  font-size: 3.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--color01);
  word-break: break-all;
  position: relative;
  z-index: 1;
}
.summary-box-01__label::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--color01);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.summary-box-01__content {
  padding: var(--s4);
  border: 1px solid var(--color04);
}
.summary-box-01__catch {
  padding: var(--s1-5) var(--s1-5) var(--s1-5) 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.summary-box-01__catch::after {
  content: "";
  width: calc(100% + var(--s4));
  height: 100%;
  background: var(--color05);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

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

    comment box

*/
.comment-box-01 {
  margin: var(--s11) 0;
  padding: var(--s4) var(--s3) var(--s4) 0;
  position: relative;
  z-index: 1;
}
.comment-box-01::before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s1));
  background: rgba(230, 230, 230, 0.4);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: background-color 1s;
}
.question-block.is-inview .comment-box-01::before {
  background-color: rgba(255, 255, 255, 0.4);
}
.comment-box-01::after {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s1));
  border-right: 1px solid var(--color05);
  border-bottom: 1px solid var(--color05);
  box-sizing: border-box;
  position: absolute;
  top: var(--s1);
  right: calc(var(--s1) * -1);
  z-index: -1;
  transition: border-color 1s;
}
.question-block.is-inview .comment-box-01::after {
  border-color: var(--color02);
}
.comment-box-01--white::before {
  background-color: rgba(255, 255, 255, 0.4);
}
.comment-box-01--white::after {
  border-color: var(--color02);
}
.comment-box-01__label {
  margin-bottom: var(--s3);
  color: transparent;
  font-size: 3.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--color01);
  word-break: break-all;
  position: relative;
  z-index: 1;
}
.comment-box-01__label::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--color01);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.comment-box-01__catch {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

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

    commentator box

*/
.commentator-box-01 {
  margin: var(--s11) 0;
}
.commentator-box-01__label {
  font-size: 2rem;
  line-height: 1.6;
}
.commentator-box-01__label-en {
  color: transparent;
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  -webkit-text-stroke: 1px var(--color01);
  word-break: break-all;
  position: relative;
  z-index: 1;
}
.commentator-box-01__label-en::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--color01);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.commentator-box-01__row {
  padding: var(--s3) var(--s4);
  position: relative;
  z-index: 1;
}
.commentator-box-01__row::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color04);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: border-color 1s;
}
.question-block.is-inview .commentator-box-01__row::after {
  border-color: var(--color02);
}
.commentator-box-01__row + .commentator-box-01__row {
  margin-top: var(--s4);
}
.commentator-box-01__catch {
  padding: var(--s1-5) var(--s2) var(--s1-5) 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.l-grid-areas-04--reverse .commentator-box-01__catch {
  padding-left: var(--s2);
  padding-right: 0;
}
.commentator-box-01__catch::after {
  content: "";
  width: calc(100% + var(--s4));
  height: 100%;
  background: var(--color02);
  position: absolute;
  top: 0;
  left: calc(var(--s4) * -1);
  z-index: -1;
}
.l-grid-areas-04--reverse .commentator-box-01__catch::after {
  left: auto;
  right: calc(var(--s4) * -1);
}

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

    profile box

*/
.profile-box-01 {
  margin-top: auto;
  margin-bottom: calc(var(--s3) * -1);
  padding-right: var(--s5);
  position: relative;
  bottom: 1px;
}
.l-grid-areas-02--reverse .profile-box-01, .l-grid-areas-04--reverse .profile-box-01 {
  flex-direction: row-reverse;
}
.profile-box-01__thumb {
  width: 15.3rem;
  flex-shrink: 0;
}
.profile-box-01__thumb.pwimg{width: 14rem;}
.profile-box-01__thumb.pmimg{}

.profile-box-01__thumb.pwimg01{ width: 16rem;}
.profile-box-01__thumb.pwimg01 img{position: relative; right: 1rem;}
.profile-box-01__thumb.pwimg02{width: 13rem;}
.profile-box-01__thumb.pwimg02 img{position: relative; right: 1rem;}

.profile-box-01__thumb.pmimg01{width: 13rem;}
.profile-box-01__thumb.pmimg01 img{position: relative; left: 2rem;}
.profile-box-01__thumb.pmimg02{}
.profile-box-01__thumb.pmimg02 img{max-width: 115%;}
.profile-box-01__thumb.pmimg03{width: 13rem;}
.profile-box-01__thumb.pmimg03 img{position: relative; left: 2rem;}


/*右*/
.main-area--lower .profile-box-01__thumb.pwimg{width: 14rem;}
.main-area--lower .profile-box-01__thumb.pmimg{}

.main-area--lower .profile-box-01__thumb.pwimg01{ width: 12rem;} 
.main-area--lower .profile-box-01__thumb.pwimg01 img{position: relative; right: 1rem;}
.main-area--lower .profile-box-01__thumb.pwimg02{width: 13rem;}
.main-area--lower .profile-box-01__thumb.pwimg02 img{position: relative; right: 1rem;}

.main-area--lower .profile-box-01__thumb.pmimg01{width: 13rem;}
.main-area--lower .profile-box-01__thumb.pmimg01 img{position: relative; left: 0cm;}
.main-area--lower .profile-box-01__thumb.pmimg02{width: 10rem;}
.main-area--lower .profile-box-01__thumb.pmimg02 img{position: relative; right: 2.5rem;}
.main-area--lower .profile-box-01__thumb.pmimg03{width: 16rem;}
.main-area--lower .profile-box-01__thumb.pmimg03 img{position: relative; left: -2rem;}

/*左*/
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg{width: 14rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg{}

.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg01{ width: 13rem;} 
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg01 img{position: relative; right: -1rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg02{width: 13rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg02 img{position: relative; right: -2rem;}

.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg01{width: 13rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg01 img{position: relative; left: 2rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg02{width: 10rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg02 img{position: relative; left: 2rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg03{width: 16rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg03 img{position: relative; left: 2rem;}







.profile-box-01__name {
  padding-top: var(--s1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-5);
  font-size: 1.6rem;
  font-family: "Noto Sans JP Vertical", sans-serif;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.15em;
  text-orientation: upright;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 0;
}
.profile-box-01__post {
  margin-top: -0.6rem;
  padding: 0.6rem 0.2rem;
  background: var(--color01);
  display: inline-block;
  color: var(--color02);
  font-size: 1.4rem;
}
.profile-box-01--name-left {
  padding-left: var(--s3);
  padding-right: 0;
}
.profile-box-01--name-left .profile-box-01__name {
  left: 0;
  right: auto;
}

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

    interview box

*/
.interview-box-01 {
  max-width: 78rem;
  min-height: 30rem;
  margin: var(--s10) auto;
  border: 1px solid var(--color04);
}
.interview-box-01__thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.interview-box-01__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-box-01__content {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s1-5);
}
.interview-box-01__header {
  padding-bottom: var(--s1-5);
  border-bottom: 1px solid var(--color01);
}
.interview-box-01__name {
  color: var(--color07);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.interview-box-01__note {
  font-weight: 700;
  line-height: 1.6;
}
.interview-box-01__name + .interview-box-01__note {
  margin-top: var(--s-5);
}
.interview-box-01 .btn-link {
  margin-top: 2rem;
  margin-bottom: 0;
}

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

    qa

*/
.qa-box-01 {
  padding: var(--s4) 0 var(--s4) var(--s6);
  border-top: 1px solid var(--color04);
  border-bottom: 1px solid var(--color04);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.qa-box-01__q {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.qa-box-01__q::before {
  content: "Q.";
  flex-shrink: 0;
  color: var(--color07);
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -0.1em;
  left: calc(var(--s6) * -1);
}
.qa-box-01__a {
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.qa-box-01__a::before {
  content: "A.";
  flex-shrink: 0;
  color: var(--color11);
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -0.1em;
  left: calc(var(--s6) * -1);
}

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

    sponsored box

*/
.sponsored-box-01 {
  margin: var(--s10) 0;
}
.main-area--lower .sponsored-box-01 {
  max-width: 110rem;
  margin: 0 auto;
}
.sponsored-box-01 .txt_bold{
background: #ffffff; 
  padding: 0 0.2rem;
}
.sponsored-box-01__header {
  margin-bottom: -29rem;
  padding-bottom: 33.8rem;
  position: relative;
}
.sponsored-box-01__header::after {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s12));
  background: var(--color10);
  position: absolute;
  right: calc(50% - 24rem);
  bottom: 0;
  z-index: -1;
}
.sponsored-box-01--lower .sponsored-box-01__header::after {
  height: calc(100% - 13.8rem);
}
.sponsored-box-01__sponsored-by {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.33;
}
.sponsored-box-01__catch {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.sponsored-box-01__content {
  padding: var(--s5) var(--s8) var(--s8);
  background: url("img/sponsored-bg-01.jpg") no-repeat center/cover;
  color: var(--color02);
  position: relative;
  z-index: 1;
}
.sponsored-box-01__content > *:last-child {
  margin-bottom: 0 !important;
}
.sponsored-box-01__content .caption {
  color: var(--color05);
}
.sponsored-box-01__marquee {
  display: flex;
  justify-content: center;
      position: relative;
    bottom: 0rem;
}
.sponsored-box-01__marquee-text {
  /*padding-right: var(--s5);*/
  opacity: 0.5;
  color: var(--color10);
  font-size: 16rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  animation: marqueeAnimation 20s linear infinite;
}
.sponsored-box-01--lower .section-title-01 {
  margin-bottom: 0;
}

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

    relations box

*/
.relations-box-01 {
  max-width: 90rem;
  margin: var(--s10) auto;
  padding: var(--s4) var(--s6);
  border: 1px solid var(--color04);
  position: relative;
  z-index: 1;
}
.relations-box-01__label {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--color07);
  font-size: 2.6rem;
  font-weight: 700;
}
.relations-box-01 ul:not([class]) {
  margin: 0 !important;
}
.relations-box-01 ul:not([class]) li {
  padding: 0;
  font-size: 1.8rem;
  font-weight: 700;
}
.relations-box-01 ul:not([class]) li::before {
  display: none;
}
.relations-box-01 ul:not([class]) li + .relations-box-01 ul:not([class]) li {
  margin-top: 0.8em;
}
.relations-box-01 ul:not([class]) a {
  height: 100%;
  min-height: var(--s4);
  padding-left: var(--s5);
  background: url("img/arrow-03-blue-right.svg") no-repeat top left/var(--s4) var(--s4);
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media (hover: hover) {
  .relations-box-01 ul:not([class]) a:hover {
    opacity: 0.5;
  }
}
.related-article01-frame {
  max-width: 90rem;
  margin: var(--s10) auto;
  padding: var(--s4) var(--s6);
  border: 1px solid var(--color04);
}

.related-article01-title {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--color07);
  font-size: 2.6rem;
  font-weight: 700;
}

.related-article01-list > li {
  padding: 0;
  font-weight: 700;
}
.related-article01-list > li::before {
  display: none;
}
.related-article01-list > li + li {
  margin-top: 0.8em;
}
.related-article01-list a {
  min-height: var(--s4);
  padding-left: var(--s5);
  background: url("img/arrow-03-blue-right.svg") no-repeat top left/var(--s4) var(--s4);
  display: block;
  text-decoration: none;
}

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

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

    banner box

*/
.banner-box-01 {
  width: 100%;
  max-width: 92rem;
  margin: var(--s10) auto;
  position: relative;
}
.banner-box-01::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color10);
  position: absolute;
  top: var(--s1-5);
  left: var(--s1-5);
  z-index: -1;
}
.banner-box-01__link {
  padding: var(--s5) var(--s5) var(--s9) 36rem;
  background: var(--color02) url("img/banner-bg-01.jpg") no-repeat left center/auto 100%;
  border: 1px solid var(--color07);
  text-decoration: none;
  position: relative;
  transition: transform 0.4s;
}
.banner-box-01__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}
.banner-box-01__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.banner-box-01__more {
  padding: var(--s1) var(--s6) var(--s1) var(--s3);
  background: var(--color07) url("img/arrow-05-white-right.svg") no-repeat center right var(--s3)/auto 1rem;
  color: var(--color02);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (hover: hover) {
  .banner-box-01__link:hover {
    transform: translate(var(--s1-5), var(--s1-5));
  }
}
/*
---------------------------------------------

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  margin: var(--s3) auto;
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: var(--color01);
  border: 0.2rem solid var(--color01);
  color: var(--color02);
  line-height: 1.6;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: var(--color02);
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: var(--color02);
  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-icon {
  width: var(--s2);
  height: var(--s2);
  display: inline-block;
  position: relative;
}
.toggle-icon::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: var(--color05);
  border-radius: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.toggle-icon::after {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: var(--color05);
  border-radius: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translate(50%, -50%);
  transition: transform 0.6s;
}
.is-open .toggle-icon::after {
  transform: translate(50%, -50%) rotate(90deg);
}

.toggle-content {
  display: none;
}

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

    more gradient

*/
.more-gradient-btn {
  width: 26rem;
  padding: var(--s2) var(--s5);
  background: var(--color05);
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translate(-50%, 50%);
  transition: background-color 0.6s;
}
.more-gradient-btn::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: var(--color01);
  border-radius: 0.2rem;
  position: absolute;
  top: 50%;
  right: var(--s2-5);
  transform: translate(0, -50%);
}
.more-gradient-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: var(--color01);
  border-radius: 0.2rem;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translate(50%, -50%);
  transition: transform 0.6s;
}
.more-gradient-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

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

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

    top

*/
/* mv */
.mv-block {
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s12);
  padding-left: var(--s12);
  box-sizing: content-box;
}
.mv-block__main {
  padding: 37.6rem var(--s6) var(--s7);
  position: relative;
  z-index: 1;
}
.mv-block__footer {
  padding-top: var(--s1-5);
  padding-bottom: var(--s1-5);
}
.mv-block__footer .text-note-01 {
  text-align: right;
}

@media screen and (min-width: 1530px) {
  .mv-block {
    max-width: 100%;
    padding-left: 16.5rem;
    padding-right: 16.5rem;
  }
}
.mv-title {
  margin-left: calc(var(--s6) * -1);
  margin-bottom: var(--s3);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.mv-title::before {
  content: "";
  width: 48.7rem;
  height: 8.8rem;
  background: url("img/text-forward-begins-here.svg") no-repeat center/contain;
  position: absolute;
  top: var(--s1);
  left: -9.2rem;
  z-index: 1;
  transform: translate(0, -100%);
}
.mv-title__line {
  padding: 0 var(--s1-5);
  background: var(--color02);
}

.mv-catch {
  margin-bottom: var(--s1);
  color: var(--color02);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.mv-catch__em-01 {
  padding: 0 var(--s1);
  background: var(--color12);
  color: var(--color01);
}

.mv-text {
  max-width: 70rem;
  color: var(--color02);
}

.mv-scroll {
  color: var(--color02);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: var(--s1);
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: bottom right;
  transform: translate(-1em, 0) rotate(90deg);
}
.mv-scroll__bar {
  width: 12rem;
  height: 1px;
  overflow: hidden;
  position: relative;
}
.mv-scroll__bar::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color02);
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollBarAnimation 2s cubic-bezier(0.38, 0.46, 0.09, 1.01) infinite;
}

.mv-slide {
  width: calc(100% + (100vw - 100%) / 2);
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 1px;
  z-index: -1;
}
.mv-slide::after {
  content: "";
  width: 100%;
  max-width: 120rem;
  height: 100%;
  background: linear-gradient(to right, rgba(31, 49, 57, 0.7) 0%, rgba(31, 49, 57, 0.7) 20%, transparent 100%);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}
.mv-slide .splide__track {
  height: 100%;
}
.mv-slide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* sponsored */
.sponsored-block {
  margin-top: var(--s7);
  margin-bottom: 10rem;
}
.sponsored-block .sponsored-box-01 {
  margin-top: var(--s7);
  margin-bottom: 0;
}

/* interview */
.interview-block {
  margin: 12rem 0 18rem;
  position: relative;
  z-index: 1;
}
.interview-block__inner {
  position: relative;
  z-index: 1;
}
.interview-block__inner::after {
  content: "";
  width: 100vw;
  height: calc(100% - 3.6rem);
  background: rgba(230, 230, 230, 0.4);
  position: absolute;
  top: 0;
  left: 17.6rem;
  z-index: -1;
}
.interview-block__label {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.interview-block__label::before {
  content: "";
  width: var(--s6);
  height: 1px;
  background: var(--color01);
  position: absolute;
  top: 50%;
  left: calc(var(--s1-5) * -1);
  transform: translate(-100%, -50%);
}
.interview-block__label-en {
  color: transparent;
  font-size: 10rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--color07);
  opacity: 0.3;
  position: absolute;
  top: calc(var(--s-5) * -1);
  left: calc(var(--s1) * -1);
  transform-origin: top left;
  transform: rotate(90deg);
}
.interview-block .btn-internal {
  margin-bottom: 0;
}

.interview-card-01 {
  background: var(--color02);
}
.interview-card-01:hover{
  background: var(--color10);
}
.interview-card-01__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.interview-card-01__hover-text {
  width: 60%;
  height: 60%;
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1em;
  color: var(--color02);
  font-family: "Noto Sans JP Vertical", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-orientation: upright;
  writing-mode: vertical-rl;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
}
.interview-card-01:nth-child(1) .interview-card-01__hover-text {
}
.interview-card-01:nth-child(2) .interview-card-01__hover-text {
  height: 64%;
}
.interview-card-01:nth-child(3) .interview-card-01__hover-text {
  height: 70%;
}

.interview-card-01__hover-text__label {
  margin-top: -1em;
  padding: var(--s-5) 0;
  background: var(--color02);
  display: block;
  color: var(--color07);
  font-size: 1.5rem;
}
.interview-card-01__thumb {
  position: relative;
  max-height: 25rem;
}
.interview-card-01__thumb img{
    height: 100%;
    object-fit: cover;
}
.interview-card-01__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 160, 233, 0.6);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.interview-card-01__content {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s1-5);
  flex: 1;
}
.interview-card-01__header {
  padding-bottom: var(--s1-5);
  border-bottom: 1px solid var(--color01);
}
.interview-card-01__name {
  color: var(--color07);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.interview-card-01__note {
  font-weight: 700;
  line-height: 1.6;
}
.interview-card-01__name + .interview-card-01__note {
  margin-top: var(--s1);
}
.interview-card-01__more {
  margin-top: auto;
  padding: 0 var(--s2-5) 0 0;
  background: url("img/arrow-04-red-right.svg") no-repeat center right/0.7rem 1rem;
  color: var(--color11);
  font-family: "Poppins", sans-serif;
  text-align: right;
  line-height: 1.33;
}
.interview-card-01:nth-child(1) {
  transform: translateY(var(--s12));
}
.interview-card-01:nth-child(2) {
  transform: translateY(var(--s6));
}

@media (hover: hover) {
  .interview-card-01__link:hover .interview-card-01__thumb::after {
    opacity: 1;
  }
  .interview-card-01__link:hover .interview-card-01__hover-text {
    opacity: 1;
  }
}
.interview-card-01-wrapper {
  padding-bottom: var(--s12);
}

/* question */
.question-block {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.question-box-01 {
  counter-increment: number;
}
.question-box-01__side {
  position: relative;
  z-index: 2;
}
.question-box-01__main {
  padding: var(--s4);
  position: relative;
  z-index: 1;
}
.question-box-01__main::before {
  content: "style " counter(number, decimal-leading-zero);
  color: var(--color07);
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}
.question-box-01__main::after {
  content: "";
  width: calc(100% + var(--s4));
  height: 100%;
  background: var(--color02);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.l-column-04--row-reverse .question-box-01__main::after {
  left: 0;
  right: auto;
}
.question-box-01__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem!important;
}
.question-box-01__photo-01-01 {
  width: 36rem;
  position: absolute;
  top: -17.8rem;
  left: 0;
  z-index: 1;
  transform: translate(-53%, 0);
}
.question-box-01__photo-01-02 {
  width: 43rem;
  position: absolute;
  top: -13rem;
  right: 0;
}
.question-box-01__photo-02-01 {
  width: 50vw;
  height: 100%;
  max-height: 40rem;
  position: absolute;
  top: calc(var(--s4) * -1);
  left: 0;
}
.question-box-01__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.question-box-01 + .question-box-01 {
  margin-top: var(--s7);
}
.question-box-01--01 {
  padding-top: 17.8rem;
}
.question-box-01--02 {
  padding-top: var(--s4);
}

.question-card-01-wrapper {
  counter-reset: number;
}

.question-card-01 {
  padding-top: var(--s5);
  counter-increment: number;
  position: relative;
  z-index: 1;
}
.question-card-01::after {
  content: "";
  width: 100%;
  height: calc(100% - var(--s5));
  background: var(--color02);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.question-card-01__number {
  color: var(--color07);
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  left: var(--s2);
}
.question-card-01__number::after {
  content: counter(number, decimal-leading-zero);
  display: block;
  font-size: 5rem;
  font-family: "Poppins", sans-serif;
}
.question-card-01__title-wrapper {
  padding: var(--s3) var(--s4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.question-card-01__title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.question-card-01__text {
  padding: var(--s3) var(--s4);
}
.question-card-01__title-wrapper + .question-card-01__text {
  padding-top: 0;
}

.question-box-01-wrapper {
  counter-reset: number;
}

/* suitability */
.suitability-block {
  margin: 18rem 0;
  position: relative;
  z-index: 1;
}

.suitability-card-01 {
  padding: var(--s10) var(--s8) var(--s7);
  background: no-repeat right top var(--s4)/auto 14.3rem;
  counter-increment: number;
  position: relative;
}
.suitability-card-01::before {
  content: counter(number, decimal-leading-zero);
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: var(--s6);
  left: 0;
}
.suitability-card-01__title-wrapper {
  display: flex;
  align-items: center;
}
.suitability-card-01__title {
  margin-bottom: var(--s4);
  padding-right: var(--s10);
  color: var(--color07);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.33;
}
.suitability-card-01__catch-wrapper {
  display: flex;
  align-items: center;
}
.suitability-card-01__catch {
  margin-bottom: var(--s2-5);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.suitability-card-01:nth-child(odd) {
  padding-left: 0;
  background-position: right var(--s4) top var(--s4);
  border-right: 1px solid var(--color04);
}
.suitability-card-01:nth-child(even) {
  padding-right: 0;
}
.suitability-card-01:nth-child(even)::before {
  left: var(--s8);
}
.suitability-card-01:nth-child(2n+1)::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--color04);
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  transform: translate(-50%, 0);
}
.suitability-card-01:nth-child(1) {
  background-image: url("img/suitability-illust-01.svg");
}
.suitability-card-01:nth-child(2) {
  background-image: url("img/suitability-illust-02.svg");
}
.suitability-card-01:nth-child(3) {
  background-image: url("img/suitability-illust-03.svg");
}
.suitability-card-01:nth-child(4) {
  background-image: url("img/suitability-illust-04.svg");
}

.suitability-card-01-wrapper {
  margin-bottom: var(--s6);
  counter-reset: number;
  position: relative;
  z-index: 1;
}
.suitability-card-01-wrapper::before {
  content: "";
  width: 100vw;
  height: 100%;
  border-top: 1px solid var(--color04);
  border-bottom: 1px solid var(--color04);
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translate(-50%, 0);
}

/* career */
.career-block {
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.career-card-01 {
  border-top: 1px solid var(--color04);
  border-bottom: 1px solid var(--color04);
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  text-decoration: none;
  position: relative;
  transition: background-color 0.6s;
}
.career-card-01__title-wrapper {
  height: 100%;
  min-height: var(--s7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-card-01__title {
  padding-left: var(--s3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.33;
  position: relative;
}
.career-card-01__title::before {
  content: "";
  width: var(--s1-5);
  height: var(--s1-5);
  background: var(--color12);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.career-card-01__title__em-01 {
  color: var(--color07);
  font-size: 2.2rem;
}
.career-card-01 .icon-arrow-01 {
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}
.career-card-01:nth-child(n+3) {
  margin-top: -1px;
}

@media (hover: hover) {
  .career-card-01:hover {
    background-color: #f6f6f6;
  }
}
/* job */
.job-block {
  margin: 18rem 0;
  position: relative;
  z-index: 1;
}

.job-card-01 {
  padding: var(--s1) var(--s5) var(--s1) 10.4rem;
  counter-increment: number;
  position: relative;
  z-index: 1;
}
.job-card-01::before {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--color04);
  position: absolute;
  top: 0;
  left: var(--s9);
  z-index: -1;
}
.job-card-01__main {
  position: relative;
}
.job-card-01__main::before {
  content: "STEP. " counter(number, decimal-leading-zero);
  margin-bottom: var(--s1-5);
  padding: var(--s-5) var(--s2);
  border: 1px solid var(--color04);
  border-radius: 10rem;
  display: inline-block;
  color: #666666;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}
.job-card-01__title {
  margin-bottom: var(--s2-5);
  color: var(--color07);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.33;
  position: relative;
}
.job-card-01__title::before {
  content: "";
  width: var(--s3);
  height: var(--s3);
  background: url("img/icon-circle.svg") no-repeat center/contain;
  position: absolute;
  top: 0.25em;
  left: calc(var(--s4) * -1);
  transform: translate(-50%, 0);
}
.job-card-01 + .job-card-01 {
  border-top: 1px solid var(--color04);
}

.job-card-01-wrapper {
  margin: var(--s5) 0 var(--s9);
  border: 1px solid var(--color04);
  counter-reset: number;
}

/* sler */
.sler-block {
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.sler-card-01 {
  padding: var(--s3) var(--s4) var(--s8) var(--s4);
  border-right: 1px solid var(--color04);
  text-decoration: none;
  counter-increment: number;
  position: relative;
}
.sler-card-01::before {
  content: "";
  width: calc(100% + 1px);
  height: 100%;
  border: 1px solid var(--color11);
  box-sizing: border-box;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
}
.sler-card-01 .icon-arrow-01 {
  position: absolute;
  right: var(--s4);
  bottom: var(--s3);
  z-index: 1;
}
.sler-card-01__number {
  position: relative;
}
.sler-card-01__number::before {
  content: counter(number, decimal-leading-zero);
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.sler-card-01__title-wrapper {
  display: flex;
  align-items: center;
}
.sler-card-01__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.33;
}
.sler-card-01:nth-child(3n) {
  border-right: none;
}
.sler-card-01:nth-child(3n+1)::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--color04);
  position: absolute;
  top: 0;
  left: 150%;
  z-index: -1;
  transform: translate(-50%, 0);
}

@media (hover: hover) {
  .sler-card-01:hover::before {
    opacity: 1;
  }
}
.sler-card-01-wrapper {
  border-left: 1px solid var(--color04);
  border-right: 1px solid var(--color04);
  position: relative;
}
.sler-card-01-wrapper::after {
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--color04);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}

/* vs */
.vs-block {
  margin-top: 18rem;
  margin-bottom: 18rem;
}
.vs-block__content {
  padding-bottom: 150px;
  /*padding-bottom: var(--s7);*/
  position: relative;
  z-index: 1;
}
.vs-block__content::after {
  content: "";
  width: 100vw;
  height: calc(100% - 11rem);
  background: var(--color10);
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  transform: translate(-50%, 0);
}
.vs-block__content > *:last-child {
  margin-bottom: 0;
}

.vs-box-01 {
  padding: var(--s4) var(--s7);
  background: var(--color02);
  border: 1px solid var(--color04);
}
.vs-box-01__label {
  width: 17rem;
  height: calc(100% + 1px);
  background: var(--color08);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s1-5);
  color: var(--color02);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  left: calc(100% + var(--s7) + 5rem);
  z-index: 1;
  transform: translate(-50%, 0);
}
.vs-box-01__label::before {
  content: "";
  width: var(--s10);
  height: var(--s10);
  background: no-repeat center/contain;
}
.vs-box-01__label--icon-01::before {
  background-image: url("img/vs-icon-01.svg");
}
.vs-box-01__label--icon-02::before {
  background-image: url("img/vs-icon-02.svg");
}
.vs-box-01__label--icon-03::before {
  background-image: url("img/vs-icon-03.svg");
}
.vs-box-01__label::after {
  content: "";
  width: calc(100% - var(--s2));
  height: 1px;
  background: var(--color02);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.vs-box-01__row:last-child .vs-box-01__label::after {
  display: none;
}
.vs-box-01:first-child .vs-box-01__label {
  display: flex;
}
.vs-box-01__row {
  padding: var(--s3) 0;
  border-top: 1px solid var(--color04);
  border-bottom: 1px solid var(--color04);
  position: relative;
}
.vs-box-01__row + .vs-box-01__row {
  margin-top: -1px;
}
.vs-box-01__title + .vs-box-01__row, .vs-box-01__main-text + .vs-box-01__row {
  margin-top: var(--s3);
}
.vs-box-01__title {
  color: var(--color07);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
}
.vs-box-01__main-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.vs-box-01__title + .vs-box-01__main-text {
  margin-top: var(--s2);
}
.vs-box-01__catch {
  padding-left: var(--s2-5);
  color: var(--color07);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.vs-box-01__catch::before {
  content: "";
  width: 1em;
  height: 1em;
  background: var(--color07);
  position: absolute;
  top: 0.3em;
  left: 0;
  z-index: 1;
}

/* column */
.column-block {
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.column-card-01 {
  border-top: 1px solid var(--color04);
  border-bottom: 1px solid var(--color04);
  transition: background-color 0.6s;
}
.column-card-01__link {
  height: 100%;
  min-height: 10rem;
  padding: var(--s3) var(--s6) var(--s3) var(--s3);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.column-card-01__title {
  padding-left: var(--s3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.column-card-01__title::before {
  content: "";
  width: var(--s1-5);
  height: var(--s1-5);
  background: var(--color12);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.column-card-01 .icon-arrow-01 {
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%);
}
.column-card-01:nth-child(n+3) {
  margin-top: -1px;
}

@media (hover: hover) {
  .column-card-01:hover {
    background-color: #f6f6f6;
  }
}
/*
---------------------------------------------

    lower

*/
.main-area--lower h1 {
  color: var(--color02);
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.main-area--lower h2 {
  margin: 2em 0 1em;
  padding: var(--s2-5) var(--s2-5) var(--s2-5) var(--s6);
  background: var(--color07);
  color: var(--color02);
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.main-area--lower h2::before {
  content: "";
  width: var(--s4);
  height: 2px; 
  background: var(--color02);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(0, -50%);
}
.main-area--lower h2 a {
  padding-right: var(--s4);
  background: url("img/arrow-02-white-right.svg") no-repeat center right/var(--s3) var(--s3);
  display: block;
  color: var(--color02);
  text-decoration: none;
}
.main-area--lower h3 {
  margin: 3em 0 1em;
  padding: var(--s-5) 0 var(--s1-5) var(--s2-5);
  border-left: 1px solid var(--color01);
  border-bottom: 1px solid var(--color04);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.main-area--lower h3 a {
  padding-right: var(--s4);
  background: url("img/arrow-02-black-right.svg") no-repeat center right/var(--s3) var(--s3);
  display: block;
  text-decoration: none;
}
.main-area--lower h4 {
  margin: 2em 0 1em;
  padding: 0 0 0 var(--s2-5);
  color: var(--color07);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.main-area--lower h4::before {
  content: "";
  width: 0.6rem;
  height: 100%;
  background: var(--color07);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(0, -50%);
}
.main-area--lower h4 a {
  padding-right: var(--s4);
  background: url("img/arrow-02-blue-right.svg") no-repeat center right/var(--s3) var(--s3);
  display: block;
  color: var(--color07);
  text-decoration: none;
}
.main-area--lower h5, .main-area--lower h6 {
  margin: 2em 0 1em;
  padding: 0 0 0 var(--s4);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.main-area--lower h5::before, .main-area--lower h6::before {
  content: "";
  width: 1.25em;
  height: 1.25em;
  background: var(--color06);
  position: absolute;
  top: 0.15em;
  left: 0;
  z-index: 1;
}
.main-area--lower h5 a, .main-area--lower h6 a {
  padding-right: var(--s4);
  background: url("img/arrow-02-black-right.svg") no-repeat center right/var(--s3) var(--s3);
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  h2 a:hover,
  h3 a:hover,
  h4 a:hover,
  h5 a:hover,
  h6 a:hover {
    opacity: 0.5;
  }
}
.lower-mv {
  min-height: 33.2rem;
  padding-top: var(--s10);
  padding-bottom: var(--s5);
  background: url("./img/lower-mv-bg-01.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 767px) and (max-width: 1280px) {
/*///追加///*/
.page-banner-01__link{
    padding: var(--s1) var(--s3) var(--s1) var(--s1);
    font-size: 1.0rem;
    background: #ffe24e url(img/arrow-05-black-right.svg) no-repeat center right var(--s1) / auto 1.0rem;
}
.page-banner-01__label-01, .page-banner-01__label-02{
  font-size: 1.0rem;
}
/*////////////*/
}



@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-01 {
    padding-right: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }
  .l-center-02 {
    padding-right: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }
  /*
  ---------------------------------------------

      sp layout stack

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

      sp layout cluster

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

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }
  .l-grid--no-gap {
    grid-gap: 0;
  }
  .l-grid--no-row-gap {
    grid-gap: 0;
  }
  .l-grid--no-row-gap p{
    margin-left: 2rem;
  }
  .l-grid-three {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }
  .l-grid-three--no-gap {
    grid-gap: 0;
  }
  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column-01 {
    gap: 0;
  }
  .l-column-01__side {
    width: 100%;
  }
  .l-column-01__main {
    width: 100%;
  }
  .l-column-02__side {
    width: 100%;
  }
  .l-column-02__main {
    width: 100%;
  }
  .l-column-03 {
    gap: var(--s1);
  }
  .l-column-03__side {
    width: 100%;
  }
  .l-column-03__main {
    width: 100%;
  }
  .l-column-04 {
    display: block;
  }
  .l-column-04__main {
    width: 100%;
    margin-top: calc(var(--s4) * -1);
    position: relative;
    z-index: 2;
  }
  .l-column-05 {
    display: block;
  }
  .l-column-05__side {
    width: fit-content;
    margin-bottom: calc(var(--s6) * -1);
  }
  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas-01 {
    grid-template-areas: "title" "logo" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr;
    grid-gap: var(--s2);
  }
  .l-grid-areas-02 {
    grid-template-areas: "label profile" "content content";
    grid-template-columns: 1fr 14.3rem;
    grid-template-rows: auto 1fr;
    grid-gap: var(--s-5) var(--s2);
    align-items: center;
  }
  .l-grid-areas-02--reverse {
    grid-template-areas: "label profile" "content content";
    grid-template-columns: 1fr 14.3rem;
  }
  .l-grid-areas-03 {
    grid-template-areas: "sponsored-by" "name" "thumb" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto 1fr;
    grid-gap: var(--s2);
  }
  .l-grid-areas-04 {
    grid-template-areas: "title" "text";
    grid-template-columns: 100%;
  }
  .l-grid-areas-04--reverse {
    grid-template-areas: "title" "text";
    grid-template-columns: 100%;
  }
  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin: var(--s3) 0;
    padding-bottom: 0.8rem;
    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;
  }
  /*
  ---------------------------------------------

      layout header

  */
  .l-header-01 {
    grid-template-areas: "logo" "site-name" "note";
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr;
    grid-gap: 0;
  }
  .l-header-01__cell-01 {
    margin-bottom: var(--s1);
  }
  .l-header-01__cell-02 {
    margin: var(--s-5) 0 0;
    /*padding-right: var(--s7);*/
    flex-direction: column;
  }
  .header-site-name,
  .header-sponsored {
    color: var(--color01);
    background: #fff4;
    padding: 0 0.2rem;;
    display: inline;
  }
   .header-main--lower .header-site-name,
  .header-main--lower .header-sponsored{
    color: var(--color02);
    background:none;
    padding: 0 ;
  }
   .header-main--lower .l-header-01__cell-02{
            margin: var(--s-5) 0;
        gap: 0 var(--s2);
   }

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

      layout btn

  */
  .l-btn-01 {
    margin: var(--s3) auto;
    flex-direction: column;
    gap: var(--s3);
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal {
    width: 100%;
    margin: var(--s3) auto;
  }
  .btn-internal a {
    width: 90%;
    min-height: var(--s7);
    padding-left: var(--s3);
    padding-right: var(--s5);
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .btn-internal a .icon-arrow-02 {
    right: var(--s1-5);
  }
  .btn-web {
    width: 100%;
    margin: var(--s3) auto;
  }
  .btn-web a {
    width: 90%;
    min-height: var(--s7);
    padding-left: var(--s3);
    padding-right: var(--s5);
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .btn-web a .icon-window-01 {
    right: var(--s1-5);
  }
  .btn-link {
    margin: var(--s3) 0;
  }
  .btn-link a {
    font-size: 1.4rem;
  }
  .btn-tel {
    width: 100%;
    margin: var(--s3) auto;
    display: block;
  }
  .btn-tel a {
    width: 90%;
    min-height: var(--s7);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: var(--color07) url("img/icon-tel.png") no-repeat center left var(--s2-5)/var(--s3) auto;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color02);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
  }
  /*
  ---------------------------------------------

      sp icon

  */
  .icon-window-01 {
    width: var(--s3);
    height: var(--s3);
  }
  .icon-window-01::before {
    background-size: var(--s2) auto;
  }
  .icon-window-01::after {
    display: none;
  }
  .icon-arrow-01 {
    width: var(--s3);
    height: var(--s3);
    background-position: center;
    background-size: 1.1rem auto;
  }
  .icon-arrow-01::before, .icon-arrow-01::after {
    display: none;
  }
  .icon-arrow-02 {
    width: var(--s3);
    height: var(--s3);
  }
  .icon-arrow-02::before {
    background-size: var(--s2) auto;
  }
  .icon-arrow-02::after {
    display: none;
  }
  /*
  ---------------------------------------------

      sp table

  */
  table {
    margin: var(--s3) 0;
  }
  thead, tbody, tr {
    display: block;
  }
  th, td {
    width: 100%;
    display: block;
  }
  .l-scroll-x-sp table {
    width: inherit;
    margin: 0;
  }
  .l-scroll-x-sp table thead {
    display: table-header-group;
  }
  .l-scroll-x-sp table tbody {
    display: table-row-group;
  }
  .l-scroll-x-sp table tr {
    display: table-row;
  }
  .l-scroll-x-sp table th, .l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }
  /*
  ---------------------------------------------

      sp caption

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

      sp catch

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

      sp text

  */
  .marker {
    padding-bottom: 0.2rem;
  }
  /*
  ---------------------------------------------

      sp subgrid card

  */
  .subgrid-card-02 {
    grid-gap: var(--s1-5);
  }
  .subgrid-card-04 {
    grid-gap: var(--s2);
  }
  /*
  ---------------------------------------------

      sp float wrap

  */
  .float-wrap {
    margin: var(--s5) 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);
    padding-bottom: var(--s1);
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  /*
  ---------------------------------------------

      sp header

  */
  .header-main {
    padding: var(--s1);
  }
  .header-logo {
    width: 15rem;
  }
  /*
  ---------------------------------------------

      sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
  }
  .gnavi-btn span {
    width: var(--s3);
    /*left: var(--s2);*/
    left: 1.3rem;;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.5rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.4rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.3rem;
  }
  /*
  ---------------------------------------------

      sp main

  */
  .main-area--lower {
    margin-bottom: var(--s5);
  }
  /*
  ---------------------------------------------

      sp footer

  */
  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }
  .footer-bottom {
    padding: var(--s1) 0 var(--s12);
  }
  .footer-about {
    margin: var(--s3) auto;
    padding: var(--s2);
  }
  .footer-about__logo {
    width: 18rem;
    margin: 0 auto;
  }
  .footer-about__title {
    font-size: 1.6rem;
    text-align: center;
  }
  .footer-box + .footer-box {
    margin-top: var(--s1);
  }
  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: 0 var(--s5) 0 var(--s2);
    display: block;
    position: relative;
  }
  .footer-menu-title__link .toggle-icon {
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%);
  }
  .footer-menu-title__link--not-toggle {
    background: url("img/arrow-05-white-right.svg") no-repeat center right var(--s2)/auto 1.3rem;
  }
  .footer-menu {
    background: rgba(255, 255, 255, 0.1);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
  }
  .footer-menu-sub {
    margin-left: var(--s2);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }
  .footer-disclaimer {
    width: calc(100% - var(--s4));
    margin: var(--s2) auto;
  }
  .footer-nocopy {
    margin: var(--s2);
    font-size: 1rem;
  }
  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  .footer-sitemap {
    display: none;
  }
  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: var(--s8);
    height: var(--s10);
    bottom: 0;
    transform: translate(0, 100%);
  }
  .page-top__link {
    background-size: var(--s3) var(--s3);
    background-position: top var(--s2) center;
    font-size: 1.5rem;
  }
  .page-banner-01 {
    width: calc(100% - var(--s8));
    left: 0;
    right: auto;
    bottom: 0;
    transform: translate(0, 100%);
  }
  .page-banner-01::after {
    display: none;
  }
  .page-banner-01__link {
    min-height: var(--s10);
    padding: var(--s1) var(--s5) var(--s1) var(--s2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .page-banner-01__label-01, .page-banner-01__label-02 {
    padding: 0 var(--s-5);
  }
  .page-banner-01__label-01 {
    margin-bottom: var(--s-5);
    font-size: 1.1rem;
  }
  /*
  ---------------------------------------------

      sp section

  */
  .section-title-01 {
    margin-bottom: var(--s2);
    padding-left: var(--s-5);
    padding-top: var(--s4);
    font-size: 2.6rem;
  }
  .section-title-01__small {
    font-size: 1.6rem;
  }
  .section-title-01:target {
    scroll-margin-top: var(--s9);
  }
  .section-title-01::before {
    height: 3rem;
    left: calc(var(--s1-5) * -1);
  }
  .section-title-01--sponsored-by {
    padding-top: var(--s4);
  }
  .section-title-01--sponsored-by::before {
    height: 4.2rem;
  }
  .section-title-02 {
    margin-top: var(--s2);
    margin-bottom: var(--s2);
    font-size: 1.7rem;
    text-align: center;
  }
  .section-title-02__em-01 {
    font-size: 2.8rem;
  }
  .section-title-02__em-02 {
    font-size: 2.6rem;
  }
  .section-title-02__em-03 {
    font-size: 2.6rem;
  }
  .section-title-02--align-left-sp {
    text-align: left;
  }
  .section-title-03 {
    margin-top: var(--s10);
    margin-bottom: var(--s3);
    padding-bottom: var(--s2-5);
    font-size: 1.8rem;
  }
  .section-title-03::before {
    width: 27.35rem;
    height: 5.2rem;
    background-position: right bottom;
    left: auto;
    right: calc(var(--s1-5) * -1);
    bottom: 0;
  }
  .section-title-03__em-01 {
    font-size: 2.2rem;
  }
  .section-title-03__em-02 {
    font-size: 2.2rem;
  }
  .section-title-03__em-03 {
    font-size: 2.2rem;
  }
  .section-title-03--style {
    padding-bottom: var(--s4);
  }
  .section-title-03--vs {
    padding-bottom: var(--s4);
  }
  .section-text-01 {
    font-size: 1.4rem;
  }
  .section-text-02 {
    margin-bottom: var(--s3);
    font-size: 1.4rem;
    text-align: left;
  }
  .section-header-01 {
    padding-top: var(--s5);
    padding-bottom: var(--s3);
  }
  .section-header-01::after {
    height: calc(100% - 9rem);
    right: var(--s4);
  }
  .section-header-01__photo {
    width: calc(100% - var(--s10));
    min-width: inherit;
    height: 12rem;
    left: var(--s10);
  }
  .section-header-01__photo::before {
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 60%, transparent 100%);
  }
  .section-header-02 {
    margin-bottom: var(--s5);
    padding-top: var(--s12);
  }
  .section-header-02__photo {
    width: 100%;
    min-width: inherit;
    height: 12rem;
    right: var(--s2);
  }
  .section-header-02__en {
    font-size: 4.2rem;
    text-align: center;
  }
  .section-header-02--align-right-pc .section-header-02__en {
    text-align: center;
  }
  .section-header-02--align-right-pc .section-title-02 {
    text-align: center;
  }
  /*
  ---------------------------------------------

      sp index box

  */
  .index-box-01 {
    margin: var(--s5) auto var(--s7);
    padding: var(--s2) var(--s2) 0;
  }
  .index-box-01__label {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .index-box-01 .chapter-h-two {
    font-size: 1.6rem;
  }
  .index-box-01 .chapter-h-two > a::before {
    height: 2.3rem;
  }
  .index-box-01 .chapter-h-three {
    font-size: 1.4rem;
  }
  /*
  ---------------------------------------------

      sp summary box

  */
  .summary-box-01 {
    margin: var(--s5) 0;
  }
  .summary-box-01__label {
    margin-bottom: var(--s2);
    font-size: 2.8rem;
  }
  .summary-box-01__content {
    padding: var(--s2-5);
  }
  .summary-box-01__catch {
    font-size: 1.6rem;
  }
  .summary-box-01__catch::after {
    width: calc(100% + var(--s2-5));
  }
  /*
  ---------------------------------------------

      sp comment box

  */
  .comment-box-01 {
    margin: var(--s3) 0;
    padding: var(--s2) var(--s2) var(--s3) 0;
  }
  .comment-box-01__label {
    margin-bottom: 0;
    font-size: 2.8rem;
  }
  .comment-box-01__content {
    margin-left: 0;
  }
  .l-grid-areas-02--reverse .comment-box-01__content {
    margin-left: 0;
  }
  .comment-box-01__catch {
    font-size: 1.6rem;
  }
  /*
  ---------------------------------------------

      sp commentator box

  */
  .commentator-box-01 {
    margin: var(--s6) 0;
  }
  .commentator-box-01 .profile-box-01 {
    position: absolute;
    top: 0;
    right: 0;
  }
  .commentator-box-01 .l-grid-areas-04--reverse .profile-box-01 {
    left: 0;
    right: auto;
  }
  .commentator-box-01__label {
    font-size: 1.6rem;
  }
  .commentator-box-01__label-en {
    font-size: 2.8rem;
  }
  .commentator-box-01__row {
    padding: var(--s12) var(--s2) var(--s2);
  }
  .commentator-box-01__row::after {
    height: calc(100% - var(--s10));
  }
  .commentator-box-01__row + .commentator-box-01__row {
    margin-top: var(--s2);
  }
  .commentator-box-01__catch {
    font-size: 1.5rem;
  }
  .commentator-box-01__catch::after {
    width: calc(100% + var(--s2));
    left: calc(var(--s2) * -1);
  }
  .l-grid-areas-04--reverse .commentator-box-01__catch::after {
    right: calc(var(--s2) * -1);
  }
  /*
  ---------------------------------------------

      sp profile box

  */
  .profile-box-01 {
    margin-bottom: 0;
  }
  .profile-box-01__thumb {
    width: 10rem;
  }


.profile-box-01__thumb.pwimg{width: 10rem;}
.profile-box-01__thumb.pmimg{}

.profile-box-01__thumb.pwimg01{ width: 10rem;}
.profile-box-01__thumb.pwimg01 img{right: 0rem; max-width: 105%;}
.profile-box-01__thumb.pwimg02{width: 10rem;}
.profile-box-01__thumb.pwimg02 img{right: 1rem;}

.profile-box-01__thumb.pmimg01{width: 10rem;}
.profile-box-01__thumb.pmimg01 img{left: 1.5rem;}
.profile-box-01__thumb.pmimg02{}
.profile-box-01__thumb.pmimg02 img{max-width: 115%;}
.profile-box-01__thumb.pmimg03{width: 10rem;}
.profile-box-01__thumb.pmimg03 img{left: 1.5rem;}

/*右*/
.main-area--lower .profile-box-01__thumb.pwimg{width: 9rem;}
.main-area--lower .profile-box-01__thumb.pmimg{}

.main-area--lower .profile-box-01__thumb.pwimg01{ width: 9rem;} 
.main-area--lower .profile-box-01__thumb.pwimg01 img{right: -0.5rem;}
.main-area--lower .profile-box-01__thumb.pwimg02{width: 10rem;}
.main-area--lower .profile-box-01__thumb.pwimg02 img{right: 0rem;}

.main-area--lower .profile-box-01__thumb.pmimg01{width: 10rem;}
.main-area--lower .profile-box-01__thumb.pmimg01 img{left: 0rem;}
.main-area--lower .profile-box-01__thumb.pmimg02{width: 8rem;}
.main-area--lower .profile-box-01__thumb.pmimg02 img{right: 0rem;}
.main-area--lower .profile-box-01__thumb.pmimg03{width: 12rem;}
.main-area--lower .profile-box-01__thumb.pmimg03 img{left: -2rem;}

/*左*/
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg{width: 9rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg{}

.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg01{ width: 9rem;} 
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg01 img{left: 2rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg02{width: 10rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pwimg02 img{left: 1.5rem;}

.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg01{width: 10rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg01 img{left: 1.5rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg02{width: 8rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg02 img{left: 2rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg03{width: 12rem;}
.main-area--lower .l-grid-areas-02--reverse .profile-box-01__thumb.pmimg03 img{left: 0rem;}




  .profile-box-01__name {
    font-size: 1.4rem;
  }
  .profile-box-01__post {
    font-size: 1.2rem;
  }
  /*
  ---------------------------------------------

      sp interview box

  */
  .interview-box-01 {
    margin: var(--s5) auto;
  }
  .interview-box-01__thumb {
    height: 30rem;
    position: static;
  }
  .interview-box-01__content {
    padding: var(--s2);
  }
  .interview-box-01__name {
    font-size: 1.6rem;
  }
  /*
  ---------------------------------------------

      sp qa

  */
  .qa-box-01 {
    padding: var(--s2) 0 var(--s2) var(--s4);
    gap: var(--s2);
  }
  .qa-box-01__q {
    font-size: 1.6rem;
  }
  .qa-box-01__q::before {
    font-size: 2.4rem;
    left: calc(var(--s4) * -1);
  }
  .qa-box-01__a {
    font-size: 1.4rem;
  }
  .qa-box-01__a::before {
    font-size: 2.4rem;
    left: calc(var(--s4) * -1);
  }
  /*
  ---------------------------------------------

      sp sponsored box

  */
  .sponsored-box-01 {
    margin: var(--s5) 0;
  }
  .main-area--lower .sponsored-box-01{
    box-sizing: border-box;
    margin: var(--s5) 0;
    padding-right: var(--s2);
    padding-left: var(--s2);
  }
  .sponsored-box-01__header {
    margin-bottom: -20rem;
    padding-bottom: 22.4rem;
  }
  .sponsored-box-01__header::after {
    height: calc(100% - var(--s7));
    right: var(--s5);
  }
  .sponsored-box-01--lower .sponsored-box-01__header::after {
    height: calc(100% - var(--s9));
    right: var(--s3);
  }
  .sponsored-box-01__sponsored-by {
    font-size: 1.2rem;
  }
  .sponsored-box-01__catch {
    font-size: 1.8rem;
  }
  .sponsored-box-01__content {
    padding: var(--s3) var(--s2);
  }
  .sponsored-box-01__marquee-text {
    padding-right: var(--s1-5);
    font-size: 6.4rem;
    animation-duration: 15s;
  }
  /*
  ---------------------------------------------

      sp relations box

  */
  .relations-box-01 {
    margin: var(--s5) auto;
    padding: var(--s2);
  }
  .relations-box-01__label {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .relations-box-01 ul:not([class]) li {
    font-size: 1.4rem;
  }
  .relations-box-01 ul:not([class]) a {
    min-height: var(--s3);
    padding-left: var(--s4);
    background-size: var(--s3) var(--s3);
  }
  .related-article01-frame {
    margin: var(--s5) auto;
    padding: var(--s2);
  }
  .related-article01-title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .related-article01-list > li {
    font-size: 1.4rem;
  }
  .related-article01-list a {
    min-height: var(--s3);
    padding-left: var(--s4);
    background-size: var(--s3) var(--s3);
  }
  .relations-box .catch-01 {
    font-size: 1.4rem;
  }
  /*
  ---------------------------------------------

      banner box

  */
  .banner-box-01 {
    width: calc(100% - var(--s4));
    margin: var(--s5) auto;
  }
  .banner-box-01::after {
    top: var(--s1);
    left: var(--s1);
  }
  .banner-box-01__link {
    padding: var(--s1-5) var(--s1-5) var(--s8) var(--s12);
    background-position: left -7rem center;
  }
  .banner-box-01__title {
    font-size: 1.4rem;
  }
  .banner-box-01__text {
    font-size: 1.1rem;
  }
  .banner-box-01__more {
    padding: var(--s-5) var(--s5) var(--s-5) var(--s1);
    background-position: center right var(--s1-5);
    font-size: 1.2rem;
  }
  /*
  ---------------------------------------------

       sp toggle sp

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

      sp more gradient

  */
  .more-gradient-btn {
    width: 20rem;
    padding: var(--s1-5) var(--s5);
    font-size: 1.5rem;
  }
  .more-gradient-btn::before {
    right: var(--s2);
  }
  .more-gradient-btn::after {
    right: 2.4rem;
  }
  .more-gradient-btn.is-open::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .more-gradient-content {
    height: 12rem;
    padding-bottom: var(--s4);
  }
  /*
  ---------------------------------------------

      sp scroll hint

  */
  .scroll-hint-icon {
    width: 140px;
    top: calc(50% - 40px);
    left: calc(50% - 70px);
  }
  .scroll-hint-text {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp top

  */
  /* mv */
  .mv-block {
    padding-right: 0;
    padding-left: 0;
  }
  .mv-block__main {
    padding: 30rem var(--s1-5) var(--s3);
  }
  .mv-block__footer {
    padding-right: var(--s2);
    padding-left: var(--s2);
  }
  .mv-block__footer .text-note-01 {
    text-align: left;
  }
  .mv-title {
    margin-left: calc(var(--s1-5) * -1);
    margin-bottom: var(--s2);
    font-size: 2.4rem;
  }
  .mv-title::before {
    width: 24.35rem;
    height: 4.4rem;
    left: 0;
  }
  .mv-catch {
    font-size: 1.7rem;
    margin-bottom: var(--s1-5);
  }
  .mv-scroll {
    transform: translate(calc(var(--s3) * -1), 0) rotate(90deg);
  }
  .mv-scroll__bar {
    width: 8rem;
  }
  .mv-text {
    margin-right: var(--s3);
  }
  .mv-slide {
    width: 100%;
    left: 0;
  }
  .mv-slide::after {
    background: linear-gradient(to top, rgba(31, 49, 57, 0.7) 0%, rgba(31, 49, 57, 0.7) 20%, transparent 100%);
}
  /* interview */
  .interview-block {
    margin: var(--s10) 0;
  }
  .interview-block__inner {
    padding-top: var(--s2);
  }
  .interview-block__inner::after {
    height: calc(100% - 2.8rem);
    left: var(--s5);
  }
  .interview-block__label {
    display: none;
  }
  .interview-block__label-en {
    font-size: 5rem;
    top: calc(var(--s3) * -1);
    right: 0;
    left: auto;
    transform-origin: center;
    transform: rotate(0deg);
  }
  .interview-card-01__hover-text {
    display: none;
  }
  .interview-card-01__thumb::after {
    display: none;
  }
  .interview-card-01__content {
    padding: var(--s2);
  }
  .interview-card-01__name {
    font-size: 1.6rem;
  }
  .interview-card-01:nth-child(1) {
    transform: translateY(0);
  }
  .interview-card-01:nth-child(2) {
    transform: translateY(0);
  }
  .interview-card-01-wrapper {
    margin: var(--s3) 0;
    padding-bottom: 0;
  }
  /* question */
  .question-block {
    margin-top: var(--s10);
    margin-bottom: var(--s10);
  }
  .question-box-01__main {
    padding: var(--s2) var(--s2) var(--s2) 0;
    gap: var(--s2-5);
  }
  .l-column-04--row-reverse .question-box-01__main {
    padding: var(--s2) 0 var(--s2) var(--s2);
  }
  .question-box-01__main::before {
    font-size: 1.4rem;
  }
  .question-box-01__title {
    font-size: 1.8rem;
    margin-bottom: 0 !important;
  }
  .question-box-01__photo-01-01 {
    width: 80vw;
    height: 15.6rem;
    margin-left: auto;
    margin-right: calc(var(--s2) * -1);
    position: static;
    transform: translate(0, 0);
  }
  .question-box-01__photo-01-02 {
    display: none;
  }
  .question-box-01__photo-02-01 {
    width: 80vw;
    margin-left: calc(var(--s2) * -1);
    position: static;
  }
  .question-box-01 + .question-box-01 {
    margin-top: var(--s3);
  }
  .question-box-01--01 {
    padding-top: 0;
  }
  .question-box-01--02 {
    padding-top: 0;
  }
  .question-card-01 {
    padding-top: 2.8rem;
  }
  .question-card-01::after {
    height: calc(100% - 2.8rem);
  }
  .question-card-01__number {
    font-size: 1.2rem;
  }
  .question-card-01__number::after {
    font-size: 3.6rem;
  }
  .question-card-01__title-wrapper {
    padding: var(--s2);
  }
  .question-card-01__title {
    font-size: 1.8rem;
  }
  .question-card-01__text {
    padding: var(--s2);
  }
  /* suitability */
  .suitability-block {
    margin: var(--s11) 0;
  }
  .suitability-card-01 {
    padding: var(--s6) var(--s2) var(--s3);
    background-position: top var(--s2) right var(--s1);
    background-size: auto 7.8rem;
  }
  .suitability-card-01::before {
    font-size: 1.6rem;
    top: var(--s3);
    left: var(--s2);
  }
  .suitability-card-01::after {
    content: "";
    width: 100vw;
    height: 1px;
    background: var(--color04);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
  }
  .suitability-card-01__title {
    margin-bottom: var(--s1-5);
    padding-right: var(--s5);
    font-size: 2rem;
  }
  .suitability-card-01__catch {
    margin: var(--s1-5) 0 var(--s2);
    font-size: 1.5rem;
  }
  .suitability-card-01:nth-child(odd) {
    border-right: none;
  }
  .suitability-card-01:nth-child(odd) {
    padding-left: var(--s2);
    background-position: top var(--s2) right var(--s1);
  }
  .suitability-card-01:nth-child(even) {
    padding-right: var(--s2);
  }
  .suitability-card-01:nth-child(even)::before {
    left: var(--s2);
  }
  .suitability-card-01:nth-child(2n+1)::after {
    left: 50%;
  }
  .suitability-card-01-wrapper {
    margin-bottom: var(--s3);
    border-left: 1px solid var(--color04);
    border-right: 1px solid var(--color04);
  }
  /* career */
  .career-block {
    margin-top: var(--s10);
    margin-bottom: var(--s10);
  }
  .career-card-01 {
    padding: var(--s2) var(--s4) var(--s2) 0;
  }
  .career-card-01__title-wrapper {
    min-height: inherit;
  }
  .career-card-01__title {
    font-size: 1.4rem;
  }
  .career-card-01__title__em-01 {
    font-size: 1.6rem;
  }
  .career-card-01 .icon-arrow-01 {
    right: 0;
  }
  .career-card-01:nth-child(n+2) {
    margin-top: -1px;
  }
  /* job */
  .job-block {
    margin-top: var(--s10);
    margin-bottom: var(--s10);
  }
  .job-card-01 {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
  }
  .job-card-01::before {
    left: var(--s2);
  }
  .job-card-01__main::before {
    font-size: 1.2rem;
  }
  .job-card-01__title {
    margin-bottom: var(--s1);
    font-size: 1.8rem;
  }
  .job-card-01__title::before {
    width: var(--s2);
    height: var(--s2);
    top: 0.3em;
    left: calc(var(--s2) * -1);
  }
  .job-card-01__thumb {
    width: 80%;
    margin: 0 auto;
  }
  .job-card-01-wrapper {
    margin: var(--s3) 0;
  }
  /* sler */
  .sler-block {
    margin-top: var(--s10);
    margin-bottom: var(--s10);
  }
  .sler-card-01 {
    padding: var(--s2) var(--s2) var(--s6) var(--s2);
    border-right: none;
  }
  .sler-card-01::after {
    content: "";
    width: 100vw;
    height: 1px;
    background: var(--color04);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
  }
  .sler-card-01 .icon-arrow-01 {
    right: var(--s2);
    bottom: var(--s2);
  }
  .sler-card-01__number {
    position: relative;
  }
  .sler-card-01__number::before {
    font-size: 1.6rem;
  }
  .sler-card-01__title {
    font-size: 1.8rem;
  }
  .sler-card-01:nth-child(3n+1) {
    display: none;
  }
  /* vs */
  .vs-block {
    margin-top: var(--s10);
    margin-bottom: var(--s10);
  }
  .vs-block__content {
    padding-bottom: var(--s5);
  }
  .vs-box-01 {
    padding: var(--s2);
  }
  .vs-box-01__label {
    width: inherit;
    height: inherit;
    padding: var(--s-5) var(--s1);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 1.6rem;
    position: static;
    transform: translate(0, 0);
  }
  .vs-box-01__label::before {
    width: var(--s4);
    height: var(--s4);
  }
  .vs-box-01__label::after {
    display: none;
  }
  .vs-box-01__row {
    padding: var(--s2) 0;
  }
  .vs-box-01__title + .vs-box-01__row, .vs-box-01__main-text + .vs-box-01__row {
    margin-top: var(--s2);
  }
  .vs-box-01__title {
    font-size: 2.2rem;
  }
  .vs-box-01__main-text {
    font-size: 1.5rem;
  }
  .vs-box-01__catch {
    padding-left: var(--s2);
  }
  .vs-box-01__catch::before {
    width: 0.8em;
    height: 0.8em;
    top: 0.4em;
  }
  /* column */
  .column-block {
    margin-top: var(--s10);
    margin-bottom: var(--s10);
  }
  .column-card-01__link {
    min-height: inherit;
    padding: var(--s2) 2.8rem var(--s2) 0;
  }
  .column-card-01__title {
    font-size: 1.5rem;
  }
  .column-card-01 .icon-arrow-01 {
    right: 0;
  }
  .column-card-01:nth-child(n+2) {
    margin-top: -1px;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp lower

  */
  .main-area--lower h1 {
    font-size: 2.3rem;
    line-height: 1.33;
  }
  .main-area--lower h2 {
    padding: var(--s1-5) var(--s1-5) var(--s1-5) var(--s4);
    font-size: 2rem;
    line-height: 1.33;
  }
  .main-area--lower h2::before {
    width: var(--s2-5);
  }
  .main-area--lower h2 a {
    padding-right: var(--s3);
    background-size: var(--s2-5) var(--s2-5);
  }
  .main-area--lower h3 {
    padding: 0 0 var(--s1) var(--s1-5);
    font-size: 1.8rem;
    line-height: 1.33;
    margin: 3em 0 1em;
    
  }
  .main-area--lower h3 a {
    padding-right: var(--s3);
    background-size: var(--s2-5) var(--s2-5);
  }
  .main-area--lower h4 {
    padding-left: var(--s1-5);
    font-size: 1.6rem;
    line-height: 1.33;
  }
  .main-area--lower h4::before {
    width: 0.4rem;
  }
  .main-area--lower h4 a {
    padding-right: var(--s3);
    background-size: var(--s2-5) var(--s2-5);
  }
  .main-area--lower h5 {
    padding-left: var(--s3);
    font-size: 1.4rem;
    line-height: 1.33;
  }
  .main-area--lower h5::before {
    width: 1em;
    height: 1em;
    top: 0.15em;
  }
  .main-area--lower h5 a {
    padding-right: var(--s3);
    background-size: var(--s2-5) var(--s2-5);
  }
  .lower-mv {
    min-height: inherit;
    padding-top: 14rem;
    padding-bottom: var(--s4);
  }
}
