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

    base settings

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

@media screen and (max-width: 1100px) {
  :root {
    font-size: 0.9090909091vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #000;
}

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

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

li {
  list-style: none;
}

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

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

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

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

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

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

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

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotation {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-0.8rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fuwafuwa01 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(0.8rem);
  }
  100% {
    transform: translateY(0px);
  }
}
/*
---------------------------------------------

    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;
}
.l-center--narrow {
  max-width: 100rem;
}

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

    layout stack

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

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

    layout cluster

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

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

    layout grid

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

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

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

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

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: var(--s5);
}
.l-sidebar__side {
  width: 24rem;
}
.l-sidebar__main {
  flex: 1;
}

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

    layout column

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

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

    layout grid areas

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

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

    layout float

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

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

    layout scroll x

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

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

    list

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

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

    btn

*/
.btn-internal {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  max-width: 38rem;
  min-height: var(--s8);
  margin: 0 auto;
  padding: 1.4rem var(--s7);
  background: #EEA821 url("img/arrow-01-black-right.svg") no-repeat center right var(--s3)/1rem auto;
  border-radius: 10rem;
  border: solid 0.2rem #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}
.btn-internal a:hover {
  background-position: center right var(--s2);
  opacity: 0.5;
}
.btn-internal--down a {
  background-image: url(img/arrow-01-black-down.svg);
  background-size: 1.4rem auto;
}
.btn-internal--down a:hover {
  background-position: center right var(--s2);
}

.btn-web {
  margin: var(--s7) auto var(--s5);
  position: relative;
}
.btn-web a {
  max-width: 38rem;
  min-height: var(--s8);
  margin: 0 auto;
  padding: 1.4rem var(--s7);
  background: #00E0FF url("img/arrow-01-black-right.svg") no-repeat center right var(--s3)/1rem auto;
  border-radius: 10rem;
  border: solid 0.2rem #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
  position: relative;
}
.btn-web a:before {
  content: "";
  width: 11.8rem;
  height: 2.3rem;
  background: url(img/txt-check.png) no-repeat center/contain;
  position: absolute;
  left: -4rem;
  top: -3rem;
  transform: rotate(-10deg);
}
.btn-web a:hover {
  background-position: center right var(--s2);
  opacity: 0.5;
}
.btn-web--nodeco a:before {
  content: none;
}

.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s1) var(--s3) var(--s1) 0;
  background: url("img/arrow-01-orange-right.svg") no-repeat center right/1rem auto;
  display: inline-block;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.btn-tel {
  display: none;
}

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

    table

*/
table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}

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

th {
  background: #F5F5F5;
}

tbody th {
  background: #F5F5F5;
}

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

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

    caption

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

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  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 {
  color: #DC9B23;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.catch-01--small {
  font-size: 2rem;
}

.catch-02 {
  color: #47D15D;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

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

	text

*/
.marker {
  background: linear-gradient(transparent 72%, #FFE603 72%);
  font-weight: 900;
}

.txt_bold {
  font-weight: 900;
}

.txt_color {
  color: #DC9B23;
}

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

	subgrid card

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

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

	pankuzu

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

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

    toc

*/
.toc-wrap {
  position: relative;
  margin: var(--s8) auto;
  background: #f5f5f5;
  border-radius: var(--s3);
}
.toc-wrap__title {
  display: block;
  padding: var(--s4) var(--s8) var(--s4) 15rem;
  background: url(img/txt-index.png) no-repeat left 5rem center/8rem auto;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.toc-wrap__title--relations {
  background-image: url(img/txt-links.png);
}
.toc-wrap__title.js-more-btn::before {
  content: "";
  width: 2.8rem;
  height: 0.3rem;
  background: #47D15D;
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translate(0, -50%);
}
.toc-wrap__title.js-more-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.8rem;
  background: #47D15D;
  position: absolute;
  top: 50%;
  right: 6.3rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toc-wrap__title.js-more-btn:hover {
  opacity: 0.5;
  cursor: pointer;
}
.toc-wrap__title.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}
.toc-wrap__main {
  width: calc(100% - 10rem);
  margin: 0 auto;
  border-top: solid 1px #47D15D;
  padding: var(--s3) 0 var(--s4);
}
.toc-wrap ul {
  margin-top: 0;
  margin-bottom: 0;
}
.toc-wrap ul li + li {
  margin-top: 1.2em;
}
.toc-wrap ul li.chapter-h-two {
  padding: 0 0 0 2.5em;
  font-size: 1.6rem;
  font-weight: 900;
  position: relative;
  counter-increment: count;
}
.toc-wrap ul li.chapter-h-two::before {
  content: counter(count, decimal-leading-zero);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0.1em;
  left: 0;
}
.toc-wrap ul li.chapter-h-two a {
  background: none;
}
.toc-wrap ul li.chapter-h-three {
  margin: 0.8rem 0 0.4rem 4.5rem;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.toc-wrap ul li.chapter-h-three:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url(img/list_icon_l.png) no-repeat center/contain;
  border: none;
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 0.3em;
  transform: initial;
}
.toc-wrap ul li.chapter-h-three a {
  background: none;
}
.toc-wrap a {
  display: block;
  text-decoration: none;
}
.toc-wrap a:hover {
  text-decoration: underline;
}

.relations-list__item {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.relations-list__item::before {
  content: "";
  width: 1rem;
  height: 1.4rem;
  background: url(img/arrow-01-yellow-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.relations-list__item + li {
  margin-top: 1em;
}

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

    footer

*/
.footer-area {
  padding: var(--s5) 0 0;
  background: #f5f5f5;
}

.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(--s2) 0;
  background: #000;
  color: #FFF;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  margin: var(--s5) auto;
  width: 26.8rem;
  text-align: center;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}
.footer-logo__link:hover {
  opacity: 0.5;
}

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

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

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

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

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

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

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

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

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

    gnavi

*/
.gnavi-btn {
  width: 7rem;
  height: 7rem;
  background: #fff;
  border: solid 1px #47D15D;
  border-radius: 50%;
  display: block;
  position: fixed;
  top: var(--s-2);
  right: var(--s-2);
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: var(--s4);
  height: 0.3rem;
  display: inline-block;
  background: #47D15D;
  position: absolute;
  left: 1.8rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.2rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.6rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1.1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.3rem) rotate(45deg);
}

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

.gnavi-banner {
  padding: var(--s2);
  display: flex;
  gap: var(--s2);
}
.gnavi-banner__item {
  width: 100%;
}
.gnavi-banner__item a {
  font-size: 1.3rem;
  background-size: 2rem auto;
  text-align: left;
  justify-content: flex-start;
}

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

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

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

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

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

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

    page

*/
.page-top {
  width: 7rem;
  height: 7rem;
  position: fixed;
  right: 0;
  bottom: var(--s2);
  z-index: 8;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
}
.page-top__link:hover {
  opacity: 0.5;
}

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

    toggle sp

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

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

    toggle

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

.toggle-content {
  display: none;
}

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

    more

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

.more-content {
  display: none;
}

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

    tab

*/
.tab-btn {
  padding: var(--s1);
  background: #EBEBEB;
  border-radius: var(--s2) var(--s2) 0 0;
  flex: 1;
  color: #000;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
}
.tab-btn.is-active {
  margin-bottom: calc(0.2rem * -1);
  padding: var(--s2) var(--s1);
  background-color: #f6f6e1;
}
.tab-btn:hover {
  opacity: 0.5;
}

.tab-btn-wrapper {
  padding: 0 var(--s7);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s2);
}
.tab-btn-wrapper--bottom {
  align-items: flex-start;
}
.tab-btn-wrapper--bottom .tab-btn {
  border-top: none;
  border-radius: 0 0 var(--s2) var(--s2);
  background-position: center top var(--s-2);
}
.tab-btn-wrapper--bottom .tab-btn.is-active {
  margin-top: calc(0.2rem * -1);
  margin-bottom: 0;
}
.tab-btn-wrapper--bottom.for-sp {
  display: none;
}
.tab-btn-wrapper--02 {
  padding: 0 var(--s4);
  gap: var(--s1);
}

.tab-content {
  padding: var(--s4);
  background: #f6f6e1;
  display: none;
  opacity: 0;
  position: relative;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

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

.main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
  margin: var(--s5) auto var(--s3);
  font-weight: 900;
}
.main-area--low h1 a, .main-area--low h2 a, .main-area--low h3 a, .main-area--low h4 a, .main-area--low h5 a, .main-area--low h6 a {
  display: block;
  padding-right: 3rem;
  text-decoration: none;
  background: url(img/arrow-01-black-right.svg) no-repeat right center/1.2rem auto;
}
.main-area--low h1 a:hover, .main-area--low h2 a:hover, .main-area--low h3 a:hover, .main-area--low h4 a:hover, .main-area--low h5 a:hover, .main-area--low h6 a:hover {
  opacity: 0.5;
}
.main-area--low h1 {
  margin: var(--s3) auto var(--s7) 0;
  padding: var(--s9) 0 0;
  background: url(img/txt-contents.png) no-repeat center top/37.6rem auto;
  font-size: 4.2rem;
  text-align: center;
}
.main-area--low h2 {
  padding: 2rem var(--s2) 2rem var(--s4);
  background: #47D15D;
  font-size: 3.2rem;
  position: relative;
  z-index: 0;
}
.main-area--low h2:before {
  content: "";
  width: 9.2rem;
  height: 5.9rem;
  background: url(img/deco-h2.png) no-repeat center/contain;
  position: absolute;
  left: 1rem;
  top: -1rem;
  z-index: -1;
}
.main-area--low h3 {
  padding: var(--s2);
  padding-left: var(--s4);
  background: #F6F6E1;
  border-radius: var(--s1);
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3:before {
  content: "";
  width: 0.8rem;
  height: calc(100% - var(--s2));
  border-radius: var(--s-2);
  background: #47D15D;
  position: absolute;
  left: var(--s1);
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h4, .main-area--low h5 {
  padding: 0 var(--s2) var(--s1) 0;
  border-bottom: solid 1px #000;
  font-size: 1.8rem;
  color: #47D15D;
}
.main-area--low h4 a, .main-area--low h5 a {
  color: #47D15D;
  background-image: url(img/arrow-01-green-right.svg);
}

.main-area--low ol{
  margin-top:2rem;
  margin-bottom:2rem;
}

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

    TOP

*/
.header-area {
  width: 100%;
}
.header-area-name {
  padding: var(--s1);
  font-size: 1.2rem;
}
.header-area-name a {
  text-decoration: none;
}
.header-area-name a:hover {
  opacity: 0.5;
}
.header-area--low {
  margin-bottom: var(--s5);
}

.header-menu {
  width: 100%;
  padding: 0 8rem 0 0;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.4s;
  z-index: 9;
}
.header-menu.js-header-appear {
  opacity: 0;
  visibility: hidden;
}
.header-menu.js-header-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}
.header-menu-logo {
  width: 24rem;
  margin-left: 0;
  margin-right: auto;
  padding: var(--s-2);
}
.header-menu__banner {
  margin: 0 0 0 auto;
  padding: var(--s-2);
}
.header-menu__banner a {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  min-height: 6.2rem;
}

.mainvisual-inner {
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: center;
  position: relative;
}
.mainvisual-inner:before {
  content: "";
  width: 120rem;
  height: 100%;
  background: #47D15D;
  border-radius: var(--s6);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.mainvisual-inner:after {
  content: "";
  width: 130.4rem;
  height: 78.6rem;
  background: url(img/mv-pic.png) no-repeat center bottom/contain;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  z-index: -1;
}
.mainvisual-inner-bg {
  position: relative;
  z-index: 0;
}
.mainvisual-inner-bg:before {
  content: "";
  width: 54.4rem;
  height: 56.4rem;
  background: url(img/mv-txt.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  animation: rotation 50s linear infinite;
}
.mainvisual-logo {
  width: 37.7rem;
  margin: 0 auto var(--s4);
}
.mainvisual-pr {
  margin-bottom: var(--s6);
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
}
.mainvisual-fkds {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s1) var(--s4);
  background: #fff;
  border-radius: var(--s5);
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  position: relative;
}
.mainvisual-fkds:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 0.7rem 0 0.7rem;
  border-color: #FFFFFF transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 99%;
  transform: translateX(-50%);
}
.mainvisual-title {
  font-size: 3.8rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.mainvisual-title span.sm {
  margin-bottom: var(--s-2);
  font-size: 3rem;
  display: block;
}
.mainvisual-title span.st {
  font-size: 4.6rem;
}
.mainvisual .btn-internal a {
  background-color: #FFE603;
}
.mainvisual-lower .l-center {
  min-height: 17.7rem;
  position: relative;
  padding-top: var(--s3);
  padding-bottom: var(--s3);
}
.mainvisual-lower .l-center:before {
  content: "";
  width: 120rem;
  height: 100%;
  background: #47D15D;
  border-radius: 0 var(--s4) 0 var(--s4);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.mainvisual-lower .l-center:after {
  content: "";
  width: 130rem;
  height: 100%;
  background: url(img/mv-pic-lower.png) no-repeat center bottom/auto 100%;
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  z-index: -1;
}
.mainvisual-lower__logo {
  width: 26rem;
  margin: 0 auto var(--s2);
}
.mainvisual-lower__logo a:hover{
  opacity:0.6;
}

.text-pr {
  margin-top: var(--s1);
  text-align: center;
  font-size: 1.2rem;
}

.main-area {
  overflow: clip;
  padding-top: var(--s1);
}
.main-area--low {
  overflow: initial;
  padding-top: 0;
  padding-bottom: 8rem;
  background: none;
}

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

    lower Parts

*/
.parts-comment--lower {
  margin: var(--s10) auto;
}
.parts-comment__catch {
  margin-bottom: var(--s5);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
}
.parts-comment-wrap {
  display: flex;
  gap: var(--s3);
}
.parts-comment-wrap--reverse {
  flex-direction: row-reverse;
}
.parts-comment-wrap__side {
  width: 14rem;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}
.parts-comment-wrap__main {
  flex: 1;
}
.parts-comment-wrap + .parts-comment-wrap {
  margin-top: var(--s5);
}

.card-comment {
  padding: var(--s3);
  border: solid 0.2rem #47D15D;
  border-radius: 0 var(--s4) var(--s4) var(--s4);
  background: #fff;
  min-height:225px;
}
.card-comment--reverse {
  border-radius: var(--s4) 0 var(--s4) var(--s4);
}

.box-interview {
  margin: var(--s8) auto;
  padding: var(--s4);
  border-radius: var(--s3) 0 var(--s3) 0;
  background: #F6F6E1;
}
.box-interview__catch {
  padding: var(--s2) 0 0 var(--s3);
  font-size: 2rem;
  font-weight: 900;
  position: relative;
  z-index: 0;
}
.box-interview__catch:before {
  content: "";
  width: 9.2rem;
  height: 5.9rem;
  background: url(img/deco-corner.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

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

    TOP common

*/
section {
  padding: 10rem 0;
}

.common-title {
  margin: 0 auto var(--s5) auto;
  padding-top: 12.7rem;
  font-size: 4.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  position: relative;
}
.common-title--01 {
  background: url(img/txt-surveyor.png) no-repeat left top/auto 13.1rem;
}
.common-title--01:before {
  content: "";
  width: 52.9rem;
  height: 34.3rem;
  background: url(img/deco-corner.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: -3rem;
  z-index: -1;
}
.common-title--02 {
  background: url(img/txt-list.png) no-repeat left top var(--s-2)/auto 4.8rem;
}
.common-title--03 {
  background: url(img/txt-works.png) no-repeat left top/auto 13.1rem;
}
.common-title--03:before {
  content: "";
  width: 52.9rem;
  height: 34.3rem;
  background: url(img/deco-corner-gray.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: -3rem;
  z-index: -1;
}
.common-title--04 {
  text-align: center;
  background: url(img/txt-comparison.png) no-repeat center top/auto 12.3rem;
}
.common-title span.sm {
  font-size: 4rem;
}
.common-title a {
  padding-right: var(--s5);
  background: url(img/arrow-01-green-right.svg) no-repeat right bottom 0.5em/1.4rem auto;
  text-decoration: none;
  position: relative;
}
.common-title a:hover {
  opacity: 0.5;
}

.common-subtitle {
  margin-bottom: var(--s5);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.common-subtitle--center-small {
  text-align: center;
  font-size: 3.8rem;
}
.common-subtitle a {
  display: inline-block;
  text-decoration: none;
  padding: 0 var(--s4);
  background: url(img/arrow-01-green-right.svg) no-repeat right bottom 0.5em/1.2rem auto;
}
.common-subtitle a:hover {
  opacity: 0.5;
}

.lead-left {
  max-width: 55rem;
  margin: var(--s3) 0;
}

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

    TOP parts

*/
.card-01 {
  padding: var(--s2) var(--s2) 24rem var(--s6);
  border: solid 0.2rem #000;
  border-radius: 0 var(--s4) var(--s4) var(--s4);
  text-decoration: none;
  position: relative;
}
.card-01:nth-of-type(1) {
  background: #fff url(img/box01-bg-01.jpg) no-repeat center bottom -1px/100% auto;
}
.card-01:nth-of-type(2) {
  background: #fff url(img/box01-bg-02.jpg) no-repeat center bottom -1px/100% auto;
}
.card-01:nth-of-type(3) {
  background: #fff url(img/box01-bg-03.jpg) no-repeat center bottom -1px/100% auto;
}
.card-01:hover {
  opacity: 0.7;
  cursor: pointer;
}
.card-01__tag {
  width: 20rem;
  height: 3.8rem;
  padding: var(--s-2) var(--s1);
  background: #47D15D;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  left: 3.8rem;
  top: 0;
  transform: rotate(90deg);
  transform-origin: left top;
}
.card-01__title {
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
}
.card-01__title:before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(img/icon-plus.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: -0.6rem;
}
.card-01__modalttl {
  margin-bottom: var(--s3);
  text-align: center;
  font-size: 3.8rem;
  font-weight: 900;
}
.card-01__icon {
  width: 10rem;
  margin: 0 auto var(--s2);
}

.sec01-bg {
  position: relative;
}
.sec01-pic {
  width: 55rem;
  height: 89.3rem;
  position: absolute;
  right: -2.5rem;
  top: -1rem;
}
.sec01-arrow {
  width: 7.5rem;
  margin: var(--s9) auto var(--s9) 17rem;
}

.sec02-upper {
  min-height: 86.5rem;
  padding-top: var(--s2);
  background: #F5F3D0 url(img/sec02-bg.jpg) no-repeat center top/auto 86.5rem;
  position: relative;
}
.sec02-title {
  width: 31.3rem;
  height: fit-content;
  margin-top: -6rem;
  margin-right: -2rem;
  margin-left: auto;
  padding: var(--s10) 6.8rem var(--s10) 0;
  background: #333;
  font-family: "Noto Sans JP vertical";
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.8;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sec02-title:before {
  content: "";
  width: 6.4rem;
  height: 58.2rem;
  background: url(img/txt-3d.png) no-repeat center/contain;
  position: absolute;
  right: -3rem;
  top: var(--s5);
}
.sec02-title span.st {
  margin-bottom: var(--s1);
  padding: var(--s1) 0;
  background: #FFE603;
  color: #000;
  font-size: 6rem;
}
.sec02-body {
  max-width: 100rem;
  margin: 0 auto;
  margin-top: calc(16rem * -1);
  padding: var(--s5) 0;
  background: #fff;
  position: relative;
}
.sec02-body p {
  max-width: 47rem;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 900;
}
.sec02-body p + p {
  margin-top: var(--s4);
}
.sec02-pic01 {
  width: 40rem;
  position: absolute;
  left: -17rem;
  top: -8rem;
}
.sec02-bg {
  padding: var(--s5) 0 10rem;
  background: #F5F3D0;
}
.sec02-subtitle {
  width: fit-content;
  margin: 0 auto var(--s3);
  padding: 0 var(--s7);
  text-align: center;
  font-size: 3.8rem;
  font-weight: 900;
  position: relative;
}
.sec02-subtitle:before {
  content: "";
  width: 1px;
  height: 11.3rem;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-30deg);
}
.sec02-subtitle:after {
  content: "";
  width: 1px;
  height: 11.3rem;
  background: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(30deg);
}
.sec02-subtitle--sec04 {
  margin-bottom: var(--s8);
  font-size: 4.6rem;
}
.sec02-arrow {
  width: 7.5rem;
  margin: var(--s3) auto;
}
.sec02-subtitle2 {
  margin-bottom: var(--s4);
  text-align: center;
  font-size: 3.8rem;
  font-weight: 900;
}

.movie-box {
  max-width: 80rem;
  margin: 0 auto var(--s2);
}
.movie-box video{
  max-width: 100%;
}
.movie-box-wrap {
  position: relative;
  z-index: 0;
}
.movie-box-wrap:before {
  content: "";
  width: 146rem;
  height: 53.7rem;
  background: url(img/deco-bg-text.png) no-repeat center top/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.movie-box-wrap:after {
  content: "";
  width: 157.4rem;
  height: 24rem;
  background: url(img/movie-bg-pic.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  z-index: -1;
}
.movie-box__text {
  margin-top: var(--s2);
}

.grid-wrap {
  display: grid;
  grid-gap: var(--s4);
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 72rem 1fr;
}

.card-02 {
  padding: 0;
  border: solid 0.2rem #000;
  text-decoration: none;
  position: relative;
}
.card-02:nth-of-type(1) {
  border-radius: 0 var(--s4) 0 var(--s4);
  background: #fff url(img/box02-bg-01.jpg) no-repeat center right/26.6rem auto;
  grid-area: 1/1/2/2;
}
.card-02:nth-of-type(2) {
  border-radius: var(--s4) 0 var(--s4) 0;
  background: #fff url(img/box02-bg-02.jpg) no-repeat left bottom/25rem auto;
  grid-area: 2/1/3/2;
}
.card-02:nth-of-type(2) .card-02__tag {
  margin-left: auto;
  margin-right: 0;
}
.card-02:nth-of-type(2) .card-02__title {
  margin-left: auto;
  margin-right: var(--s4);
}
.card-02:nth-of-type(3) {
  padding: var(--s3);
  border-radius: var(--s4) 0 var(--s4) 0;
  background: #fff url(img/box02-bg-03.png) no-repeat left bottom/14rem auto;
  grid-area: 1/2/3/3;
  font-family: "Noto Sans JP vertical";
}
.card-02:nth-of-type(3) .card-02__tag {
  padding: var(--s2) var(--s1);
  writing-mode: vertical-rl;
  width: 6.4rem;
  position: absolute;
  right: 0;
  top: 0;
  letter-spacing: 0.2em;
}
.card-02:nth-of-type(3) .card-02__title {
  width: 13rem;
  margin: 0 var(--s8) 0 auto;
  padding: 0 0 var(--s8);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.card-02:nth-of-type(3) .card-02__title:before {
  bottom: 0;
  right: var(--s-2);
}
.card-02:hover {
  opacity: 0.7;
  cursor: pointer;
}
.card-02__tag {
  width: 70%;
  padding: var(--s-2) var(--s2);
  background: #47D15D;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
}
.card-02__title {
  width: 40rem;
  padding: var(--s2) var(--s3) var(--s3) var(--s3);
  font-size: 3rem;
  font-weight: 900;
  position: relative;
}
.card-02__title:before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(img/icon-plus.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: var(--s2);
}
.card-02__modalttl {
  margin-bottom: var(--s3);
  text-align: center;
  font-size: 3.8rem;
  font-weight: 900;
}

.sec03-title {
  margin-bottom: var(--s6);
  font-size: 4.6rem;
  font-weight: 900;
  position: relative;
  z-index: 0;
}
.sec03-title:before {
  content: "";
  width: 100vw;
  height: 86rem;
  background: #47D15D;
  position: absolute;
  right: calc(100% - 36rem);
  top: -6rem;
  z-index: -1;
}
.sec03-title:after {
  content: "";
  width: 12.7rem;
  height: 67rem;
  background: url(img/txt-sec03-deco.png) no-repeat center top/contain;
  position: absolute;
  left: -15rem;
  top: 0;
}
.sec03-title span.bg {
  margin-right: var(--s1);
  padding: 0 var(--s1);
  background: #000;
  color: #fff;
  font-size: 5rem;
}
.sec03-title--second:after {
  width: 11.1rem;
  height: 89.4rem;
  background-image: url(img/txt-inexper.png);
}

h3.sec03-title {
  font-size: 3.8rem;
}
h3.sec03-title span.bg {
  font-size: 4.2rem;
}

.card-03 {
  width: 94%;
  padding: var(--s4);
  border: solid 0.2rem #000;
  border-radius: var(--s4) 0 var(--s4) 0;
  background: #fff;
  position: relative;
  grid-row: span 4;
}
.card-03:before {
  content: "";
  width: 4rem;
  height: 15rem;
  background: url(img/txt-point1.png) no-repeat center top/contain;
  position: absolute;
  right: -4rem;
  top: 0;
}
.card-03:nth-of-type(2):before {
  background-image: url(img/txt-point2.png);
}
.card-03__title {
  font-size: 3rem;
  font-weight: 900;
}

.arrow-between {
  margin: var(--s6) auto 0;
  padding: var(--s3) var(--s4) var(--s6);
  background: url(img/arrow-beige.png) no-repeat center top/contain;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}

.sec04-bg {
  padding-top: 18rem;
  background: linear-gradient(transparent 10rem, #F5F3D0 10rem);
  position: relative;
}
.sec04-bg:before {
  content: "";
  width: 100%;
  height: 10.1rem;
  background: url(img/txt-listen.png) no-repeat center bottom/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  max-width: 1100px;
  max-height: 10.1rem;
}
.sec04-bg:after {
  content: "";
  width: 20rem;
  height: 20rem;
  background: url(img/deco-company.png) no-repeat center/contain;
  position: absolute;
  left: calc(50% + 40rem);
  bottom: -5rem;
}

.box-corner {
  margin: 10rem auto var(--s8);
  padding: var(--s10) 0 0;
  position: relative;
  z-index: 0;
}
.box-corner:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s5));
  background: #47d15d;
  border-radius: 0 var(--s10) 0 0;
  position: absolute;
  right: -5rem;
  top: 0;
  z-index: -1;
}
.box-corner:after {
  content: "";
  width: 77.3rem;
  height: 12.7rem;
  background: url(img/txt-supervision.png) no-repeat center/contain;
  position: absolute;
  left: -18rem;
  top: -6rem;
}
.box-corner-column {
  position: relative;
  padding-left: 48.2rem;
  min-height: 30rem;
}
.box-corner-column__pic {
  width: 45rem;
  position: absolute;
  left: 0;
  top: 0;
}
.box-corner-column__pic .caption{
  color:#000;
}
.box-corner-column__title {
  margin-bottom: var(--s1);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.8;
}
.box-corner-column__title span.bg {
  margin-right: var(--s1);
  padding: 0 var(--s1);
  background: #000;
  color: #fff;
  font-size: 3.8rem;
}
.box-corner-column__title.sv-title {
  padding-top: var(--s2);
  padding-left: 8rem;
  line-height: 1.5;
  position: relative;
  z-index: 0;
}
.box-corner-column__title.sv-title:before {
  content: "監修";
  width: 19.2rem;
  height: 12.3rem;
  padding: var(--s1) 0 0 var(--s2);
  background: url(img/deco-corner-whie.png) no-repeat left top/contain;
  position: absolute;
  font-size: 2.4rem;
  left: -2rem;
  top: -2rem;
  z-index: -1;
}
.box-corner-column__name {
  margin-bottom: var(--s3);
  font-size: 1.6rem;
  font-weight: 900;
}
.box-corner-column--reverse {
  padding-right: 48.2rem;
  padding-left: 0;
}
.box-corner-column--reverse .box-corner-column__pic {
  right: 0;
  top: 0;
  left: auto;
}
.box-corner-column--reverse .box-corner-column__pic .caption{
  margin-top:1rem;
  text-align:left;
  font-size:1.4rem;
}

.box-corner--green {
  margin: 10rem auto var(--s8);
  padding: var(--s6) 0;
  position: relative;
  z-index: 0;
}
.box-corner--green:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #ffffff;
  border-radius: var(--s10) 0 0 0;
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.box-corner--green--02:before {
  background-color: #fff;
}
.box-corner--white {
  margin: 10rem auto var(--s8);
  padding: var(--s6) 0;
  position: relative;
  z-index: 0;
}
.box-corner--white:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border-radius: 0 var(--s10) 0 0;
  position: absolute;
  right: -5rem;
  top: 0;
  z-index: -1;
}
.box-corner--company:before {
  background-color: #47D15D;
}
.box-corner--company:after {
  width: 43.5rem;
  background-image: url(img/txt-company.png);
  left: 0;
}
.box-corner--lower {
  margin-top: var(--s8);
  padding-top: var(--s8);
  padding-bottom: var(--s6);
}
.box-corner--lower:before {
  background-color: #47D15D;
  height: 100%;
}
.box-corner--lower:after {
  content: none;
}
.box-corner--lower .btn-link {
  position: absolute;
  right: 0;
  bottom: 0;
}
.box-corner--lower .btn-link a {
  background-image: url(img/arrow-01-white-right.svg);
}
.box-corner--lower .btn-web,
.box-corner--lower .btn-internal {
  margin-bottom: 0;
}
.box-corner--lower .box-corner-column__name {
  text-align: right;
}

.vertical-title {
  margin: calc(var(--s9) * -1) 0 auto auto;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP vertical";
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-orientation: upright;
  position: relative;
}
.vertical-title span.bg {
  padding: var(--s1) var(--s-2);
  background: #000;
  color: #fff;
}
.vertical-title--deco1:before {
  content: "";
  width: 11.6rem;
  height: 61.5rem;
  background: url(img/txt-interview.png) no-repeat center top/contain;
  position: absolute;
  right: calc(15rem * -1);
  top: 0;
}
.vertical-title--deco2:before {
  content: "";
  width: 15rem;
  height: 62.8rem;
  background: url(img/txt-schedule.png) no-repeat center top/contain;
  position: absolute;
  left: calc(15rem * -1);
  top: 0;
}
.vertical-title--deco3:before {
  content: "";
  width: 12.3rem;
  height: 92.6rem;
  background: url(img/txt-question.png) no-repeat center top/contain;
  position: absolute;
  right: calc(15rem * -1);
  top: 0;
}

.tab-btn--type1 {
  padding: 1.2rem var(--s1) 1.4rem 9.2rem;
  background: #EBEBEB url(img/icon-tab-01.png) no-repeat left 2rem center/5.7rem auto;
  font-size: 2rem;
  font-weight: 900;
  text-align: left;
}
.tab-btn--type1.is-active {
  padding: var(--s2) var(--s1) var(--s2) 9.2rem;
  font-size: 2.4rem;
  position: relative;
}
.tab-btn--type1.is-active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8.5px 0 8.5px;
  border-color: #EEA821 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 99%;
  transform: translateX(-50%);
}
.tab-btn--type1:nth-of-type(2) {
  background-image: url(img/icon-tab-02.png);
  background-size: 5rem auto;
}
.tab-btn--type1:nth-of-type(3) {
  background-image: url(img/icon-tab-03.png);
  background-size: 4.7rem auto;
}
.tab-btn--type2 {
  padding: 1.2rem var(--s1);
  background: #EBEBEB url(img/txt-a.png) no-repeat left 2.8rem center/3.7rem auto;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}
.tab-btn--type2.is-active {
  padding: var(--s2) var(--s1);
  background-color: #F6F6E1;
  font-size: 2.4rem;
  text-align:center;
}
.tab-btn--type2.is-active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8.5px 0 8.5px;
  border-color: #47D15D transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 99%;
  transform: translateX(-50%);
}
.tab-btn--type2:nth-of-type(2) {
  background-image: url(img/txt-b.png);
}
.tab-btn--type2:nth-of-type(3) {
  background-image: url(img/txt-c.png);
}
.tab-btn--type3 {
  padding: var(--s2);
  font-size: 2rem;
  font-weight: 900;
  height: 9.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.tab-btn--type3:before {
  content: "Q1";
  width: 100%;
  font-size: 2.4rem;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -2rem;
  text-align: center;
}
.tab-btn--type3.is-active {
  padding: var(--s2);
  height: 10.7rem;
  background: #F6F6E1;
  font-size: 2.4rem;
  color: #DC9B23;
}
.tab-btn--type3.is-active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8.5px 0 8.5px;
  border-color: #47D15D transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 99%;
  transform: translateX(-50%);
}
.tab-btn--type3:nth-of-type(2):before {
  content: "Q2";
}
.tab-btn--type3:nth-of-type(3):before {
  content: "Q3";
}
.tab-btn--type3:nth-of-type(4):before {
  content: "Q4";
}

.tab-content--type1 {
  border-radius: var(--s3) 0 var(--s3) 0;
}
.tab-content--type1 .btn-internal {
  margin: var(--s2) auto 0;
}
.tab-content--type2 {
  border-radius: var(--s3) 0 var(--s3) 0;
  background: #F6F6E1;
}

.icon-title {
  margin-bottom: var(--s5);
  padding-left: 8.4rem;
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
  padding-top:1rem;
}
.icon-title--01:before {
  content: "";
  width: 6.7rem;
  height: 6.7rem;
  background: url(img/icon-tab-01.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.icon-title--02:before {
  content: "";
  width: 6.2rem;
  height: 6.2rem;
  background: url(img/icon-tab-02.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.icon-title--03:before {
  content: "";
  width: 5.5rem;
  height: 6rem;
  background: url(img/icon-tab-03.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.icon-title--04 {
  min-height: 6rem;
  display: flex;
  align-items: center;
}
.icon-title--04:before {
  content: "";
  width: 6rem;
  height: 7rem;
  background: url(img/txt-a.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.icon-title--05 {
  min-height: 6rem;
  display: flex;
  align-items: center;
}
.icon-title--05:before {
  content: "";
  width: 6rem;
  height: 7rem;
  background: url(img/txt-b.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.icon-title--06 {
  min-height: 6rem;
  display: flex;
  align-items: center;
}
.icon-title--06:before {
  content: "";
  width: 6rem;
  height: 7rem;
  background: url(img/txt-c.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.box-schedule {
  margin: var(--s4) auto;
  padding: var(--s3);
  border: solid 1px #EEA821;
  background: #fff;
}
.box-schedule__column {
  display: flex;
  width: fit-content;
}
.box-schedule__title {
  width: fit-content;
  margin-bottom: var(--s2);
  padding: var(--s1) var(--s3);
  background: #47D15D;
  font-weight: 900;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
}

.card-time {
  width: 20rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s2);
}
.card-time .time {
  position: relative;
  z-index: 0;
}
.card-time .time:before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.card-time .time span {
  margin: 0 auto;
  width: 9rem;
  height: 9rem;
  border: solid 0.2rem #000;
  border-radius: 50%;
  background: #FFE603;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
}
.card-time__catch {
  padding: 0 var(--s2);
  font-size: 1.8rem;
  font-weight: 900;
}
.card-time p {
  padding: 0 var(--s2);
}

.inner-tab {
  max-width: 92rem;
}

.box-summary {
  margin: var(--s4) auto;
  padding: var(--s4) var(--s5);
  border-radius: var(--s6) 0 var(--s6);
  background: #fff;
}
.box-summary__title {
  margin-top: var(--s1);
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
}
.box-summary--beige {
  background: #F6F6E1;
}
.sec04-bg .box-summary--beige {
    max-width: 920px;
    margin-right: 0;
}
.box-summary--media {
  max-width: 99rem;
  border: solid 1px #000;
  position: relative;
}
.box-summary--media:before {
  content: "";
  width: 25.4rem;
  height: 4.3rem;
  background: url(img/txt-about.png) no-repeat center bottom/contain;
  position: absolute;
  right: 0;
  bottom: 100%;
}
.box-summary--media .btn-link {
  margin-top: var(--s1);
  margin-bottom: 0;
}
.box-summary .btn-web,
.box-summary .btn-internal {
  margin: var(--s3) auto 0 0;
}
.box-summary .btn-web a,
.box-summary .btn-internal a {
  margin-left: 0;
}

.box-environment {
  margin-top: 14rem;
  padding: var(--s10) 0 var(--s1);
  position: relative;
  z-index: 0;
}
.box-environment:before {
  content: "";
  width: calc(100% - 10rem);
  height: 100%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.box-environment:after {
  content: "";
  width: 100%;
  height: 7.2rem;
  background: url(img/txt-environment.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -4rem;
}
.box-environment .box-summary {
  max-width: 84rem;
  margin: var(--s5) auto;
}

.l-grid-four .card-01 {
  padding-bottom: 20rem;
}
.l-grid-four .card-01:nth-of-type(1) {
  background: #fff url(img/box03-bg-01.jpg) no-repeat center bottom/100% auto;
}
.l-grid-four .card-01:nth-of-type(2) {
  background: #fff url(img/box03-bg-02.jpg) no-repeat center bottom/100% auto;
}
.l-grid-four .card-01:nth-of-type(3) {
  background: #fff url(img/box03-bg-03.jpg) no-repeat center bottom/100% auto;
}
.l-grid-four .card-01:nth-of-type(4) {
  background: #fff url(img/box03-bg-04.jpg) no-repeat center bottom/100% auto;
}

.inner-section {
  margin-top: 16rem;
}
.inner-section__subtitle {
  margin: var(--s3) auto;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  position: relative;
}

.box-treatment {
  margin: 10rem auto;
  padding-top: var(--s3);
  position: relative;
  min-height: 68.6rem;
  z-index: 0;
}
.box-treatment:before {
  content: "";
  width: calc(100% + 10rem);
  height: 60.7rem;
  background: url(img/bg-treatment.jpg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 5rem;
  transform: translateX(-50%);
  z-index: -1;
}
.box-treatment__title {
  width: 33rem;
  margin: 0 auto;
  padding: var(--s5) 8rem var(--s10) 0;
  background: #333;
  color: #fff;
  font-size: 5rem;
  font-family: "Noto Sans JP vertical";
  font-weight: 900;
  line-height: 1.4;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.box-treatment__title:before {
  content: "";
  width: 7.1rem;
  height: 53rem;
  background: url(img/txt-treatment.png) no-repeat center/contain;
  position: absolute;
  right: -3.5rem;
  top: 0;
}
.box-treatment__title span.sm {
  font-size: 4rem;
}
.box-treatment__item {
  --minmum: calc((100% - var(--s10) ) / 2);
  display: grid;
  grid-gap: var(--s2) var(--s10);
}

@supports (width: min(var(--minmum), 100%)) {
  .box-treatment__item {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }
}
.card-btn {
  width: 19rem;
  height: 19rem;
  margin: 0 auto;
  padding-top: var(--s5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.4s;
  position: relative;
  background-color:#47d15d !important;
  color:#fff;
}
.card-btn:hover {
  opacity: 0.6;
  cursor: pointer;
  color:#fff;
}
.card-btn:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(img/icon-plus-w.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-45%);
}
.card-btn:nth-of-type(1) {
  margin-left: 10rem;
  background: rgba(255, 255, 255, 0.9) url(img/icon-sec4-01w.png) no-repeat center top var(--s3)/6.2rem auto;
  animation: fuwafuwa01 3s infinite;
}
.card-btn:nth-of-type(2) {
  margin-right: 10rem;
  background: rgba(255, 255, 255, 0.9) url(img/icon-sec4-02w.png) no-repeat center top var(--s3)/6.2rem auto;
  animation: fuwafuwa01 3s infinite;
}
.card-btn:nth-of-type(3) {
  margin-left: 0;
  background: rgba(255, 255, 255, 0.9) url(img/icon-sec4-03w.png) no-repeat center top var(--s3)/6.2rem auto;
  animation: fuwafuwa 3s infinite;
}
.card-btn:nth-of-type(4) {
  margin-right: 0;
  background: rgba(255, 255, 255, 0.9) url(img/icon-sec4-04w.png) no-repeat center top var(--s3)/6.2rem auto;
  animation: fuwafuwa 3s infinite;
}
.card-btn:nth-of-type(5) {
  margin-left: 10rem;
  background: rgba(255, 255, 255, 0.9) url(img/icon-sec4-05w.png) no-repeat center top var(--s3)/6.2rem auto;
  animation: fuwafuwa01 3s infinite;
}
.card-btn:nth-of-type(6) {
  margin-right: 10rem;
  background: rgba(255, 255, 255, 0.9) url(img/icon-sec4-06w.png) no-repeat center top var(--s3)/6.2rem auto;
  animation: fuwafuwa01 3s infinite;
}

.title-q {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 900;
}
.title-q span {
  margin-right: var(--s3);
  color: #DC9B23;
}

.deco-bg-sec05 {
  position: relative;
}
.deco-bg-sec05:before {
  content: "";
  width: 67.5rem;
  height: 76.5rem;
  background: url(img/deco-corner-right.png) no-repeat center/contain;
  position: absolute;
  right: -5rem;
  top: 0;
}

.swiper-container {
  margin: 3rem auto;
  position: relative;
}

.swiper {
  width: 100%;
}
.swiper-slide {
  width: 34rem;
  height: auto;
}

.swiper-pagination {
  bottom: -30px !important;
}

.swiper-container .swiper-pagination-bullet {
  /*サイズを変更*/
  width: 12rem;
  height: 0.4rem;
  border-radius: 0;
  background-color: #ADADAD;
  /*ドットの間隔を変更*/
  margin: 0 !important;
}

.card-slider {
  height: 100%;
  border-radius: 0 0 var(--s3) 0;
  background: #F5F3D0;
  position: relative;
}
.card-slider__title a {
  display: block;
  padding: var(--s2) var(--s5);
  background: url(img/arrow-01-green-right.svg) no-repeat right 2rem center/1rem auto;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.card-slider__title a:hover {
  opacity: 0.5;
}
.card-slider__title--left a {
  padding-left: var(--s4);
  text-align: left;
  background-position: right var(--s4) center;
}
.card-slider__body {
  padding: 0 var(--s3) var(--s3);
}
.card-slider--step {
  transform: translateY(8rem);
}
.card-slider__en {
  width: 100%;
  height: fit-content;
  font-size: 3.8rem;
  font-weight: 900;
  color: #47D15D;
  position: absolute;
  left: -2rem;
  top: -13rem;
  transform: rotate(90deg);
  transform-origin: left bottom;
}

.vbox-content {
  height: 100%;
  padding-right: var(--s2);
  padding-left: var(--s2);
  overflow: auto;
}

.grid-step {
  grid-gap: var(--s10);
  --minmum: calc((100% - var(--s10)) / 2);
}



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

      sp base settings

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

  body {
    font-size: 1.5rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

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

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

      sp layout cluster

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

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

      sp layout grid

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

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

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

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

      sp layout sidebar

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

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

      sp layout column

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

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

      sp layout grid areas

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

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

      sp layout float

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

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

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal {
    margin: var(--s3) auto;
  }
  .btn-internal a {
    width: 96%;
    padding-right: var(--s5);
    padding-left: var(--s5);
    min-height: var(--s8);
  }
  .btn-internal a:hover {
    background-position: center right var(--s3);
  }

  .btn-web {
    margin: var(--s6) auto var(--s3);
  }
  .btn-web a {
    width: 96%;
    padding-right: var(--s4);
    padding-left: var(--s4);
    min-height: var(--s8);
  }
  .btn-web a:before {
    width: 8.8rem;
    left: -1.6rem;
  }
  .btn-web a:hover {
    background-position: center right var(--s3);
  }

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

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 96%;
    min-height: var(--s8);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #FFE603 url("img/icon-tel.png") no-repeat center left var(--s3)/2rem auto;
    border-radius: 10rem;
    border: solid 0.2rem #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

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

      sp table

  */
  thead, tbody, tr {
    display: block;
  }

  th, td {
    width: 100%;
    display: block;
  }

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

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

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

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

      sp caption

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

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

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

  	catch

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

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

  	sp pankuzu

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

      toc

  */
  .toc-wrap {
    margin: var(--s5) auto;
    border-radius: var(--s2);
  }
  .toc-wrap__title {
    padding: 2rem var(--s6) 2rem 10rem;
    background-size: 6rem auto;
    background-position: left var(--s3) center;
  }
  .toc-wrap__title.js-more-btn:before {
    width: 2.2rem;
    right: 2rem;
  }
  .toc-wrap__title.js-more-btn:after {
    height: 2.2rem;
    right: 3rem;
  }
  .toc-wrap__main {
    width: calc(100% - var(--s5));
  }

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

      sp footer

  */
  .footer-area {
    padding: var(--s3) 0 0;
  }

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

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

  .footer-logo {
    margin: var(--s2) auto;
    width: 18rem;
  }
  .footer-logo__link:hover {
    opacity: 1;
  }

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

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

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

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

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

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

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

  .footer-sitemap {
    display: none;
  }

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

  	sp gnavi

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

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

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

      sp page

  */
  .page-top {
    width: var(--s7);
    height: var(--s7);
    right: 0;
    bottom: 0;
  }
  .page-top__link:hover {
    opacity: 1;
  }

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

       sp toggle sp

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

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

      tab

  */
  .tab-btn {
    font-size: 1.2rem;
	text-align:center;
  }

  .tab-btn-wrapper {
    padding: 0 var(--s2);
    gap: var(--s1);
  }
  .tab-btn-wrapper--bottom.for-sp {
    display: flex;
  }
  .tab-btn-wrapper--bottom .tab-btn--type2.is-active:after {
    top: -1rem;
    transform: translate(-50%) rotate(180deg);
  }
  .tab-btn-wrapper--02 {
    padding: 0 var(--s1);
    gap: var(--s-2);
  }

  .main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1 {
    margin: 0 auto var(--s1);
    padding: var(--s5) var(--s2) 0;
    background-size: 65% auto;
    font-size: 2.6rem;
  }
  .main-area--low h2 {
    font-size: 2.2rem;
    padding: var(--s1) var(--s2) var(--s1) var(--s3);
  }
  .main-area--low h2:before {
    width: 6rem;
    height: 3.5rem;
    top: calc(var(--s1) * -1);
  }
  .main-area--low h2 a {
    background-size: 0.8rem auto;
  }
  .main-area--low h3 {
    font-size: 1.9rem;
    padding: var(--s1) var(--s2) var(--s1) var(--s3);
  }
  .main-area--low h3:before {
    width: 0.5rem;
  }
  .main-area--low h3 a {
    background-size: 0.8rem auto;
  }
  .main-area--low h4 {
    font-size: 1.7rem;
  }
  .main-area--low h4 a {
    background-size: 0.8rem auto;
  }
  .main-area--low h5 {
    font-size: 1.6rem;
  }
  .main-area--low h5 a {
    background-size: 0.8rem auto;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp Header

  */
  .header-area--low {
    margin-bottom: var(--s3);
  }

  .header-menu-logo {
    width: auto;
    height: 4.8rem;
  }
  .header-menu-logo img {
    height: 100%;
    width: auto;
  }
  .header-menu__banner {
    margin: 0;
    padding: 0;
  }
  .header-menu__banner a {
    width: calc(100% - 8rem);
    padding: var(--s1) var(--s8) var(--s1) var(--s2);
    border-radius: 0 var(--s2) 0 0;
    text-align: left;
    font-size: 1.3rem;
    position: fixed;
    left: 0;
    bottom: 0;
  }

  .mainvisual {
    overflow: hidden;
  }
  .mainvisual-inner {
    padding-top: var(--s5);
    padding-bottom: var(--s5);
  }
  .mainvisual-inner:before {
    top: 0.6rem;
  }
  .mainvisual-inner:after {
    width: 100%;
    height: 9.6rem;
    background-size: 102% auto;
    background-position: center top;
    top: 0;
    bottom: auto;
  }
  .mainvisual-inner-bg:before {
    width: 45rem;
    height: 46rem;
    top: var(--s4);
  }
  .mainvisual-logo {
    width: 18rem;
  }
  .mainvisual-fkds {
    padding: var(--s1) var(--s3);
    font-size: 1.7rem;
    line-height: 1;
  }
  .mainvisual-fkds:before {
    border-width: 1rem 0.5rem 0 0.5rem;
  }
  .mainvisual-title {
    font-size: 2.3rem;
    letter-spacing: 0.06em;
  }
  .mainvisual-title span.sm {
    font-size: 1.9rem;
    letter-spacing: 0;
  }
  .mainvisual-title span.st {
    font-size: 2.8rem;
  }
  .mainvisual-body {
    text-align: left;
    padding: 0 var(--s2);
  }
  .mainvisual .btn-internal {
    width: 92%;
  }
  .mainvisual-lower .l-center {
    min-height: initial;
    padding-top: 3rem;
    padding-bottom: var(--s1);
  }
  .mainvisual-lower .l-center:after {
    width: 100%;
    background-size: 100% auto;
    background-position: center top -0.8rem;
    bottom: auto;
    top: 0;
  }
  .mainvisual-lower .l-center:before {
    top: 0.6rem;
  }
  .mainvisual-lower__logo {
    width: 18rem;
  }
  .mainvisual-pr {
    margin-bottom: var(--s1);
    font-size: 1.3rem;
  }

  .text-pr {
    line-height: 1.5;
	font-size:1.1rem;
  }

  .main-area {
    background-size: 3.9rem auto;
  }
  .main-area--low {
    padding-bottom: 6rem;
    overflow: hidden;
  }

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

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

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

  .box-interview {
    padding: var(--s2);
  }

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

  .common-title {
    margin-bottom: var(--s3);
    padding-top: var(--s5);
    background-size: auto 4rem;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
  }
  .common-title--01:before {
    width: 22rem;
    height: 13.5rem;
    left: -1.6rem;
    top: -2rem;
  }
  .common-title--03:before {
    width: 22rem;
    height: 13.5rem;
    left: -1.6rem;
    top: -2rem;
  }
  .common-title a {
    padding-right: 3rem;
    background-size: 1rem auto;
  }

  .common-subtitle {
    margin-bottom: var(--s2);
    font-size: 2.3rem;
  }
  .common-subtitle a {
    padding: 0 var(--s3);
    background-size: 1rem auto;
  }

  h3.common-subtitle {
    font-size: 2.3rem;
  }

  /* Top parts   ----  */
  .sec01-pic {
    position: static;
    width: 100%;
    height: auto;
    margin: -2rem auto -1rem;
  }

  .sec01-arrow {
    width: 3.5rem;
    margin: var(--s2) auto;
  }

  .card-01 {
    padding: var(--s3) var(--s5) var(--s3) var(--s6);
    border-radius: 0 var(--s3) var(--s3) var(--s3);
  }
  .card-01:nth-of-type(1), .card-01:nth-of-type(2), .card-01:nth-of-type(3) {
    background: none;
  }
  .card-01__tag {
    width: fit-content;
    height: 2.8rem;
    font-size: 1rem;
    left: 2.8rem;
  }
  .card-01__modalttl {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }

  h4.card-01__title {
    font-size: 1.9rem;
  }

  .vbox-container {
    padding: 2rem 0;
    padding-right: var(--s1);
    width: 90vw;
    height: 88vh;
  }

  .vbox-content {
    height: 100%;
    padding-right: var(--s1);
    overflow: auto;
  }

  .vbox-next,
.vbox-prev {
    width: 3rem;
    height: 3rem;
  }

  .vbox-prev {
    left: var(--s1);
  }

  .vbox-next {
    right: var(--s1);
  }

  .sec02-bg {
    padding-bottom: var(--s7);
  }

  .sec02-upper {
    padding-bottom: var(--s3);
    background-size: 175% auto;
    min-height: initial;
  }

  .sec02-title {
    width: fit-content;
    margin: -4rem auto var(--s2);
    padding: var(--s3) var(--s5) var(--s3) var(--s3);
    font-size: 2.4rem;
  }
  .sec02-title span.st {
    font-size: 3.2rem;
  }
  .sec02-title:before {
    width: var(--s4);
    height: 32.2rem;
    top: var(--s1);
    right: -1.4rem;
  }

  .sec02-body {
    margin-top: var(--s5);
    padding: var(--s2);
  }
  .sec02-body p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .sec02-body p + p {
    margin-top: 1em;
  }

  .sec02-pic01 {
    position: static;
    width: 86%;
    margin: 0 auto var(--s1);
  }

  .sec02-subtitle {
    padding: 0 var(--s6);
    font-size: 2.4rem;
  }
  .sec02-subtitle:before {
    height: 6rem;
    left: var(--s2);
  }
  .sec02-subtitle:after {
    height: 6rem;
    right: var(--s2);
  }

  .sec02-arrow {
    width: 3.5rem;
  }

  .sec02-subtitle2 {
    font-size: 2.4rem;
  }

  .grid-wrap {
    grid-template-columns: 48.5% 48.5%;
    grid-template-rows: 1fr;
    grid-gap: var(--s1);
  }

  .card-02:nth-of-type(1) {
    grid-area: 1/1/2/3;
    background-size: 14rem auto;
    background-position: right bottom;
  }
  .card-02:nth-of-type(1) .card-02__title {
    width: calc(100% - 14rem);
  }
  .card-02:nth-of-type(2) {
    grid-area: 2/1/3/2;
    padding: var(--s3);
    background-size: 14rem auto;
  }
  .card-02:nth-of-type(2) .card-02__tag {
    width: 3.6rem;
    padding: var(--s2) var(--s1);
    position: absolute;
    right: 0;
    top: 0;
  }
  .card-02:nth-of-type(2) .card-02__title {
    width: auto;
    height: 24rem;
    margin: 0 var(--s3) 0 auto;
    padding: 0 0 var(--s4);
    font-family: "Noto Sans JP vertical";
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    text-shadow: 0 0 0.4rem #fff, 0 0 0.4rem #fff;
  }
  .card-02:nth-of-type(2) .card-02__title:before {
    right: 0;
  }
  .card-02:nth-of-type(3) {
    grid-area: 2/2/3/3;
    background-size: 30% auto;
  }
  .card-02:nth-of-type(3) .card-02__tag {
    width: 3.6rem;
  }
  .card-02:nth-of-type(3) .card-02__title {
    width: auto;
    margin-right: var(--s3);
    padding-bottom: var(--s4);
  }
  .card-02__title {
    font-size: 1.8rem;
    width: 100%;
  }
  .card-02__title:before {
    width: 2rem;
    height: 2rem;
    right: var(--s1);
  }
  .card-02__tag {
    font-size: 1.4rem;
    width: 80%;
  }
  .card-02__modalttl {
    font-size: 1.8rem;
  }

  .sec03-title {
    margin-bottom: var(--s3);
    font-size: 2.6rem;
  }
  .sec03-title span.bg {
    font-size: 3rem;
  }
  .sec03-title:before {
    right: 75%;
    top: -4rem;
    height: 50rem;
  }
  .sec03-title--second {
    font-size: 2.4rem;
  }

  h3.sec03-title--second {
    font-size: 2.4rem;
  }
  h3.sec03-title--second span.bg {
    font-size: 2.6rem;
  }

  .card-03 {
    width: 92%;
    padding: var(--s3);
  }
  .card-03:before {
    width: 3rem;
    right: -3rem;
  }
  .card-03__title {
    font-size: 1.8rem;
  }

  .arrow-between {
    font-size: 1.8rem;
  }

  .sec04-bg {
    padding-top: 6rem;
    background: linear-gradient(transparent 3rem, #F5F3D0 3rem);
  }
  .sec04-bg:before {
    height: 3rem;
  }

  .box-corner {
    margin: var(--s8) auto;
    padding: var(--s6) 0 0;
  }
  .box-corner:before {
    right: var(--s4);
  }
  .box-corner:after {
    width: 100%;
    height: 4.7rem;
    background-position: left bottom;
    left: 0;
    top: -2rem;
  }
  .box-corner-column {
    padding: 0;
  }
  .box-corner-column__pic {
    position: static;
    width: 100%;
  }
  .box-corner--green {
    margin-bottom: var(--s5);
  }
  .box-corner--green:before {
    left: calc(var(--s1) * -1);
    border-radius: 0;
  }
  .box-corner--white:before {
    left: calc(var(--s1) * -1);
    border-radius: 0;
  }
  .box-corner--lower {
    margin-bottom: var(--s3);
    padding-bottom: var(--s2);
  }
  .box-corner--lower .btn-link {
    position: static;
  }
  .box-corner--lower .btn-link a {
    background-image: url(img/arrow-01-orange-right.svg);
  }

  .box-corner-column__title {
    margin-bottom: var(--s2);
    font-size: 1.9rem;
  }
  .box-corner-column__title span.bg {
    font-size: 2.4rem;
  }
  .box-corner-column__title.sv-title {
    padding-left: var(--s2);
  }
  .box-corner-column__title.sv-title:before {
    width: 13rem;
    height: 8rem;
    left: 0;
    font-size: 1.5rem;
  }

  .box-corner-column__name {
    margin: var(--s1) 0 var(--s2);
    font-size: 1.5rem;
  }

  .tab-content {
    padding: var(--s4) var(--s2) var(--s3);
  }
  .tab-content--type1 {
    border-radius: var(--s2) 0 var(--s2) 0;
  }
  .tab-content--type2 {
    border-radius: 0;
  }

  .icon-title {
    padding-left: var(--s8);
    font-size: 2rem;
	margin-bottom:var(--s3);
  }
  .icon-title--01:before {
    width: 5rem;
    height: 5rem;
  }
  .icon-title--02:before {
    width: 5rem;
    height: 5rem;
  }
  .icon-title--03:before {
    width: 4.5rem;
    height: 4.5rem;
  }
  .icon-title--04, .icon-title--05, .icon-title--06 {
    padding-left: var(--s6);
    min-height: initial;
  }
  .icon-title--04:before, .icon-title--05:before, .icon-title--06:before {
    width: 4.5rem;
    height: 4.5rem;
  }

  .inner-section {
    margin-top: 10rem;
  }

  .vertical-title {
    writing-mode: initial;
    text-orientation: initial;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2;
    letter-spacing: 0;
  }
  .vertical-title span.bg {
    padding: var(--s-2) var(--s2);
  }
  .vertical-title--deco1:before {
    width: 3rem;
    height: 15.4rem;
    background-image: url(img/txt-interview-sp.png);
    left: 0;
    top: -1rem;
    transform: rotate(-90deg);
    transform-origin: left top;
  }
  .vertical-title--deco2:before {
    width: 3rem;
    height: 15.4rem;
    background-image: url(img/txt-schedule-sp.png);
    left: 0;
    top: -0.5rem;
    transform: rotate(-90deg);
    transform-origin: left top;
  }
  .vertical-title--deco3:before {
    width: 3.8rem;
    height: 22rem;
    background-image: url(img/txt-question-sp.png);
    left: 0;
    top: -0.5rem;
    transform: rotate(-90deg);
    transform-origin: left top;
  }

  .tab-btn--type1 {
    padding: var(--s5) var(--s1) var(--s1) var(--s1);
  }
  .tab-btn--type1.is-active {
    padding: var(--s6) var(--s1) var(--s1) var(--s1);
    background-size: 4.5rem auto;
    font-size: 1.4rem;
  }
  .tab-btn--type1:nth-of-type(1) {
    background-size: auto 3rem;
    background-position: center top var(--s1);
  }
  .tab-btn--type1:nth-of-type(2) {
    background-size: auto 3.4rem;
    background-position: center top var(--s1);
  }
  .tab-btn--type1:nth-of-type(3) {
    background-size: auto 2.8rem;
    background-position: center top var(--s1);
  }

  .tab-btn--type2 {
    padding: var(--s4) var(--s1) var(--s1) var(--s1);
    background-size: auto 3rem;
    background-position: center top var(--s1);
  }
  .tab-btn--type2.is-active {
    padding: var(--s5) var(--s1) var(--s1) var(--s1);
    font-size: 1.4rem;
  }

  .tab-btn--type3 {
    padding: var(--s2) var(--s1) var(--s1);
    height: 7.6rem;
  }
  .tab-btn--type3:before {
    font-size: 1.8rem;
    top: -1.4rem;
  }
  .tab-btn--type3.is-active {
    padding: var(--s1);
    font-size: 1.4rem;
    height: 9rem;
  }

  .title-q {
    font-size: 1.8rem;
  }

  .box-schedule {
    padding: var(--s2);
  }
  .box-schedule .text-center{
    display:block;
	margin-bottom:1rem;
	color:#666;
	font-size:1.4rem;
  }
  .box-schedule__title {
    font-size: 1.8rem;
	margin-bottom:0.5rem;
	margin-right:auto; 
	margin-left:auto; 
  }

  .card-time__catch {
    font-size: 1.6rem;
  }

  .box-summary {
    padding: var(--s3) var(--s2);
  }
  .box-summary__logo {
    width: 18rem;
    margin: 0 auto;
  }
  .box-summary__title {
    font-size: 1.6rem;
  }
  .box-summary--media {
    margin-top: 0;
    margin-bottom: 0;
  }
  .box-summary--media:before {
    width: 19.4rem;
    height: 2.3rem;
  }

  .box-environment {
    margin-top: var(--s8);
    padding-top: var(--s4);
  }
  .box-environment:before {
    width: 92%;
  }
  .box-environment:after {
    height: 3rem;
    top: -1.6rem;
  }
  .box-environment .box-summary {
    width: 80%;
  }
  .box-environment .btn-internal {
    width: 80%;
  }

  .l-grid-four .card-01 {
    padding-bottom: var(--s3);
    padding-right: var(--s3);
    min-height: 10.9rem;
  }
  .l-grid-four .card-01:nth-of-type(1), .l-grid-four .card-01:nth-of-type(2), .l-grid-four .card-01:nth-of-type(3), .l-grid-four .card-01:nth-of-type(4) {
    background: #fff;
  }

  .inner-section__subtitle {
    font-size: 2rem;
  }

  .box-treatment {
    margin-bottom: 14rem;
    min-height: initial;
    padding-right: 45%;
  }
  .box-treatment:before {
    height: 100%;
    background-position: center top;
    background-size: auto 100%;
    top: var(--s3);
  }
  .box-treatment__title {
    min-height: 35rem;
    padding: var(--s2) var(--s3) var(--s2) var(--s2);
    font-size: 2.6rem;
    width: fit-content;
    left: auto;
    right: var(--s3);
    transform: none;
  }
  .box-treatment__title span.sm {
    font-size: 2rem;
  }
  .box-treatment__title:before {
    width: 2.6rem;
    height: 19rem;
    right: -1.4rem;
  }
  .box-treatment__item {
    display: block;
  }

  .card-btn {
    width: 10rem;
    height: 10rem;
    margin-top: -3rem;
    padding-top: 1rem;
    font-size: 1.7rem;
  }
  .card-btn:after {
    width: 2rem;
    height: 2rem;
    bottom: 1rem;
  }
  .card-btn:nth-of-type(1) {
    margin-left: 0;
    background-position: center top 1rem;
    background-size: auto 3rem;
  }
  .card-btn:nth-of-type(2) {
    margin-right: 0;
    background-position: center top 1rem;
    background-size: auto 3rem;
  }
  .card-btn:nth-of-type(3) {
    margin-left: 0;
    background-position: center top 1rem;
    background-size: auto 3rem;
  }
  .card-btn:nth-of-type(4) {
    margin-right: 0;
    background-position: center top 1rem;
    background-size: auto 3rem;
  }
  .card-btn:nth-of-type(5) {
    margin-left: 0;
    background-position: center top 1rem;
    background-size: auto 3rem;
  }
  .card-btn:nth-of-type(6) {
    margin-right: 0;
    background-position: center top 1rem;
    background-size: auto 3rem;
  }

  .swiper-slide {
    width: 80%;
  }

  .swiper-container .swiper-pagination-bullet {
    width: 8%;
  }

  .deco-bg-sec05:before {
    width: 35rem;
    height: 35rem;
    top: var(--s4);
  }

  .card-slider__title a {
    font-size: 1.8rem;
  }

  .grid-step {
    grid-gap: var(--s5);
  }

  .card-slider--step {
    transform: none;
  }

  .card-slider__en {
    font-size: 1.8rem;
    top: -6rem;
    left: 0;
  }
  .vbox-close{
    right:0;
}
.tab-btn:hover {
  opacity: 1;
}
.card-01__icon {
  width: 7rem;
  margin: 1rem auto var(--s2);
}
.card-comment .l-float__left {
  width: 7.5rem;
}
.card-comment .l-float__right {
  width: 7.5rem;
}
.card-comment {
  min-height:unset;
}
}
