@charset "utf-8";

:root {
  --colorBlack: #333333;
  --colorWhite: #FFFFFF;
  --colorMain: #204385;
  --colorDarkGreen: #0A8F5A;
  --colorGreen: #28A745;
  --colorLightGreen: #D7FBE8;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--colorBlack);
  letter-spacing: 5%;
}
* {
  font-feature-settings: "palt"1;
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  display: block;
}

.for-pc {
  display: block;
}
.for-sp {
  display: none;
}

@media screen and (max-width:767px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
}

.is-red {
  color: #de0000;
}
.is-bold {
  font-weight: 700;
}
.is-right {
  text-align: right;
}

.btn--green a {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--colorWhite);
  line-height: 200%;
  text-align: center;
  background-color: var(--colorDarkGreen);
  border-radius: 6.25rem;
  padding: 1.25rem;
  margin: 2.5rem auto 0;
  width: 25rem;
  height: 5rem;
  z-index: 2;
}
.btn--green a:hover {
  color: var(--colorDarkGreen);
  background-color: var(--colorWhite);
  transition: 0.2s ease-out;
}
.btn--green a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border: 0.625rem solid rgba(98, 210, 162, 0.2);
  border-radius: 6.25rem;
  width: 25rem;
  height: 5rem;
  z-index: -1;
}
.btn--green a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%);
  display: block;
  background-image: url(/assets/images/common/icon-arrow-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.625rem;
  height: 0.6225rem;
}
.btn--green a:hover::after {
  background-image: url(/assets/images/common/icon-arrow-green.png);
}
[id] {
  scroll-margin-top: 7rem;
}
@media screen and (max-width:767px) {
  [id] {
    scroll-margin-top: 5rem;
  }
}
/* header */
.header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease-out;
  width: 100%;
  z-index: 100;
}
.header__fixed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.875rem;
}
.header__logo {
  position: relative;
  width: 12.97rem;
  z-index: 10;
}
.header__navWrap {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.header__navList {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.header__navListItem a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--colorBlack);
}
.header__navListItem a::after {
  content: "";
  display: block;
  background-color: unset;
  transition: background-color 0.4s ease-out;
}
.header__navListItem a:hover {
  color: var(--colorDarkGreen);
}
.header__navListItem a:hover::after {
  content: "";
  position: absolute;
  bottom: -0.875rem;
  left: 0;
  background-color: var(--colorDarkGreen);
  width: 100%;
  height: 4px;
}
.header__requestBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--colorWhite);
  background-color: var(--colorDarkGreen);
  border-left: 2px solid var(--colorWhite);
  border-bottom: 2px solid var(--colorWhite);
  border-radius: 0 0 0 1.25rem;
  transition: 0.3s ease-out;
  box-sizing: border-box;
  width: 10.4375rem;
  height: 5rem;
}
.header__requestBtn a:hover {
  color: var(--colorDarkGreen);
  background-color: var(--colorWhite);
  border-left: 4px solid var(--colorDarkGreen);
  border-bottom: 4px solid var(--colorDarkGreen);
}
.header.scrolled .header__fixed {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--colorWhite);
  border: 1px solid var(--colorGreen);
  border-radius: 0.625rem;
  padding: 0.625rem 1.25rem;
  width: 95.8%;
}
.header.scrolled .header__logo {
  width: 9.375rem;
}
.header.scrolled .header__navListItem a {
  position: relative;
  color: var(--colorBlack);
  transition: color 0.2s ease-out;
}
.header.scrolled .header__navListItem a::after {
  content: "";
  display: block;
  background-color: var(--colorWhite);
  transition: background-color 0.4s ease-out;
}
.header.scrolled .header__navListItem a:hover {
  color: var(--colorDarkGreen);
}
.header.scrolled .header__navListItem a:hover::after {
  content: "";
  position: absolute;
  bottom: -0.875rem;
  left: 0;
  background-color: var(--colorDarkGreen);
  width: 100%;
  height: 4px;
}
.header.scrolled .header__requestBtn a {
  font-size: 0.875rem;
  border-radius: 6.25rem;
  border: 4px solid var(--colorDarkGreen);
  /* padding: 0.625rem 0.875rem; */
  width: 6.25rem;
  height: 2.5rem;
}
.header.scrolled .header__requestBtn a:hover {
  border: 4px solid var(--colorDarkGreen);
}

@media screen and (max-width:767px) {
  .header.scrolled .header__fixed,
  .header__fixed {
    position: fixed;
    top: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--colorWhite);
    border: 1px solid var(--colorGreen);
    border-radius: 0.3125rem;
    padding: 0.25rem 0.625rem;
    width: 95.8%;
    z-index: 100;
  }
  .header__logo,
  .header.scrolled .header__logo {
    width: 6.23rem;
  }
  .header__navWrap {
    display: none;
  }
  .hamburger {
    position: relative;
    background-color: var(--colorDarkGreen);
    border-radius: 3px;
    width: 1.875rem;
    height: 1.875rem;
    z-index: 10;
  }
  .hamburger span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--colorWhite);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    width: 1rem;
    height: 2px;
  }
  .hamburger span:nth-of-type(1) {
    top: calc(50% - 6px);
  }
  .hamburger span:nth-of-type(3) {
    top: calc(50% + 6px);
  }
  .hamburger.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .btn--green a {
    line-height: 340%;
    padding: unset;
    width: 19.625rem;
    box-sizing: content-box;
    height: 4rem;
  }
  .btn--green a::before {
    width: 19.625rem;
    height: 4rem;
  }
  .header__hamburgerNav {
    display: none;
  }
  .header__hamburgerNav.active {
    position: fixed;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--colorWhite);
    display: block;
    padding-bottom: 1.875rem;
    width: 100vw;
    height: auto;
    z-index: 99;
  }
  .header__hamburgerNav.active .header__hamburgerNavList {
    border-block: 1px solid var(--colorGreen);
    padding: 2rem 1.875rem;
    margin: 6rem auto 0;
    width: 84.62%;
  }
  .header__hamburgerNav.active .header__hamburgerNavListItem {
    margin-top: 2rem;
  }
  .header__hamburgerNav.active .header__hamburgerNavListItem:first-of-type {
    margin-top: 0;
  }
  .header__hamburgerNav.active .header__hamburgerNavListItem a {
    position: relative;
    color: var(--colorBlack);
    font-weight: 600;
  }
  .header__hamburgerNavListItem.current a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1.75rem;
    transform: translateY(-50%);
    display: block;
    background-color: var(--colorGreen);
    border-radius: 50%;
    width: 0.625rem;
    height: 0.625rem;
  }
  .hamburger__menuBg.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    backdrop-filter: blur(10px);
    z-index: 10;
  }
}

/* footer */
.footer__messageWrap {
  position: relative;
  text-align: center;
  background: var(--colorMain);
  overflow: visible;
  padding-block: max(4.72vw, 4.3rem) 7.5rem;
  background-image: url(/assets/images/common/img-footer-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  width: 100%;
  height: 100%;
}
.footer__messageWrap::before {
  content: "";
  position: absolute;
  top: 23.5%;
  right: 4.5%;
  display: block;
  background-image: url(/assets/images/common/img-footer-bg02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 13.47vw;
  height: 5.39vw;
}
.footer__messageLeadText {
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorWhite);
  line-height: 130%;
  font-feature-settings: "palt"1;
}
.footer__messageText {
  font-size: 0.875rem;
  color: var(--colorWhite);
  letter-spacing: 0;
  line-height: 180%;
  margin-top: 1rem;
}
.footer__startLink {
  position: relative;
  cursor: pointer;
  margin: 2.5rem auto 0;
  width: 14.375rem;
  height: 14.375rem;
  z-index: 5;
}
.footer__startLink::before {
  content: "";
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-image: url(/assets/images/common/icon-arrow-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.625rem;
  height: 0.625rem;
  z-index: 5;
}
.footer__startLink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  display: block;
  background-image: url(/assets/images/common/img-start-link-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: spin 13s linear infinite;
  width: 14.375rem;
  height: 14.375rem;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }

}
.footer__startLink a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--colorWhite);
  line-height: 150%;
  text-align: center;
  background: var(--colorDarkGreen);
  border-radius: 50%;
  cursor: pointer;
  padding-bottom: 1rem;
  transition: 0.2s ease-out;
  width: 12.5rem;
  height: 12.5rem;
  z-index: 2;
}
.footer__startLink:hover a {
  width: 11.25rem;
  height: 11.25rem;
}
.footer__messageImg {
  position: relative;
  display: block;
  margin-top: 2rem;
  z-index: 2;
}
.footer__messageImg img {
  margin: 0 auto;
}
.footer__contentWrap {
  background-color: var(--colorBlack);
  padding: 6.25rem 3.75rem 2.5rem;
}
.footer__menuWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 82.5rem;
}
.footer__nav {
  display: flex;
  align-items: center;
}
.footer__menuList {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  margin-left: 2.3rem;
}
.footer__menuListItem a {
  font-size: 0.875rem;
  color: var(--colorWhite);
  line-height: 150%;
}
.footer__textWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--colorWhite);
  max-width: 82.5rem;
  padding-top: 2rem;
  margin: 6.3rem auto 0;
}
.footer__text {
  font-size: 0.75rem;
  color: var(--colorWhite);
  line-height: 150%;
}

@media screen and (max-width:767px) {
  .footer__messageWrap {
    padding-block: 3.3rem 5rem;
  }
  .footer__messageLeadText {
    font-size: min(6.15vw, 1.5rem);
  }
  .footer__messageImg {
    margin-top: 3.25rem;
  }
  .footer__messageImg img {
    max-width: 14.375rem;
  }
  .footer__contentWrap {
    padding: 5rem 0 2.5rem;
  }
  .footer__menuWrap {
    flex-direction: column;
    align-items: center;
    gap: 4.65rem;
    padding-inline: 2.75rem;
  }
  .footer__logo {
    margin: 0 auto;
    width: 15rem;
  }
  .footer__nav {
    align-items: flex-start;
    gap: 6.25rem;
  }
  .footer__menuList {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    margin-left: 0;
  }
  .footer__menuListItem a {
    font-size: min(4.1vw, 1rem);
  }
  .footer__line {
    border-top: 1px solid var(--colorWhite);
    margin-top: 4.75rem;
    width: 100vw;
  }
  .footer__textWrap {
    flex-direction: column;
    gap: 2rem;
    border: none;
    padding-top: 2.125rem;
    padding-inline: 2.75rem;
    margin-top: 0;
  }
  .footer__text {
    line-height: 160%;
  }
}

/* main */
@keyframes scroll-left {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1440px 0;
  }
}
@keyframes scroll-right {
  from {
    background-position: -1440px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* pages */
.container {
  margin: 0 auto;
  width: 87.5%;
  max-width: 78.75rem;
}
.page__header .header__fixed {
  background-color: var(--colorWhite);
}
.page__header .header__navListItem a {
  color: var(--colorBlack);
}
.page__header .header__navListItem a:hover {
  color: var(--colorDarkGreen);
}
.page__sectionTitle {
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  font-feature-settings: "palt"1;
  border-bottom: 2px solid var(--colorGreen);
  gap: 0.625rem;
  padding-bottom: 0.6rem;
}
.page__sectionTitle img {
  flex-shrink: 0;
}
.page__titleWrap {
  font-feature-settings: "palt"1;
  background-color: var(--colorGreen);
  padding: 3rem 5.656rem 3.8rem;
}
.page__titleLeadText {
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorWhite);
  line-height: 130%;
}
.page__titleText {
  font-size: 0.875rem;
  line-height: 180%;
  background-color: var(--colorWhite);
  border-radius: 0.375rem;
  padding: 0.8rem 1.25rem;
  margin-top: 2rem;
}
.page__footer {
  position: relative;
  margin-top: 5rem;
}
.page__footer::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 0;
  display: block;
  background-image: url(/assets/images/top/img-blue-bg.png);
  background-repeat: repeat-x;
  background-size: 1440px;
  animation: scroll-right 20s linear infinite;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.page__footer .footer__messageWrap {
  padding-block: min(7.22vw, 6.5rem) 7.5rem;
}

@media screen and (max-width:767px) {
  .container {
    padding-inline: max(5.13vw, 1.25rem);
    width: auto;
  }
  .page__titleWrap {
    padding: 2rem 1.25rem 2.5rem;
  }
  .page__sectionTitle {
    font-size: min(5.13vw, 1.25rem);
  }
  .page__titleLeadText {
    font-size: min(5.13vw, 1.25rem);
    line-height: 150%;
  }
  .page__titleText {
    padding-bottom: 0.75rem;
    margin-top: 1.5rem;
  }
  .page__footer {
    margin-top: 3.75rem;
  }
  .page__footer::before {
    top: -1.25rem;
    background-size: 780px;
  }
  .page__footer .footer__messageWrap {
    padding-block: 4.5rem 5.125rem;
  }
}

/* breadcrumb */
.breadcrumb {
  border: 1px solid #62D2A2;
  border-radius: 0.375rem;
  margin: 7.5rem auto 0;
  width: 95.83%;
  max-width: 86.25rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 3.375rem;
  padding: 0.85rem 1.25rem;
  overflow: hidden;
}
.breadcrumb__listItem {
  min-width: 0;
}
.breadcrumb__listItem a,
.breadcrumb__listItem {
  position: relative;
  display: block;
  font-size: 0.875rem;
  color: var(--colorBlack);
  line-height: 180%;
  white-space: nowrap;
}
.breadcrumb__listItem:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__listItem a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + (3.375rem / 2));
  transform: translate(-50%, -50%);
  display: block;
  background-image: url(/assets/images/common/icon-breadcrumb.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 0.875rem;
  height: 0.625rem;
}

@media screen and (max-width:767px) {
  .breadcrumb {
    margin-top: 6.3rem;
    width: 89.74%;
  }
  .breadcrumb__list {
    gap: 1.65rem;
    padding-inline: 0.6rem;
  }
  .breadcrumb__listItem a,
  .breadcrumb__listItem {
    font-size: min(3.08vw, 0.75rem);
  }
  .breadcrumb__listItem a::after {
    left: calc(100% + (1.65rem / 2));
  }
}

/* contact */
.support__contact {
  background-color: var(--colorLightGreen);
  border-radius: 0.375rem;
  padding: 1.875rem;
  margin-top: 2.5rem;
}
.support__contactTitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1%;
}
.support__contactContent {
  margin-top: 0.9rem;
}
.support__contactContent span {
  display: inline-block;
  margin-right: 1.25rem;
}
.support__contactTel {
  font-size: 0.875rem;
  letter-spacing: 0%;
  line-height: 180%;
}
.support__contactTel a {
  display: inline-block;
  color: var(--colorBlack);
}
.support__contactTime {
  font-size: 0.875rem;
  letter-spacing: 1%;
  line-height: 180%;
  border: 1px solid var(--colorGreen);
  border-radius: 0.375rem;
  padding: 0.125rem 0.75rem;
}
@media screen and (max-width:767px) {
  .support__contact {
    padding: 1.45rem 1.875rem 1.7rem;
  }
  .support__contactContent {
    text-align: center;
  }
  .support__contactContent span {
    margin-top: 0.875rem;
  }
  .support__contactTitle {
    line-height: 150%;
  }
  .support__contactLink {
    width: 100%;
  }
  .support__contactLink a {
    text-align: center;
  }
  .support__contactTime {
    text-align: center;
    width: 100%;
  }
}

/* attention */
.support__attentionWrap {
  display: flex;
  align-items: center;
  background-color: rgba(255, 234, 2, 0.2);
  border-radius: 0.375rem;
  gap: 1.875rem;
  padding: 1.5rem 1.875rem;
  margin-top: 2.5rem;
}
.support__attentionTitle {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1%;
}
.support__attentionText {
  font-size: 0.875rem;
  line-height: 180%;
}
.support__attentionText a {
  display: inline-block;
  color: var(--colorBlack);
  text-decoration: underline;
}

@media screen and (max-width:767px) {
  .support__attention {
    margin: 0 auto;
  }
  .support__attentionWrap {
    gap: 1.45rem;
    padding-inline: 1.25rem;
    margin-top: 2rem;
  }
  .support__attentionTitle {
    font-size: min(4.1vw, 1rem);
  }
  .support__attentionText {
    font-size: min(3.08vw, 0.75rem);
    line-height: 147%;
  }
}

/* faq */
.faq__item {
  margin-top: 0.625rem;
}
.faq__heading {
  display: grid;
  grid-template-columns: 3.75rem 1px 1fr;
  align-items: center;
  cursor: pointer;
  padding: 0;
  width: 100%;
}
.faq__openIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-out;
}
.faq__openIcon img {
  margin-block: auto;
}
.js-accordItem.open .faq__openIcon {
  transform: rotate(180deg);
}
.faq__heading--line {
  display: block;
  background-color: var(--colorDarkGreen);
  width: 1px;
  height: 100%;
}
.faq__QWrap {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.25rem;
  padding-block: 1.1rem;
  padding-inline: 1.875rem;
}
.faq__QWrap span {
  color: var(--colorBlack);
}
.faq__headingQ {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1%;
}
.faq__headingText {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1%;
  line-height: 1.8;
}
.faq__answer {
  display: flex;
  align-items: center;
  text-align: left;
  color: var(--colorWhite);
  border-left: 1px solid var(--colorLightGreen);
  gap: 1.25rem;
  padding-block: 0.5rem;
  padding-inline: 1.875rem;
}
.js-accordBody {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  background-color: var(--colorDarkGreen);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq__textA {
  font-size: 0.875rem;
  font-weight: 600;
}
.faq__text * {
  font-size: 0.875rem;
  line-height: 1.8;
}
.faq__text > * {
  margin-block: 1rem;
}
.faq__numList {
  margin-block: 1rem;
  padding-left: 1rem;
  list-style: decimal;
}
.faq__numList li {
  margin-block: 0.5rem;
}
.faq__text a {
  color: var(--colorWhite);
  text-decoration: underline;
}
.faq__text a.is-arrow {
  position: relative;
  padding-left: 1rem;
}
.faq__text a.is-arrow::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--colorWhite);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.faq__linkList {
  margin-block: 1rem;
}
.faq__linkList li {
  margin-block: 0.5rem;
}
@media screen and (max-width:767px) {
  .faq__openIcon img {
    width: 0.625rem;
    height: 0.625rem;
  }
  .faq__QWrap {
    gap: 0.625rem;
    padding: 0.625rem;
  }
  .faq__heading {
    grid-template-columns: 2.5rem 1px 1fr;
    height: auto;
  }
  .faq__headingText {
    line-height: 1.6;
  }
  .js-accordBody {
    grid-template-columns: 2.5rem 1fr;
    height: auto;
  }
  .faq__answer {
    gap: 0.625rem;
    padding-inline: 0.625rem;
    height: auto;
  }
  .faq__text > * {
    margin-block: 0.5rem;
    line-height: 1.6;
  }
  .faq__numList {
    margin-block: 0.5rem;
  }
  .faq__numList li {
    margin-block: 0.25rem;
  }
  .faq__linkList {
    margin-block: 0.5rem;
  }
  .faq__linkList li {
    margin-block: 0.25rem;
  }
}