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

    base settings

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

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

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

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


li {
  list-style: none;
}

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

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

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

a:active,
a:hover {
  color: #2d2d2d;
  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 loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
/*
---------------------------------------------

    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(--s1);
}

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

    layout grid

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

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

@supports (width: min(var(--minmum), 100%)) {
  .l-grid,
.l-grid-three {
    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: 40rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

    layout grid areas

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

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

    layout float

*/
.l-float {
  display: flow-root;
}
.l-float__left-pc {
  width: 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: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}

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

    layout scroll x

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

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

    header

*/
.header-area {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area__name {
  width: fit-content;
  margin: var(--s1) 0 0 auto;
  text-align: right;
  font-size: 1.1rem;
}
.header-area__name:before {
  content: "PR";
  margin-right: 0;
  padding: 0 var(--s-2);
  background: #2d2d2d;
  color: #fff;
}
.header-area__name a {
  text-decoration: none;
}
.header-area__name a:hover {
  opacity: 0.6;
}
.header-area__logo {
  margin: var(--s2) 0 0 var(--s2);
  width: 18rem;
  position: relative;
}
.header-area__logo a {
  display: block;
}
.header-area__logo a:hover {
  opacity: 0.6;
}
.header-area--low {
  margin-bottom: var(--s8);
  padding-bottom: 6rem;
  border-bottom-right-radius: 20rem;
  background: #FFF1E8;
  position: relative;
}
.header-area--low:before {
  content: "";
  width: 42%;
  height: 14.1rem;
  background: url(img/mv-low-left.png) repeat-x right bottom/auto 100%;
  position: absolute;
  left: 0;
  bottom: -2rem;
}
.header-area--low:after {
  content: "";
  width: 42%;
  height: 14.1rem;
  background: url(img/mv-low-right.png) repeat-x left bottom/auto 100%;
  position: absolute;
  right: 0;
  bottom: -2rem;
}
.header-area--low .header-area__logo {
  margin: 2rem auto 0;
}
.header-area__inner {
  padding-right: 9.6rem;
  display: flex;
}

.mainvisual {
  min-height: 65rem;
  background: #ffdac2 url(img/mv-circle.png) no-repeat center bottom / auto 63rem;
  position: relative;
  z-index: 0;
}
.mainvisual-inner {
  padding-top: var(--s6);
}
.mainvisual-title {
  padding-top: 8rem;
  background: url(img/icon-mv-title.png) no-repeat center top/8rem auto;
  text-align: center;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.7;
}
.mainvisual-title span.sm {
  font-size: 2.4rem;
  background-image: radial-gradient(circle, #ffc70f 2px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 10px 4px;
  padding: 0 0 6px 0;
  margin-bottom: 2rem;
}
.mainvisual-title span.cl {
  color: #FF7A21;
}
.mainvisual .loop-animation {
  display: flex;
  width: 100vw;
  height: auto;
  position: relative;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -15px;
}
.mainvisual .loop-animation img {
 width: 100%;
 height: auto;
 will-change: transform;
}
.mainvisual .loop-animation img:first-child {
  animation: loop 80s -40s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
.mainvisual .loop-animation img + img {
  animation: loop2 80s linear infinite;
}
.mainvisual .loop-animation--bg {
  height: auto;
  bottom: auto;
  top: 20rem;
  z-index: -1;
}
.mainvisual .loop-animation--bg img:first-child {
  animation: loop 180s -90s linear infinite;
}
.mainvisual .loop-animation--bg img + img {
  animation: loop2 180s linear infinite;
}
.mainvisual .loop-animation.for-sp {
    display: none;
}

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

    section

*/
.main-area {
  overflow: clip;
}
.main-area--low {
  padding-bottom: 10rem;
}

.main-area--low ul{
  margin: 3rem 0;
}

section {
  padding: 12rem 0;
}

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

    list

*/
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 2.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #FF7A21;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 1rem;
}
.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: #2d2d2d;
  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 {
  width: 36rem;
  margin: var(--s5) auto var(--s8);
  position: relative;
}
.btn-internal a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 4.5rem;
  background: #F9BE00 url(img/arrow-01-black-right.svg) no-repeat center right var(--s2)/2.7rem auto;
  border-radius: 8rem;
  box-shadow: 0.3rem 0.5rem 0 #C49600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-internal--down a {
  background-image: url(img/arrow-01-black-down.svg);
}
.btn-internal:hover a {
  transform: translate(0.4rem, 0.4rem);
  box-shadow: none;
}

.btn-web {
  width: 36rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem 4.5rem;
  background: #E73357 url(img/arrow-btn-web.svg) no-repeat center right var(--s2)/2.7rem auto;
  border-radius: 8rem;
  box-shadow: 0.3rem 0.5rem 0 #BA2745;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.btn-web:hover a {
  transform: translate(0.4rem, 0.4rem);
  box-shadow: none;
}
.btn-web--pic {
  margin-top: var(--s9);
}
.btn-web--pic a {
  padding-left: 8rem;
}
.btn-web--pic a:before {
  content: "";
  width: 8.2rem;
  height: 10.8rem;
 background: url(img/illust-crew-1.png) no-repeat center bottom/contain;
  position: absolute;
  left: -1rem;
  bottom: 0;
}
#company02 .btn-web--pic a:before {
 background: url(img/illust-crew-2.png) no-repeat center bottom/contain;
}

#company03 .btn-web--pic a:before {
 background: url(img/illust-crew-3.png) no-repeat center bottom/contain;
}

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

.btn-tel {
  display: none;
}

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

    table

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

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

th {
  background: #FBF8EE;
}

tbody th {
  background: #FBF8EE;
}

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

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

    caption

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

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.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: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #CC621A;
}

.catch-02 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #CC621A;
}

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

	text

*/
.marker {
  background: linear-gradient(to bottom, transparent 90%, #ffcc11 55%);
  font-weight: 700;
}

.txt_bold {
  font-weight: 700;
  color: #FF7A21;
}

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

	subgrid card

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

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

    float wrap

*/
.float-wrap {
  margin: 0 auto;
  display: flow-root;
}
.float-wrap .float-img.fr {
  width: 38rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 38rem;
  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);
}

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

	pankuzu

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

    footer

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

.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: #FF7A21;
  color: #FFF;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  max-width: 18rem;
  margin: var(--s5) auto;
  font-size: 2rem;
  text-align: center;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}
.footer-logo__link:hover {
  opacity: 0.6;
}

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

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

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

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

.footer-disclaimer {
  width: 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;
}

.footer-banner {
  width: 12vw;
  display: block;
  position: fixed;
  right: 0;
  bottom: 11rem;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  text-decoration: none;
}
.footer-banner a {
  display: block;
}
.footer-banner a:hover {
  opacity: 0.6;
}
.footer-banner.for-sp {
  display: none;
}
.footer-banner.is-show {
  opacity: 1;
  visibility: visible;
}

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

    gnavi

*/
.gnavi-btn {
  width: 7rem;
  height: 7rem;
  background: #fff;
  border: solid 0.3rem #FF7A21;
  border-radius: var(--s1);
  display: block;
  position: fixed;
  top: var(--s1);
  right: var(--s1);
  z-index: 200;
  cursor: pointer;
  opacity: 0; /* 初期状態は非表示 */
  visibility: hidden; /* 初期状態は非表示 */
  transition: all 0.4s; /* スムーズな表示・非表示 */
}

.gnavi-btn.is-show {
  opacity: 1;
  visibility: visible;
}
.gnavi-btn span {
  width: 4rem;
  height: 0.3rem;
  display: inline-block;
  background: #FF7A21;
  position: absolute;
  left: 1.2rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.8rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.1rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.4rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1.4rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  display: none;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.2rem) rotate(45deg);
}

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

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  font-weight: 900;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("img/arrow-02-black-down.svg") no-repeat center/contain;
  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.4);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}
.gnavi-menu{
	margin:0;
	padding:0
}

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

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

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

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

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: var(--s4) var(--s6);
  background: #F7F7F7;
  border-radius: var(--s3);
  position: relative;
}
.toc-lower-wrap ul {
  margin-top: 0;
  margin-bottom: 0;
}
.toc-lower-wrap ul li + li {
  margin-top: 1.2em;
}
.toc-lower-wrap ul li.chapter-h-two,
.toc-lower-wrap ul li.relation-links {
  padding: 0 0 0 2em;
  font-size: 1.6rem;
  font-weight: 900;
  position: relative;
  counter-increment: number;
}
.toc-lower-wrap ul li.chapter-h-two::before,
.toc-lower-wrap ul li.relation-links::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(img/arrow-02-orange-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul li.relation-links a {
  background: none;
}
.toc-lower-wrap a {
  display: block;
  text-decoration: none;
}
.toc-lower-wrap a:hover {
  text-decoration: underline;
}
.toc-lower-wrap .more__content {
  padding-bottom: var(--s3);
}

.toc-lower__title {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
}
.toc-lower__title span {
  margin-right: var(--s3);
  font-size: 1.8rem;
  color: #FF7A21;
}

.toc-lower__body {
  padding-bottom: var(--s3);
}

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

    page

*/
.page-top {
  width: var(--s9);
  height: var(--s9);
  position: fixed;
  right: 0;
  bottom: var(--s2);
  z-index: 10;
}
.page-top__link {
  width: 100%;
  height: 100%;
}
.page-top__link:hover {
  opacity: 0.6;
}

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  margin: var(--s3) auto;
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: #2d2d2d;
  border: 0.2rem solid #2d2d2d;
  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: 30rem;
  margin: var(--s5) auto;
  padding: var(--s2) var(--s6);
  background: #fff;
  border-radius: 10rem;
  border: solid 0.2rem #d4d4d4;
  text-align: center;
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: #2d2d2d;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: #2d2d2d;
  position: absolute;
  top: 50%;
  right: 3.1rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn:hover {
  opacity: 0.6;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more-content {
  display: none;
}

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

    グラデーション  more-content

*/
.more__content {
  position: relative;
  height: auto;
  max-height: 15rem;
  overflow: hidden;
  transition: max-height 1s;
}

.more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, #F7F7F7 100%);
}

.more__content.open {
  height: auto;
}

.more__content.open:after {
  z-index: -1;
  opacity: 0;
}

.more__content.sp-only {
  overflow: initial;
  max-height: initial;
}

.more__content.sp-only:after {
  content: none;
}

.more__btn {
  width: 25rem;
  min-width: 9rem;
  display: block;
  margin: var(--s1) auto -7rem;
  padding: 1rem 2rem 1rem var(--s1);
  border-radius: 5rem;
  border: solid 0.2rem #2d2d2d;
  background: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.more__btn::before {
  content: "";
  width: 1.3rem;
  height: 0.2rem;
  background: #2d2d2d;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.3rem;
  background: #2d2d2d;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

.more__btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more__btn.for-sp {
  display: none;
}

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

    lower Parts

*/
.box-editor {
  max-width: 92rem;
  margin: 10rem auto var(--s10);
  padding: 0 var(--s6) var(--s4);
  border-radius: var(--s3);
  border: solid 0.2rem #F9BE00;
  background: #fff;
}
.box-editor__tag {
  width: fit-content;
  margin: 0 var(--s4) var(--s4) 0;
  padding: var(--s2) var(--s4);
  background: rgba(249, 190, 0, 0.3);
  border-radius: 0 0 var(--s2) var(--s2);
  font-size: 1.6rem;
  font-weight: 700;
  float: left;
}
.box-editor__tag img {
  display: block;
  margin: 0 auto var(--s1);
  width: 9.8rem;
}
.box-editor__body {
  clear: both;
}
.box-editor .catch-01 {
  margin: var(--s3) 0;
}
.box-editor .btn-internal,
.box-editor .btn-web {
  margin: var(--s3) auto;
}
.box-editor .l-grid-areas {
  margin-top: var(--s4);
}
.box-editor .l-grid-areas .l-grid-areas__cell-02 {
  margin-top: -7rem;
}

.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 {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  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__side img {
  margin-bottom: var(--s1);
  border-radius: 50%;
}
.parts-comment-wrap__main {
  flex: 1;
}
.parts-comment-wrap + .parts-comment-wrap {
  margin-top: var(--s6);
}

.card-comment {
  padding: var(--s5);
  border-radius: var(--s4);
  background: #FFF1E8;
}
.card-comment img{
border-radius: 50%;
}
.card-comment .float-wrap .float-img.fl {
  width: 15rem;
  border-radius: 50%;
}
.card-comment--reverse {
  border-radius: var(--s4);
}
.card-comment__catch {
  font-size: 2.4rem;
  font-weight: 700;
  color: #CC621A;
  line-height: 1.5;
}

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

.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(--s10) auto var(--s5);
  font-weight: 700;
}
.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: var(--s4);
  text-decoration: none;
}
.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.6;
}
.main-area--low h1 {
  margin: 0 auto var(--s8) 0;
  padding: var(--s3) 0 0;
  font-size: 4.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 0;
}
.main-area--low h1:before {
  content: "CONTENTS";
  width: 100%;
  font-size: 1.7rem;
  font-weight: 700;
  color: #FF7A21;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}
.main-area--low h2 {
  padding: 2.2rem var(--s3) 2.2rem var(--s6);
  border-radius: var(--s2);
  font-size: 3.6rem;
  color: #fff;
  background: #FF7A21 url(img/deco-h2.png) no-repeat right top/auto 9.4rem;
  margin: 12rem auto var(--s6);
}
.main-area--low h2 a {
  background: url(img/arrow-02-white-right.svg) no-repeat right var(--s1) center;
  background-size: 2.2rem auto;
  color: #fff;
}
.main-area--low h3 {
  padding: 0 0 0.4rem var(--s-2);
  border-bottom: solid 0.3rem #E2E2E2;
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3:before {
  content: "";
  width: 5.7rem;
  height: 5.7rem;
  background: #F9BE00;
  border-radius: 50%;
  position: absolute;
  left: -1rem;
  top: -3rem;
  z-index: -1;
  opacity: 0.3;
}
.main-area--low h3 a {
  background: url(img/arrow-02-black-right.svg) no-repeat right var(--s2) center;
  background-size: 1.6rem auto;
}
.main-area--low h4, .main-area--low h5 {
  padding: 0.2rem 0 0.2rem var(--s2);
  font-size: 2rem;
  position: relative;
}
.main-area--low h4:before, .main-area--low h5:before {
  content: "";
  width: 0.8rem;
  height: 100%;
  background: #F9BE00;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4 a, .main-area--low h5 a {
  background: url(img/arrow-02-black-right.svg) no-repeat right var(--s2) center;
  background-size: 1.6rem auto;
}

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

    TOP common

*/
.common-title {
  font-size: 3.6rem;
  font-weight: 700;
}
.common-title--center {
  margin-bottom: var(--s5);
  text-align: center;
}

.common-lead {
  max-width: 82rem;
  margin: 0 auto var(--s4);
}

.common-title-en {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF7A21;
}
.common-title-en--center {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

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

    TOP parts

*/
.sec01-box {
  padding: var(--s6);
  padding-bottom: 10rem;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
}
.sec01-box:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border-radius: var(--s8) 0 0 var(--s8);
  border: solid 3px #ffdac2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec01-box:after {
 content: "";
    width: 27rem;
    height: 12.7rem;
    background: url(img/illust-shop.png) no-repeat center / contain;
    position: absolute;
    right: 1rem;
    bottom: 5rem;
}
.sec01-box span.marker {
  font-size: 2rem;
}
.sec01-box__title {
  margin-bottom: var(--s4);
  padding-top: 5.8rem;
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
}
.sec01-box__title:before {
  content: "INTRODUCTION";
  width: 100%;
  color: #FFA163;
  font-size: 4.2rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.sec01-box__title:after {
      content: "";
    width: 10.7rem;
    height: 14.5rem;
    background: url(img/illust-women.png) no-repeat center / contain;
    position: absolute;
    left: 100px;
    bottom: -7px;
}

.deco-circle .l-center {
  position: relative;
}
.deco-circle .l-center:before {
  content: "";
  width: 100vw;
  height: 57rem;
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #fff5aa url(img/deco-circle-orange.png) no-repeat 27% top / 47rem auto;
  position: absolute;
  right: -10rem;
  top: -10rem;
  z-index: -1;
}
.deco-circle--gray .l-center:before {
  height: 42.6rem;
  background: #F3F3F3 url(img/deco-circle-gray.png) no-repeat 20% top/47rem auto;
}
.deco-circle--low {
  margin-top: 10rem;
  padding-bottom: 0;
}

.bg-round__title {
  margin: 0 auto var(--s10);
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
}
.bg-round__title span.bg-wt {
  display: block;
  width: fit-content;
  margin: 0 auto var(--s1);
  padding: var(--s-2) var(--s3);
  border-radius: var(--s6);
  background: #fff;
  font-size: 2.8rem;
}
.bg-round__title span.cl {
  color: #FF7A21;
}
.bg-round__title span.sm {
  font-size: 3.2rem;
}

.bg-round .l-grid > div,
.card_long {
  position: relative;
  transition: opacity 0.3s;
}

.bg-round .l-grid > div .bg-round__lead {
  padding-bottom: var(--s4);
}

.bg-round-inner .l-grid > div:hover,
.card_long:hover {
  transition: opacity 0.3s;
  opacity: .7;
}

.card_long {
  padding-bottom: var(--s4);
}



.card-dealer {
  padding: 0 var(--s3) var(--s5);
  position: relative;
  z-index: 0;
}
.card-dealer:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s9));
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: var(--s9);
  z-index: -1;
}
.card-dealer.subgrid-card {
  grid-row: span 7;
}
.card-dealer__catch {
  margin-bottom: 0;
  padding: var(--s2);
  padding-left: 11rem;
  background: #FF7A21;
  border-radius: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  position: relative;
}
.card-dealer__catch span.st {
  font-size: 2.6rem;
}
.card-dealer__catch:before {
  content: "";
    width: 13.1rem;
    height: 14.2rem;
    background: url(img/illust-crew-1.png) no-repeat center bottom / contain;
    position: absolute;
    left: -2.2rem;
    bottom: 0;
}
.card-dealer__catch:after {
  content: "";
  width: 2.9rem;
  height: 3.1rem;
  /* background: url(img/fkds-1.png) no-repeat center/contain; */
  position: absolute;
  left: 50%;
  bottom: -3.8rem;
  transform: translateX(-50%);
}
.card-dealer__catch--02 {
  background: #73BA31;
}
.card-dealer__catch--02:before {
  background: url(img/illust-crew-2.png) no-repeat center bottom/contain;
}
.card-dealer__catch--02:after {
  /* background: url(img/fkds-2.png) no-repeat center/contain; */
}
.card-dealer__catch--03 {
  background: #0075C0;
}
.card-dealer__catch--03:before {
  background: url(img/illust-crew-3.png) no-repeat center bottom/contain;
}
.card-dealer__catch--03:after {
  /* background: url(img/fkds-3.png) no-repeat center/contain; */
}
.card-dealer__name {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.card-dealer__because {
  padding: var(--s4) var(--s2) var(--s3) var(--s1);
  background: #fff3ea;
  border-radius: var(--s3);
  position: relative;
}
.card-dealer__because ul{
	margin:0;
	padding:0;
}

.card-dealer__because:before {
  content: "BECAUSE";
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e73357;
  text-align: center;
  position: absolute;
  left: 0;
  top: -1rem;
}
.card-dealer__because--02 {
  background: #E8FDD2;
}
.card-dealer__because--03 {
  background: #ddfffb;
}
.card-dealer .caption-scroll {
  margin-top: -1.6rem;
}
.card-dealer .btn-web,
.card-dealer .btn-internal {
  width: 100%;
  margin: 0 auto;
}

.sec-corner {
  padding-top: 8rem;
  border-radius: var(--s8) var(--s8) 0 0;
  background: #FFF1E8 url(img/bg-repeat-circle.png) repeat-y center top 14rem/180rem auto;
}

.deco-title {
 width: fit-content;
    margin: 0 auto var(--s7) auto;
    padding: 0 22rem;
    background: url(img/deco-title.png) no-repeat left 0rem bottom / 18.3rem auto, url(img/deco-title_2.png) no-repeat right 0rem bottom / 17.3rem auto;
    text-align: center;
    font-size: 4.2rem;
    font-weight: 700;
}
.deco-title span.deco {
  width: fit-content;
  margin: 0 auto var(--s1);
  padding: 0 var(--s6) 0;
  background: url(img/deco-left.png) no-repeat left center/auto 4.1rem, url(img/deco-right.png) no-repeat right center/auto 4.1rem;
  display: block;
  font-size: 2.8rem;
}
.deco-title span.sm {
  font-size: 3.2rem;
}
.deco-title span.cl {
  color: #E73357;
}

.box-detail {
  padding: 0 5rem 5rem;
  position: relative;
  z-index: 0;
}
.box-detail:before {
  content: "";
  width: 100vw;
  height: calc(100% - 11rem);
  background: #fff;
  border-bottom-left-radius: var(--s8);
  box-shadow: 1rem 1rem 2.5rem rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 11rem;
  z-index: -1;
}
.box-detail + .box-detail {
  margin-top: 14rem;
}

.detail-title {
  margin-bottom: var(--s5);
  padding: 5rem 5rem var(--s5);
  position: relative;
  z-index: 0;
}
.detail-title:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #FF7A21;
  border-radius: 0 var(--s6) var(--s6) 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.detail-title:after {
  content: "";
  width: 19rem;
  height: 26.3rem;
  background: url(img/illust-crew-1.png) no-repeat center bottom/contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.detail-title--02:before {
  background: #73BA31;
}
.detail-title--02:after {
  background-image: url(img/illust-crew-2.png);
}
.detail-title--03:before {
  background: #0075C0;
}
.detail-title--03:after {
  background-image: url(img/illust-crew-3.png);
}
.detail-title__catch {
  margin-bottom: var(--s1);
  padding: var(--s-2) var(--s4) var(--s-2) 18rem;
  background: #fff;
  border-radius: var(--s6);
  font-size: 3.4rem;
  font-weight: 700;
}
.detail-title__catch span.cl {
  color: #E73357;
  font-size: 4rem;
}
.detail-title__name {
  padding-left: 18rem;
  font-size: 4.6rem;
  font-weight: 700;
  color: #fff;
}

.inner-cap {
  margin: 0 auto;
  max-width: 80rem;
}

.box-recommend {
  margin: var(--s8) auto;
  padding: var(--s3) var(--s8) var(--s4);
  border-radius: var(--s8);
  background: rgba(249, 190, 0, 0.1);
}
.box-recommend__title {
  margin: -4rem auto var(--s3);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: #ff7a21;
  border-radius: var(--s6);
  padding: var(--s-2) var(--s4) var(--s-2);
  color: #ffffff;
  width: 51rem;
}

#company02 .box-recommend__title {
  background: #73ba31;
}

#company03 .box-recommend__title {
  background: #0075C0;
}
.box-recommend__title span.st {
  font-size: 2.5rem;
}
.box-recommend__list {
  margin-bottom: var(--s3);
  padding: var(--s2) 0 var(--s3) 3.5rem;
  /* border-bottom: solid 0.2rem #CCCCCC; */
  position: relative;
}
.box-recommend__list:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.box-recommend__list:before {
  content: "";
  width: 5.5rem;
  height: 7.2rem;
  background: url(img/point-bg.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -0.8rem;
}
.box-recommend__list:after {
  content: "1";
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  left: 2.2rem;
  top: 1.75rem;
  color: #2d2d2d;
}
.box-recommend__list:nth-of-type(2):after {
  content: "2";
}
.box-recommend__list:nth-of-type(3):after {
  content: "3";
}

.recommend-catch {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
  background: #ffffff;
  border-radius: var(--s6);
  padding: 1rem 3rem 1rem 4rem;
}
.recommend-catch span.cl {
  color: #ff7a21;
  font-size: 2.4rem;
}
#company02 .recommend-catch span.cl {
  color: #64a528;
  font-size: 2.4rem;
}

#company03 .recommend-catch span.cl {
  color: #0075C0;
  font-size: 2.4rem;
}

.common-subtitle {
  width: fit-content;
  margin: var(--s8) auto var(--s4);
  padding: 0 var(--s3);
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
.common-subtitle:before {
  content: "";
  width: 10rem;
  height: 0.3rem;
  background: #FF7A21;
  position: absolute;
  right: 100%;
  top: 50%;
}
.common-subtitle:after {
  content: "";
  width: 10rem;
  height: 0.4rem;
  background: #FF7A21;
  position: absolute;
  left: 100%;
  top: 50%;
}

.card-voice {
  padding: var(--s3);
  border-radius: var(--s3);
  background: #F3F3F3;
}
.card-voice.subgrid-card {
  grid-row: span 3;
  grid-gap: var(--s2);
}
.card-voice__catch {
  padding-left: 8.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-voice__catch:before {
  content: "";
    width: 8.2rem;
    height: 10.8rem;
    background: url(img/illust-crew-4.png) no-repeat center / contain;
    position: absolute;
    left: -2rem;
    bottom: -4px;
}
.card-voice .caption-scroll {
  margin-top: -1rem;
  color: #5B5555;
}

.shop-list {
  padding-left: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.shop-list::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #FF7A21;
  border-radius: 10rem;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.shop-list span.sm {
  font-size: 1.5rem;
  font-weight: 400;
}

.bg-fkds {
  background: url(img/deco-bg-fkds.png) no-repeat;
  background-position: calc(50% + 30rem) top;
  background-size: 49rem auto;
  position: relative;
}
.bg-fkds:before {
  content: "";
  width: 43rem;
  height: 43rem;
  border-radius: 50%;
  background: #F9BE00;
  position: absolute;
  left: calc(50% - 80rem);
  bottom: 20rem;
  opacity: 0.1;
  z-index: -1;
}

.deco-pr {
  margin-bottom: var(--s5);
  text-align: center;
  position: relative;
  z-index: 0;
}
.deco-pr:before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #d1bbad;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.deco-pr span {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s-2) var(--s2);
  border-radius: var(--s1);
  background: #FF7A21;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.card-fkds {
  max-width: 82rem;
}
.card-fkds__title {
  padding: var(--s2) var(--s4);
  border-radius: var(--s3) var(--s3) 0 0;
  background: #FF7A21;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  position: relative;
}
.card-fkds__title:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #FF7A21 transparent transparent;
  position: absolute;
  right: 100%;
  top: var(--s4);
}
.card-fkds__title h3 {
  flex: 1;
}
.card-fkds__body {
  padding: var(--s2) var(--s4);
  border-radius: 0 0 var(--s3) var(--s3);
  border: solid 0.3rem #FF7A21;
  background: #fff;
}
.card-fkds .generation {
  width: fit-content;
  padding: var(--s-2) var(--s2);
  border-radius: var(--s5);
  background: #fff;
  font-size: 1.8rem;
  color: #2d2d2d;
}
.card-fkds--reverse .card-fkds__title:before {
  transform: rotate(180deg);
  right: auto;
  left: 100%;
}

.bg-round {
  background: url(img/bg-repeat-circle-y.png) repeat-y center top 2rem/180rem auto, url(img/bg-round-white.svg) no-repeat center top/100% auto, #FFF9E6;
}
.bg-round__lead {
  width: 95%;
  margin: var(--s4) auto;
}

.title-number {
  margin: var(--s6) 0 var(--s4);
  padding: var(--s3) var(--s4) var(--s3) 13rem;
  border-radius: var(--s3) var(--s3) 0 0;
  background: #FF7A21;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.title-number:before {
  content: "";
  width: 10rem;
  height: 10rem;
  background: url(img/icon-num-1.png) no-repeat center/contain;
  position: absolute;
  left: var(--s2);
  top: -2rem;
}
.title-number--02 {
  font-size: 2.4rem;
}
.title-number--02:before {
  background-image: url(img/icon-num-2.png);
}
.title-number--03 {
  font-size: 2.4rem;
}
.title-number--03:before {
  background-image: url(img/icon-num-3.png);
}
.title-number--04 {
  font-size: 2.4rem;
}
.title-number--04:before {
  background-image: url(img/icon-num-4.png);
}
.title-number--05 {
  font-size: 2.4rem;
}
.title-number--05:before {
  background-image: url(img/icon-num-5.png);
}
.title-number--06 {
  font-size: 2.4rem;
}
.title-number--06:before {
  background-image: url(img/icon-num-6.png);
}

.inner-picture {
  margin: var(--s4) 0;
}
.inner-picture img {
  border-radius: 2rem;
}

@media screen and (min-width: 768px) {
  a:not(.card-qa) .btn-more-s {
    text-decoration: none;
    position: absolute;
    inset: 0;
  }
  a:not(.card-qa) .btn-more-s span {
    position: absolute;
    bottom: 0;
    right: 5%;
  }
}

.bg-round .btn-more-s {
  text-decoration: none;
  display: block;
  position: absolute;
  inset: 0;
  margin-top: var(--s2);
}

.bg-round .btn-more-s:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
}
.bg-round .btn-more-s span,
.card-qa .btn-more-s {
  display: flex;
  width: fit-content;
  padding: var(--s1) var(--s5) var(--s1) var(--s3);
  background: #F9BE00 url(img/arrow-02-black-right.svg) no-repeat right var(--s2) center/1.5rem auto;
  border-radius: var(--s5);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: auto;
}

.bg-round .btn-more-s span {
  position: absolute;
  right: 0;
  bottom: 0;
}

.title-carrer {
  margin: var(--s6) 0 var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
}
.title-carrer span {
  display: inline-block;
  margin-right: var(--s2);
  padding: var(--s1) var(--s3);
  border-radius: 0 var(--s5) var(--s5) 0;
  background: #F9BE00;
}

.card-carrer {
  padding: var(--s3);
  border-radius: 2rem;
  background: #fff;
}
.card-carrer-wrap {
  margin-bottom: var(--s5);
  align-items: flex-start;
}
.card-carrer__title {
  margin-bottom: var(--s2);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #CC621A;
}
.card-carrer .more-btn {
  width: 90%;
  margin: var(--s2) auto var(--s1);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-width: 1px;
}

.sec06-upper {
  margin-bottom: var(--s8);
  grid-template-columns: 1fr 48.5rem;
}

.sec06-pic {
  border-radius: var(--s3) 0 0 var(--s3);
  position: relative;
  z-index: 0;
}
.sec06-pic img {
  border-radius: var(--s3) 0 0 var(--s3);
}
.sec06-pic:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #E9EAE4;
  border-radius: var(--s3) 0 0 var(--s3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.card-qa {
  padding: var(--s4) var(--s5);
  border-radius: 3rem;
  box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.1);
  background: #fff;
 display: block; /* 全体をクリック可能に */
text-decoration: none; /* デフォルトのリンク装飾を削除 */
    color: inherit; /* 親要素のテキスト色を継承 */
}

.card-qa:hover {
    opacity: 0.6; /* ホバー時の視覚効果（必要に応じて調整） */
}
.card-qa.subgrid-card {
  grid-row: span 4;
}
.card-qa__title {
  padding: 0 0 0 8.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.card-qa__title:before {
  content: "Q";
  width: 7rem;
  height: 7rem;
  padding-top: 0.5rem;
  border-radius: 50%;
  background: #FF7A21;
  box-sizing: border-box;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
.card-qa__answer {
  font-size: 2rem;
  font-weight: 700;
  padding: 2rem 0;
}
.card-qa__answer span {
  margin-right: var(--s1);
  color: #CC621A;
}
.card-qa .btn-more-s {
  margin-top: 0;
}

.card-company {
  padding: var(--s4);
  border-radius: 3rem;
  box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.card-company.subgrid-card {
  grid-row: span 3;
}
.card-company__name a {
  display: block;
  margin: 0 -3.2rem;
  padding: 1rem var(--s4);
  background: #fff1e8 url(img/arrow-02-black-right.svg) no-repeat right var(--s3) center / 1.5rem auto;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;
}
.card-company__name a:hover {
  opacity: 0.7;
}
.card-company-wrap {
  padding-top: 2rem;
}

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

      sp base settings

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

  body {
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

  */
  .l-center {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    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(--s3);
    grid-template-columns: 100%;
  }

  .l-grid-three {
    grid-gap: var(--s3);
    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__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) {
  /*
  ---------------------------------------------

      header

  */
  .header-area__inner {
    padding: 0 0rem 1rem;
    flex-direction: column-reverse;
  }
  .header-area__logo {
    width: 10rem;
    margin: var(--s-2) 0 0 var(--s-2);
  }
  .header-area__logo a:hover {
    opacity: 1;
  }
  .header-area__name {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
  .header-area__name a:hover {
    opacity: 1;
  }
  .header-area--low {
    padding-bottom: var(--s3);
  }
     .header-area--low:before, .header-area--low:after {
        width: 100%;
        bottom: -6rem;
        height: 7.5rem;
    }
	.header-area--low:before {
    background: none;
}
	    .header-area--low:after {
        background: url(img/mv-low-right.png) no-repeat left bottom / auto 100%;
        right: 0;
    }

.mainvisual {
            min-height: 39rem;
        background-size: 210% 35rem;
  }
  .mainvisual-title {
    padding: var(--s8) var(--s2) var(--s3) var(--s2);
    background-size: 5rem auto;
    font-size: 2.6rem;
  }
  .mainvisual-title span.sm {
    font-size: 1.8rem;
  }
  .mainvisual-lead {
    padding: var(--s2) var(--s1) var(--s3) 4rem;
  }
  .mainvisual-lead:before {
    height: calc(100% + 4rem);
  }
  .mainvisual .loop-animation {
    height: auto;
  }
  .mainvisual .loop-animation--bg {
    top: 9rem;
    height: auto;
  }
	.mainvisual .loop-animation img {
    width: 100%;
    height: auto;
}
	    .mainvisual .loop-animation.for-pc {
    display: none;
}
    .mainvisual .loop-animation.for-sp {
    display: flex;
}
	.mainvisual .loop-animation img:first-child {
    animation: loop 60s -30s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
}
	.mainvisual .loop-animation img + img {
    animation: loop2 60s linear infinite;
}
	
  /*
  ---------------------------------------------

      section

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

  section {
    padding: 5rem 0;
  }

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

      sp btn

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

  .btn-web--pic a {
    padding-left: var(--s9);
  }
  .btn-web--pic a:before {
    width: 6.2rem;
    height: 8.5rem;
    left: 0;
  }

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

  .main-area--low .btn-link {
    width: 94%;
  }
  .main-area--low .btn-link a {
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 4.5rem;
    background: #fff url("img/arrow-01-black-right.svg") no-repeat center right 1.2rem/1.8rem auto;
    border-radius: 5rem;
    border: solid 0.2rem #999;
    box-shadow: 0.3rem 0.5rem 0 #999;
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

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

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

      sp table

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

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

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

  	sp catch

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

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

      sp float wrap

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

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

  	sp pankuzu

  */
  #pankuzu {
    margin-bottom: var(--s3);
  }

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

      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 8rem;
  }

  .footer-logo {
    width: 10rem;
    margin: var(--s3) auto;
    font-size: 1.8rem;
  }
  .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.5rem;
    height: 1.5rem;
    background: url("img/arrow-02-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-02-black-right.svg") no-repeat center/auto 1em;
  }

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

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

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

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

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

  .footer-sitemap {
    display: none;
  }

  .footer-banner-sp {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    transition: opacity 0.3s ease;
  }
  .footer-banner-sp a {
    width: 30rem;
    display: block;
    padding: var(--s1) 1rem var(--s1) 1rem;
    /* color: #fff; */
    display: block;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
  }
  .footer-banner-sp a span.st {
    font-size: 1.6rem;
  }
  .footer-banner-sp-left {
    border-radius: 1rem 0 0 0;
    background: #CC621A url(img/arrow-02-white-right.svg) no-repeat right var(--s1) bottom 1.1rem/1.2rem auto;
    color: #fff;
  }
  .footer-banner-sp-right {
    border-radius: 0 1rem 0 0;
    background: #F9BE00 url(img/arrow-02-white-right.svg) no-repeat right var(--s1) bottom 1.1rem/1.2rem auto;
  }

  .footer-banner .for-pc {
    display: none;
  }

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

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
    right: 0.6rem;
    top: 0.6rem;
  }
  .gnavi-btn span {
    width: var(--s3);
    left: 0.9rem;
  }
  .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.6rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-1rem) rotate(45deg);
  }

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

  .gnavi-logo {
    width: 22rem;
    margin: 0 auto var(--s2);
    padding-right: var(--s3);
  }

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

      sp page

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

  .toc-lower-wrap {
    margin: var(--s5) auto var(--s6);
    padding: var(--s3);
  }
  .toc-lower-wrap:before {
    height: 3.5rem;
    top: -1.5rem;
  }
  .toc-lower__body {
    padding-bottom: var(--s1);
  }
  .toc-lower .more__btn {
    margin-bottom: -6.5rem;
  }
  .toc-lower__title {
    font-size: 2rem;
  }
  .toc-lower__title span {
    font-size: 1.6rem;
  }

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

       sp toggle sp

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

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

      more

  */
  .more-btn {
    width: 92%;
    margin: var(--s4) auto;
    padding: 1.6rem 4.6rem;
  }
  .more-btn:hover {
    opacity: 1;
  }

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

    グラデーション  more-content

  */
  .more {
    margin-bottom: var(--s2);
  }

  .more__content.sp-only {
    overflow: hidden;
    max-height: 12rem;
  }

  .more__content.sp-only:after {
    content: "";
  }

  .more__btn {
    width: 20rem;
  }
  .more__btn.for-sp {
    display: block;
  }

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

      lower Parts

  */
  .box-editor {
    padding: 0 var(--s3) var(--s3);
    margin: 5rem auto;
  }
  .box-editor .l-grid-areas .l-grid-areas__cell-02 {
    margin-top: 0;
  }
  .box-editor__tag {
    margin: 0 auto;
    padding: var(--s1) var(--s3);
    font-size: 1.2rem;
    text-align: center;
    float: none;
  }
  .box-editor__tag img {
    width: 6rem;
  }

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

  .parts-comment-wrap {
    gap: var(--s2);
  }
  .parts-comment-wrap__side {
    width: 7rem;
    font-size: 1.2rem;
  }
  .parts-comment-wrap__side p {
    margin-top: var(--s-2);
    line-height: 1.5;
  }
  .parts-comment-wrap + .parts-comment-wrap {
    margin-top: var(--s3);
  }

  .card-comment {
    padding: var(--s2);
  }
  .card-comment__catch {
    font-size: 1.8rem;
  }
.card-comment .float-wrap .float-img.fl {
  width: 50%;
  margin: auto;
}

  .icon-title {
    margin: var(--s5) 0 var(--s3) var(--s1);
    padding: var(--s2) var(--s2) var(--s2) 9rem;
    padding-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .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-bottom: var(--s5);
    font-size: 2.6rem;
  }
  .main-area--low h1:after {
    height: 6rem;
    top: -3rem;
  }
  .main-area--low h2 {
    padding: var(--s2);
    border-radius: var(--s1);
    background-size: auto 3rem;
    font-size: 2.2rem;
  }
  .main-area--low h2 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h3 {
    padding-left: var(--s2);
    padding-bottom: var(--s1);
    font-size: 1.9rem;
  }
  .main-area--low h3:before {
    width: 3rem;
    height: 3rem;
    top: 0;
    left: 0;
  }
  .main-area--low h3 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h4 {
    font-size: 1.7rem;
  }
  .main-area--low h4:before {
    width: 0.6rem;
  }
  .main-area--low h4 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
  .main-area--low h5 {
    font-size: 1.5rem;
  }
  .main-area--low h5 a {
    background-size: 1.2rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      TOP common

  */
  .common-title {
    font-size: 2.6rem;
  }
  .common-title span.sm {
    font-size: 2rem;
  }

  .common-subtitle {
    padding: 0 var(--s1);
    font-size: 2rem;
  }
  .common-subtitle:before, .common-subtitle:after {
    height: 0.2rem;
  }

  .common-subtitle {
    margin-bottom: var(--s3);
  }
  .common-subtitle:before, .common-subtitle:after {
    width: 4rem;
  }

  .common-title-en {
    font-size: 1.6rem;
  }

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

      TOP 

  */
  .sec01-box {
    margin-bottom: 6rem;
    padding: var(--s3) var(--s2) var(--s5) var(--s3);
    font-size: 1.5rem;
  }
  .sec01-box:before {
    border-radius: var(--s5) 0 0 var(--s5);
  }
  .sec01-box:after {
  width: 14rem;
        height: 8rem;
        bottom: -4rem;
        right: -1rem;
  }
  .sec01-box span.marker {
    font-size: 1.7rem;
  }
  .sec01-box__title {
    margin-bottom: var(--s2);
    padding-top: 4rem;
    font-size: 2rem;
  }
  .sec01-box__title:before {
    font-size: 2.8rem;
  }
  .sec01-box__title:after {
    width: 5.3rem;
        height: 7rem;
        left: -1rem;
        bottom: 36px;
  }
  .sec01-box__lead {
    text-align: left;
  }

  .deco-circle {
    padding-top: 4rem;
  }
  .deco-circle .l-center:before {
    border-radius: 0 var(--s5) var(--s5) 0;
    right: 0;
    top: -4rem;
    height: 24rem;
    background-size: 20rem auto;
    background-position: left -3rem top;
  }

  .bg-round__title {
    margin-bottom: var(--s4);
    font-size: 2.6rem;
  }
  .bg-round__title span.bg-wt {
    font-size: 1.6rem;
  }
  .bg-round__title span.sm {
    font-size: 2.2rem;
  }

  .nav-sp {
    padding: var(--s2);
    border-radius: var(--s2);
    background: #FF7A21;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: block;
    text-decoration: none;
  }
  .nav-sp:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 8px 0 8px;
    border-color: #FF7A21 transparent transparent transparent;
    position: absolute;
    left: 50%;
    top: calc(100% + 0.3rem);
    transform: translateX(-50%);
  }
  .nav-sp:hover {
    color: #fff;
  }
  .nav-sp--02 {
    background: #73BA31;
  }
  .nav-sp--02:before {
    border-color: #73BA31 transparent transparent transparent;
  }
  .nav-sp--03 {
    background: #0075C0;
  }
  .nav-sp--03:before {
    border-color: #0075C0 transparent transparent transparent;
  }
  .nav-sp-btn {
    margin-bottom: var(--s6);
    display: flex;
    gap: var(--s1);
  }

  .card-dealer:before {
    height: calc(100% - 4.5rem);
    top: 4.5rem;
  }
  .card-dealer__catch {
    padding-left: 8rem;
  }
  .card-dealer__catch:before {
    width: 8rem;
    height: 10.5rem;
  }
  .card-dealer__catch span.st {
    font-size: 2.2rem;
  }
  .card-dealer + .card-dealer {
    margin-top: 6rem;
  }

  .sec-corner {
    border-radius: var(--s5) var(--s5) 0 0;
  }

  .deco-title {
    width: 100%;
    padding: 0;
    font-size: 2.6rem;
    background-size: 7rem auto;
  }
  .deco-title span.deco {
    padding: 0 var(--s2) var(--s1);
    background-size: auto 2rem, auto 2rem, 100% auto;
    font-size: 1.8rem;
	      margin:auto;
  }
  .deco-title span.sm {
    font-size: 2.2rem;
  }

  .box-detail {
    padding: 0 0 var(--s4) 0;
  }
  .box-detail:before {
    left: -1.2rem;
  }
  .box-detail + .box-detail {
    margin-top: 8rem;
  }

  .detail-title {
    margin-bottom: var(--s3);
    padding: var(--s2);
  }
  .detail-title:after {
    width: 10rem;
  }
  .detail-title__catch {
    padding: 1rem var(--s3) 1rem 9rem;
    font-size: 1.8rem;
  }
	.detail-title__catch span.cl {
    font-size: 2.4rem;
}
  .detail-title__name {
    padding-left: 9rem;
    font-size: 2.4rem;
  }

  .box-recommend {
    padding: var(--s3) var(--s2);
    border-radius: var(--s5);
  }
  .box-recommend__title {
    font-size: 1.8rem;
    width: 30rem;
  }


  .box-recommend__title span.st {
    font-size: 2rem;
  }
  .box-recommend__list {
    padding-top: 0;
    padding-left: 0;
  }
  .box-recommend__list:before {
    top: 0;
    width: 4.5rem;
  }
.box-recommend__list:after {
    left: 1.75rem;
    top: 2.5rem;
}
	
  .recommend-catch {
    padding-left: 6rem;
    font-size: 1.8rem;
  }
	
#company01 .recommend-catch span.cl,
#company02 .recommend-catch span.cl,
#company03 .recommend-catch span.cl {
  font-size: 2rem;
}

  .card-voice__catch {
    padding-left: 6.5rem;
  }
  .card-voice__catch:before {
    width: 6.2rem;
    height: 8.5rem;
	  left: -1rem;
        bottom: -9px;
  }

  .deco-pr span {
    font-size: 2rem;
  }

  .bg-fkds {
    background-size: 20rem auto;
    background-position: right -5rem top;
  }

  .card-fkds__title {
    padding: 1.2rem var(--s3);
    flex-direction: column;
    gap: var(--s1);
    align-items: flex-start;
    font-size: 1.6rem;
  }
  .card-fkds__body {
    padding: var(--s2);
  }
  .card-fkds .generation {
    margin: 0;
    font-size: 1.3rem;
  }

  .bg-round {
    padding-top: var(--s6);
    background-size: 140% auto, 100% auto;
    background-position: center top;
  }
  .bg-round__lead {
    margin: var(--s2) auto;
  }
  .bg-round-inner .l-grid {
    margin-bottom: var(--s3);
  }

  .title-number {
    margin: 0 auto var(--s2);
    padding: var(--s2) var(--s3) var(--s2) 7.2rem;
    font-size: 1.8rem;
  }
  .title-number:before {
    width: 5.5rem;
    height: 5.5rem;
    top: -0.8rem;
    left: var(--s1);
  }

  .title-carrer {
    margin-top: var(--s7);
    font-size: 2rem;
    line-height: 1.6;
  }
  .title-carrer span {
    margin-bottom: 0.2em;
    padding: 0.5rem var(--s2);
    font-size: 1.6rem;
  }

  .card-qa {
    padding: var(--s3);
  }
  .card-qa__title {
    padding-left: 7rem;
    font-size: 2rem;
  }
  .card-qa__title:before {
    width: 5rem;
    height: 5rem;
    padding-top: 0;
    font-size: 2.8rem;
  }
  .card-qa__answer {
    font-size: 1.7rem;
  }
}
