@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: 1200px) {
  :root {
    font-size: 0.8333333333vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #262626;
}

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

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

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

a:active,
a:hover {
  color: #262626;
  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;
  }
}
/*  inView */
.fadeInUp {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: transform 1.2s ease, opacity 0.8s ease, background 0.8s ease;
}

.fadeInUp.animated {
  opacity: 1;
  transform: translate(0, 0);
}

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

    layout center

*/
.l-center {
  max-width: 120rem;
  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;
}
.l-stack--wide {
  gap: 12rem;
}

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

    layout cluster

*/
.l-cluster {
  margin-bottom: var(--s4);
  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--wide {
  --minmum: calc((100% - var(--s10)) / 2);
  grid-gap: var(--s10);
}

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

@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: 24rem;
}
.l-column__side02 {
  width: 54rem;
}
.l-column__side03 {
  width: 34rem;
}
.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: 18rem 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 56.5rem;
}
.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 a {
  text-decoration: none;
}
.header-area__name a:hover {
  opacity: 0.6;
}
.header-area__logo {
  margin: var(--s2) 0 0 var(--s2);
  width: 24.8rem;
  font-size: 1.2rem;
  position: relative;
}
.header-area__logo span {
  margin-top: var(--s-2);
  display: block;
}
.header-area__logo a {
  display: block;
  text-decoration: none;
}
.header-area__logo a:hover {
  opacity: 0.6;
}
.header-area--low {
  margin-bottom: var(--s3);
  padding-bottom: var(--s4);
  position: static;
}
.header-area--low .header-area__logo {
  margin: var(--s2) 0 0;
}
.header-area__inner {
  padding-right: 9.6rem;
}

.mainvisual {
  padding: var(--s5) 0 8rem;
  overflow: hidden;
}
.mainvisual-logo {
  width: 26.4rem;
  margin-bottom: var(--s2);
}
.mainvisual-title {
  width: fit-content;
  margin: var(--s7) 0 var(--s6);
  font-size: 4rem;
  font-weight: 700;
}
.mainvisual-title span.bl {
  color: #262626;
}
.mainvisual-title span.red {
  color: #c30d23;
}
.mainvisual-title span.st {
  padding-bottom: var(--s2);
  border-bottom: solid 0.4rem #ffc000;
  font-size: 5.4rem;
  color: #0b794d;
}
.mainvisual-lead {
  max-width: 57rem;
  margin-bottom: var(--s5);
}
.mainvisual-pic {
  width: 61rem;
  position: absolute;
  right: -3rem;
  top: var(--s2);
}

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

    section

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

section {
  padding: 12rem 0;
}

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: 2rem 0 3rem;
}
.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: #ffc000;
  border-radius: 10rem;
  position: absolute;
  top: 1.1rem;
  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: #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 {
  width: 40rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  min-height: 7.2rem;
  height: 100%;
  margin: 0;
  padding: 1.4rem 5.5rem;
  background: #ffe981 url(img/arrow-01-green-right.svg) no-repeat center right var(--s2)/3rem auto;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #262626;
  position: relative;
  transition: all 0.3s;
}
.btn-internal--top {
  width: 48rem;
  margin: var(--s7) auto 12rem;
}
.btn-internal--top a {
  padding-left: var(--s4);
}
.btn-internal:hover a {
  transform: translate(0.4rem, 0.4rem);
  box-shadow: none;
}

.btn-web {
  width: 40rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  min-height: 7.2rem;
  height: 100%;
  margin: 0;
  padding: 1.4rem 5.5rem;
  background: #c30d23 url(img/arrow-01-red-right.svg) no-repeat center right var(--s2)/3rem auto;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  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-link {
  margin: var(--s2) 0 var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0 var(--s4) 0 0;
  background: url("img/arrow-02-green-right.svg") no-repeat center right/2.2rem auto;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.btn-link--center {
  text-align: center;
}

.btn-tel {
  display: none;
}

.btn-columns {
  margin: var(--s5) 0 18rem;
  display: flex;
  justify-content: center;
  gap: var(--s10);
}
.btn-columns .btn-web,
.btn-columns .btn-internal {
  margin: 0;
}
.btn-columns--inbox {
  margin: var(--s2) 0 0;
  align-items: flex-end;
}

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

    table

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

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

th {
  background: #f7f7f5;
}

tbody th {
  background: #f7f7f5;
}

.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;
  word-break: break-all;
}
.caption a {
  color: #999;
}
.caption--left {
  text-align: left;
}

.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: #0b794d;
}
.catch-01--center {
  text-align: center;
}

.catch-02 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4em;
}

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

	text

*/
.marker {
  border-bottom: solid 0.3rem #ffc000;
  font-weight: 700;
}

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

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

	subgrid card

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

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

    float wrap

*/
.float-wrap {
  margin: var(--s4) auto;
  display: flow-root;
}
.float-wrap .float-img.fr {
  width: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

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

	pankuzu

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

    footer

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

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

.footer-bottom {
  padding: var(--s1) 0;
  background: #0b794d;
  color: #fff;
}
.footer-bottom__inner {
  max-width: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  max-width: 26.5rem;
  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.7rem;
  font-weight: 700;
  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.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  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(--s7) auto;
  font-size: 1.2rem;
  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 {
  position: fixed;
  right: 0;
  bottom: 11rem;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  text-decoration: none;
}
.footer-banner a {
  width: 25rem;
  padding: var(--s2);
  padding-left: 9rem;
  border-radius: var(--s2) 0 0 var(--s2);
  display: block;
  background: url(img/arrow-03-white-right.svg) no-repeat right var(--s2) center/1.1rem auto, linear-gradient(to right, #c30d23, #db001b);
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  position: relative;
}
.footer-banner a:before {
  content: "";
  width: 6.5rem;
  height: 10rem;
  background: url(img/banner-pic.png) no-repeat center/contain;
  position: absolute;
  left: var(--s2);
  top: -1rem;
}
.footer-banner a span.st {
  color: #c30d23;
  font-size: 2.4rem;
}
.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: 5rem;
  height: 5rem;
  background: #0b794d;
  border-radius: var(--s-2);
  display: block;
  position: fixed;
  top: var(--s1);
  right: 1rem;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 3rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.4rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.4rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  display: none;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 10rem 0;
  background: #fef9db;
  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: 700;
  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-03-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__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: 700;
  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 Top page

*/
.toc_parts {
  position: fixed;
  top: 7rem;
  right: 0;
  width: 26rem;
  transition: all 0.5s ease;
  transform: translateX(100%);
  z-index: 8;
}
.toc_parts .toc_ttl {
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  background: #ffe981;
  width: 6rem;
  height: 5.3rem;
  box-sizing: border-box;
  padding: var(--s1) var(--s1) var(--s1) var(--s4);
  border-radius: var(--s1) 0 0 var(--s1);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 9;
}
.toc_parts .toc_ttl::before {
  content: "";
  width: 1.1rem;
  height: 0.15rem;
  background: #262626;
  position: absolute;
  top: 2.5rem;
  left: 1rem;
}
.toc_parts .toc_ttl::after {
  content: "";
  width: 0.15rem;
  height: 1.1rem;
  background: #262626;
  position: absolute;
  top: 2rem;
  left: 1.5rem;
}
.toc_parts .toc_block {
  position: fixed;
  top: 0;
  right: 0;
  background: #ffe981;
  width: 100%;
  height: auto;
  min-height: 20rem;
  padding: var(--s3) var(--s2);
  border-radius: 0 0 0 var(--s2);
  box-sizing: border-box;
}
.toc_parts .toc-scroll {
  height: fit-content;
  max-height: 42rem;
  padding-right: var(--s1);
  overflow-x: hidden;
  overflow-y: auto;
  /* chrome safari */
}
.toc_parts .toc-scroll::-webkit-scrollbar {
  width: 0.4rem;
}
.toc_parts .toc-scroll::-webkit-scrollbar-track {
  border-radius: 0.2rem;
  background: #ccc;
}
.toc_parts .toc-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.2rem;
  background: #999;
}
.toc_parts.is-open {
  transform: translateX(0);
  transform: translateZ(0);
}
.toc_parts.is-open .toc_ttl::after {
  transform: rotate(270deg);
}
.toc_parts ul.chapter li.chapter-h + li.chapter-h {
  margin-top: var(--s2);
}
.toc_parts ul.chapter li.chapter-h a {
  display: block;
  text-decoration: none;
}
.toc_parts ul li.chapter-h-two {
  padding-left: 2.6em;
  position: relative;
  counter-increment: number;
}
.toc_parts ul li.chapter-h-two:before {
  content: counter(number, decimal-leading-zero);
  width: 1.6em;
  height: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0b794d;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  position: absolute;
  top: -0.2em;
  left: 0;
}
.toc_parts ul a:hover {
  opacity: 0.5;
}

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: var(--s4) var(--s6);
  border: solid 1px #0b794d;
  background: #fff;
  border-radius: var(--s3);
  position: relative;
}
.toc-lower-wrap ul,
.toc-lower-wrap ul:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
  counter-reset: numb;
}
.toc-lower-wrap ul li,
.toc-lower-wrap ul:not([class]) li {
  font-size: 1.6rem;
  font-weight: 700;
}
.toc-lower-wrap ul li + li,
.toc-lower-wrap ul:not([class]) li + li {
  margin-top: 0;
}
.toc-lower-wrap ul li.chapter-h-two,
.toc-lower-wrap ul:not([class]) li.chapter-h-two {
  padding: 0 0 0 1.8em;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  counter-increment: numb;
}
.toc-lower-wrap ul li.chapter-h-two::before,
.toc-lower-wrap ul:not([class]) li.chapter-h-two::before {
  content: counter(numb, decimal-leading-zero);
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b794d;
  position: absolute;
  top: 0.25em;
  left: 0.4rem;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
}
.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: var(--s2) 0 var(--s1) var(--s4);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
.toc-lower-wrap ul li.chapter-h-three:before,
.toc-lower-wrap ul:not([class]) li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.toc-lower-wrap ul li.chapter-h-three a,
.toc-lower-wrap ul:not([class]) li.chapter-h-three 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;
  display: flex;
  align-items: center;
}
.toc-lower__title span.en {
  margin-left: var(--s3);
}
.toc-lower__title span.en img {
  height: 3.3rem;
  width: auto;
}

.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: #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 {
  width: 25rem;
  min-width: 9rem;
  display: block;
  margin: var(--s6) auto;
  padding: 1.4rem 2rem 1.4rem var(--s1);
  border-radius: 5rem;
  background: #e5e5e5;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.more-btn::before {
  content: "";
  width: var(--s2);
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s2);
  background: #000;
  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%, #fff 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 -8rem;
  padding: 1.2rem 2rem 1.2rem var(--s1);
  border-radius: 5rem;
  background: #e5e5e5;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.more__btn::before {
  content: "";
  width: 1.3rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.3rem;
  background: #000;
  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-sponsored {
  max-width: 90rem;
  margin: 12rem auto var(--s10);
  padding: var(--s7) var(--s6) var(--s4);
  background: #1f395e;
  border-radius: var(--s2);
  position: relative;
}
.box-sponsored p{
  padding-left:25%;
  padding-bottom:3rem;
  padding-top:2rem;
}
.box-sponsored p:before {
  background: url(img/pic.jpg) no-repeat 0 0;
  width:20%;
  height:30rem;
  content:"";
  position: absolute;
  background-size:100%;
  margin-left:-22.2%;
}

.box-sponsored:before {
  content: "";
  width: 12rem;
  height: 15.8rem;
  background: url(img/illust-media-sv.png) no-repeat center/contain;
  position: absolute;
  right: var(--s3);
  top: -3rem;
}
.box-sponsored__lead {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.box-sponsored__title {
  margin-bottom: var(--s3);
  padding-bottom: 2rem;
  border-bottom: solid 0.2rem #fff;
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.box-sponsored__title:after {
	content:"";
	width: 13rem;
	height: 3.5rem;
	background: url(img/logo-ybuild.png) no-repeat center center #fff;
	padding: 0.5rem 0;
	background-size: 80%;
}
.box-sponsored__title .tag {
  padding: var(--s-2) var(--s3);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
.box-sponsored__title .sm {
  display: inline-block;
  color: #fff;
}
.box-sponsored__title .name {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
.box-sponsored p {
  color: #fff;
  margin-bottom:3rem;
}
.main-area--low .box-sponsored p {
  margin-bottom:0;
  padding-bottom: 0;
}
.box-sponsored p:nth-child(2):before {
  display: none;
}
.box-sponsored p:nth-child(2){
  padding-left:0;
  padding-top:2rem;
  padding-bottom: 3rem;
}
.box-sponsored__btns {
  margin: var(--s3) 0 0;
  display: flex;
  align-items: center;
}
.box-sponsored__btns .btn-web {
  width: 37.5rem;
  margin: 0;
}
.box-sponsored .btn-link a {
  color: #fff;
}

.box-comment {
  max-width: 90rem;
  margin: var(--s5) auto;
  padding: var(--s8);
  padding-bottom: var(--s4);
  background: #fef9db;
  border-radius: var(--s2);
	position:relative;
	padding-top:12rem;
}
.box-comment:before {
  content: "";
  width: 15rem;
  height: 5rem;
  background: url(img/logo-ybuild.png) no-repeat center center;
  background-size:100%;
  position: absolute;
  left: 41.5%;
  top: 3rem;
}
.box-comment__catch {
  margin-bottom: var(--s3);
  padding: 0 0 var(--s1) 14.8rem;
  border-bottom: solid 0.2rem #0b794d;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b794d;
  position: relative;
}
.box-comment__catch:before {
  content: "";
  width: 11.2rem;
  height: 10.8rem;
  background: url(img/illust-man-3.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.box-comment .btn-web {
  margin: var(--s3) auto;
}

.l-swiper {
  margin: var(--s10) auto;
  max-width: 90rem;
  position: relative;
}

.swiper_main {
  width: 63rem;
  margin-left: 0;
  position: relative;
}

.swiper img {
  width: 100%;
}

.swiper_thumbnail .swiper-slide {
  cursor: pointer;
}

.swiper_thumbnail .swiper-slide-thumb-active {
  outline: 2px solid #ffc000;
  outline-offset: -2px;
}

.swiper_thumbnail img {
  vertical-align: bottom;
}

.swiper_thumbnail {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 100%;
  max-height: 42rem;
}

.swiper-button-prev {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: url(img/slide-prev.png) no-repeat center/contain;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.swiper-button-next {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: url(img/slide-next.png) no-repeat center/contain;
  position: absolute;
  left: 61rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.lower-banner {
  max-width: 76rem;
  margin: var(--s10) auto 0;
  padding: var(--s4) var(--s6) var(--s4) 28rem;
  border: solid 0.2rem #0b794d;
  border-radius: var(--s2);
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  text-decoration: none;
  background: #fffef6;
  position: relative;
}
.lower-banner:before {
  content:"";
  position:absolute;
  background: url(img/banner-pic-2.png) no-repeat 0 0;
  width:200px;
  height: 200px;
  background-size:100%;
  left:4rem;
  top:4rem;
}
.lower-banner span.st {
  color: #0b794d;
  font-size: 4rem;
}
.lower-banner span.red {
  color: #c30d23;
}
.lower-banner span.bl {
  color: #262626;
}
.lower-banner__btn {
  width: fit-content;
  min-height: 7.2rem;
  margin: var(--s2) 0 0 auto;
  padding: 1.4rem 8rem;
  background: #ffe981 url(img/arrow-01-green-right.svg) no-repeat center right var(--s3)/2.7rem auto;
  border-radius: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #262626;
}
.lower-banner:hover {
  opacity: 0.6;
}

.pr-text {
  margin-bottom: var(--s6);
  font-size: 1.3rem;
  color: #707070;
}
.pr-text--left {
  text-align: left;
}

.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(--s5) auto var(--s3);
  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 {
  max-width: 65.5rem;
  min-height: 10.5rem;
  margin: var(--s5) 0 var(--s3);
  font-size: 3.6rem;
  color: #0b794d;
  position: relative;
}
.main-area--low h1:before {
  content: "";
  width: 36rem;
  height: 20rem;
  background: url(img/illust-sec3-1.png) no-repeat center/contain;
  position: absolute;
  right: -40rem;
  top: -4rem;
}
.main-area--low h2 {
  padding: var(--s2) var(--s3) var(--s2) 9rem;
  border-radius: var(--s2);
  font-size: 3rem;
  background: #0b794d;
  position: relative;
  color: #fff;
}
.main-area--low h2:before {
  content: "";
  width: 9rem;
  height: 5.1rem;
  background: url(img/h2-deco.png) no-repeat center/contain;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-46%);
}
.main-area--low h2 a {
  background: url(img/arrow-01-green-right.svg) no-repeat right center;
  background-size: 2.8rem auto;
  color: #fff;
}
.main-area--low h3 {
  padding: var(--s-2) 0 var(--s-2) var(--s5);
  border-bottom: solid 1px #0b794d;
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3:before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: #c30d23;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h3 a {
  padding-right: var(--s3);
  background: url(img/arrow-02-green-right.svg) no-repeat right var(--s3) center;
  background-size: 2.8rem 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.4rem;
  height: 100%;
  background: #0b794d;
  border-radius: 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4 a,
.main-area--low h5 a {
  background: url(img/arrow-02-green-right.svg) no-repeat right var(--s3) center;
  background-size: 2.8rem auto;
}

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

    TOP common

*/
.common-title {
  width: fit-content;
  margin-bottom: var(--s5);
  font-size: 3.4rem;
  font-weight: 500;
}

.common-subtitle {
  width: fit-content;
  margin: 12rem auto var(--s6);
  padding: var(--s2) var(--s7);
  border-radius: var(--s1);
  background: #0b794d;
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
  color: #fff;
}
.common-subtitle:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 1.2rem 0 1.2rem;
  border-color: #0b794d transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.common-subtitle--01 {
  margin-top: var(--s5);
}

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

.pic-corner {
  border-radius: 1rem;
}

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

    TOP parts

*/
.bg-sec01 {
  padding-top: 15rem;
  background: #fef9db;
  position: relative;
}
.bg-sec01:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5rem 7.25rem 0 7.25rem;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.bg-sec01 .with-illust {
  position: relative;
}
.bg-sec01 .with-illust:before {
  content: "";
  width: 18rem;
  height: 35rem;
  background: url(img/illust-man-1.png) no-repeat center/contain;
  position: absolute;
  left: -1rem;
  top: -70px;
}

.sec01-title {
  margin: 0 auto var(--s5);
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}
.sec01-title span.st {
  font-size: 4rem;
  color: #c30d23;
}
.sec01-title span.st:before {
  content: "“";
  color: #0b794d;
}
.sec01-title span.st::after {
  content: "”";
  color: #0b794d;
}

.sec01-graph {
  margin-top: var(--s5);
  padding: var(--s3);
  background: #fff;
  border-radius: var(--s2);
  position: relative;
}

.fkds-comment {
  width: fit-content;
  padding: var(--s3);
  border-radius: var(--s2);
  background: #1f395e;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  position: absolute;
  right: -1rem;
  top: -3rem;
}
.fkds-comment:before {
  content: "";
  width: 3.4rem;
  height: 1.7rem;
  background: url(img/fkds-pin.png) no-repeat center top/contain;
  position: absolute;
  left: var(--s5);
  top: 100%;
}

.sec-reason {
  width: fit-content;
  margin-bottom: var(--s2);
  padding: 0.2rem var(--s2);
  border-radius: var(--s5);
  background: #c30d23;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.sec01-subtitle {
  margin-bottom: var(--s2);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.7;
}
.sec01-subtitle span.line {
  color: #0b794d;
}

.graph-title {
  margin: var(--s6) 0 var(--s3);
  font-size: 2.8rem;
  font-weight: 700;
}

.table-graph {
  margin-top: 0;
  border-color: #0b794d;
}
.table-graph th {
  border-color: #0b794d;
  background: #0b794d;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
.table-graph td {
  border-color: #0b794d;
  background: #fff;
  text-align: center;
}
.table-graph td span.st {
  font-size: 3rem;
  font-weight: 700;
  color: #c30d23;
}
.table-graph tr:first-child th {
  border-bottom: solid 1px #fff;
}

.summary-title {
  margin: 12rem auto var(--s5);
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b794d;
  position: relative;
}
.summary-title:before {
  content: "";
  width: 5rem;
  height: 5.6rem;
  background: url(img/arrow-flow.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -9rem;
  transform: translateX(-50%);
}

.text-center {
  max-width: 90rem;
  margin: 0 auto;
  text-align: center;
}
.text-center--st {
  font-size: 2.8rem;
  font-weight: 700;
  border-bottom: solid 0.3rem #ffc000;
  margin-bottom: 8rem;
}
.text-center span.st {
  margin-bottom: var(--s1);
  display: block;
  font-size: 3.6rem;
  font-weight: 700;
  color: #c30d23;
}

.area-fkds {
  max-width: 100rem;
  margin: 10rem auto 0;
  padding: var(--s6) 15.6rem var(--s7) 19rem;
  background: url(img/fkds-bg.png) no-repeat left top/79.5rem 100%;
  position: relative;
}
.area-fkds:before {
  content: "";
  width: 22rem;
  height: 17.4rem;
  background: url(img/illust-people-1.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: -3rem;
}
.area-fkds__txt {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
}

.list-fkds__item {
  padding-left: var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  color: #0b794d;
}
.list-fkds__item:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: linear-gradient(to right, #c30d23, #db001b);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
}
.list-fkds__item + .list-fkds__item {
  margin-top: var(--s2);
}
.list-fkds__item--st:before {
  top: 0.6em;
}
.list-fkds__item span.st {
  font-size: 2.8rem;
  border-bottom: solid 0.3rem #ffc000;
}

.summary-and {
  margin-top: var(--s4);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.guide{
  color:#fff;
  display: block;
  font-size:2.4rem;
  border-bottom: 1px dashed #fff;
  max-width: 98rem;
  margin: 0 auto;
  padding-bottom:1.5rem;
}
.guide .notice{
  max-width:98rem;
  margin:-1rem 0 0 1rem;
  color:#fff;
  font-size: 1.6rem;
}

.box-summary {
  margin: 12rem auto 0;
  padding: var(--s8) 5rem var(--s4);
  border-radius: var(--s1);
  background: #1f395e;
  position: relative;
}
.box-summary:before {
  content: "";
  width: 18.5rem;
  height: 22.5rem;
  background: url(img/illust-media-sv.png) no-repeat center/contain;
  position: absolute;
  right: 15rem;
  top: -4rem;
}
.box-summary:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.6rem 3.5rem 0 3.5rem;
  border-color: #fef9db transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.box-summary--second {
  margin-top: 15rem;
}
.box-summary--second:before {
  width: 23rem;
  height: 35.1rem;
  background-image: url(img/illust-pro-large.png);
  right: 3rem;
  top: -14rem;
}
.box-summary--second.merit:before {
  width: 20rem;
  height: 33rem;
  right: 5rem;
  top: -13rem;
}
.box-summary--second:after {
  border-color: #fffbe6 transparent transparent transparent;
}
.box-summary--second.merit:after {
  border-color: #ffffff transparent transparent transparent;
}
.box-summary__title {
  margin: 0 0 var(--s8) 19rem;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
.box-summary--second.merit .box-summary__title {
  margin: 0 0 var(--s5) var(--s8);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.box-summary--second .box-summary__title:before {
  content: "";
  width: 15rem;
  height: 5rem;
  background: url(img/logo-ybuild.png) no-repeat center center #fff;
  background-size:90%;
  position: absolute;
  left: 5rem;
  top: 7.7rem;
  padding: 2rem 0.5rem;
}
.box-summary__title span.st {
  color: #ffe981;
  font-size: 4rem;
}
.box-summary--second.merit .box-summary__title span.st {
  color: #ffe981;
  font-size: 3.2rem;
}
.box-summary--second .right-img-box {
	display: flow-root;
}
.box-summary--second .right-img {
	width: 40%;
	margin-left: var(--s3);
	padding-bottom: var(--s3);
	float: right;
	margin-top: 1rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.right-img {
		width: 100%;
		margin-left: 0;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
	}
  .box-summary--second .right-img{
    width:100%;
  }
}
.box-summary__inner {
  padding: var(--s5) var(--s8);
  border-radius: var(--s2);
  background: #fff;
  margin-bottom: 3rem;
}
.box-summary__name {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.box-summary__tag {
  padding: var(--s-2) var(--s6);
  border-radius: var(--s5);
  background: #f1f2ef;
  font-size: 2rem;
  font-weight: 700;
}
.box-summary__logo {
  padding-left: 19rem;
  background: url(img/logo-ybuild.png) no-repeat left center/16.2rem auto;
  font-size: 2.8rem;
  font-weight: 700;
}
.box-summary__logo span {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
}
.box-summary__tel {
  min-height: 7.2rem;
  /*! margin-left: var(--s8); */
  padding-left: 9rem;
  background: url(img/icon-tel-top.png) no-repeat left center/7.2rem auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.child .box-summary__tel {
  margin-left:0;
}
.box-summary__tel span.st {
  font-size: 2.6rem;
}
.box-summary__grid {
  align-items: center;
  max-width: 98rem;
  margin: 0 auto;
}
.box-summary__grid.child {
  max-width: 98rem;
  margin: 0 auto;
}
.box-summary__grid.child .btn-web a {
  color:#000;
  background: #97c032 url(img/arrow-01-green-right.svg) no-repeat center right var(--s2)/3rem auto;
}
.box-summary__catch {
  max-width: 98rem;
  margin: 0 auto;
  padding-bottom: var(--s2);
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffe981;
}
.box-summary--second.merit .box-summary__catch {
  margin-top:0;
}
.box-summary__text {
  max-width: 98rem;
  margin: 0 auto 5rem;
  color: #fff;
}
.box-summary .btn-web {
  width: 42rem;
}
.box-summary__grid .btn-web,
.box-summary__grid.child .btn-web {
  margin-right:0;
}

.sec02-title {
  margin: 0 auto var(--s5);
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  color: #262626;
  position: relative;
}
.sec02-title span.deco {
  width: fit-content;
  display: block;
  margin: 0 auto var(--s2);
  padding: 0 var(--s4) 11rem;
  background: url(img/deco-slash-left.png) no-repeat left var(--s1)/1.8rem auto, url(img/deco-slash-right.png) no-repeat right var(--s1)/1.8rem auto;
  font-size: 2.4rem;
  color: #262626;
  position: relative;
}
.sec02-title span.deco:before {
  content: "";
  width: 20rem;
  height: 10rem;
  background: url(img/illust-pro.png) no-repeat center bottom/20rem auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.card-merit {
  padding: 0 var(--s4);
  grid-row: span 3;
  position: relative;
}
.card-merit:before {
  content: "";
  width: 4.5rem;
  height: 6rem;
  background: url(img/txt-01.png) no-repeat center/contain;
  position: absolute;
  left: var(--s4);
  top: 0;
}
.card-merit:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #ccc;
  position: absolute;
  right: -1.6rem;
  top: 0;
}
.card-merit__title {
  width: fit-content;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #0b794d;
}
.card-merit__title span {
  border-bottom: solid 0.3rem #ffc000;
}
.card-merit__pic {
  display: flex;
  align-items: center;
}
.card-merit:nth-of-type(2) {
  transition-delay: 0.2s;
}
.card-merit:nth-of-type(2):before {
  background-image: url(img/txt-02.png);
}
.card-merit:nth-of-type(3) {
  transition-delay: 0.4s;
}
.card-merit:nth-of-type(3):before {
  background-image: url(img/txt-03.png);
}
.card-merit:nth-of-type(3):after {
  content: none;
}
.card-merit:nth-of-type(4) {
  margin-top: var(--s6);
}
.card-merit:nth-of-type(4):before {
  background-image: url(img/txt-04.png);
}
.card-merit:nth-of-type(5) {
  margin-top: var(--s6);
  transition-delay: 0.2s;
}
.card-merit:nth-of-type(5):before {
  background-image: url(img/txt-05.png);
}
.card-merit:nth-of-type(6) {
  margin-top: var(--s6);
  transition-delay: 0.4s;
}
.card-merit:nth-of-type(6):before {
  background-image: url(img/txt-06.png);
}
.card-merit:nth-of-type(6):after {
  content: none;
}

.lead-picture {
  max-width: 92rem;
  margin: var(--s5) auto;
  display: flex;
  gap: var(--s5);
  align-items: flex-end;
}
.lead-picture__pic {
  width: 16rem;
}
.lead-picture__main {
  flex: 1;
}
.lead-picture__catch {
  margin-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 700;
  color: #262626;
}
.lead-picture--reverse {
  flex-direction: row-reverse;
}

.box-info {
  max-width: 100rem;
  margin: 10rem auto var(--s3);
  padding: var(--s5);
  border-radius: 1rem;
  background: #f8f8f8;
}
.box-info .l-column {
  margin-bottom: var(--s5);
  align-items: flex-end;
}
.box-info__title {
  padding: var(--s3) var(--s2) var(--s3) 16rem;
  border-radius: 1rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0b794d;
}
.box-info__title--01 {
  background: #fff url(img/icon-home-1.png) no-repeat left var(--s4) center/10.2rem auto;
}
.box-info__title--02 {
  background: #fff url(img/icon-home-2.png) no-repeat left var(--s4) center/10.2rem auto;
}
.box-info__title--03 {
  background: #fff url(img/icon-home-3.png) no-repeat left var(--s4) center/10.2rem auto;
}
.box-info__lead {
  margin-bottom: var(--s2);
  font-size: 2rem;
}
.box-info__name {
  font-size: 1.6rem;
  font-weight: 700;
}
.box-info__side {
  width: 26rem;
  margin-top: -7rem;
  border-radius: 1rem;
  overflow: hidden;
}
.box-info__list {
  min-width: 33.5rem;
  padding-bottom: var(--s2);
  border-bottom: solid 0.2rem #c3c3c3;
  display: flex;
  gap: var(--s2);
  align-items: center;
}
.box-info__list-wrap {
  margin-bottom: var(--s3);
  display: flex;
  gap: var(--s3) var(--s5);
  flex-wrap: wrap;
}
.box-info__list__title {
  min-width: 17rem;
  font-size: 2rem;
  font-weight: 700;
}
.box-info__list__data span.st {
  font-size: 3rem;
  font-weight: 700;
  color: #c30d23;
}
.box-info .ybuild {
  background-color: #fef9db;
  border-radius: 10px;
  padding: 3rem;
  margin-top: 3rem;
}
.box-info .ybuild .catch-02 {
  font-size:2rem;
  color: #0b794d;
  border-bottom: 2px solid #0b794d;
  padding: 1.5rem 0 1rem 7rem;
  background: url(img/illust-pro_male.png) no-repeat 0 0;
  background-size: 7%;
}

.caption-top {
  max-width: 100rem;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
  color: #999;
}

.card-summary {
  max-width: 110rem;
  margin: 8.4rem auto;
  padding: var(--s5) var(--s6);
  border-radius: 1rem;
  background: rgba(255, 233, 129, 0.15);
}
.card-summary__title {
  margin-bottom: var(--s3);
  padding: 0 0 var(--s2);
  border-bottom: solid 0.2rem #0b794d;
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.card-summary__catch {
  flex: 1;
  font-size: 2.4rem;
  font-weight: 700;
}
.card-summary__tag {
  width: fit-content;
  padding: var(--s1) var(--s2);
  border-radius: 0.5rem;
  background: #0b794d;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.box-line {
  max-width: 110rem;
  margin: var(--s5) auto;
  padding: var(--s6) 39rem var(--s7) var(--s9);
  border: solid 0.3rem #0b794d;
  border-radius: 1rem;
  background: #fff;
  position: relative;
}
.box-line__pic {
  width: 27.9rem;
  height: 35.1rem;
  position: absolute;
  right: var(--s6);
  bottom: -2rem;
}

.bg-yellow {
  background: rgba(255, 233, 129, 0.2);
  position: relative;
}
.bg-yellow:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5rem 11.2rem 0 11.2rem;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.sec03-logo {
  width: fit-content;
  margin: 0 auto var(--s5);
  text-align: center;
}
.sec03-logo img {
  width: 16.2rem;
  margin: 0 auto var(--s1);
  display: block;
}

.sec03-title {
  width: fit-content;
  margin: 0 auto var(--s6);
  font-size: 4rem;
  font-weight: 700;
  color: #0b794d;
}

.sponsored-build {
  margin-bottom: 13rem;
}
.sponsored-build__pic {
  border-radius: var(--s2);
}

.card-white {
  padding: var(--s5);
  border-radius: 1rem;
  background: #fff;
  grid-row: span 3;
}
.card-white__pic {
  width: 50rem;
  margin: -8rem auto 0;
}
.card-white__pic.r-img {
  width: 43rem;
  margin: -8rem auto 0;
}
.card-white .caption {
  margin-top:2rem;
  text-align: center;
}
.card-white__title {
  font-size: 2.8rem;
}

.sec03-subtitle {
  margin: 12rem auto var(--s5);
  padding: 0 0 0 var(--s6);
  font-size: 4rem;
  position: relative;
}
.sec03-subtitle:before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: linear-gradient(to right, #c30d23, #db001b);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.title-buildname {
  margin: 0 auto var(--s3);
  padding-bottom: var(--s1);
  border-bottom: solid 1px #0b794d;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0b794d;
}

.tag01 {
  padding: var(--s-2) var(--s2);
  border-radius: 0.4rem;
  background: #ffe981;
}

.box-voice {
  padding: var(--s6);
  background: #fff;
  border: solid 0.2rem #0b794d;
  border-radius: 1rem;
  position: relative;
}
.box-voice:before {
  content: "";
  width: 3.5rem;
  height: 2.8rem;
  background: url(img/fkds-pin-white.png) no-repeat center top/contain;
  position: absolute;
  left: 22rem;
  top: 100%;
}
.box-voice__catch {
  margin-bottom: var(--s3);
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b794d;
}
.box-voice__icon {
  width: 14rem;
  margin: -3rem 0 0 var(--s6);
  text-align: center;
  position: relative;
  z-index: 1;
}

.card-media {
  max-width: 88rem;
  margin: 0 auto;
}
.card-media__title {
  margin-bottom: var(--s3);
  padding: 0 0 var(--s2) 18rem;
  border-bottom: solid 0.3rem #0b794d;
  background: url(img/logo-zenken.png) no-repeat left top/16.2rem auto;
  font-size: 2.8rem;
  font-weight: 700;
}

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

      sp base settings

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

  body {
    font-size: 1.6rem;
  }

  .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--wide {
    gap: var(--s6);
  }

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

      sp layout cluster

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

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

      sp layout grid

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

  .l-grid-three {
    grid-gap: var(--s4);
    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, .l-column__side02, .l-column__side03 {
    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 var(--s8) 0 var(--s1);
    flex-direction: column-reverse;
  }
  .header-area__logo {
    width: 20rem;
    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 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .header-area--low .header-area__logo {
    margin-top: var(--s1);
  }

  .mainvisual {
    padding-bottom: var(--s3);
  }
  .mainvisual-pic {
    width: 24rem;
    height: auto;
    margin: 0 auto;
    position: static;
  }
  .mainvisual-tag {
    margin-left: -2rem;
    margin-bottom: var(--s1);
    font-size: 1.5rem;
  }
  .mainvisual-tag:before {
    width: 6rem;
    height: 6rem;
    right: -1.2rem;
    bottom: -0.6rem;
  }
  .mainvisual-title {
    margin: 0 0 var(--s3);
    font-size: 2rem;
  }
  .mainvisual-title:before {
    width: 4rem;
    height: 4rem;
    right: -4.5rem;
    bottom: -0.5rem;
  }
  .mainvisual-title span.st {
    padding-bottom: var(--s1);
    font-size: 2.8rem;
  }
  .mainvisual-logo {
    width: 23rem;
    margin-bottom: var(--s2);
  }
  .mainvisual-lead {
    margin-bottom: var(--s2);
  }

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

      section

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

  section {
    padding: 6rem 0;
  }

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

      sp btn

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

  .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;
  }

  .btn-columns {
    margin-bottom: var(--s7);
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-columns .btn-web,
.btn-columns .btn-internal,
.btn-columns .btn-tel {
    margin: 0 auto;
  }

  .main-area--low .btn-link {
    width: 94%;
    margin: var(--s1) auto;
  }
  .main-area--low .btn-link a {
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 4.5rem;
    background: #fff url("img/arrow-02-green-right.svg") no-repeat center right 1.2rem/1.8rem auto;
    border-radius: 5rem;
    border: solid 0.1rem #999;
    display: block;
    font-size: 1.4rem;
    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: #FFC000 url("img/icon-tel.png") no-repeat center left 2.4rem/2.4rem auto;
    border-radius: 5rem;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .btn-tel span {
    font-size: 1.3rem;
  }

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

      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: #f7f7f5;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #f7f7f5;
    border-right: solid 1px #c7c7c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 500;
    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;
  }

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

  	subgrid card

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

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

      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: 20rem;
    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;
    font-size: 1.5rem;
  }
  .footer-menu-title__link {
    padding: var(--s1) var(--s5) var(--s1) var(--s2);
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url("img/arrow-03-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-03-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%;
    font-size: 1.4rem;
  }
  .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 {
    position: fixed;
    bottom: 0;
    right: auto;
    left: 0;
    transition: opacity 0.3s ease;
  }
  .footer-banner a {
    width: 30rem;
    display: block;
    padding: 1.2rem 2rem 1.2rem 7rem;
    border-radius: 0 var(--s2) 0 0;
    display: block;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .footer-banner a:before {
    height: 6rem;
    width: 4rem;
    top: auto;
    bottom: var(--s-2);
  }

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

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
  }
  .gnavi-btn span {
    width: var(--s3);
    left: 1.2rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.5rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.3rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.1rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.8rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }

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

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

      sp page

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

  .toc-lower-wrap {
    margin: var(--s5) auto var(--s6);
    padding: var(--s2) var(--s3);
  }
  .toc-lower-wrap:before {
    height: 3.5rem;
    top: -1.5rem;
  }
  .toc-lower-wrap ul li + li {
    margin-top: var(--s2);
  }
  .toc-lower-wrap ul li.chapter-h-two {
    font-size: 1.6rem;
  }
  .toc-lower-wrap ul li.chapter-h-two:before {
    top: 0.15em;
  }
  .toc-lower-wrap ul li.chapter-h-three {
    font-size: 1.4rem;
  }
  .toc-lower-wrap ul:not([class]) li {
    font-size: 1.5rem;
  }
  .toc-lower__body {
    padding-bottom: var(--s1);
  }
  .toc-lower .more__btn {
    margin-bottom: -6.5rem;
  }
  .toc-lower__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .toc-lower__title span.en img {
    height: 2.5rem;
  }

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

       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-sponsored {
    margin-bottom: var(--s4);
    padding: var(--s8) var(--s2) var(--s4) var(--s2);
  }
  .box-sponsored:before {
    width: 7.5rem;
    height: 10rem;
    right: 16%;
    top: -5rem;
  }
  .box-sponsored:after {
  content: "";
  width: 15rem;
  height: 5.5rem;
  background: url(img/logo-ybuild.png) no-repeat center center #fff;
  background-size:90%;
  position: absolute;
  left: 38%;
  top: -1.5rem;
  transform: translateX(-50%);
  padding:0.2rem
  }
  .box-sponsored__title {
    margin-bottom: var(--s2);
    padding-bottom: var(--s1);
    gap: var(--s1);
  }
  .box-sponsored__title:after{
	display:none;
  }
  .box-sponsored__title .tag {
    padding: var(--s-2) var(--s1);
    font-size: 1.4rem;
  }
  .box-sponsored__title .sm {
    font-size: 1.2rem;
  }
  .box-sponsored__title .name {
    font-size: 1.8rem;
  }
  .box-sponsored__pic {
    width: 12rem;
  }
  .box-sponsored__btns {
    flex-direction: column;
  }
  .box-sponsored__btns .btn-web {
    width: 94%;
  }
  .box-sponsored__btns .btn-link {
    margin: var(--s2) 0 0;
  }
  .box-sponsored .btn-link a{
    background: none;
    padding: var(--s-2) var(--s3);
    border: none;
    display: inline;
    background: url("img/arrow-02-green-right.svg") no-repeat center right/1.8rem auto;
  }
  .box-sponsored .box-summary__grid .btn-web{
    width: 100%;
    margin: var(--s3) auto 0;
  }
  .box-sponsored .box-summary__grid .btn-tel{
    width: 100%;
    margin: var(--s1) auto 0;
  }
  .box-sponsored p {
    padding-top:25rem;
    padding-left:0;
    margin-bottom:0;
    overflow: hidden;
    padding-bottom: 1rem;
  }  
  .box-sponsored p:before {
    margin-left:0;
    margin-top:-23rem;
    width: 90%;
    height: 100%;
  }

  .box-comment {
    margin: 7rem 0 var(--s6);
    padding: var(--s6) var(--s3) var(--s2) var(--s3);
  }
  .box-comment__catch {
    margin-bottom: var(--s2);
    padding: 0 0 var(--s1);
    font-size: 1.8rem;
  }
  .box-comment__catch:before {
    width: 7rem;
    height: 7rem;
    left: 50%;
    bottom: calc(100% + var(--s1));
    top: auto;
    transform: translateX(-50%);
	visibility:hidden;
  }
	.box-comment:before {
    width: 13rem;
    height: 5rem;
    left: 50%;
    bottom: calc(100% + var(--s1));
    top: -2rem;
    transform: translateX(-50%);
  }

  .swiper_main {
    width: 100%;
  }

  .swiper_thumbnail {
    position: static;
    width: 100%;
    margin-top: var(--s2);
  }

  .swiper-button-next {
    width: 2.6rem;
    height: 2.6rem;
    right: -1rem;
    left: auto;
    top: 30%;
    transform: none;
  }

  .swiper-button-prev {
    width: 2.6rem;
    height: 2.6rem;
    left: -1rem;
    top: 30%;
    transform: none;
  }

  .lower-banner {
    padding: var(--s4) var(--s3) var(--s3) var(--s3);
    background-size: 7.6rem auto;
    background-position: right var(--s1) top var(--s1);
    font-size: 2rem;
  }
  .lower-banner:before {
    content:"";
    position:absolute;
    background: url(img/banner-pic-2.png) no-repeat 0 0;
    width:100px;
    height: 100px;
    background-size:100%;
    right:1rem;
    top:-4.5rem;
    left: inherit;
  }
  .lower-banner span.st {
    font-size: 2.6rem;
  }
  .lower-banner__btn {
    min-height: initial;
    padding: var(--s2) var(--s7) var(--s2) var(--s3);
    background-size: 2.2rem auto;
    margin: 2rem auto 0;
  }
  .lower-banner:hover {
    opacity: 1;
  }

  .pr-text {
    margin-bottom: var(--s3);
    font-size: 1.1rem;
  }

  .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: var(--s2) auto var(--s3);
    padding-top: 10rem;
    font-size: 2.5rem;
  }
  .main-area--low h1:before {
    width: 16rem;
    height: 9rem;
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-area--low h2 {
    padding: 1.2rem var(--s2) 1.2rem var(--s7);
    border-radius: var(--s1);
    background-size: auto 3rem;
    font-size: 2.2rem;
  }
  .main-area--low h2:before {
    width: 5rem;
    height: 3rem;
    left: -0.4rem;
  }
  .main-area--low h2 a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3 {
    padding-left: var(--s3);
    font-size: 1.9rem;
  }
  .main-area--low h3:before {
    width: 1.4rem;
    height: 1.4rem;
    left: 0;
  }
  .main-area--low h3 a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4 {
    font-size: 1.7rem;
  }
  .main-area--low h4 a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5 {
    font-size: 1.5rem;
  }
  .main-area--low h5 a {
    background-size: 2rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      TOP common

  */
  .common-title {
    margin-bottom: var(--s3);
    font-size: 2.2rem;
  }
  .common-title span.sm {
    font-size: 2rem;
  }
  .common-title--02 {
    margin-top: var(--s2);
  }
  .common-title--02:before {
    width: 7rem;
    height: 7rem;
  }
  .common-title--03:after {
    width: 12rem;
    height: 6rem;
    background-size: 4.5rem auto;
    top: -8rem;
  }
  .common-title--03:before {
    top: -4rem;
  }

  .common-subtitle {
    margin-bottom: var(--s3);
    padding: var(--s1) var(--s3);
    font-size: 2.2rem;
  }
  .common-subtitle--02 {
    margin-top: var(--s10);
  }

  .common-lead {
    margin: var(--s2) auto var(--s4);
  }

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

      TOP 

  */
  .bg-sec01 {
    padding-top: 8rem;
  }
  .bg-sec01 .with-illust:before {
    width: 4rem;
    height: 7rem;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .sec01-title {
    margin-bottom: var(--s4);
    font-size: 2rem;
  }
  .sec01-title span.st {
    font-size: 2.4rem;
  }

  .sec-reason {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.8rem;
  }

  .sec01-subtitle {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
    text-align: center;
  }

  .fkds-comment {
    padding: var(--s2);
    font-size: 1.6rem;
    top: -4.5rem;
  }

  .sec01-graph {
    padding: var(--s2);
    padding-top: var(--s5);
  }

  .graph-title {
    margin: 0 0 var(--s1);
    font-size: 1.8rem;
  }

  .table-graph {
    margin-bottom: 0;
  }
  .table-graph th {
    padding: var(--s1);
    font-size: 1.6rem;
  }
  .table-graph td {
    padding: var(--s1);
    font-size: 1.4rem;
  }
  .table-graph td span.st {
    font-size: 1.8rem;
  }

  .summary-title {
    margin: 10rem auto var(--s2);
    font-size: 2rem;
  }
  .summary-title:before {
    width: 4rem;
    top: -7rem;
  }

  .area-fkds {
    margin-top: var(--s5);
    padding: var(--s4) var(--s2) var(--s4) var(--s4);
    background-size: 100% 100%;
  }
  .area-fkds:before {
    width: 10rem;
    height: 7.5rem;
  }
  .area-fkds__txt {
    margin-bottom: var(--s1);
    font-size: 1.3rem;
  }

  .list-fkds__item {
    font-size: 1.6rem;
  }
  .list-fkds__item:before {
    width: 1.2rem;
    height: 1.2rem;
    left: 1.2rem;
  }
  .list-fkds__item--st {
    padding-left: var(--s3);
  }
  .list-fkds__item--st:before {
    left: 0;
  }
  .list-fkds__item span.st {
    font-size: 2rem;
  }

  .summary-and {
    margin-top: var(--s5);
    font-size: 1.6rem;
  }
  
  .guide {
    font-size:2rem;
    text-align:center;
    margin-bottom:2rem;
  }
  .guide.child {
    margin-top:3rem;
  }

  .box-summary {
    margin: var(--s6) auto;
    padding: var(--s5) var(--s3) var(--s4);
  }
  .box-summary:before {
    width: 8.4rem;
    height: 10rem;
    top: var(--s6);
    right: var(--s1);
  }
  .box-summary__title {
    margin-left: 0;
    margin-bottom: var(--s3);
    padding-right: 8rem;
    font-size: 1.9rem;
  }
  .box-summary__title span.st {
    font-size: 2.2rem;
  }
  .box-summary__inner {
    margin-bottom: var(--s3);
    padding: var(--s2);
  }
  .box-summary__name {
    flex-direction: column;
    gap: var(--s2);
  }
  .box-summary__logo {
    padding: 5rem 0 0;
    background-size: 12rem auto;
    background-position: center top;
    font-size: 2rem;
  }
  .box-summary__tel {
    margin-left: 0;
    padding-left: 6rem;
    background-size: 5rem auto;
  }
  .box-summary__catch {
    font-size: 1.8rem;
  }
  .box-summary__text {
    margin-bottom: var(--s3);
  }
  .box-summary .btn-web,
.box-summary .btn-tel {
    width: 100%;
    margin: 0 auto;
  }
  .box-summary .btn-tel {
    margin-top: var(--s1);
  }
    .box-summary.merit {
    margin: var(--s6) auto;
    padding: var(--s5) var(--s3) var(--s4);
  }
  .box-summary.merit:before {
    width: 8.4rem;
    height: 10rem;
    top: var(--s6);
    right: var(--s1);
  }
  .box-summary.merit .box-summary__title {
    margin-left: 0;
    margin-bottom: var(--s3);
    padding-right: 8rem;
    font-size: 2.2rem;
  }
  .box-summary.merit .box-summary__title span.st {
    font-size: 2.2rem;
  }
  .box-summary--second .box-summary__title{
    padding-top:7rem;
    padding-right: 0;
    padding-left: 8rem;
  }
  .box-summary--second .box-summary__title::before{
    width:10rem;
    padding:0.5rem;
    transform: translateX(-50%);
    left: 50%;
    height: 3rem;
    top: 4rem;
  }
  .box-summary--second:before {
    width: 8.4rem;
    height: 10rem;
    top: 10rem;
    left: var(--s1);
  }

  .sec02-title {
    font-size: 2.4rem;
  }
  .sec02-title span.deco {
    font-size: 2rem;
  }

  .card-merit {
    padding: 0 var(--s1);
  }
  .card-merit:nth-of-type(4), .card-merit:nth-of-type(5), .card-merit:nth-of-type(6) {
    margin-top: 0;
  }
  .card-merit__title {
    font-size: 1.9rem;
  }

  .lead-picture {
    flex-direction: column-reverse;
    gap: var(--s2);
  }
  .lead-picture__pic {
    width: 9rem;
    margin: 0 auto;
  }

  .box-info {
    padding: var(--s2);
  }
  .box-info .ybuild {
    padding: var(--s2);
  }
  .box-info .ybuild .catch-02 {
    background-size:15%;
    background-position: 0 100%;
  }
  .box-info .l-column {
    flex-direction: column-reverse;
    gap: var(--s2);
  }
  .box-info__side {
    margin-left: auto;
    margin-right: auto;
  }
  .box-info__title {
    padding: var(--s2) var(--s2) var(--s2) 10rem;
    font-size: 2.2rem;
  }
  .box-info__title--01 {
    background-size: 7rem auto;
    background-position: left var(--s2) center;
  }
  .box-info__title--02 {
    background-size: 7rem auto;
    background-position: left var(--s2) center;
  }
  .box-info__title--03 {
    background-size: 7rem auto;
    background-position: left var(--s2) center;
  }
  .box-info__list {
    min-width: 100%;
  }
  .box-info__list__title {
    min-width: initial;
    font-size: 1.6rem;
  }
  .box-info__list__data span.st {
    font-size: 1.8rem;
  }

  .card-summary {
    margin: var(--s6) auto;
    padding: var(--s2);
    flex-direction: column-reverse;
  }
  .card-summary__tag {
    font-size: 1.4rem;
  }
  .card-summary__title {
    margin-bottom: var(--s2);
  }
  .card-summary__catch {
    font-size: 1.8rem;
  }
  .card-summary .l-column__side {
    text-align: center;
  }
  .card-summary .l-column__side img {
    width: 12rem;
  }
  .text-center--st {
    font-size: 2.4rem;
  }
  .text-center span.st {
    font-size: 2.2rem;
  }

  .box-line {
    margin-top: 8rem;
    padding: var(--s3);
    padding-top: 10rem;
  }
  .box-line__pic {
    width: 10rem;
    height: auto;
    bottom: auto;
    top: -4rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .bg-yellow:before {
    border-width: 3.5rem 5.2rem 0 5.2rem;
  }

  .sec03-logo {
    margin-bottom: var(--s2);
  }

  .sec03-title {
    margin-bottom: var(--s3);
    padding-bottom: var(--s-2);
    font-size: 2.2rem;
  }

  .sponsored-build {
    margin-bottom: var(--s6);
    flex-direction: column-reverse;
  }
  .sponsored-build p.catch-02 {
    line-height: 1.5;
  }
  .sponsored-build .l-stack {
    gap: var(--s2);
  }

  .card-white {
    margin-top: 5rem;
    padding: var(--s3);
  }
  .card-white__pic {
    width: 100%;
  }
  .card-white__pic.r-img{
    width: 100%;
  }
  .card-white__title {
    font-size: 2rem;
  }

  .sec03-subtitle {
    margin-top: 6rem;
    margin-bottom: var(--s3);
    padding-left: var(--s3);
    font-size: 2.2rem;
  }
  .sec03-subtitle::before {
    width: 1.6rem;
    height: 1.6rem;
  }

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

  .tag01 {
    font-size: 1.3rem;
  }

  .box-voice {
    padding: var(--s3);
  }
  .box-voice:before {
    left: 17rem;
  }
  .box-voice__catch {
    font-size: 2rem;
  }
  .box-voice__icon {
    width: 10rem;
  }
  .box-voice .l-column {
    flex-direction: column-reverse;
  }

  .card-media {
    max-width: 90%;
  }
  .card-media__title {
    padding-left: 12rem;
    font-size: 1.8rem;
    background-size: 10.2rem auto;
  }
}
