@charset "UTF-8";
/*--------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
--------------------------------------------------*/
/*============================
//_mixin.scss
============================ */
/*============================
//_zero-style.scss
============================ */
.p-zeroplusone #wrapper {
  overflow: visible;
}
.p-zeroplusone #wrapper #contents {
  margin: 0;
  padding: 0;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .p-zeroplusone {
    min-width: 0;
  }
}

.m-section {
  margin: 0;
}

* {
  font-family: "Noto Sans JP", sans-serif;
}

/*============================
//_zero-example.scss
============================ */
.zero-example {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  background-color: #fafafa;
  background-image: linear-gradient(#FDFDFD 2px, transparent 2px), linear-gradient(90deg, #FDFDFD 2px, transparent 2px);
  background-size: 40px 40px;
}
@media screen and (max-width: 768px) {
  .zero-example {
    padding: 40px 16px 56px;
    gap: 24px;
  }
}
.zero-example * {
  box-sizing: border-box;
}
.zero-example__heading {
  width: 1080px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .zero-example__heading {
    width: 100%;
    font-size: 28px;
  }
}
.zero-example__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1080px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .zero-example__list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.zero-example__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 336px;
  height: 60px;
  padding: 0 40px 0 24px;
  background: #fc0 !important;
  box-shadow: 0px 0px 20px #FFFDF3;
  border-radius: 999px;
  color: #333 !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zero-example__button {
    width: 100%;
    max-width: 336px;
    height: 54px;
    font-size: 16px;
    padding: 0 32px 0 16px;
    margin-top: 8px;
  }
}
.zero-example__button:hover {
  opacity: 0.7;
}
.zero-example__button::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 15l6-6 6 6"/%3E%3C/svg%3E');
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-example__button::after {
    right: 16px;
  }
}

.zero-example-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 40px;
  width: 344px;
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .zero-example-card {
    width: 100%;
    max-width: 400px;
    padding: 24px;
  }
}
.zero-example-card__title {
  position: relative;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  padding-bottom: 8px;
  margin: 0 0 24px 0;
  border-bottom: 4px solid #f0f0f0;
}
.zero-example-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, #025fae 50%, #fc0 50%);
}
.zero-example-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .zero-example-card__img {
    max-height: 220px;
  }
}
.zero-example-card__spec {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  row-gap: 10px;
  column-gap: 16px;
}
.zero-example-card__dt {
  width: 80px;
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  margin: 0;
  line-height: 1.5;
}
.zero-example-card__dd {
  width: calc(100% - 96px);
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/*============================
//_zero-header.scss
============================ */
@media screen and (max-width: 768px) {
  header.zeroplusone-header {
    position: sticky !important;
  }
}

@media screen and (max-width: 768px) {
  .header-option {
    display: none;
  }
}

.header-button.header-button--login {
  color: rgb(51, 51, 51);
  background: #fc0;
}
.header-button.header-button--signup {
  color: rgb(2, 95, 174);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(2, 95, 174);
  border-image: initial;
  background: rgb(255, 255, 255);
}

.p-zeroplusone #wrapper.wrapper nav {
  padding: 10px 0;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px 0px;
  gap: 8px;
  background: #fafafa;
  margin: 0;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone img.side-section__title {
  display: block;
  width: 98px;
  height: auto;
  margin: 0 auto;
  flex: none;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone .side-contents {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-bottom: 2px solid #fff;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone .side-contents:last-of-type {
  border-bottom: none;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone .side-contents-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  width: 100%;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone .side-contents-heading__text--zeroanchor {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone .side-contents-heading {
  /* アイコン */
}
.p-zeroplusone #wrapper.wrapper nav .side-section__zeroplusone .side-contents-heading::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 9l6 6 6-6"/%3E%3C/svg%3E');
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.p-zeroplusone #wrapper.wrapper nav span.side-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  display: block;
  width: fit-content;
  margin: 16px auto;
}
@media screen and (max-width: 768px) {
  .p-zeroplusone #wrapper.wrapper nav {
    padding: 0;
    height: auto;
  }
}

/*============================
//_zero-how.scss
============================ */
.zero-how {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  background-color: #fff;
  background-image: linear-gradient(#F9F9F9 2px, transparent 2px), linear-gradient(90deg, #F9F9F9 2px, transparent 2px);
  background-size: 40px 40px;
}
@media screen and (max-width: 768px) {
  .zero-how {
    padding: 40px 16px 56px;
    gap: 32px;
  }
}
.zero-how__heading {
  width: 1080px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .zero-how__heading {
    width: 100%;
    font-size: 28px;
  }
}
.zero-how__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 336px;
  height: 60px;
  padding: 0 40px 0 24px;
  background: #fc0 !important;
  box-shadow: 0px 0px 20px #FFFDF3;
  border-radius: 999px;
  color: #333 !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zero-how__button {
    width: 100%;
    max-width: 336px;
    height: 54px;
    font-size: 16px;
    padding: 0 32px 0 16px;
    margin-top: 8px;
  }
}
.zero-how__button:hover {
  opacity: 0.7;
}
.zero-how__button::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 15l6-6 6 6"/%3E%3C/svg%3E');
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-how__button::after {
    right: 16px;
  }
}

.zero-how-box {
  display: flex;
  justify-content: space-between;
  width: 1080px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .zero-how-box {
    flex-direction: column;
    width: 100%;
    gap: 48px;
  }
}
.zero-how-box::before, .zero-how-box::after {
  display: none;
  content: none;
}
.zero-how-box__video {
  width: 580px;
  height: 358px;
  object-fit: cover;
  background-color: #000;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .zero-how-box__video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

.zero-how-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 450px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .zero-how-list {
    width: 100%;
    align-items: center;
  }
}
.zero-how-list__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #025fae;
  width: 100%;
  height: 100px;
  border-radius: 12px;
  padding: 0 24px;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .zero-how-list__item {
    flex-direction: column;
    height: auto;
    padding: 24px 16px;
    gap: 16px;
    max-width: 400px;
  }
}
.zero-how-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background-color: #025fae;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .zero-how-list__item:not(:last-child)::after {
    display: none;
  }
}
.zero-how-list__title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .zero-how-list__title {
    font-size: 24px;
    text-align: center;
  }
}
.zero-how-list__img {
  width: 160px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .zero-how-list__img {
    width: 140px;
  }
}

/*============================
//_zero-merit.scss
============================ */
.zero-merit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  background-color: #fff;
  background-image: linear-gradient(#F9F9F9 2px, transparent 2px), linear-gradient(90deg, #F9F9F9 2px, transparent 2px);
  background-size: 40px 40px;
}
@media screen and (max-width: 768px) {
  .zero-merit {
    padding: 40px 16px;
    gap: 24px;
  }
}
.zero-merit * {
  box-sizing: border-box;
}
.zero-merit__heading {
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin: 0 auto;
  width: 1080px;
}
@media screen and (max-width: 768px) {
  .zero-merit__heading {
    width: 100%;
    font-size: 28px;
  }
}
.zero-merit__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 1080px;
  padding: 0 16px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 2px solid #025fae;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .zero-merit__list {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 8px 16px;
    gap: 0;
  }
}
.zero-merit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 40px;
  gap: 24px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .zero-merit__item {
    width: 100%;
    padding: 32px 0;
  }
}
.zero-merit__item p {
  width: 100%;
  max-width: 301px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  margin: auto 0 0;
}
.zero-merit__title {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 301px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  padding-bottom: 8px;
  margin: 0;
  height: 3em;
  border-bottom: 4px solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .zero-merit__title {
    height: auto;
    min-height: 2.4em;
  }
}
.zero-merit__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, #025fae 50%, #fc0 50%);
}
.zero-merit__img {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .zero-merit__img {
    width: 100%;
    max-width: 280px;
  }
}
.zero-merit__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 336px;
  height: 60px;
  padding: 0 40px 0 24px;
  background: #fc0 !important;
  box-shadow: 0px 0px 20px #FFFDF3;
  border-radius: 999px;
  color: #333 !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zero-merit__button {
    width: 100%;
    max-width: 336px;
    height: 54px;
    font-size: 16px;
    padding: 0 32px 0 16px;
  }
}
.zero-merit__button:hover {
  opacity: 0.7;
}
.zero-merit__button::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 15l6-6 6 6"/%3E%3C/svg%3E');
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-merit__button::after {
    right: 16px;
  }
}

/*============================
//_zeroplusone-modal.scss
============================ */
.zero-modal {
  font-family: "Noto Sans JP", sans-serif;
}
.zero-modal.simple-modal {
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .zero-modal.simple-modal {
    align-items: flex-end;
  }
}
.zero-modal__cont.simple-modal__cont {
  width: 668px !important;
  height: 907px;
  max-height: 85vh;
  padding: 0 !important;
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .zero-modal__cont.simple-modal__cont {
    width: 100% !important;
    margin: 0 !important;
    height: auto;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.zero-modal__cont.simple-modal__cont .simple-modal__cross {
  top: 0;
  right: -40px;
  z-index: 10;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath d="M18 6L6 18M6 6l12 12" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cpath d="M18 6L6 18M6 6l12 12" stroke="%23333333" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" /%3E%3C/svg%3E');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-modal__cont.simple-modal__cont .simple-modal__cross {
    top: -48px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}
.zero-modal__cont.simple-modal__cont .simple-modal__cross::before, .zero-modal__cont.simple-modal__cont .simple-modal__cross::after {
  display: none !important;
}
.zero-modal__header {
  position: relative;
  width: 100%;
  padding: 12px 32px;
  background: #fc0;
  border-radius: 12px 12px 0 0;
  border-bottom: 2px solid #E0E0E0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .zero-modal__header {
    border-radius: 16px 16px 0 0;
    padding: 16px 20px;
  }
}
.zero-modal__header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 48px;
  height: 4px;
  background: #025fae;
  visibility: inherit;
}
.zero-modal__header::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: -2px;
  width: 48px;
  height: 2px;
  background: #fc0;
  visibility: inherit;
}
.zero-modal__header .zero-modal__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .zero-modal__header .zero-modal__title {
    font-size: 15px;
    line-height: 1.4;
  }
}
.zero-modal__body {
  padding: 16px 24px 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .zero-modal__body {
    padding: 16px 4px 32px;
  }
}
.zero-modal__body::-webkit-scrollbar {
  width: 8px;
}
.zero-modal__body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.zero-modal__table-img {
  width: 100%;
  height: auto;
  display: block;
}
.zero-modal__sub-heading {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 8px;
}
.zero-modal__sub-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.zero-modal__icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 8.66px 0 8.66px;
  border-color: #fc0 transparent transparent transparent;
}
.zero-modal__sub-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .zero-modal__sub-title {
    font-size: 14px;
  }
}
.zero-modal__line {
  flex-grow: 1;
  height: 1px;
  background-color: #fc0;
}
.zero-modal__options-img {
  width: 100%;
  height: auto;
  display: block;
}

.simple-modal {
  visibility: hidden;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.simple-modal__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.simple-modal__cont {
  display: block;
  position: relative;
  height: fit-content;
  width: fit-content;
}
.simple-modal__cross {
  position: absolute;
  top: 0;
  right: -25px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.simple-modal__cross:before, .simple-modal__cross:after {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  width: 2px;
  height: 20px;
  background-color: #fff;
  content: "";
}
.simple-modal__cross:before {
  transform: rotate(45deg);
}
.simple-modal__cross:after {
  visibility: inherit !important;
  transform: rotate(-45deg);
}
.simple-modal--fade-in {
  opacity: 0;
  visibility: visible;
  animation: fadeIn 0.3s ease 1 forwards;
}
.simple-modal--fade-out {
  opacity: 1;
  visibility: visible;
  animation: fadeOut 0.3s ease 1 forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.c-lock-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  overflow-y: scroll;
}

.c-unable-click {
  pointer-events: none;
  cursor: unset;
}

/*============================
//_zero-nav.scss
============================ */
.zeroplusone-nav {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: linear-gradient(104.22deg, #FFFDF3 0%, #EFFFFF 49.92%, #DCF5FF 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .zeroplusone-nav {
    display: none !important;
  }
}
.zeroplusone-nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 1080px;
  height: 44px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.zeroplusone-nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
  position: relative;
}
.zeroplusone-nav__item::after, .zeroplusone-nav__item::before {
  display: none;
}
.zeroplusone-nav .zeroplusone-nav__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.zeroplusone-nav .zeroplusone-nav__title:hover {
  background: transparent;
  opacity: 0.6;
  text-decoration: none;
  border: none;
  top: 0;
  transform: none;
  margin: 0;
  padding: 0;
}
.zeroplusone-nav .zeroplusone-nav__title::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 9l6 6 6-6"/%3E%3C/svg%3E');
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.zeroplusone-nav-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  max-height: 60vh;
  padding-bottom: 24px;
  overflow: scroll;
  transition: 0.2s;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  cursor: default;
  -ms-overflow-style: none;
}
.zeroplusone-nav-child::-webkit-scrollbar {
  display: none;
}
.zeroplusone-nav-child.is-active {
  opacity: 1;
}
.zeroplusone-nav-child__contents {
  width: 1080px;
  margin: 0 auto;
  padding: 24px 40px 32px;
  background: #f0f0f0;
}

.zeroplusone-nav-child-heading {
  margin-bottom: 24px;
  transition: 0.2s;
  font-size: 22px;
  font-weight: bold;
}
.zeroplusone-nav-child-heading__link:hover {
  color: #025fae;
  cursor: pointer;
}

/*============================
//_zero-news.scss
============================ */
.zero-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  margin: 0 0 40px;
  gap: 24px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  background-color: #fff;
  border-bottom: solid 2px #025fae;
}
@media screen and (max-width: 768px) {
  .zero-news {
    padding: 40px 16px 56px;
  }
}
.zero-news * {
  box-sizing: border-box;
}
.zero-news__heading {
  width: 1080px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin: 0 auto 40px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .zero-news__heading {
    width: 100%;
    font-size: 28px;
  }
}
.zero-news__list {
  width: 1080px;
  padding: 0 32px;
  margin: 0 auto;
  list-style: none;
  background: #fff;
  box-shadow: 0px 0px 24px rgba(40, 43, 62, 0.1);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .zero-news__list {
    width: 100%;
    padding: 0 16px;
  }
}
.zero-news__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .zero-news__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    gap: 8px;
  }
}
.zero-news__item + .zero-news__item {
  border-top: 1px solid #E0E0E0;
}
.zero-news__item:nth-of-type(n+2) {
  display: none;
}
.zero-news__day {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  margin: 0;
  width: 150px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .zero-news__day {
    width: auto;
    font-size: 12px;
  }
}
.zero-news__title {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .zero-news__title {
    line-height: 1.5;
  }
}
.zero-news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zero-news__more {
    padding: 8px 0;
  }
}
.zero-news__more:hover {
  opacity: 0.7;
}
.zero-news__more::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: linear-gradient(#333, #333) center/14px 1.5px no-repeat, linear-gradient(#333, #333) center/1.5px 14px no-repeat;
  transition: all 0.3s ease;
}
.zero-news__more.is-open::after {
  background: linear-gradient(#333, #333) center/14px 1.5px no-repeat, linear-gradient(transparent, transparent) center/1.5px 14px no-repeat;
}

/*============================
//_zero-qa.scss
============================ */
.zero-qa {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0;
  gap: 64px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  background-color: #fafafa;
  background-image: linear-gradient(#FDFDFD 2px, transparent 2px), linear-gradient(90deg, #FDFDFD 2px, transparent 2px);
  background-size: 40px 40px;
}
@media screen and (max-width: 768px) {
  .zero-qa {
    padding: 40px 16px 56px;
    gap: 32px;
  }
}
.zero-qa * {
  box-sizing: border-box;
}
.zero-qa__heading {
  width: 1080px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .zero-qa__heading {
    width: 100%;
    font-size: 28px;
  }
}
.zero-qa__list {
  display: flex;
  flex-direction: column;
  width: 1080px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .zero-qa__list {
    width: 100%;
    gap: 16px;
  }
}
.zero-qa__item {
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
  background: #fff;
  box-shadow: 0px 0px 24px rgba(40, 43, 62, 0.1);
  border-radius: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .zero-qa__item {
    padding: 24px 16px;
  }
}
.zero-qa__q, .zero-qa__a {
  display: flex;
  flex-direction: row;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .zero-qa__q, .zero-qa__a {
    align-items: flex-start;
  }
}
.zero-qa__q span, .zero-qa__a span {
  display: flex;
  justify-content: center;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #025fae;
  width: 48px;
  flex-shrink: 0;
  line-height: 1;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .zero-qa__q span, .zero-qa__a span {
    width: 36px;
    font-size: 36px;
    margin-right: 12px;
  }
}
.zero-qa__q {
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .zero-qa__q {
    padding-bottom: 16px;
    font-size: 16px;
  }
}
.zero-qa__q span {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .zero-qa__q span {
    align-items: flex-start;
    margin-top: -4px;
  }
}
.zero-qa__a {
  align-items: flex-start;
  padding-top: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .zero-qa__a {
    padding-top: 16px;
    font-size: 14px;
  }
}
.zero-qa__a span {
  align-items: flex-start;
  margin-top: -4px;
}
.zero-qa__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 336px;
  height: 60px;
  padding: 0 40px 0 24px;
  background: #fc0 !important;
  box-shadow: 0px 0px 20px #FFFDF3;
  border-radius: 999px;
  color: #333 !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zero-qa__button {
    width: 100%;
    max-width: 336px;
    height: 54px;
    font-size: 16px;
    padding: 0 32px 0 16px;
    margin-top: 8px;
  }
}
.zero-qa__button:hover {
  opacity: 0.7;
}
.zero-qa__button::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 15l6-6 6 6"/%3E%3C/svg%3E');
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-qa__button::after {
    right: 16px;
  }
}

/*============================
//_zero-top.scss
============================ */
.zero-top {
  width: 100%;
  padding: 32px 0;
  background: linear-gradient(104.22deg, #FFFDF3 0%, #EFFFFF 49.92%, #DCF5FF 100%);
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .zero-top {
    padding: 40px 16px 32px;
  }
}
.zero-top * {
  box-sizing: border-box;
}
.zero-top__rap {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .zero-top__rap {
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }
}
.zero-top__rap::before, .zero-top__rap::after {
  display: none;
  content: none;
}
.zero-top__img-area {
  position: relative;
  width: 480px;
  height: 216px;
}
@media screen and (max-width: 768px) {
  .zero-top__img-area {
    order: 2;
    width: 100%;
    max-width: 350px;
    height: 180px;
    margin: 0 auto;
  }
}
.zero-top__img-unit {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zero-top__img-unit img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  z-index: 1;
}
.zero-top__img-unit--1 {
  width: 300px;
  height: 300px;
  top: -55px;
  left: -35px;
}
@media screen and (max-width: 768px) {
  .zero-top__img-unit--1 {
    width: 180px;
    height: 180px;
    top: -10px;
    left: -10px;
  }
}
.zero-top__img-unit--1::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 40px;
  width: 75%;
  height: 75%;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .zero-top__img-unit--1::before {
    top: 25px;
    left: 20px;
  }
}
.zero-top__img-unit--2 {
  width: 130px;
  height: 130px;
  bottom: 0;
  right: 132px;
}
@media screen and (max-width: 768px) {
  .zero-top__img-unit--2 {
    width: 110px;
    height: 110px;
    bottom: -5px;
    right: 27%;
  }
}
.zero-top__img-unit--2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
}
.zero-top__img-unit--2 img {
  transform: rotate(3deg);
}
.zero-top__img-unit--3 {
  width: 200px;
  height: 200px;
  top: -25px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .zero-top__img-unit--3 {
    width: 130px;
    height: 130px;
    top: 10px;
    right: 0px;
  }
}
.zero-top__img-unit--3::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  width: 80%;
  height: 80%;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .zero-top__img-unit--3::before {
    top: 12px;
    left: 10px;
  }
}

.zero-top-box {
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .zero-top-box {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .zero-top-box__ttl-block {
    order: 1;
    margin: 0 auto;
  }
}
.zero-top-box__img {
  height: 18px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .zero-top-box__img {
    height: 16px;
  }
}
.zero-top-box__copy {
  display: block;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #333;
  margin: 16px 0;
}
@media screen and (max-width: 768px) {
  .zero-top-box__copy {
    order: 3;
    font-size: 26px;
    text-align: center;
    margin: 8px 0 0;
  }
}
.zero-top-box__strong-copy {
  font-size: 130%;
}
.zero-top-box__copy-sub {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
@media screen and (max-width: 768px) {
  .zero-top-box__copy-sub {
    order: 4;
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
  }
}
.zero-top-box__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fc0 !important;
  border-radius: 999px;
  color: #333 !important;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  transition: opacity 0.3s ease;
}
.zero-top-box__button:hover {
  opacity: 0.7;
}
.zero-top-box__button::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-top-box__button::after {
    right: 12px;
  }
}
.zero-top-box__button::after {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M6 9l6 6 6-6"/%3E%3C/svg%3E');
  background-size: 10px;
}
.zero-top-box__button {
  margin-top: 24px;
  align-self: center;
  width: 300px;
  height: 60px;
  box-shadow: 0px 0px 20px #FFFDF3;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .zero-top-box__button {
    order: 5;
    width: 100%;
    max-width: 280px;
    height: 54px;
    font-size: 16px;
    margin-top: 8px;
  }
}

/*============================
//_zero-types.scss
============================ */
.zero-types {
  align-items: center;
  padding: 24px 0 64px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .zero-types {
    padding: 24px 16px 56px;
  }
}
.zero-types * {
  box-sizing: border-box;
}
.zero-types__heading {
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin: 0 auto 24px;
  width: 1080px;
}
@media screen and (max-width: 768px) {
  .zero-types__heading {
    width: 100%;
  }
}
.zero-types__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}
@media screen and (max-width: 768px) {
  .zero-types__list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.zero-types-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  width: 1080px;
}
@media screen and (max-width: 768px) {
  .zero-types-box {
    width: 100%;
    align-items: center;
  }
}
.zero-types-box + .zero-types-box {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .zero-types-box + .zero-types-box {
    margin-top: 32px;
  }
}
.zero-types-box__title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.15em;
  padding-bottom: 8px;
  border-bottom: 4px solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .zero-types-box__title {
    display: inline-block;
    padding-bottom: 12px;
    width: 80%;
    text-align: center;
  }
}
.zero-types-box__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, #025fae 50%, #fc0 50%);
}
@media screen and (max-width: 768px) {
  .zero-types-box__title::after {
    left: 48px;
    bottom: -4px;
    transform: translateX(-50%);
  }
}

.zero-types-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 344px;
}
@media screen and (max-width: 768px) {
  .zero-types-card {
    width: 100%;
    max-width: 344px;
  }
}
.zero-types-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  width: 100%;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0px 0px 24px rgba(40, 43, 62, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}
.zero-types-card__link:hover {
  border-color: #025fae;
  opacity: 0.7;
}
.zero-types-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #333;
  height: 48px;
  display: flex;
  align-items: center;
  margin: 0;
}
.zero-types-card__img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}
.zero-types-card__labellist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 25px;
  margin-top: -25px;
}
.zero-types-card__label {
  display: inline-flex;
  align-items: center;
  background: #025fae;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  height: 25px;
  padding-left: 6px;
  margin: 0;
}
.zero-types-card__label-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  background: #fff;
  border: 1px solid #025fae;
  border-radius: 4px;
  color: #025fae;
  font-size: 14px;
  font-weight: 400;
  padding: 0 4px;
  margin-left: 6px;
}
.zero-types-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fc0 !important;
  border-radius: 999px;
  color: #333 !important;
  font-weight: 700;
  text-decoration: none !important;
  position: relative;
  transition: opacity 0.3s ease;
}
.zero-types-card__button:hover {
  opacity: 0.7;
}
.zero-types-card__button::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .zero-types-card__button::after {
    right: 16px;
  }
}
.zero-types-card__button::after {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M9 6l6 6-6 6"/%3E%3C/svg%3E');
  background-size: 10px;
}
.zero-types-card__button {
  width: 100%;
  height: 54px;
  margin-top: 16px;
  padding: 16px;
  font-size: 18px;
}
.zero-types-card__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #025fae;
  text-decoration: none;
  padding: 4px 8px;
  transition: opacity 0.3s ease;
  position: relative;
}
.zero-types-card__info:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #025fae;
  cursor: pointer;
}
.zero-types-card__info::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: url(/images/zeroplusone/icon_info.svg);
}
.zero-types-card__info::after:hover {
  opacity: 0.7;
}/*# sourceMappingURL=zeroplusone.css.map */