@charset "UTF-8";
/* 変数 */
:root {
  --text-base-color: #000;
  --primary-color: #32a043;
  --secondary-color:#f7931e;
  --light-background: #fff9f0;
  --yellow-green:#7ac943;
  --light-green:#84c68e;
  --light-green-2: #6FBC7B;
}

@media (min-width: 992px) {
  .btns-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 32px;
  }
}
[class*=btn-] {
  -webkit-transition: 0.3s -webkit-filter;
  transition: 0.3s -webkit-filter;
  transition: 0.3s filter;
  transition: 0.3s filter, 0.3s -webkit-filter;
  max-width: 700px;
  margin-inline: auto;
}

[class*=btn-] a:hover {
  text-decoration: none;
  color: inherit;
}

[class*=btn-] a {
  display: block;
  width: 100%;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  border: var(--primary-color);
  border-radius: 2em;
  text-align: center;
}

.btn-primary a {
  padding: 1em;
  font-size: 0.85em;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-indent: -0.1em;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: var(--primary-color) !important;
  border: var(--primary-color);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 49, 49, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(228, 49, 49, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 2em;
  text-align: center;
}

.btn-secondary a {
  padding: 1em;
  letter-spacing: 0.1em;
  text-indent: -0.1em;
  font-size: 0.85em;
  font-weight: bold;
}

.btn-secondary:hover,
.btn-secondary:active {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.btn-cta {
  color: #fff;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0;
  text-align: center;
  width: 100%;
}

.btn-cta a {
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.5em;
}

.btn-cta:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.btn-floating {
  color: #fff;
  background-color: var(--secondary-color);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 5px 0 0 5px;
  padding: 10px;
  -webkit-transition: 0.3s -webkit-filter;
  transition: 0.3s -webkit-filter;
  transition: 0.3s filter;
  transition: 0.3s filter, 0.3s -webkit-filter;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  white-space: nowrap;
}

[class*=btn-].has-border {
  border: 1px solid #fff;
}

[class*=btn-].is-thin a {
  padding: 0.25em 1em;
  font-weight: 500;
}

.buttons-inner-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.buttons-inner-link a {
  border: 2px solid var(--primary-color);
  background-color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 16px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.buttons-inner-link a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.buttons-inner-link a::after {
  content: "";
  width: 25px;
  height: 33px;
  background: url("/system_panel/uploads/images/arrow-down-solid.png");
  background-size: cover;
  display: block;
  margin-top: auto;
}

@media (min-width: 768px) {
  .buttons-inner-link {
    gap: 32px;
  }
  .buttons-inner-link a {
    border-radius: 60px;
    padding: 36px;
    border: 5px solid var(--primary-color);
  }
  .buttons-inner-link a::after {
    position: absolute;
    right: 32px;
    top: calc(50% - 14px);
  }
}
/* 基本 */
html {
  font-size: 16px;
  /* max-width: 1920px;
  margin: auto;
  background-color: #000; */
  --leading-trim: calc((1em - 1lh) / 2);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-wrap: anywhere;
}

.has-marker-text strong {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 0, 0)), color-stop(62.5%, rgba(255, 255, 0, 0)), color-stop(62.5%, rgb(255, 255, 0)), to(rgb(255, 255, 0)));
  background: -webkit-linear-gradient(rgba(255, 255, 0, 0) 0%, rgba(255, 255, 0, 0) 62.5%, rgb(255, 255, 0) 62.5%, rgb(255, 255, 0));
  background: linear-gradient(rgba(255, 255, 0, 0) 0%, rgba(255, 255, 0, 0) 62.5%, rgb(255, 255, 0) 62.5%, rgb(255, 255, 0));
}

.has-primary-color-text strong {
  color: var(--primary-color);
}

.section-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1.5em;
  text-align: center;
}

.section-heading:not(.no-border)::after {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  background-color: var(--primary-color);
}

@media (min-width: 1400px) {
  .section-heading:not(.no-border)::after {
    width: 150px;
    height: 16px;
    margin-top: 40px;
  }
}
.section-label {
  font-size: 16px;
  color: #fff;
  background-color: var(--yellow-green);
  padding: 0.7em 1.4em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 32px;
}

.content-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.7em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-heading::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--text-base-color);
  border-radius: 4px;
  margin-right: 10px;
}

.content-heading.primary-color {
  color: var(--primary-color);
}

.content-heading.primary-color::before {
  background-color: var(--primary-color);
}

.bg-light-green .content-heading::before {
  background-color: #fff;
}

.text-lead {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.7em;
  line-height: 1.5;
}

.text-lead.font-big {
  font-size: 1.4rem;
}

.text-underline {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.2rem;
  }
  .text-lead {
    font-size: 1.4rem;
  }
  .text-lead.font-big {
    font-size: 1.8rem;
  }
  .content-heading {
    font-size: 2rem;
  }
  .content-heading::before {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 16px;
  }
}
@media (min-width: 1400px) {
  .text-lead {
    font-size: 1.6rem;
  }
}
a:hover {
  color: inherit;
}

.text-box--baloon {
  background-color: #fff;
  border-radius: 1em;
  text-align: center;
  padding: 0.25em 2em;
  margin: auto auto 1.5em auto;
  font-weight: bolder;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.text-box--baloon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  border-top: 11px solid #fff;
  border-right: 7px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 7px solid transparent;
  left: 0;
  right: 0;
  bottom: -22px;
  margin-inline: auto;
}

.text-box--baloon.text-box--color {
  background-color: var(--yellow-green);
  color: #fff;
}
.text-box--baloon.text-box--color::after {
  border-top-color: var(--yellow-green);
}

@media (min-width: 768px) {
  .text-box--baloon {
    font-size: 1.7rem;
  }
  .text-box--baloon::after {
    width: 2.4rem;
    height: 3rem;
    border-top: 1.5rem solid #fff;
    border-right: 1.2rem solid transparent;
    border-bottom: 1.5rem solid transparent;
    border-left: 1.2rem solid transparent;
    left: 0;
    right: 0;
    bottom: -3rem;
    margin-inline: auto;
  }
}
.bg-pattern-dots {
  background: url("/system_panel/uploads/images/bg-pattern-dots.png");
  background-size: 375px;
  background-position: left top;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .bg-pattern-dots {
    background: none;
  }
}
@media (min-width: 992px) {
  .bg-pattern-dots-color-pc {
    background-image: url("/system_panel/uploads/images/bg-pattern-dots-color-pc.png");
    background-size: 1920px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}
.bg-pattern-dots-taupe {
  background-image: url("/system_panel/uploads/images/bg-pattern-dots-white.png");
  background-color: #f5f1e9;
  background-size: 200px;
  background-position: left top;
  background-repeat: no-repeat;
}

.bg-pattern-dots-taupe.is-reverse {
  background-position: left -32px;
}

@media (min-width: 1200px) {
  .bg-pattern-dots-taupe {
    background-image: url("/system_panel/uploads/images/bg-pattern-dots-white-pc.png");
    background-color: #f5f1e9;
    background-size: 33%;
    background-position: -20% top;
  }
  .bg-pattern-dots-taupe.is-reverse {
    background-position: -20% -32px;
  }
}
.bg-pattern-dots-and-fade-img {
  background: url("/system_panel/uploads/images/bg-pattern-dots-taupe.png"), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), color-stop(25vh, rgb(255, 255, 255))), url("/system_panel/uploads/images/slidesample02.jpg");
  background: url("/system_panel/uploads/images/bg-pattern-dots-taupe.png"), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.5), rgb(255, 255, 255) 25vh), url("/system_panel/uploads/images/slidesample02.jpg");
  background: url("/system_panel/uploads/images/bg-pattern-dots-taupe.png"), linear-gradient(to top, rgba(255, 255, 255, 0.5), rgb(255, 255, 255) 25vh), url("/system_panel/uploads/images/slidesample02.jpg");
  background-size: 200px, 100%, 100%;
  background-position: left top, left top, center bottom;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .bg-pattern-dots-and-fade-img {
    background: url("/system_panel/uploads/images/bg-pattern-dots-taupe-pc.png"), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.5)), color-stop(33%, rgb(255, 255, 255))), url("/system_panel/uploads/images/slidesample02.jpg");
    background: url("/system_panel/uploads/images/bg-pattern-dots-taupe-pc.png"), -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.5), rgb(255, 255, 255) 33%), url("/system_panel/uploads/images/slidesample02.jpg");
    background: url("/system_panel/uploads/images/bg-pattern-dots-taupe-pc.png"), linear-gradient(to top, rgba(255, 255, 255, 0.5), rgb(255, 255, 255) 33%), url("/system_panel/uploads/images/slidesample02.jpg");
    background-size: 33%, 100%, 100%;
    background-position: right top, left top, center bottom;
    background-repeat: no-repeat;
  }
}
.bg-pattern-circuit {
  background-image: url("/system_panel/uploads/images/bg-pattern-circuit.png");
  background-color: #f5f1e9;
  background-size: 390px;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .bg-pattern-circuit {
    background-image: url("/system_panel/uploads/images/bg-pattern-circuit-pc.png");
    background-size: contain;
    background-attachment: fixed;
    background-position: right center;
  }
}
.bg-pattern-circuit-taupe {
  background-image: url("/system_panel/uploads/images/bg-pattern-circuit-taupe.png");
  background-size: 390px;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .bg-pattern-circuit-taupe {
    background-image: url("/system_panel/uploads/images/bg-pattern-circuit-taupe.png");
    background-size: 80%;
    background-attachment: fixed;
    background-position: right bottom;
  }
}
[class^=bg-pattern].is-reverse,
[class^=bg-pattern].is-reverse > div {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.bg-light-green {
  background-color: var(--light-green);
  color: #fff;
}

.bg-taupe {
  background-color: #f5f1e9;
}

.bg-reasonwhy {
  background: url("/system_panel/uploads/images/bg-point.png");
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.bg-reasonwhy.mizucon {
  background: url("/system_panel/uploads/images/bg-reason-mizucon.png");
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .bg-option {
    background-image: url("/system_panel/uploads/images/bg-pattern-dots-taupe-pc-left.png"), url("/system_panel/uploads/images/bg-pattern-dots-taupe-pc.png");
    background-size: 539px, 539px;
    background-position: left top, right bottom;
    background-repeat: no-repeat;
  }
}
.bg-pattern-top-img-and-bottom-img {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(25vh, rgb(255, 255, 255)), color-stop(75vh, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0))), url("/system_panel/uploads/images/slidesample01.jpg"), url("/system_panel/uploads/images/slidesample02.jpg");
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 25vh, rgb(255, 255, 255) 75vh, rgba(255, 255, 255, 0)), url("/system_panel/uploads/images/slidesample01.jpg"), url("/system_panel/uploads/images/slidesample02.jpg");
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255) 25vh, rgb(255, 255, 255) 75vh, rgba(255, 255, 255, 0)), url("/system_panel/uploads/images/slidesample01.jpg"), url("/system_panel/uploads/images/slidesample02.jpg");
  background-size: 100%, 100%, 100%;
  background-position: left top, left top, center bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .bg-pattern-top-img-and-bottom-img {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(62.5%, rgb(255, 255, 255)), to(rgb(255, 255, 255))), url("/system_panel/uploads/images/bg-option.png");
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 62.5%, rgb(255, 255, 255)), url("/system_panel/uploads/images/bg-option.png");
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255) 62.5%, rgb(255, 255, 255)), url("/system_panel/uploads/images/bg-option.png");
    background-size: 100%, 100%;
    background-position: left top, center bottom;
    background-repeat: no-repeat;
  }
}
.bg-pattern-dots-taupe.bg-repeat {
  background-image: url("/system_panel/uploads/images/bg-pattern-dots-white-pc.png"), url("/system_panel/uploads/images/bg-pattern-dots-white-right.png"), url("/system_panel/uploads/images/bg-pattern-dots-white-pc.png"), url("/system_panel/uploads/images/bg-pattern-dots-white-right.png");
  background-color: #f5f1e9;
  background-size: 33%;
  background-position: -20% 0%, right 33%, -20% 66%, right 100%;
}

/* bootstrapスタイル上書き */
@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}
.d-grid {
  display: grid;
}

@media (min-width: 768px) {
  .br-cancel-tab br {
    display: none;
  }
}
@media (min-width: 992px) {
  .br-cancel-pc br {
    display: none;
  }
}
.br-cancel-only-sp br {
  display: none;
}

@media (min-width: 768px) {
  .br-cancel-only-sp br {
    display: unset;
  }
}
.list--check-mark > * {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 0.5em;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 16px;
}

.list--check-mark > *::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background-image: url("/system_panel/uploads/images/check-mark.png");
  background-size: cover;
}

.list--awards > * {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 1em;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.list--awards > *::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background-image: url("/system_panel/uploads/images/check-mark.png");
  background-size: cover;
}

.list--question__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.list--question__heading::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-image: url("/system_panel/uploads/images/question-mark.png");
  background-size: cover;
}

.primary-color ~ .list--question .list--question__heading::before {
  background-image: url("/system_panel/uploads/images/circle-question-solid-primary-color.png");
}

.list--question__body {
  padding-left: calc(40px + 0.5em);
}
.list--question__body strong {
  color: yellow;
}

.list--question {
  margin-block: 32px;
}

.primary-color ~ .list--question:not(:last-child) {
  border-bottom: 1px solid #999;
  padding-bottom: 32px;
}

.flow-baloon__wrapper {
  margin-block: 32px;
}

.flow-baloon__wrapper > .flow-baloon__block:not(:last-child) {
  margin-bottom: 48px;
}

.flow-baloon__wrapper > .flow-baloon__block:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: 25px solid #fff;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid transparent;
  bottom: -50px;
  left: 0;
  right: 0;
  margin-inline: auto;
}

.flow-baloon__block {
  background: #fff;
  border-radius: 10px;
  padding: 1em;
  color: var(--text-base-color);
  position: relative;
}

.flow-baloon__wrapper.primary-color > .flow-baloon__block:not(:last-child)::after {
  border-top-color: var(--primary-color);
}

.flow-baloon__wrapper.primary-color .flow-baloon__block {
  background: var(--primary-color);
  color: #fff;
}

.flow-baloon__heading {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .list--check-mark > * {
    font-size: 1rem;
  }
  .flow-baloon__block {
    display: grid;
    grid-template-columns: 33% 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    padding: 40px 96px;
    border-radius: 10em;
  }
  .flow-baloon__block .flow-baloon__heading {
    font-size: 1.8rem;
    margin: 0;
    text-align: left;
  }
  .flow-baloon__block .flow-baloon__body {
    min-height: 3lh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flow-baloon__block .flow-baloon__body br {
    display: none;
  }
  .flow-baloon__block .flow-baloon__body p {
    margin: 0;
    font-size: 1rem;
  }
  .list--question__heading {
    font-size: 1.8rem;
  }
  .list--question__heading::before {
    width: 60px;
    height: 60px;
  }
  .list--question__body {
    padding-left: 75px;
  }
}
.site-logo {
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  mix-blend-mode: darken;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(0, 0, 0, 0);
  background-image: url("/system_panel/uploads/images/site-logo.jpg");
  background-size: contain;
  width: 270px;
  background-repeat: no-repeat;
  background-position: center center;
}

.site-logo:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.site-logo a:hover {
  color: transparent;
}

@media (min-width: 1400px) {
  .site-logo {
    width: 620px;
    height: 60px;
  }
}
.menu-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  padding: 12px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0 0 0 5px;
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 100;
}

.menu-btn__icon {
  width: 22px;
  height: 13px;
  position: relative;
  gap: 5px;
}

.menu-btn__icon > .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-btn__icon > .bar:nth-child(1) {
  top: 0;
}

.menu-btn__icon > .bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.menu-btn__icon > .bar:nth-child(3) {
  bottom: 0;
}

#spHeaderMenu.is-open {
  z-index: 999999999;
}

html:has(#spHeaderMenu.is-open) {
  overflow: hidden;
}

.is-open .menu-btn .bar:nth-child(1) {
  top: calc(50% - 2px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.is-open .menu-btn .bar:nth-child(2) {
  opacity: 0;
}

.is-open .menu-btn .bar:nth-child(3) {
  top: calc(50% - 2px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sp-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: calc(env(safe-area-inset-bottom) + env(safe-area-inset-top) + 100vh);
  overflow-y: auto;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  padding: 48px 20px;
}

.sp-header-nav > .nav-item {
  border-left: 4px solid #000;
  padding-left: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.sp-header-nav > .nav-item-child {
  font-size: 0.8em;
  text-indent: 1.5em;
}

.sp-header-nav > .nav-item-child::before {
  content: "■";
  color: var(--primary-color);
  margin-right: 0.25em;
}

.sp-header-nav a {
  font-weight: bold;
  font-size: 1.2rem;
}

.sp-header-nav .icon-dark {
  -webkit-filter: brightness(0);
          filter: brightness(0);
  width: 32px;
  margin-top: 2rem;
}

.sp-header-nav__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 270px;
}

.is-open .sp-header-nav {
  opacity: 1;
  pointer-events: unset;
}

.sp-header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 20px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (min-width: 768px) {
  .sp-header-menu {
    display: none;
  }
}
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}

.nav-item {
  margin: 0;
}

.nav-item a:hover {
  color: inherit;
}

.nav-item.has-child {
  position: relative;
}

.nav-item__child {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  border-radius: 0.5em;
  font-size: 1.1em;
  position: absolute;
  width: 16em;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  height: auto;
  background-color: #fff;
  padding: 1.5em;
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.nav-item__child .nav-item a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.nav-item__child .nav-item a::before {
  content: "■";
  color: var(--primary-color);
  margin-right: 0.25em;
}

.nav-item.has-child:hover .nav-item__child {
  bottom: -15px;
  opacity: 1;
  pointer-events: all;
}

.nav-item.has-child .nav-item__child::before {
  content: "";
  position: absolute;
  top: -27px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-top: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
  z-index: 0;
}

.nav-item.has-child .nav-item__child::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: -1;
}

.header {
  position: absolute;
  z-index: 100;
  width: 100%;
}

@media (min-width: 768px) {
  .header {
    position: static;
  }
}
/* ページヘッダー */
.page-content-header {
  position: relative;
  overflow: hidden;
}

.page-content-header__text {
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: calc(3.5em + 45px) 48px 3.5em 48px;
  margin: 0;
  display: grid;
}
.page-content-header__text .page-heading {
  font-size: 20px;
}
.page-content-header__text .small {
  font-size: 12px;
  margin: 0;
}

.page-content-header__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.page-content-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff9f0;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-content-header__text {
    padding: 3.5em 15px;
  }
  .page-content-header__text .page-heading {
    font-size: 3rem;
  }
  .page-content-header__text .small {
    font-size: 2rem;
  }
}
.text-copyright {
  font-size: 10px;
}

@media (min-width: 1200px) {
  .text-copyright {
    font-size: 16px;
  }
  .footer-nav {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0.25em 1em;
    font-size: 0.8rem;
  }
  .footer-nav p {
    margin: 0;
  }
}
.slider-upper-layer {
  position: absolute;
  z-index: 2;
  padding: 32px 0 0 0;
  text-align: center;
  width: 100%;
}
.slider-upper-layer img {
  width: 100%;
}

.slider-upper-layer {
  aspect-ratio: 390/621;
}

.slider-upper-layer .is-pc {
  display: none;
}

@media (min-width: 768px) {
  .slider-upper-layer {
    aspect-ratio: 1920/880;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .slider-upper-layer .is-pc {
    display: unset;
  }
  .slider-upper-layer .is-sp {
    display: none;
  }
}
#topSlider .swiper {
  width: 100%;
}

.swiper.mySwiperSp {
  aspect-ratio: 390/621;
}

.mySwiper img {
  width: 100%;
  aspect-ratio: 1920/880;
  -o-object-fit: cover;
     object-fit: cover;
}

.mySwiperSp img {
  width: 100%;
  aspect-ratio: 390/621;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

body:has(.slides-per-view) {
  overflow-x: hidden;
}

.slides-per-view img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-style--card {
  padding-bottom: 48px;
  display: grid;
  grid-auto-flow: column;
}

.slide-style--card .swiper-slide {
  border: 1px solid #999;
  padding: 20px;
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  height: 100%;
}
.slide-style--card .swiper-slide h3 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}

@media (min-width: 768px) {
  .slide-style--card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: unset;
    gap: 32px;
    max-width: 960px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
  .slide-style--card .swiper-slide {
    border: none;
    padding: 0;
    gap: 32px;
  }
  .slide-style--card .swiper-slide img {
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slide-style--card .swiper-slide h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
  }
}
/* パンクズリスト */
.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  white-space: nowrap;
  overflow-x: auto;
  font-size: 12px;
}

.breadcrumbs__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  margin-left: 1em;
}

.breadcrumbs__item p {
  margin: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    font-size: 16px;
  }
}
.block-columns {
  display: grid;
  -webkit-box-pack: baseline;
  -webkit-justify-content: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  gap: 30px;
}

.card-block--green-border {
  border: 5px solid var(--yellow-green);
  border-radius: 1.5rem;
  background-color: #fff;
  padding: 1rem;
  display: grid;
  justify-items: center;
  -webkit-align-content: baseline;
      -ms-flex-line-pack: baseline;
          align-content: baseline;
}

.card-block--green-border .card-block__title {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.card-block--green-border .card-block__icon {
  width: auto;
  height: 100px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .block-columns {
    grid-auto-flow: column;
    gap: 1rem;
  }
  .block-columns.columns--2 {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .block-columns {
    gap: 1.8rem;
  }
  .card-block--green-border {
    padding: 1.5rem;
  }
  .card-block--green-border .card-block__title {
    font-size: 1.4rem;
  }
}
.numbering-block {
  counter-reset: number 0;
}

.numbering-block > div {
  counter-increment: item;
}

.numbering-block__lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 16px;
  padding: 20px;
  margin: 0;
}

.numbering-block__lead::before {
  content: counter(item);
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5em;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: -10px;
}

.step-block {
  background-color: #fff;
  border: 1px solid #999;
  margin-block: 30px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 130px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}
.step-block img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .numbering-block {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 3rem;
  }
  .numbering-block__lead {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    font-size: 1.2rem;
    margin-top: 1em;
  }
  .numbering-block__lead::before {
    font-size: 40px;
    left: calc(50% - 36px);
    top: 0;
    border-radius: 36px;
    width: 72px;
    height: 72px;
    line-height: 0.7;
  }
  .step-block {
    background-color: unset;
    border: none;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }
  .step-block img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
  }
}
.label-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  margin-block: 10px;
}

.label {
  background-color: var(--yellow-green);
  color: #fff;
  border-radius: 2em;
  padding: 0.5em 1em;
  font-size: 14px;
}

@media (min-width: 768px) {
  .works-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto auto 1fr;
    gap: 0 68px;
  }
  .works-block .text-lead {
    grid-column: 2/3;
    grid-row: 2;
  }
  .works-block .label-group {
    grid-column: 2/3;
    grid-row: 3;
  }
  .works-block .works-img {
    grid-column: 1/2;
    grid-row: 1/6;
  }
  .works-block .works-text {
    grid-column: 2/3;
    grid-row: 4;
  }
}
.works-block-detail {
  border: 3px solid var(--light-green-2);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.works-block-detail .text-lead {
  padding: 20px;
}
.works-block-detail .works-img {
  padding: 20px;
}
.works-block-detail .works-text {
  padding: 20px;
}

.works-block-detail__header {
  background-color: var(--light-green-2);
  color: #fff;
  padding: 20px;
  text-align: center;
}
.works-block-detail__header .label {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: #fff;
  color: var(--text-base-color);
}

@media (min-width: 992px) {
  .works-block-detail__inner {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 45% 1fr;
    grid-template-rows: 1fr auto auto auto 1fr;
    padding: 50px;
  }
  .works-block-detail__inner .text-lead {
    grid-column: 2/3;
    grid-row: 2;
    padding: 0;
    font-size: 1.4rem;
    margin: 0 0 0.25em 0;
  }
  .works-block-detail__inner .works-detail__list {
    grid-column: 2/3;
    grid-row: 3;
  }
  .works-block-detail__inner .works-text {
    grid-column: 2/3;
    grid-row: 4;
  }
  .works-block-detail__inner .works-img {
    grid-column: 1/2;
    grid-row: 1/6;
  }
  .works-block-detail__inner .works-detail__list__row {
    grid-template-columns: 8em 1fr;
  }
}
.works-detail__list {
  padding-inline: 20px;
}

.works-detail__list__row {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.works-detail__list__row .dt {
  color: var(--primary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.works-detail__list__icon {
  width: 25px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.5em;
}

.works-detail__list__interview {
  border: 3px solid var(--light-green-2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: var(--light-green-2);
  border-radius: 40px;
  text-align: center;
  margin: 20px auto;
  padding: 0.5em 2em;
  font-weight: bold;
  position: relative;
}
.works-detail__list__interview::after, .works-detail__list__interview::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 30px;
  border-right: 14px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 14px solid transparent;
  left: calc(50% - 14px);
}
.works-detail__list__interview::after {
  z-index: 1;
  border-top: 15px solid var(--light-green-2);
  bottom: -30px;
}
.works-detail__list__interview::before {
  z-index: 2;
  border-top: 15px solid #fff;
  bottom: -25px;
}

.works-block-detail .youtube {
  padding: 5px 20px 20px 20px;
}

.works-block-detail .youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@media (min-width: 992px) {
  .works-block-detail .youtube {
    padding: 5px 70px 70px 70px;
    margin-inline: auto;
  }
}
.dl {
  display: grid;
}
.dl p {
  margin: 0;
}

.dl-row {
  border-bottom: 1px solid #999;
  padding-block: 16px;
}
.dl-row .dt {
  text-align: center;
}
.dl-row .dd {
  font-weight: normal;
  text-align: center;
}

@media (min-width: 768px) {
  .dl-row {
    border-bottom: 1px solid #999;
    display: grid;
    grid-template-columns: 8em 1fr;
    padding-block: 45px;
  }
  .dl-row .dd {
    text-align: left;
  }
}
.flex-gap-3 {
  gap: 1.5rem;
}

.scroll-x {
  overflow-x: auto;
}

.spec-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  margin-bottom: 16px;
  text-align: center;
}

.spec-table p {
  margin: 0;
}

.spec-table-row {
  display: table-row;
  border-bottom: 1px solid #999;
}
.spec-table-row:first-child {
  border-bottom: 2px solid #999;
}

.spec-table-row > div {
  display: table-cell;
  vertical-align: middle;
  padding: 16px;
  width: 160px;
}
.spec-table-row > div:first-child {
  width: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.spec-table-th {
  font-weight: bold;
}

@media (min-width: 992px) {
  .spec-table-row > div {
    width: unset;
  }
  .spec-table-row > div:first-child {
    width: 120px;
  }
}
.user-name {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .user-name {
    font-size: 1.4rem;
  }
}
#topNews.container {
  padding-left: 0;
  padding-right: 0;
}

.news-box__title {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5em 1.5em;
  text-align: center;
}

#topNewsItem {
  overflow: hidden;
}

#topNewsItem .text {
  margin: 0;
  line-height: 1.5;
  padding: 15px;
  border-bottom: 2px solid var(--primary-color);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #fff;
  font-size: 1rem;
}

#topNewsItem a {
  text-decoration: underline;
  /* display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
}

@media (min-width: 576px) {
  #topNews.container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .news-box {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .news-box__post a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .news-box__title {
    padding: 0.5em 1.5em 0.5em 2em;
    border-radius: 2em 0 0 2em;
    text-align: left;
  }
  #topNewsItem {
    overflow: hidden;
  }
  #topNewsItem .text {
    margin: 0;
    line-height: 1.5;
    padding: 0.5em 2em 0.5em 1.5em;
    border-radius: 0 2em 2em 0;
    border: 2px solid var(--primary-color);
  }
  #topNewsItem a {
    display: inline;
    margin-left: 0.5em;
  }
}
/* 新着情報一覧 */
#dataNews .blogItemCategory {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.2em 1.5em;
  font-size: 0.7em;
}

#dataNews a {
  text-decoration: underline;
}

#dataNews .webgene-item {
  border-bottom: 1px solid #000;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em;
  margin-bottom: 2em;
  padding-bottom: 2em;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

#dataNews h2 {
  line-height: 1.6;
  grid-column: 1/3;
  grid-row: 2/3;
}

#dataNews .webgene-pagination ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  list-style: none;
  padding: 0;
}

#dataNews .webgene-pagination a {
  text-decoration: none;
  border: 1px solid var(--primary-color);
  background-color: #fff;
  color: var(--primary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0.2em 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#dataNews .webgene-pagination .selected a,
#dataNews .webgene-pagination a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

@media (min-width: 768px) {
  #dataNews .webgene-item {
    grid-template-columns: auto auto 1fr;
    gap: 1.5em;
  }
  #dataNews h2 {
    grid-column: unset;
    grid-row: unset;
  }
}
/* news詳細 */
#singleNews .blogItemCategory {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.2em 1.5em;
  font-size: 0.7em;
}

#singleNews .text-lead {
  border-bottom: 1px solid #000;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
}/*# sourceMappingURL=index.css.map */