@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: 800;
  src:
    url("fonts/NS-800.woff2") format("woff2"),
    url("fonts/NS-800.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP Vertical";
  font-style: normal;
  font-weight: 400;
  src:
    url("fonts/NS-400-vertical.woff2") format("woff2"),
    url("fonts/NS-400-vertical.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP Vertical";
  font-style: normal;
  font-weight: 800;
  src:
    url("fonts/NS-800-vertical.woff2") format("woff2"),
    url("fonts/NS-800-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: #212121;
  --color02: #ffffff;
  --color03: #f9f6f1;
  --color04: #f3eee4;
  --color05: #ccba9f;
  --color06: #de622c;
  --color07: #333f69;
  --color08: #f4da86;
  --color09: #85cfb7;
}

@media screen and (max-width: 1148px) {
  :root {
    font-size: 0.8710801394vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: var(--color03);
  color: var(--color01);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  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.6rem;
  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: 2;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 800;
}

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

*/
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.is-inview {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translate(0, var(--s5));
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in-up.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in-left {
  opacity: 0;
  transform: translate(var(--s8), 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in-left.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in-right {
  opacity: 0;
  transform: translate(calc(var(--s8) * -1), 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-in-right.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

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

    layout center

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

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

    layout stack

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

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

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

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

    layout cluster

*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--s2-5);
}
.l-cluster--narrow {
  gap: var(--s1-5);
}

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

    layout grid

*/
.l-grid {
  --minimum: calc((100% - var(--s2-5)) / 2);
  display: grid;
  grid-gap: var(--s2-5) var(--s2-5);
}
.l-grid--search {
  --minimum: 50%;
  grid-gap: 0;
}
.l-grid--result {
  --minimum: calc((100% - var(--s7)) / 2);
  grid-gap: var(--s4) var(--s7);
  margin-top: 5rem;
}
.l-grid--cases {
  --minimum: calc((100% - var(--s6)) / 2);
  grid-gap: var(--s6);
}

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

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

    layout column

*/
.l-column-01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column-01__side {
  width: 18rem;
  flex-shrink: 0;
}
.l-column-01__main {
  flex: 1;
}

.l-column-02 {
  display: flex;
  margin-bottom: var(--s5);
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column-02__side {
  width: 43.4rem;
}
.l-column-02__main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
}

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

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

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

    layout grid areas

*/
.l-grid-areas-01 {
  display: grid;
  grid-template-areas: "logo menu" "disclaimer menu" "nocopy nocopy";
  grid-template-columns: 31.2rem 1fr;
  grid-template-rows: auto 1fr auto;
  grid-gap: 0 var(--s8);
}
.l-grid-areas-01__cell-01 {
  grid-area: logo;
}
.l-grid-areas-01__cell-02 {
  grid-area: menu;
}
.l-grid-areas-01__cell-03 {
  grid-area: disclaimer;
}
.l-grid-areas-01__cell-04 {
  grid-area: nocopy;
}

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

.l-grid-areas-03 {
  display: grid;
  grid-template-areas: "title photo" "text-area photo";
  grid-template-columns: 1fr 40rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) var(--s4);
}
.l-grid-areas-03__cell-01 {
  grid-area: photo;
}
.l-grid-areas-03__cell-02 {
  grid-area: title;
}
.l-grid-areas-03__cell-03 {
  grid-area: text-area;
}

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

    layout btn

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

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

    layout header

*/
.l-header-01 {
  display: flex;
  justify-content: space-between;
}
.l-header-01--lower {
  justify-content: flex-end;
}
.l-header-01__cell-01 {
  width: 35%;
}
.l-header-01__cell-02 {
  width: 30%;
}
.l-header-01__cell-03 {
  width: 30%;
}

.l-header-02 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 var(--s7);
}

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

    list

*/
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.75;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  background: var(--color09);
  border-radius: 100%;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area .subList {
  margin: var(--s2) 0;
}
.main-area ul:not([class]) {
  margin: var(--s3) 0;
}

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

    background

*/
.bg-01 {
  background-color: var(--color03);
  border-radius: 0 24rem 24rem 0;
}

.bg-02 {
  background-color: var(--color04);
  border-radius: 24rem 0 0 24rem;
  position: relative;
}
.bg-02::before {
  content: "";
  width: 50vw;
  height: calc(100% + 48rem);
  background-color: var(--color04);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  transform: translate(0, -50%);
}

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

    btn

*/
.btn-internal,
.btn-web,
.btn-mail {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a,
.btn-web a,
.btn-mail a {
  width: 36.4rem;
  height: 100%;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s1) var(--s6);
  border-radius: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color02);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.4s;
}
.btn-internal--small,
.btn-web--small,
.btn-mail--small {
  margin: var(--s3) auto;
}
.btn-internal--small a,
.btn-web--small a,
.btn-mail--small a {
  width: 28rem;
  min-height: var(--s7);
}

.btn-internal a {
  background: var(--color07) url("img/arrow-01-white-right.svg") no-repeat center right var(--s3) / var(--s2) var(--s2);
}

@media (hover: hover) {
  .btn-internal a:hover {
    background-color: #4c63b2;
  }
}
.btn-web a {
  background: var(--color06) url("img/icon-window.png") no-repeat center right var(--s3) / var(--s2) var(--s1-5);
}

@media (hover: hover) {
  .btn-web a:hover {
    background-color: #f5763f;
  }
}
.btn-mail a {
  background: var(--color08) url("img/icon-mail.svg") no-repeat center right var(--s3) / 1.8rem 1.4rem;
  color: var(--color07);
}

@media (hover: hover) {
  .btn-mail a:hover {
    background-color: #ffe89f;
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0 var(--s4) 0 0;
  background: url("img/arrow-02-blue-right.svg") no-repeat center right/2.2rem 2.2rem;
  display: inline-block;
  color: var(--color07);
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

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

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

    eye catch

*/
.eye-catch-01 {
  margin: var(--s3) 0;
  border-radius: var(--s2-5);
  overflow: hidden;
}

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

    table

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

th,
td {
  padding: var(--s1) var(--s2);
  border-right: solid 1px #252b3d;
  border-bottom: solid 1px #252b3d;
  line-height: 1.75;
  word-break: break-all;
}

th {
  background: var(--color05);
  text-align: center;
  font-weight: 400;
}

td {
  background: var(--color02);
  text-align: center;
}

tbody th {
  background: var(--color05);
}

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

    caption

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

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

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

    catch

*/
.catch-01 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.75;
}

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

    text

*/
.marker {
  background: linear-gradient(transparent 70%, #b3dece 70%);
  font-weight: 800;
}

.txt_bold {
  color: var(--color06);
  font-weight: 800;
}

.text-note {
  color: var(--s7);
  font-size: 1.3rem;
  line-height: 1.5;
}

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

  subgrid card

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

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

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

    float wrap

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

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

    pankuzu

*/
.pankuzu-wrapper {
  position: relative;
  z-index: 1;
}
.pankuzu-wrapper::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color02);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}

#pankuzu {
  width: 100%;
  padding: var(--s2) 0;
  color: var(--color01);
  font-size: 1.4rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

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

    header

*/
.header-area {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
}
.header-area--lower {
  position: static;
}

.header-main {
  padding: var(--s2) var(--s3);
}

.header-logo {
  width: 30.6rem;
}
.header-logo--lower {
  width: 22.6rem;
  margin: 0 auto;
}
.header-logo--fixed {
  width: 18rem;
  margin-right: auto;
}
.header-logo__link {
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .header-logo__link:hover {
    opacity: 0.5;
  }
}
.header-site-name {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: right;
}
.header-site-name__link {
  text-decoration: none;
}

@media (hover: hover) {
  .header-site-name__link:hover {
    opacity: 0.5;
  }
}
.header-sponsored {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: right;
}

.header-fixed {
  width: 100%;
  padding: var(--s2) var(--s3);
  /* background: var(--color03); */
  border-radius: 0 0 var(--s1-5) var(--s1-5);
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.header-fixed.is-show {
  opacity: 1;
  visibility: visible;
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s7);
}
.header-menu__item {
  font-size: 2rem;
  font-weight: 800;
}
.header-menu__link {
  display: block;
  color: var(--color07);
  text-decoration: none;
}

@media (hover: hover) {
  .header-menu__link:hover {
    opacity: 0.5;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: var(--s8);
  height: var(--s8);
  background: var(--color07);
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 200;
  transition: background-color 0.4s;
}
.gnavi-btn span {
  width: var(--s3);
  height: 0.3rem;
  display: inline-block;
  background: var(--color02);
  border-radius: 10rem;
  position: absolute;
  left: var(--s2-5);
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.3rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.1rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.9rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

@media (hover: hover) {
  .gnavi-btn:hover {
    background-color: #4c63b2;
  }
}
.gnavi-area {
  width: 100%;
  max-width: 55rem;
  height: 100vh;
  padding: 11rem 0;
  background: var(--color02);
  border: 0.3rem solid var(--color07);
  border-right: none;
  border-radius: var(--s6) 0 0 var(--s6);
  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-logo {
  width: 31rem;
  margin: 0 auto var(--s6);
}

.gnavi-box {
  max-width: 35rem;
  margin: 0 auto;
}
.gnavi-box__title {
  padding: var(--s1-5) var(--s4) var(--s1-5) 0;
  border-bottom: 1px solid var(--color07);
  display: block;
  color: var(--color07);
  font-weight: 800;
  line-height: 1.75;
  cursor: pointer;
  position: relative;
}
.gnavi-box__title .toggle-icon {
  position: absolute;
  top: 50%;
  right: var(--s1);
  transform: translate(0, -50%);
}
.gnavi-box + .gnavi-box {
  margin-top: var(--s2);
}

.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: var(--s1-5) var(--s4) var(--s1-5) 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right var(--s1) / 1.7rem auto;
  display: block;
  color: var(--color07);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.75;
  text-decoration: none;
}

@media (hover: hover) {
  .gnavi-menu__link:hover,
  .gnavi-menu-sub__link:hover {
    color: var(--color07);
    opacity: 0.5;
  }
}
/*
---------------------------------------------

    main

*/
.main-area {
  padding-bottom: var(--s6);
  overflow: clip;
  position: relative;
}

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

    footer

*/
.footer-area {
  padding: var(--s10) 0 0;
  background: var(--color07);
  border-radius: var(--s6) var(--s6) 0 0;
  color: var(--color02);
}

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

.footer-bottom {
  padding: var(--s3) var(--s5);
  background: rgba(255, 255, 255, 0.2);
  color: var(--color02);
}
.footer-bottom__inner {
  position: relative;
}

.footer-logo {
  width: 25.7rem;
  margin: 0 auto var(--s4);
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .footer-logo__link:hover {
    opacity: 0.5;
  }
}
.footer-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s3);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--color02);
  line-height: 1.75;
}
.footer-menu-title__link {
  padding: 0 var(--s4) 0 0;
  background: url("img/arrow-01-white-right.svg") no-repeat center right/var(--s2) auto;
  display: inline-block;
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    color: var(--color02);
    opacity: 0.5;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s10);
}
.footer-menu__item {
  width: calc((100% - var(--s10)) / 2);
  line-height: 1.75;
}
.footer-menu__link {
  padding: 0 var(--s4) 0 0;
  background: url("img/arrow-01-white-right.svg") no-repeat center right/var(--s2) auto;
  display: inline-block;
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    color: var(--color02);
    opacity: 0.5;
  }
}
.footer-menu-sub {
  margin-top: var(--s2);
}
.footer-menu-sub__item {
  line-height: 1.75;
}
.footer-menu-sub__item + .footer-menu-sub__item {
  margin-top: var(--s2);
}
.footer-menu-sub__link {
  padding: 0 0 0 1em;
  display: block;
  color: var(--color02);
  text-decoration: none;
  position: relative;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    color: var(--color02);
    opacity: 0.5;
  }
}
.footer-disclaimer {
  font-size: 1.4rem;
  line-height: 1.75;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s10) 0 var(--s2);
  font-size: 1.4rem;
  text-align: center;
}

.footer-copyright {
  width: 80%;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
.footer-copyright__link {
  color: var(--color02);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-copyright__link:hover {
    color: var(--color02);
    text-decoration: underline;
  }
}
.footer-sitemap {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.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);
  margin-top: var(--s6);
  border-radius: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: sticky;
  left: calc(50vw + 85.8rem);
  bottom: var(--s6);
  z-index: 10;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.page-top__link {
  width: 100%;
  height: 100%;
  display: block;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.5;
  }
}
.page-banner-01 {
  width: var(--s10);
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 11;
  transform: translate(0, -50%);
}
.page-banner-01__link {
  width: 100%;
  padding: var(--s3) 0 var(--s6);
  background: var(--color06) url("img/icon-window.png") no-repeat center bottom var(--s4) / var(--s2) var(--s1-5);
  border-radius: var(--s5) 0 0 var(--s5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color02);
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Noto Sans JP Vertical", sans-serif;
  text-decoration: none;
  text-orientation: upright;
  writing-mode: vertical-rl;
  letter-spacing: 0.25em;
  transition: background-color 0.4s;
}
.page-banner-01.js-scroll-show {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.page-banner-01.js-scroll-show.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .page-banner-01.js-scroll-show.is-keep-show-pc {
    opacity: 1;
    visibility: visible;
  }
}
@media (hover: hover) {
  .page-banner-01__link:hover {
    background-color: #f5763f;
    color: var(--color02);
  }
}
.page-banner-02 {
  display: none;
}

.page-date {
  margin: 1em 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

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

    section

*/
.section-title-01,
.section-title-02 {
  color: var(--color07);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
}
.section-title-01::before,
.section-title-02::before {
  content: "";
  position: absolute;
}
.section-title-01__link,
.section-title-02__link {
  padding-left: var(--s5);
  padding-right: var(--s5);
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/2.2rem auto;
  display: inline-block;
  color: var(--color07);
  text-decoration: none;
}
.section-title-01__small,
.section-title-02__small {
  font-size: 3rem;
}
.section-title-01--label-question,
.section-title-02--label-question {
  padding-top: var(--s10);
}
.section-title-01--label-question::before,
.section-title-02--label-question::before {
  width: 14.1rem;
  height: 6.7rem;
  background: url("img/label-question.svg") no-repeat center/contain;
  top: 0;
  left: calc(var(--s4) * -1);
}
.section-title-01--label-check,
.section-title-02--label-check {
  padding-top: 10rem;
}
.section-title-01--label-check::before,
.section-title-02--label-check::before {
  width: 19.8rem;
  height: 14.2rem;
  background: url("img/label-check.svg") no-repeat center/contain;
  top: 0;
  left: calc(var(--s7) * -1);
}
.section-title-01--label-qa,
.section-title-02--label-qa {
  padding-top: 8.5rem;
}
.section-title-01--label-qa::before,
.section-title-02--label-qa::before {
  width: 18.2rem;
  height: 8.5rem;
  background: url("img/label-qa.svg") no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.section-title-01--label-cases,
.section-title-02--label-cases {
  padding-top: 9.6rem;
}
.section-title-01--label-cases::before,
.section-title-02--label-cases::before {
  width: 15.3rem;
  height: 8.3rem;
  background: url("img/label-cases.svg") no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (hover: hover) {
  .section-title-01__link:hover,
  .section-title-02__link:hover {
    color: var(--color07);
    opacity: 0.5;
  }
}
.section-title-02 {
  text-align: center;
}

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

    index box

*/
.index-box-01 {
  max-width: 90rem;
  margin: var(--s10) auto;
  padding: 0 var(--s3);
  border-top: 0.3rem solid var(--color07);
  border-bottom: 0.3rem solid var(--color07);
  position: relative;
  z-index: 1;
  background: var(--color03);
}
.index-box-01__label {
  padding: var(--s3) 0;
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
}
.index-box-01 .chapter {
  counter-reset: number;
}
.index-box-01 .chapter-h {
  font-weight: 800;
  line-height: 1.75;
  position: relative;
}
.index-box-01 .chapter-h > a {
  display: block;
  color: var(--color07);
  text-decoration: none;
}
.index-box-01 .chapter-h:first-child {
  margin-top: 0 !important;
}
.index-box-01 .chapter-h-two {
  margin-top: 1em;
  counter-increment: number;
}
.index-box-01 .chapter-h-two > a {
  display: flex;
  gap: 0 var(--s2-5);
}
.index-box-01 .chapter-h-two > a::before {
  content: counter(number, decimal-leading-zero);
  flex-shrink: 0;
  color: var(--color06);
}
.index-box-01 .chapter-h-three {
  margin-top: 0.5em;
  margin-left: var(--s5);
  font-size: 1.4rem;
}
.index-box-01 .chapter-h-three::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: var(--color07);
  position: absolute;
  top: 0.8em;
  left: 0;
}
.index-box-01 .chapter-h-three > a {
  padding-left: var(--s3);
}

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

    qa

*/
.qa-box-01 {
  margin: var(--s10) 0;
}
.qa-box-01__q {
  padding: var(--s2-5) var(--s2-5) var(--s2-5) var(--s9);
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.qa-box-01__q::before {
  content: "";
  width: var(--s6);
  height: var(--s6);
  background: var(--color09) url("img/text-en-q-white.svg") no-repeat center/var(--s2) auto;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(0, -50%);
}
.qa-box-01__q::after {
  content: "";
  width: calc(100% - var(--s2-5));
  height: 100%;
  background: var(--color04);
  border-radius: var(--s2-5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.qa-box-01__a {
  padding-left: var(--s9);
  position: relative;
}
.qa-box-01__a::before {
  content: "";
  width: var(--s6);
  height: var(--s6);
  background: var(--color07) url("img/text-en-a.svg") no-repeat center/var(--s2) auto;
  border-radius: 100%;
  position: absolute;
  top: calc(var(--s-5) * -1);
  left: 0;
}
.qa-box-01__q + .qa-box-01__a {
  margin-top: var(--s3);
}
.qa-box-01__em-01 {
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.75;
}

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

    summary

*/
.summary-box-01 {
  max-width: 103rem;
  margin: var(--s10) auto;
  border-radius: var(--s2-5);
  overflow: hidden;
}
.summary-box-01__header {
  padding: var(--s2-5) var(--s6);
  background: var(--color09);
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.75;
  text-align: center;
}
.summary-box-01__content {
  padding: var(--s5) var(--s6);
  background: var(--color02);
}

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

    comment

*/
.comment-box-01 {
  margin: var(--s10) 0;
  padding-left: 17.8rem;
  position: relative;
}
.comment-box-01::before {
  content: "";
  width: 12.9rem;
  height: 14.5rem;
  background: url("img/za-nac-00001107_comment.png") no-repeat center bottom/contain;
  position: absolute;
  left: var(--s1-5);
  bottom: 0;
  z-index: 1;
}
.comment-box-01__header {
  border-radius: var(--s2-5) var(--s2-5) 0 0;
  padding: var(--s2-5) var(--s2-5) var(--s2-5) var(--s6);
  background: var(--color07);
  color: var(--color02);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.75;
  position: relative;
}
.comment-box-01__header::before {
  content: "";
  width: 0.3rem;
  height: calc(100% - var(--s5));
  background: var(--color06);
  position: absolute;
  top: 50%;
  left: var(--s4);
  transform: translate(0, -50%);
}
.comment-box-01__content {
  padding: var(--s2-5) var(--s3);
  border-radius: 0 0 var(--s2-5) 0;
  background: var(--color02);
  border: 0.3rem solid var(--color07);
  border-top: none;
}

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

    interview

*/
.interview-box-01 {
  margin: var(--s10) 0;
  padding: var(--s6);
  position: relative;
  z-index: 1;
}
.interview-box-01::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color02);
  border-radius: var(--s2-5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.interview-box-01__em-01 {
  margin: var(--s4) 0 var(--s2);
  padding: var(--s1-5) var(--s1-5) var(--s1-5) var(--s3);
  background: var(--color04);
  border-radius: var(--s1-5);
  overflow: hidden;
  color: var(--color07);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.75;
  position: relative;
}
.interview-box-01__em-01::before {
  content: "";
  width: var(--s2);
  height: 100%;
  background: var(--color07);
  position: absolute;
  top: 0;
  left: 0;
}
.interview-box-01__em-01:first-child {
  margin-top: 0;
}
.interview-box-01__em-02 {
  margin: var(--s2) 0;
  padding-left: var(--s4);
  color: var(--color06);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.75;
  position: relative;
}
.interview-box-01__em-02::before {
  content: "";
  width: var(--s2);
  height: 0.3rem;
  background: var(--color06);
  border-radius: 10rem;
  position: absolute;
  top: 0.8em;
  left: var(--s1);
}
.interview-box-01__em-02:first-child {
  margin-top: 0;
}

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

    profile

*/
.profile-box-01__thumb {
  width: 14rem;
  height: 14rem;
  margin: 0 auto;
  border-radius: 100%;
  overflow: hidden;
}
.profile-box-01__thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-box-01__data {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.75;
}
.profile-box-01__thumb + .profile-box-01__data {
  margin-top: var(--s2);
}

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

    sponsored

*/
.sponsored-box-01 {
  margin-top: 18rem;
  margin-bottom: var(--s10);
}
.mv-block + .sponsored-box-01 {
  margin-top: 0;
  margin-bottom: 0;
}
.sponsored-box-01__inner {
  padding-left: 12rem;
  position: relative;
  z-index: 1;
}
.sponsored-box-01__inner::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color02);
  border: 0.5rem solid var(--color07);
  border-radius: var(--s4) 0 0 var(--s4);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sponsored-box-01__label {
  width: var(--s8);
  height: 100%;
  padding: var(--s5) var(--s1);
  background: var(--color07);
  border-radius: 2.5rem 0 0 2.5rem;
  display: flex;
  align-items: center;
  color: var(--color02);
  font-size: 2.5rem;
  font-family: "Noto Sans JP Vertical", sans-serif;
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
.sponsored-box-01__content {
  padding: var(--s5) 0;
  position: relative;
}
.sponsored-box-01__data-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sponsored-box-01__footer {
  padding: var(--s5) 0;
  border-top: 1px solid var(--color07);
}

.ver2 .sponsored-box-01__footer{
  border:none;
  padding-top:0;
}
.sponsored-box-01 .btn-link:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.sponsored-box-01__em-01 {
  color: var(--color06);
  font-size: 4.9rem;
  font-weight: 800;
}

.sponsored-box-01 .caption{
  text-align:left;
  font-size:1.4rem;
  color: var(--color07);
}
.sponsored-box-01__em-01__number {
  font-size: 8.9rem;
}
.sponsored-box-01__em-02 {
  padding: var(--s2-5) var(--s5) var(--s2-5) var(--s2);
  background: url("img/sponsored-bg-01.svg") no-repeat center right/100% 100%;
  border-radius: var(--s1);
  color: var(--color02);
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  overflow: hidden;
}

.sponsored-profile-01 {
  padding-right: 22rem;
  position: relative;
}
.sponsored-profile-01__label {
  height: 2.2rem;
  margin: var(--s3) 0;
}
.sponsored-profile-01__thumb {
  width: 16rem;
  height: 16rem;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.sponsored-profile-01__illust {
  width: 9rem;
  height: 9rem;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 6.8rem;
  right: 11.5rem;
  z-index: 1;
}
.sponsored-profile-01__company {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
.sponsored-profile-01__name {
  font-size: 2.8rem;
  line-height: 1.5;
}

.sponsored-summary-01 {
  margin-top: var(--s5);
  padding: var(--s3) var(--s4);
  background: var(--color03);
  border-radius: var(--s1-5);
  display: flex;
  align-items: center;
  gap: var(--s2) var(--s3);
}
.sponsored-summary-01__label {
  padding-left: var(--s3);
  flex-shrink: 0;
  font-weight: 800;
  position: relative;
}
.sponsored-summary-01__label::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: var(--color09);
  border-radius: 100%;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.l-grid-areas-02 .sponsored-summary-01 {
  margin-top: 0;
  padding: var(--s3);
  flex-direction: column;
  align-items: flex-start;
}

.sponsored-tel-01 {
  padding-left: var(--s5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  color: var(--color07);
  position: relative;
}
.sponsored-tel-01::before {
  content: "";
  width: var(--s5);
  height: var(--s5);
  background: var(--color07) url("img/icon-tel-white.png") no-repeat center/1.4rem auto;
  border-radius: 100%;
}
.sponsored-tel-01__label {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
}
.sponsored-tel-01__number {
  font-size: 3.3rem;
  font-weight: 800;
}
.sponsored-tel-01__note {
  font-size: 1.4rem;
  line-height: 1.5;
}

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

    relations

*/
.relations-box-01 {
  margin: var(--s10) 0;
  padding: var(--s3) 0;
  border-top: 0.3rem solid var(--color07);
  border-bottom: 0.3rem solid var(--color07);
  position: relative;
  z-index: 1;
}
.relations-box-01__label {
  margin-bottom: var(--s4);
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
}
.relations-box-01 ul:not([class]) {
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) 12rem;
}
.relations-box-01 ul:not([class]) li {
  width: calc((100% - 12rem) / 2);
  padding: 0;
  font-weight: 800;
}
.relations-box-01 ul:not([class]) li::before {
  display: none;
}
.relations-box-01 ul:not([class]) li + li {
  margin-top: 0;
}
.relations-box-01 ul:not([class]) a {
  height: 100%;
  padding-right: var(--s4);
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/var(--s2-5) var(--s2-5);
  display: flex;
  align-items: center;
  color: var(--color07);
  text-decoration: none;
}

@media (hover: hover) {
  .relations-box-01 ul:not([class]) a:hover {
    opacity: 0.5;
  }
}
.related-article01-frame {
  margin: var(--s10) 0;
  padding: var(--s3) 0;
  border-top: 0.3rem solid var(--color07);
  border-bottom: 0.3rem solid var(--color07);
  position: relative;
  z-index: 1;
}

.related-article01-title {
  margin-bottom: var(--s4);
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
}

.related-article01-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) 12rem;
}
.related-article01-list > li {
  width: calc((100% - 12rem) / 2);
  padding: 0;
  font-weight: 800;
}
.related-article01-list > li::before {
  display: none;
}
.related-article01-list > li + li {
  margin-top: 0;
}
.related-article01-list a {
  padding-right: var(--s4);
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/var(--s2-5) var(--s2-5);
  display: block;
  color: var(--color07);
  text-decoration: none;
}

.related-article01-list .relations-box__pic {display: none;}

.relations-box {
  display: block;
  text-decoration: none;
}
.relations-box .catch-01 {
  font-weight: 800;
}

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

    search

*/
.search-block-01 {
  margin: var(--s10) 0;
  padding: var(--s4) var(--s4) var(--s6);
  background: var(--color04);
  border-radius: var(--s4);
}
.search-block-01__title {
  margin-bottom: var(--s4);
  color: var(--color07);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}

.search-box-01__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
}
.search-box-01__row + .search-box-01__row {
  margin-top: var(--s4);
}
.search-box-01__label {
  width: calc(5em + var(--s2-5));
  padding-left: var(--s2-5);
  flex-shrink: 0;
  color: var(--color07);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.75;
  position: relative;
}
.search-box-01__label::before {
  content: "";
  width: 0.5rem;
  height: 100%;
  background: var(--color09);
  position: absolute;
  top: 0;
  left: 0;
}

.search-label-01 {
  position: relative;
}
.search-label-01 input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.search-label-01__text {
  padding: var(--s-5) var(--s4);
  background: var(--color02);
  border: 1px solid var(--color07);
  border-radius: 10rem;
  display: inline-block;
  color: var(--color07);
  line-height: 1.5;
  cursor: pointer;
}
input:checked + .search-label-01__text {
  background: var(--color07);
  color: var(--color02);
}

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

    result

*/
.result-card-01 {
  height: 100%;
  padding: 0 var(--s4) var(--s3);
  background: var(--color02);
  border-radius: var(--s4);
  color: var(--color07);
  text-decoration: none;
  overflow: hidden;
}
.result-card-01__thumb {
  width: calc(100% + var(--s8));
  margin-left: calc(var(--s4) * -1);
  margin-right: calc(var(--s4) * -1);
  aspect-ratio: 522/276;
  overflow: hidden;
}
.result-card-01__thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.result-card-01__catch {
  padding-left: var(--s3);
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
  text-decoration: none;
}
.result-card-01__catch::before {
  content: "";
  width: 0.3rem;
  height: 100%;
  background: var(--color06);
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
}
.result-card-01__tag {
  min-width: var(--s12);
  padding: var(--s-5) var(--s3);
  background: var(--color07);
  border-radius: 10rem;
  color: var(--color02);
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
}

@media (hover: hover) {
  .result-card-01:hover {
    color: var(--color07);
  }
  .result-card-01:hover .result-card-01__thumb__img {
    transform: scale(1.1);
  }
}
/*
---------------------------------------------

    toggle sp

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

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

    toggle

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

.toggle-icon {
  position: relative;
  cursor: pointer;
}
.toggle-icon::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: var(--color07);
  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: var(--s2);
  background: var(--color07);
  border-radius: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translate(50%, -50%);
  transition: transform 0.3s;
}
.is-open .toggle-icon::after {
  transform: translate(50%, -50%) rotate(90deg);
}

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

    more

*/
.more-btn {
  width: 80%;
  min-height: var(--s8);
  max-width: 41rem;
  margin: 0 auto;
  padding: var(--s1-5) var(--s5);
  background: var(--color07);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color02);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background-color 0.4s;
}
.more-btn::before {
  content: "";
  width: var(--s1-5);
  height: 0.2rem;
  background: var(--color02);
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  right: var(--s2-5);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s1-5);
  background: var(--color02);
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translate(50%, -50%);
  transition: transform 0.3s;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

@media (hover: hover) {
  .more-btn:hover {
    background-color: #4c63b2;
    color: var(--color02);
  }
}
.more-content {
  display: none;
}

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

    more gradient

*/
.more-gradient-btn {
  width: 14.7rem;
  padding: var(--s1);
  background: var(--color07);
  border-radius: 10rem;
  color: var(--color02);
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translate(-50%, 50%);
  transition: background-color 0.4s;
}
.more-gradient-btn::before {
  content: "";
  width: var(--s1-5);
  height: 1px;
  background: var(--color02);
  position: absolute;
  top: 50%;
  right: var(--s1-5);
  transform: translate(0, -50%);
}
.more-gradient-btn::after {
  content: "";
  width: 1px;
  height: var(--s1-5);
  background: var(--color02);
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translate(50%, -50%);
  transition: transform 0.3s;
}
.more-gradient-btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

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

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

    top

*/
.mv-block {
  width: 100%;
  background-image: url("img/za-nac-00001106.png"), url("img/mv-bg-01.png"), url("img/za-nac-00001109.png");
  background-repeat: no-repeat;
  background-position: bottom 5.6rem left calc(50vw + 32rem),
    top center,
    top 17rem right calc(51vw + 32rem);
  background-size: 56.5rem auto,
    94.8rem auto,
    52.2rem auto;
}

@media screen and (max-width: 1366px){
  .mv-block{
    background-position: bottom 11.6rem left calc(50vw + 21rem),
    top center,
    top 17rem right calc(50vw + 35rem);
    background-size: 49.5rem auto,
    94.8rem auto,
    39.2rem auto;
    }
  
}
.mv-block__inner {
  padding-top: 8vw;
  padding-bottom: var(--s3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mv-block__inner .text-note {
  width: 100%;
  font-size: 1.3rem;
}

.mv-title {
  margin: 0 auto 18rem;
  color: var(--color07);
  font-size: 6.5rem;
  font-family: "Noto Sans JP Vertical", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.mv-title__em-01 {
  min-height: 12rem;
  margin-top: 0.2em;
  display: inline-block;
  color: var(--color02);
  font-size: 9.5rem;
  position: relative;
  z-index: 1;
}
.mv-title__em-01::after {
  content: "";
  width: 12rem;
  height: 12rem;
  background: var(--color06);
  border-radius: var(--s1-5);
  position: absolute;
  top: -0.13em;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}
.mv-title__em-01 + .mv-title__em-01 {
  margin-top: 0.15em;
}
.mv-title__em-02 {
  display: inline-block;
  color: var(--color06);
  transform: translate(0.45em, 0);
}
.mv-title__em-03 {
  min-height: 12rem;
  display: inline-block;
  font-size: 9.5rem;
  position: relative;
  z-index: 1;
}
.mv-title__em-03::after {
  content: "";
  width: 12rem;
  height: 12rem;
  background: var(--color09);
  border-radius: var(--s1-5);
  position: absolute;
  top: -0.13em;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}
.mv-title__em-03 + .mv-title__em-03 {
  margin-top: 0.15em;
}

.index-block-01 {
  padding: 14.4rem 0;
}
.index-block-01__title {
  margin-bottom: var(--s4);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
}

.index-list {
  display: flex;
  gap: var(--s2-5);
  counter-reset: number;
}
.index-list__item {
  width: calc((100% - var(--s2-5) * 5) / 4);
  background: var(--color02);
  border-radius: var(--s4);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  counter-increment: number;
}
.index-list__link {
  width: 100%;
  height: 100%;
  padding: var(--s6) var(--s1);
  background: url("img/arrow-01-blue-down.svg") no-repeat center bottom var(--s2) / 2.6rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color07);
  text-decoration: none;
  position: relative;
}
.index-list__link::before {
  content: "";
  width: 2.8rem;
  height: 1.8rem;
  background: no-repeat center center/contain;
  position: absolute;
  top: var(--s2-5);
  left: 50%;
  transform: translate(-50%, 0);
}
.index-list__item:nth-child(1) .index-list__link::before {
  background-image: url("img/number-01.svg");
}
.index-list__item:nth-child(2) .index-list__link::before {
  background-image: url("img/number-02.svg");
}
.index-list__item:nth-child(3) .index-list__link::before {
  background-image: url("img/number-03.svg");
}
.index-list__item:nth-child(4) .index-list__link::before {
  background-image: url("img/number-04.svg");
}
.index-list__item:nth-child(5) .index-list__link::before {
  background-image: url("img/number-05.svg");
}
.index-list__label {
  margin-bottom: var(--s1);
  padding: 0 var(--s2-5);
  background: var(--color09);
  border-radius: 10rem;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.index-list__small {
  font-size: 1.6rem;
}

@media (hover: hover) {
  .index-list__link:hover {
    color: var(--color07);
    opacity: 0.5;
  }
}
.question-block-01__inner {
  padding-top: 14.4rem;
  padding-bottom: 14.4rem;
  position: relative;
  z-index: 1;
}
.question-block-01__inner::before {
  content: "";
  width: calc(50vw + 14rem);
  height: 100%;
  background: url("img/za-nac-00001108.png") no-repeat top right/95.8rem auto;
  border-radius: 24rem 0 0 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: calc(50% - 14rem);
  z-index: -1;
}

.question-box-01 + .question-box-01 {
  margin-top: var(--s12);
}
.question-box-01__header {
  min-height: 10rem;
  margin-bottom: var(--s4);
  padding: var(--s2) var(--s2) var(--s2) var(--s8);
  background: var(--color02);
  border-radius: 10rem 0 0 10rem;
  display: flex;
  align-items: center;
  gap: var(--s-5) var(--s2);
  position: relative;
}
.question-box-01__header::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: var(--color09);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: var(--s4);
  transform: translate(0, -50%);
}
.question-box-01__label {
  flex: 1;
  color: #63ae95;
  font-weight: 800;
  line-height: 1.5;
}
.question-box-01__title {
  width: 39rem;
  flex-shrink: 0;
  color: var(--color07);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.5;
}
.question-box-01__content {
  width: 45rem;
  margin-left: auto;
  padding: var(--s2-5);
  background: #f8f6f1;
  border-radius: var(--s4) var(--s4) var(--s4) 0;
  position: relative;
}
.question-box-01__content::before {
  content: "";
  width: 10.3rem;
  height: 11.5rem;
  background: url("img/za-nac-00001107_comment.png") no-repeat center center/contain;
  position: absolute;
  left: calc(var(--s10) * -1);
  bottom: 0;
  z-index: 2;
}
.question-box-01__content .btn-web {
  margin-bottom: 0;
}

.question-box-01-wrapper {
  padding-bottom: 15rem;
  position: relative;
  z-index: 1;
}
.question-box-01-wrapper::before {
  content: "";
  width: var(--s5);
  height: calc(100% - var(--s5));
  background: linear-gradient(to bottom, #f1ebe0 0%, #dbceba 100%);
  position: absolute;
  left: var(--s3);
  bottom: var(--s2);
  z-index: -1;
}
.question-box-01-wrapper::after {
  content: "";
  width: 0;
  height: 0;
  border-top: var(--s2) solid #dbceba;
  border-left: var(--s2-5) solid transparent;
  border-right: var(--s2-5) solid transparent;
  border-bottom: var(--s2) solid transparent;
  position: absolute;
  left: var(--s3);
  bottom: 0;
  z-index: -1;
  transform: translate(0, 50%);
}

.check-block-01__inner {
  padding-top: 16rem;
  padding-bottom: 14.4rem;
  position: relative;
  z-index: 1;
}
.check-block-01__inner::before {
  content: "";
  width: 92.8rem;
  height: 64.3rem;
  background: url("img/za-nac-00001110_sec02.png") no-repeat top center/contain;
  position: absolute;
  top: -20rem;
  right: -45rem;
  z-index: -1;
}

.check-box-01 {
  border-top: 1px solid var(--color07);
}
.check-box-01:first-child {
  border-top: none;
}
.check-box-01 + .check-box-01 {
  margin-top: var(--s10);
}
.check-box-01__title-wrapper {
  min-height: 14.4rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.check-box-01__title-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color07) no-repeat center right var(--s4) / 8.6rem auto;
  border-radius: 0 0 7rem 0;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: -1;
}
.check-box-01:nth-child(1) .check-box-01__title-wrapper::after {
  background-image: url("img/number-01-white.svg");
}
.check-box-01:nth-child(2) .check-box-01__title-wrapper::after {
  background-image: url("img/number-02-white.svg");
}
.check-box-01:nth-child(3) .check-box-01__title-wrapper::after {
  background-image: url("img/number-03-white.svg");
}
.check-box-01__title {
  padding: var(--s2) 12rem var(--s2) var(--s4);
  color: var(--color02);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
}
.check-box-01__title__em-01 {
  margin-right: var(--s1-5);
  display: inline-block;
  color: var(--color09);
  font-size: 4rem;
}
.check-box-01:nth-child(2) .check-box-01__title__em-01 {
  margin-left: var(--s1-5);
  margin-right: 0;
}
.check-box-01__content {
  font-size: 2rem;
}
.check-box-01__photo {
  margin-top: var(--s8);
}

.check-box-01-wrapper {
  margin-top: 10rem;
  padding-right: 10rem;
  padding-bottom: 10rem;
  position: relative;
  z-index: 1;
}
.check-box-01-wrapper::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color02);
  border-radius: 0 17.5rem 17.5rem 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.check-box-01-wrapper::after {
  content: "";
  width: 13.4rem;
  height: 6.3rem;
  background: url("img/arrow-03-orange-down.svg") no-repeat center center/contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translate(-50%, 50%);
}

.check-list-01__item {
  display: flex;
  gap: var(--s1);
  line-height: 1.5;
}
.check-list-01__item::before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 0.5rem;
  background: url("img/icon-check.svg") no-repeat center center/contain;
}
.check-list-01__item + .check-list-01__item {
  margin-top: 0.5em;
}

.check-summary-box-01 {
  width: calc(100% + var(--s12));
  margin-top: 12rem;
  position: relative;
}
.check-summary-box-01::before {
  content: "";
  width: 11rem;
  height: 11rem;
  background: var(--color09) url("img/text-en-advice.svg") no-repeat center center/auto 1.8rem;
  border-radius: 10rem 10rem 1rem 10rem;
  position: absolute;
  top: calc(var(--s5) * -1);
  left: calc(var(--s5) * -1);
  z-index: 1;
}
.check-summary-box-01__text {
  color: var(--color07);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.75;
}
.check-summary-box-01__content {
  padding: var(--s5) var(--s10);
  background: var(--color02);
  border: 0.3rem solid var(--color07);
  border-bottom: none;
  border-radius: var(--s4) var(--s4) 0 0;
}
.check-summary-box-01__footer {
  padding: var(--s3) var(--s10);
  background: var(--color07);
  border-radius: 0 0 var(--s4) var(--s4);
}
.check-summary-box-01__footer .l-btn-01 {
  margin: 0 auto;
}

.qa-block-01 {
  padding: 14.4rem 0 var(--s11);
}
.qa-block-01.bg-02::after {
  content: "";
  width: 100%;
  height: 24rem;
  background: var(--color04);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.qa-block-01__content {
  margin-top: var(--s4);
}
.qa-block-01 .more-content {
  margin-top: var(--s2-5);
}
.qa-block-01 .more-btn {
  margin-top: var(--s6);
}

.qa-card-01 {
  padding-bottom: var(--s9);
  background: var(--color02);
  border-radius: var(--s4);
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
.qa-card-01__title-wrapper {
  padding-top: var(--s2);
  display: flex;
  align-items: center;
}
.qa-card-01__title {
  width: 100%;
  margin: 0 auto;
  padding: var(--s2) var(--s3) var(--s2) var(--s8);
  color: var(--color07);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.qa-card-01__title::before {
  content: "";
  width: var(--s6);
  height: var(--s6);
  background: var(--color09) url("img/text-en-q.svg") no-repeat center/1.4rem auto;
  border-radius: 100% 100% 10% 100%;
  position: absolute;
  top: 50%;
  left: var(--s1-5);
  z-index: 1;
  transform: translate(0, -50%);
}
.qa-card-01__thumb {
  aspect-ratio: 354/186;
  overflow: hidden;
}
.qa-card-01__thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.qa-card-01__catch {
  padding: 0 var(--s2);
  display: flex;
  align-items: center;
  color: var(--color07);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}
.qa-card-01__text {
  padding: 0 var(--s2);
}
.qa-card-01__more {
  width: fit-content;
  margin: var(--s3) 0 0 auto;
  padding: var(--s2-5) var(--s10) var(--s2-5) var(--s5);
  background: var(--color07);
  border-radius: var(--s4) 0 0 0;
  color: var(--color02);
  position: absolute;
  right: 0;
  bottom: 0;
}
.qa-card-01__more::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url("img/arrow-02-white-right.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: var(--s4);
  transform: translate(0, -50%);
  transition: transform 0.4s ease;
}
.l-grid .qa-card-01__title {
  padding-left: var(--s12);
  padding-right: var(--s5);
}
.l-grid .qa-card-01__title::before {
  left: var(--s5);
}
.l-grid .qa-card-01__catch {
  padding-left: var(--s4);
  padding-right: var(--s4);
}
.l-grid .qa-card-01__text {
  padding-left: var(--s4);
  padding-right: var(--s4);
}
.l-grid .qa-card-01 .txt_bold {
  font-size: 3rem;
}

@media (hover: hover) {
  .qa-card-01:hover .qa-card-01__thumb__img {
    transform: scale(1.1);
  }
  .qa-card-01:hover .qa-card-01__more::after {
    transform: translate(25%, -50%);
  }
}
.cases-block-01 {
  padding: var(--s8) 0 14.4rem;
  background: linear-gradient(to bottom, var(--color04) 0%, var(--color04) 50%, var(--color03) 50%, var(--color03) 100%);
  position: relative;
}
.cases-block-01::before {
  content: "";
  width: 100%;
  min-width: 192rem;
  height: calc(100% - 44rem);
  background-image: url("img/bg-01-top.svg"), url("img/bg-01-bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 37rem;
  background-position:
    top center,
    bottom center;
  position: absolute;
  bottom: 20rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.cases-block-01::after {
  content: "";
  width: 100%;
  min-width: 192rem;
  height: calc(100% - 118rem);
  background: var(--color02);
  position: absolute;
  left: 50%;
  bottom: 57rem;
  transform: translate(-50%, 0);
}
.cases-block-01__header {
  margin: 0 0 21rem;
  padding: var(--s10) 0 10rem;
  position: relative;
  z-index: 1;
}
.cases-block-01__header::before {
  content: "";
  width: 60.3rem;
  height: 37rem;
  background: url("img/za-nac-00001107_case.png") no-repeat center bottom/contain;
  position: absolute;
  left: -36rem;
  bottom: 5px;
  z-index: 1;
}
.cases-block-01__header::after {
  content: "";
  width: calc(100vw + 20rem);
  height: 100%;
  background: var(--color02) url("img/za-nac-00001113.png") no-repeat right var(--s-5) bottom -1px/30rem auto;
  border: 0.5rem solid var(--color07);
  border-radius: var(--s6);
  box-sizing: border-box;
  box-shadow: var(--s6) var(--s6) 0 var(--color07);
  position: absolute;
  top: 0;
  right: -15rem;
  z-index: -1;
}
.cases-block-01__content {
  padding: var(--s5) 0 var(--s10);
  position: relative;
  z-index: 1;
}
.cases-block-01__content::before {
  content: "";
  width: 25rem;
  height: var(--s9);
  margin-bottom: calc(var(--s-5) * -1);
  background: var(--color03);
  border: 0.3rem solid var(--color07);
  border-bottom: none;
  border-radius: var(--s2-5) var(--s2-5) 0 0;
  box-sizing: border-box;
  /* box-shadow: 2.5rem -2.5rem 0 var(--color04); */
  position: absolute;
  top: 0.3rem;
  left: calc(var(--s10) * -1);
  z-index: -1;
  transform: translate(0, -100%);
}
.cases-block-01__content::after {
  content: "";
  width: calc(100% + var(--s10) * 2);
  height: 100%;
  background: var(--color03);
  border: 0.3rem solid var(--color07);
  border-radius: 0 var(--s2-5) var(--s2-5) var(--s2-5);
  box-sizing: border-box;
  box-shadow: 2.5rem 2.5rem 0 var(--color04);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, 0);
}

.cases-card-01 {
  padding: 3.6rem var(--s2) 0;
  text-decoration: none;
  position: relative;
}
.cases-card-01:not(.subgrid-card-02) {
  width: 100%;
  max-width: 95rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5.5rem;
  display: block;
}
.cases-card-01:not(.subgrid-card-02)::before {
  width: 11rem;
  height: 11rem;
  background-size: auto 1.8rem;
  left: calc(var(--s5) * -1);
}
.cases-card-01::before {
  content: "";
  width: var(--s9);
  height: var(--s9);
  background: var(--color09) url("img/text-en-check.svg") no-repeat center center/auto 1.2rem;
  border-radius: 10rem 10rem 1rem 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.cases-card-01__thumb {
  width: calc(100% + var(--s4));
  margin-left: calc(var(--s2) * -1);
  margin-right: calc(var(--s2) * -1);
  margin-bottom: var(--s2-5);
  border-radius: var(--s2-5);
  aspect-ratio: 534/281;
  overflow: hidden;
}
.cases-card-01__thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.cases-card-01__title {
  display: flex;
  align-items: center;
  color: var(--color06);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.5;
}
.cases-card-01__data {
  margin-top: var(--s1-5);
  margin-bottom: var(--s1-5);
  font-size: 1.5rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1em;
}
.cases-card-01__more {
  margin-top: var(--s3);
  padding-right: var(--s4);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: right;
  line-height: 1.5;
  position: relative;
}
.cases-card-01__more::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url("img/arrow-02-blue-right.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: transform 0.4s ease;
}
.cases-card-01 + .l-grid {
  margin-top: var(--s5);
}

@media (hover: hover) {
  .cases-card-01:hover .cases-card-01__thumb__img {
    transform: scale(1.1);
  }
  .cases-card-01:hover .cases-card-01__more::after {
    transform: translate(25%, -50%);
  }
}
.cases-card-01-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s10) var(--s4);
}

.message-block-01 {
  padding-top: 12.4rem;
  padding-bottom: var(--s10);
}
.message-block-01 .btn-link {
  margin-top: var(--s12);
  position: relative;
  z-index: 1;
}

.message-box-01 {
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}
.message-box-01::before {
  content: "";
  width: calc(100vw - var(--s9) * 2);
  min-width: 160rem;
  height: 100%;
  background: var(--color02);
  border-radius: var(--s4);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}
.message-box-01::after {
  content: "";
  width: calc(100vw - var(--s9) * 2);
  min-width: 160rem;
  height: 100%;
  background: var(--color04);
  border-radius: var(--s4);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, 0) rotate(4deg);
}
.message-box-01__thumb {
  width: 25rem;
  height: 25rem;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.message-box-01__illust {
  width: 15.7rem;
  height: 15.7rem;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -20rem;
  z-index: 1;
}
.message-box-01__title {
  margin: 0 auto var(--s8);
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color07);
  text-align: center;
  line-height: 1.75;
}
.message-box-01__title__img {
  height: 9.6rem;
}
.message-box-01__body {
  margin: 0 auto;
  color: var(--color07);
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
}
.message-box-01__body__img {
  max-width: 92rem;
}
.message-box-01__name {
  margin-top: var(--s10);
  text-align: right;
}
.message-box-01__name__img {
  height: 4rem;
}

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

    lower

*/
.main-area--lower h1 {
  margin: 2em 0 1em;
  color: var(--color07);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.5;
}
.main-area--lower h2 {
  margin: 3em 0 1em;
  padding: var(--s3) var(--s2-5) var(--s3) var(--s5);
  background: var(--color02);
  border-radius: var(--s2-5);
  overflow: hidden;
  color: var(--color07);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
}
.main-area--lower h2::before {
  content: "";
  width: var(--s2-5);
  height: 100%;
  background: var(--color09);
  position: absolute;
  top: 0;
  left: 0;
}
.main-area--lower h2 a {
  padding-right: var(--s4);
  background: url("img/arrow-01-blue-right.svg") no-repeat right center/var(--s3) var(--s3);
  display: block;
  color: var(--color07);
  text-decoration: none;
}
.main-area--lower h3 {
  min-height: 6.2rem;
  margin: 2.3em 0 1em;
  /* padding-left: var(--s2-5); */
  display: flex;
  align-items: center;
  color: var(--color07);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.main-area--lower h3::before {
  content: "";
  width: 8.2rem;
  height: 8.2rem;
  background: var(--color04);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: calc(var(--s3) * -1);
  z-index: -1;
  transform: translate(0, -50%);
}
.main-area--lower h3 a {
  padding-right: var(--s4);
  background: url("img/arrow-01-blue-right.svg") no-repeat right center/var(--s3) var(--s3);
  display: block;
  flex: 1;
  color: var(--color07);
  text-decoration: none;
}
.main-area--lower h4 {
  margin: 2em 0 1em;
  padding: 0 0 var(--s2-5) 0;
  border-bottom: 1px solid var(--color07);
  color: var(--color07);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
}
.main-area--lower h4::before {
  content: "";
  width: var(--s4);
  height: 0.5rem;
  background: var(--color06);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: translate(0, 50%);
}
.main-area--lower h4 a {
  padding-right: var(--s4);
  background: url("img/arrow-01-blue-right.svg") no-repeat right center/var(--s3) var(--s3);
  display: block;
  color: var(--color07);
  text-decoration: none;
}
.main-area--lower h5 {
  margin: 2em 0 1em;
  color: var(--color07);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}
.main-area--lower h5 a {
  padding-right: var(--s4);
  background: url("img/arrow-01-blue-right.svg") no-repeat right center/var(--s3) var(--s3);
  display: block;
  color: var(--color07);
  text-decoration: none;
}

@media (hover: hover) {
  h2 a:hover,
  h3 a:hover,
  h4 a:hover,
  h5 a:hover {
    opacity: 0.5;
  }
}
.lower-mv-block::after {
  content: "";
  width: 100vw;
  height: 55rem;
  background: var(--color04) url("img/za-nac-00001110_lowermv.png") no-repeat right calc(50% + 65rem) top 9rem/56.7rem auto;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, 0);
}
.lower-mv-block--with-eye-catch h1 {
  margin: 1em 0 0.5em;
  font-size: 3.6rem;
}

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

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }
  .sp_br {
    display: inline;
  }
  .pc_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

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

      sp layout stack

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

      sp layout cluster

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

      sp layout grid

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

      sp layout column

  */
  .l-column-01 {
    gap: var(--s4);
    justify-content: center;
  }
  .l-column-01__side {
    width: calc(100% - var(--s10));
  }
  .l-column-01__main {
    width: 100%;
  }
  .l-column-02__side {
    width: 100%;
  }
  .l-column-02__main {
    width: 100%;
  }
  .l-column-03__side {
    width: 100%;
  }
  .l-column-03__main {
    width: 100%;
  }
  .l-column-04 {
    flex-direction: column;
    align-items: center;
    gap: var(--s1);
  }
  .l-column-04__side {
    width: 11.5rem;
  }
  .l-column-04__main {
    width: 100%;
  }
  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas-01 {
    grid-template-areas: "logo" "menu" "disclaimer" "nocopy";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto 1fr;
  }
  .l-grid-areas-02 {
    grid-template-areas: "side-01" "main" "side-02";
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr;
    grid-gap: var(--s3);
  }
  .l-grid-areas-03 {
    grid-template-areas: "title" "photo" "text-area";
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr;
    grid-gap: var(--s3);
  }
  /*
  ---------------------------------------------

      sp layout scroll

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

      layout btn

  */
  .l-btn-01 {
    margin: var(--s3) 0;
    flex-direction: column;
    gap: var(--s3);
  }
  /*
  ---------------------------------------------

      layout header

  */
  .l-header-01--lower {
    justify-content: space-between;
  }
  .l-header-01__cell-01,
  .l-header-01__cell-02 {
    width: 12rem;
    flex-shrink: 0;
    display: none;
  }
  .l-header-01__cell-03 {
    width: inherit;
    flex: 1;
  }
  .l-header-02 {
    gap: 0 var(--s2);
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      background

  */
  .bg-01 {
    border-radius: 0 var(--s6) var(--s6) 0;
  }
  .bg-02 {
    border-radius: var(--s6) 0 0 var(--s6);
  }
  .bg-02::before {
    height: calc(100% + var(--s12));
  }
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal,
  .btn-web,
  .btn-mail {
    margin: var(--s3) auto;
  }
  .btn-internal a,
  .btn-web a,
  .btn-mail a {
    width: 90%;
    min-height: var(--s7);
    font-size: 1.4rem;
  }
  .btn-link:not(.keep-style-sp) {
    margin: var(--s3) auto;
    text-align: center;
  }
  .btn-link:not(.keep-style-sp) a {
    width: 90%;
    min-height: var(--s7);
    margin: 0 auto;
    padding: var(--s1) var(--s5);
    background: var(--color02) url("img/arrow-02-blue-right.svg") no-repeat center right var(--s2) / 2.2rem 2.2rem;
    border: 0.3rem solid var(--color07);
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
  }
  .btn-tel {
    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(--color09) url("img/icon-tel.png") no-repeat center left var(--s3) / 1.7rem auto;
    border-radius: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color07);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .btn-tel small {
    font-size: 1.4rem;
    font-weight: 400;
  }
  /*
  ---------------------------------------------

      sp eye catch

  */
  .eye-catch-01 {
    margin: var(--s1) 0;
    border-radius: var(--s1);
  }
  /*
  ---------------------------------------------

      sp table

  */
  table {
    margin: var(--s3) 0;
  }
  thead,
  tbody,
  tr {
    display: block;
  }
  th,
  td {
    width: 100%;
    display: block;
  }
  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: var(--color05);
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: var(--color05);
    border-right: solid 1px #252b3d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }
  .l-scroll-x-sp {
    width: inherit;
    margin: var(--s3) 0;
  }
  .l-scroll-x-sp table {
    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.7rem;
  }
  .caption-scroll {
    font-size: 0.7rem;
  }
  .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.6rem;
  }
  /*
  ---------------------------------------------

      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 {
    font-size: 1.2rem;
  }
  /*
  ---------------------------------------------

      sp header

  */
  .header-main {
    padding: var(--s1);
  }
  .header-logo {
    width: 12rem;
  }
  .header-logo--lower {
    width: 12rem;
  }
  .header-logo--fixed {
    width: 12rem;
  }
  .header-fixed {
    padding: var(--s1);
  }
  .header-menu {
    display: none;
  }
  /*
  ---------------------------------------------

      gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
  }
  .gnavi-btn span {
    width: var(--s2-5);
    left: 1.4rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.4rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.2rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.8rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }
  .gnavi-area {
    padding: var(--s7) var(--s2);
  }
  .gnavi-logo {
    width: 24.6rem;
    margin-bottom: var(--s4);
  }
  .gnavi-box {
    max-width: 100%;
  }
  /*
  ---------------------------------------------

      sp main

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

      sp footer

  */
  .footer-area {
    padding: var(--s5) 0 0;
    border-radius: var(--s4) var(--s4) 0 0;
  }
  .footer-main {
    padding-right: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }
  .footer-bottom {
    padding: var(--s2) 0 var(--s10);
  }
  .footer-box + .footer-box {
    margin-top: var(--s2);
  }
  .footer-menu-title {
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
  }
  .footer-menu-title__link {
    padding: var(--s2) var(--s3) var(--s2) 0;
    background: none;
    display: block;
  }
  .footer-menu-title__link .toggle-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .footer-menu-title__link .toggle-icon::before,
  .footer-menu-title__link .toggle-icon::after {
    background: var(--color02);
  }
  .footer-menu {
    margin-top: var(--s2);
    gap: var(--s2);
  }
  .footer-menu__item {
    width: 100%;
    font-size: 1.4rem;
  }
  .footer-menu__link {
    background-size: 1.7rem auto;
    display: block;
  }
  .footer-menu-sub__item {
    font-size: 1.4rem;
  }
  .footer-menu-sub__link {
    padding: 0 var(--s4) 0 0;
    background: url("img/arrow-01-white-right.svg") no-repeat center right/1.7rem auto;
    display: block;
  }
  .footer-menu-sub__link::before {
    display: none;
  }
  .footer-disclaimer {
    margin-top: var(--s5);
  }
  .footer-nocopy {
    margin-top: var(--s5);
  }
  .footer-sitemap {
    margin: 0 0 var(--s2);
    font-size: 1.6rem;
    text-align: center;
    position: static;
    transform: translate(0, 0);
  }
  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: var(--s7);
    height: var(--s7);
    left: calc(100vw - var(--s8));
    bottom: var(--s10);
  }
  .page-banner-01 {
    width: 50%;
    height: var(--s8);
    top: auto;
    right: 0;
    bottom: 0;
    transform: translate(0, 0);
  }
  .page-banner-01__link {
    height: 100%;
    padding: var(--s1) var(--s4);
    background-position: center right var(--s2);
    border-radius: var(--s1-5) var(--s1-5) 0 0;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    writing-mode: horizontal-tb;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .page-banner-02 {
    width: 50%;
    height: var(--s8);
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 11;
  }
  .page-banner-02__link {
    width: 100%;
    height: 100%;
    padding: var(--s1) var(--s4);
    background: var(--color09) url("img/icon-tel.png") no-repeat center left var(--s2) / 1.7rem auto;
    border-radius: var(--s1-5) var(--s1-5) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color07);
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
  }
  .page-banner-02.js-scroll-show {
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  .page-banner-02.js-scroll-show.is-show {
    opacity: 1;
    visibility: visible;
  }
  /*
  ---------------------------------------------

      sp section

  */
  .section-title-01,
  .section-title-02 {
    font-size: 3rem;
  }
  .section-title-01__link,
  .section-title-02__link {
    padding-right: var(--s3);
    padding-left: var(--s3);
    background-size: 1.8rem auto;
    display: block;
  }
  .section-title-01__small,
  .section-title-02__small {
    font-size: 2.2rem;
  }
  .section-title-01--label-question,
  .section-title-02--label-question {
    padding-top: var(--s8);
  }
  .section-title-01--label-question::before,
  .section-title-02--label-question::before {
    width: 12.9rem;
    height: 5.6rem;
    background-image: url("img/label-question-sp.svg");
    left: 0;
  }
  .section-title-01--label-check,
  .section-title-02--label-check {
    padding-top: 8rem;
  }
  .section-title-01--label-check::before,
  .section-title-02--label-check::before {
    width: 11.2rem;
    height: 8rem;
    background-image: url("img/label-check-sp.svg");
    left: 0;
  }
  .section-title-01--label-qa,
  .section-title-02--label-qa {
    padding-top: 5rem;
  }
  .section-title-01--label-qa::before,
  .section-title-02--label-qa::before {
    width: 10.7rem;
    height: 5rem;
    background-image: url("img/label-qa-sp.svg");
  }
  .section-title-01--label-cases,
  .section-title-02--label-cases {
    padding-top: var(--s6);
  }
  .section-title-01--label-cases::before,
  .section-title-02--label-cases::before {
    width: 7.3rem;
    height: 4.1rem;
    background-image: url("img/label-cases-sp.svg");
  }
  /*
  ---------------------------------------------

      sp index box

  */
  .index-box-01 {
    margin: var(--s5) auto;
    padding: 0;
  }
  .index-box-01__label {
    padding: var(--s2) 0;
    font-size: 1.8rem;
  }
  .index-box-01 .chapter-h-two {
    margin-top: 0.8em;
  }
  .index-box-01 .chapter-h-two > a {
    gap: 0 var(--s1-5);
  }
  .index-box-01 .chapter-h-three {
    margin-top: 0.5em;
    margin-left: var(--s4);
  }
  /*
  ---------------------------------------------

      sp qa

  */
  .qa-box-01 {
    margin: var(--s5) 0;
  }
  .qa-box-01__q {
    padding-left: var(--s6);
    font-size: 1.8rem;
  }
  .qa-box-01__q::before {
    width: var(--s5);
    height: var(--s5);
  }
  .qa-box-01__a {
    padding-left: var(--s6);
  }
  .qa-box-01__a::before {
    width: var(--s5);
    height: var(--s5);
    top: 0;
  }
  .qa-box-01__em-01 {
    font-size: 1.8rem;
  }
  /*
  ---------------------------------------------

      sp summary

  */
  .summary-box-01 {
    margin: var(--s5) auto;
  }
  .summary-box-01__header {
    padding: var(--s2) var(--s4);
    font-size: 1.8rem;
    text-align: center;
  }
  .summary-box-01__content {
    padding: var(--s3) var(--s4);
  }
  /*
  ---------------------------------------------

      sp comment

  */
  .comment-box-01 {
    margin: var(--s11) 0 var(--s5);
    padding-left: 0;
  }
  .comment-box-01::before {
    width: 8.7rem;
    height: 9.5rem;
    top: calc(var(--s8) * -1);
    left: 50%;
    bottom: auto;
    transform: translate(-50%, 0);
    object-fit: cover;
    background-position: center 0rem;
    clip-path: inset(0 0 0 0);
    background-size: 100% auto;
  }
  .comment-box-01__header {
    padding: var(--s4) var(--s3) var(--s2-5) var(--s5);
    font-size: 2rem;
  }
  .comment-box-01__header::before {
    height: calc(100% - var(--s7));
    top: auto;
    left: var(--s3);
    bottom: var(--s2-5);
    transform: translate(0, 0);
  }
  .comment-box-01__content {
    border-radius: 0 0 var(--s2-5) var(--s2-5);
  }
  /*
  ---------------------------------------------

      sp interview

  */
  .interview-box-01 {
    margin: var(--s5) 0;
    padding: 0 var(--s2) var(--s3);
  }
  .interview-box-01::after {
    height: calc(100% - var(--s4));
    top: auto;
    bottom: 0;
  }
  .interview-box-01__em-01 {
    font-size: 1.8rem;
  }
  .interview-box-01__em-02 {
    margin: var(--s2) 0;
    font-size: 1.8rem;
  }
  /*
  ---------------------------------------------

      sp profile

  */
  .profile-box-01 {
    display: flex;
    align-items: flex-end;
    gap: var(--s2);
  }
  .profile-box-01__thumb {
    width: var(--s12);
    height: var(--s12);
    margin: 0;
    flex-shrink: 0;
  }
  .profile-box-01__data {
    font-size: 1.4rem;
    text-align: left;
  }
  .profile-box-01__thumb + .profile-box-01__data {
    margin-top: 0;
  }
  /*
  ---------------------------------------------

      sp sponsored

  */
  .sponsored-box-01 {
    margin-top: var(--s10);
    margin-bottom: var(--s5);
  }
  .sponsored-box-01__inner {
    padding-left: var(--s6);
  }
  .sponsored-box-01__label {
    width: var(--s4);
    font-size: 2rem;
  }
  .sponsored-box-01__content {
    padding: var(--s3) 0;
  }
  .sponsored-box-01__footer {
    padding: var(--s3) 0;
  }
  .sponsored-box-01__em-01 {
    font-size: 2.6rem;
    text-align: center;
  }
  .sponsored-box-01__em-01__number {
    font-size: 6.3rem;
  }
  .sponsored-box-01__em-02 {
    padding: var(--s1-5) var(--s1-5) var(--s3);
    background: url("img/sponsored-bg-01-sp.svg") no-repeat center bottom/100% auto;
    font-size: 1.8rem;
  }
  .sponsored-profile-01 {
    padding-right: 11rem;
  }
  .sponsored-profile-01__label {
    height: 1.9rem;
    margin: 0 0 var(--s-5);
  }
  .sponsored-profile-01__thumb {
    width: 8.4rem;
    height: 8.4rem;
  }
  .sponsored-profile-01__illust {
    width: 5.2rem;
    height: 5.2rem;
    top: 3.6rem;
    right: 6rem;
  }
  .sponsored-profile-01__company {
    font-size: 2rem;
  }
  .sponsored-profile-01__name {
    font-size: 1.8rem;
  }
  .sponsored-summary-01 {
    margin-top: var(--s3);
    padding: var(--s2-5) var(--s2);
    flex-direction: column;
    align-items: flex-start;
  }
  .l-grid-areas-02 .sponsored-summary-01 {
    padding: var(--s2-5) var(--s2);
  }
  .sponsored-summary-01 p {
    line-height: 1.6;
  }
  .sponsored-tel-01 {
    padding-left: 0;
  }
  .sponsored-tel-01::before {
    display: none;
  }
  .sponsored-tel-01__note {
    font-size: 1.2rem;
  }
  /*
  ---------------------------------------------

      sp relations

  */
  .relations-box-01 {
    margin: var(--s5) 0;
  }
  .relations-box-01__label {
    margin-bottom: var(--s3);
  }
  .relations-box-01 ul:not([class]) li {
    width: 100%;
  }
  .related-article01-frame {
    margin: var(--s5) 0;
  }
  .related-article01-title {
    margin-bottom: var(--s3);
  }
  .related-article01-list > li {
    width: 100%;
  }
  /*
  ---------------------------------------------

      sp search

  */
  .search-block-01 {
    margin: var(--s5) 0;
    padding: var(--s3) var(--s2);
    border-radius: var(--s1);
  }
  .search-block-01__title {
    margin-bottom: var(--s2-5);
  }
  .search-box-01__row {
    flex-direction: column;
    gap: var(--s1);
  }
  .search-box-01__row + .search-box-01__row {
    margin-top: var(--s3);
  }
  .search-box-01__label {
    width: 100%;
  }
  .search-box-01__content {
    width: 100%;
  }
  .search-label-01__text {
    padding: var(--s-5) var(--s3);
  }
  /*
  ---------------------------------------------

      sp result

  */
  .result-card-01 {
    padding-left: var(--s3);
    padding-right: var(--s3);
    border-radius: var(--s1);
  }
  .result-card-01__update {
    font-size: 1.4rem;
  }
  .result-card-01__catch {
    padding-left: var(--s2);
  }
  .result-card-01__tag {
    min-width: inherit;
  }
  /*
  ---------------------------------------------

       sp toggle sp

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

      sp more

  */
  .more-btn {
    min-height: var(--s7);
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      top

  */
  .mv-block {
    background-position:
      bottom 8rem left calc(50vw + 4.2rem),
      top center,
      bottom 8rem right calc(50vw + 5.4rem);
    background-size:
      15.4rem auto,
      38rem auto,
      17.6rem auto;
  }
  .mv-block__inner {
    padding-top: 11rem;
    padding-bottom: var(--s2);
  }
  .mv-title {
    margin-bottom: 16rem;
    font-size: 3rem;
  }
  .mv-title__em-01 {
    min-height: var(--s8);
    font-size: 5rem;
  }
  .mv-title__em-01::after {
    width: var(--s8);
    height: var(--s8);
    border-radius: var(--s1);
  }
  .mv-title__em-03 {
    min-height: var(--s8);
    font-size: 5rem;
  }
  .mv-title__em-03::after {
    width: var(--s8);
    height: var(--s8);
    border-radius: var(--s1);
  }
  .index-block-01 {
    padding: var(--s9) 0;
  }
  .index-list {
    width: calc(100% + var(--s2));
    margin-left: calc(var(--s2) * -1);
    flex-direction: column;
  }
  .index-list__item {
    width: 100%;
    border-radius: 0 var(--s4) var(--s4) 0;
    font-size: 1.6rem;
    text-align: left;
  }
  .index-list__link {
    min-height: var(--s8);
    padding: var(--s1) var(--s5) var(--s1) var(--s7);
    background-position: center right var(--s2-5);
    background-size: 1.4rem auto;
    align-items: flex-start;
  }
  .index-list__link::before {
    top: 50%;
    left: var(--s2);
    transform: translate(0, -50%);
  }
  .index-list__label {
    position: absolute;
    top: 0;
    left: var(--s2);
    transform: translate(0, -50%);
  }
  .question-block-01__inner {
    padding-top: var(--s9);
    padding-bottom: var(--s9);
  }
  .question-block-01__inner::before {
    width: 110%;
    height: 19rem;
    background-image: url("img/za-nac-00001108.png");
    background-size: 100%;
    border-radius: 0;
    object-fit: cover;
    top: -3rem;
    right: -12.6rem;
    background-position: center -17rem;
    clip-path: inset(15% 0 0 0);
  }
  .question-box-01 + .question-box-01 {
    margin-top: var(--s9);
  }
  .question-box-01__header {
    min-height: var(--s11);
    margin-bottom: var(--s5);
    padding: var(--s2) var(--s2) var(--s2) var(--s6);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .question-box-01__header::before {
    width: var(--s2);
    height: var(--s2);
    left: var(--s2-5);
  }
  .question-box-01__label {
    font-size: 1.4rem;
    flex: 0 1 auto;
  }
  .question-box-01__title {
    width: 100%;
    color: var(--color07);
    font-size: 1.8rem;
  }
  .question-box-01__content {
    width: calc(100% - var(--s9));
    margin-right: var(--s2);
    padding: var(--s7) var(--s2) var(--s2);
  }
  .question-box-01__content::before {
    width: 6.7rem;
    height: 7.5rem;
    top: calc(var(--s3) * -1);
    left: 50%;
    bottom: auto;
    transform: translate(-50%, 0);
  }
  .question-box-01__content .btn-web a {
    width: 100%;
  }
  .question-box-01-wrapper {
    width: calc(100% + var(--s3));
    margin-right: calc(var(--s2) * -1);
    padding-bottom: var(--s8);
  }
  .question-box-01-wrapper::before {
    width: var(--s4);
    left: var(--s1);
    bottom: var(--s1-5);
  }
  .question-box-01-wrapper::after {
    border-top-width: var(--s1-5);
    border-left-width: var(--s2);
    border-right-width: var(--s2);
    border-bottom-width: var(--s1-5);
    left: var(--s1);
  }
  .check-block-01__inner {
    padding-top: var(--s9);
    padding-bottom: var(--s9);
  }
  .check-block-01__inner::before {
    width: 26.6rem;
    height: 22.5rem;
    top: -5.7rem;
    right: -5.2rem;
  }
  .check-box-01 + .check-box-01 {
    margin-top: var(--s5);
  }
  .check-box-01__title-wrapper {
    min-height: 8.5rem;
    margin-right: var(--s4);
  }
  .check-box-01__title-wrapper::after {
    width: 100vw;
    background-position: center right var(--s2-5);
    background-size: 4.6rem auto;
    border-radius: 0 0 var(--s5) 0;
  }
  .check-box-01__title {
    padding: var(--s2) var(--s8) var(--s2) 0;
    font-size: 2rem;
  }
  .check-box-01__title__em-01 {
    margin-right: var(--s-5);
    font-size: 2.5rem;
  }
  .check-box-01:nth-child(2) .check-box-01__title__em-01 {
    margin-left: var(--s-5);
  }
  .check-box-01__content {
    font-size: 1.6rem;
  }
  .check-box-01__photo {
    width: 70%;
    margin: 0 auto;
  }
  .check-box-01-wrapper {
    margin-top: var(--s5);
    padding-right: var(--s1-5);
    padding-bottom: var(--s7);
  }
  .check-box-01-wrapper::before {
    border-radius: 0 var(--s6) var(--s6) 0;
  }
  .check-box-01-wrapper::after {
    width: 10.2rem;
    height: 4.8rem;
  }
  .check-list-01__item::before {
    width: 1.8rem;
    height: 1.8rem;
  }
  .check-summary-box-01 {
    width: 100%;
    margin-top: var(--s7);
  }
  .check-summary-box-01::before {
    width: 6.8rem;
    height: 6.8rem;
    background-size: auto 1.1rem;
    top: calc(var(--s3) * -1);
    left: calc(var(--s1) * -1);
  }
  .check-summary-box-01__text {
    font-size: 1.8rem;
    text-align: center;
  }
  .check-summary-box-01__content {
    padding: var(--s3) var(--s2);
  }
  .check-summary-box-01__content .btn-tel {
    margin: 0;
  }
  .check-summary-box-01__footer {
    padding: var(--s3) var(--s2);
  }
  .qa-block-01 {
    padding: var(--s9) 0;
  }
  .qa-block-01 .more-btn {
    margin-top: var(--s4);
  }
  .qa-card-01__title {
    padding: var(--s1) var(--s2) var(--s1) var(--s8);
  }
  .l-grid .qa-card-01 .qa-card-01__title {
    padding-left: var(--s8);
    padding-right: var(--s2);
    text-align: left;
  }
  .l-grid .qa-card-01 .qa-card-01__title::before {
    left: var(--s1-5);
  }
  .l-grid .qa-card-01__catch {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }
  .l-grid .qa-card-01__text {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }
  .l-grid .qa-card-01 .txt_bold {
    font-size: 2.2rem;
  }
  .cases-block-01 {
    padding: var(--s6) 0 var(--s9);
  }
  .cases-block-01::before {
    min-width: inherit;
    height: calc(100% - 20rem);
    background-image: url("img/bg-01-top-sp.svg"), url("img/bg-01-bottom-sp.svg");
    background-size: 100% 11.4rem;
    bottom: 10rem;
  }
  .cases-block-01::after {
    min-width: inherit;
    height: calc(100% - 42.8rem);
    bottom: 22.4rem;
  }
  .cases-block-01__header {
    margin: 0 0 var(--s10);
    padding: var(--s2) var(--s3) var(--s4);
  }
  .cases-block-01__header::before {
    width: 14.2rem;
    height: 12.8rem;
    background-image: url("img/za-nac-00001113.png");
    top: -5.5rem;
    left: auto;
    right: 0rem;
    bottom: auto;
  }
  .cases-block-01__header::after {
    background-image: url("img/za-nac-00001107_case.png");
    background-size: 24rem auto;
    background-position: bottom -1px right 58%;
    border-width: 0.3rem;
    border-radius: var(--s2-5);
    box-shadow: var(--s1-5) var(--s1-5) 0 var(--color07);
    right: calc(var(--s-5));
  }
  .cases-block-01__content {
    padding: var(--s3) var(--s2) var(--s6);
  }
  .cases-block-01__content::before {
    width: 10.5rem;
    height: var(--s4);
    border-radius: var(--s1) var(--s1) 0 0;
    box-shadow: 0.5rem -0.5rem 0 var(--color04);
    left: 0;
  }
  .cases-block-01__content::after {
    width: 100%;
    border-radius: 0 var(--s1) var(--s1) var(--s1);
    box-shadow: 0.5rem -0.5rem 0 var(--color04);
  }
  .cases-card-01 {
    padding: var(--s3) var(--s1) 0;
  }
  .cases-card-01:not(.subgrid-card-02) {
    padding-top: var(--s3);
  }
  .cases-card-01:not(.subgrid-card-02)::before {
    width: var(--s6);
    height: var(--s6);
    background-size: auto 0.8rem;
    left: 0;
  }
  .cases-card-01::before {
    width: var(--s6);
    height: var(--s6);
    background-size: auto 0.8rem;
  }
  .cases-card-01__thumb {
    width: calc(100% + var(--s2));
    margin-left: calc(var(--s1) * -1);
    margin-right: calc(var(--s1) * -1);
    margin-bottom: var(--s1);
    border-radius: var(--s1);
  }
  .cases-card-01__title {
    font-size: 2rem;
  }
  .cases-card-01__more {
    font-size: 1.4rem;
  }
  .cases-card-01 + .l-grid {
    margin-top: var(--s4);
  }
  .cases-card-01-wrapper {
    gap: var(--s6);
  }
  .message-block-01 {
    padding-top: var(--s5);
    padding-bottom: 0;
  }
  .message-block-01 .btn-link {
    margin-top: var(--s6);
  }
  .message-box-01 {
    padding: 13.6rem var(--s3) var(--s8);
  }
  .message-box-01::before {
    width: 100%;
    min-width: inherit;
  }
  .message-box-01::after {
    width: 100%;
    min-width: inherit;
    transform: translate(-50%, 0) rotate(-176deg);
  }
  .message-box-01__thumb {
    width: 14.6rem;
    height: 14.6rem;
    top: -3.7rem;
    left: 11.8rem;
    transform: translate(0, 0);
  }
  .message-box-01__illust {
    width: 9.1rem;
    height: 9.1rem;
    top: 2.2rem;
    left: 6.8rem;
  }
  .message-box-01__title {
    margin-bottom: var(--s4);
    font-size: 2.2rem;
  }
  .message-box-01__title__img {
    height: 6rem;
  }
  .message-box-01__name {
    margin-top: var(--s5);
  }
  .message-box-01__name__img {
    height: 3rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp lower

  */
  .main-area--lower h1 {
    font-size: 2.7rem;
  }
  .main-area--lower h2 {
    padding: var(--s2) var(--s2) var(--s2) var(--s3);
    border-radius: var(--s1);
    font-size: 2.4rem;
  }
  .main-area--lower h2::before {
    width: var(--s1-5);
  }
  .main-area--lower h2 a {
    padding-right: var(--s3);
    background-size: var(--s2) var(--s2);
  }
  .main-area--lower h3 {
    min-height: inherit;
    padding-left: 0;
    font-size: 2.2rem;
  }
  .main-area--lower h3::before {
    width: var(--s8);
    height: var(--s8);
    top: calc(var(--s2) * -1);
    left: calc(var(--s1-5) * -1);
    transform: translate(0, 0);
  }
  .main-area--lower h3 a {
    padding-right: var(--s3);
    background-size: var(--s2) var(--s2);
  }
  .main-area--lower h4 {
    padding: 0 0 var(--s1-5);
    font-size: 2rem;
  }
  .main-area--lower h4 a {
    padding-right: var(--s3);
    background-size: var(--s2) var(--s2);
  }
  .main-area--lower h5 {
    font-size: 1.8rem;
  }
  .main-area--lower h5 a {
    padding-right: var(--s3);
    background-size: var(--s2) var(--s2);
  }
  .lower-mv-block::after {
    height: 32rem;
    background-position: left -3.5rem top 5.8rem;
    background-size: 19.3rem auto;
  }
  .lower-mv-block--with-eye-catch h1 {
    font-size: 2.7rem;
  }
}

.result-empty-content {
    text-align: center;
}

@media (hover: hover) {
    .l-cluster.l-cluster--narrow a:hover {
        color: var(--color02);
    }
}