@charset "UTF-8";

/*
  Layout
---------------------------------------------- */
.l-container {
  max-width: 960px;
  width: 91.79%;
  margin-inline: auto;
}
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-main {
  flex: 1 0 auto;
}
.l-sectionPrimary {
  padding-block: 4.5rem;
}
.l-sectionPrimary.--last {
  padding-bottom: 0;
}
.l-sectionSecondary {
  padding-top: 1.5rem;
}
.l-footer {
  flex-shrink: 0;
}

/* heading */
.l-headingPrimary {
  font-size: var(--font-size-2xl);
  padding-left: 1rem;
  line-height: 1.333;
  margin-bottom: 1.5rem;
  position: relative;
}
.l-headingPrimary::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background-color: var(--color-key);
  position: absolute;
  top: 2px;
  left: 0;
}
.l-headingSecondary {
  font-size: 1.125rem;
  line-height: 1.444;
  padding-bottom: calc(0.5rem + 2px);
  margin-bottom: 1.5rem;
  position: relative;
}
.l-headingSecondary::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-key);
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 1200px) {
  .l-sectionPrimary {
    padding-block: 7.5rem;
  }
  .l-sectionPrimary.--first {
    margin-top: -2.5rem;
  }
  .l-sectionSecondary {
    padding-top: 2rem;
  }
  .l-headingPrimary {
    padding-left: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .l-headingSecondary {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

/*
  Components
---------------------------------------------- */
/* header */
.c-header {
  width: 100%;
  padding-block: 0.5rem;
  padding-inline: 1rem 0.25rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.c-headerContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-headerTitle {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
  position: relative;
  z-index: 3;
}
.c-headerLogo {
  display: block;
  width: 203px;
}
.c-headerLogo:hover {
  opacity: 0.5;
}
.c-headerLogo img {
  display: block;
}
.c-headerMainText {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.417;
}
.c-headerButton {
  color: var(--color-key);
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 3;
}
.c-headerButton__icon {
  width: 40px;
}
.c-headerButton__text {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: -0.5rem;
}
.c-headerNavWrapper {
  display: none;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-key);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-headerNavWrapper.is-open {
  display: block;
}
.c-headerNavWrapper::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-headerNavWrapper::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 85.38%;
  margin-top: -3.25rem;
  background-image: url("/assets/images/bg_header_sp.png");
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: -1;
}
.c-headerNav {
  padding-top: calc(5rem + 4rem);
  padding-bottom: 2rem;
}
.c-headerMenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-headerMenu__item a {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: normal;
}
.c-headerInfo {
  display: none !important;
}

@media screen and (min-height: 780px) {
  .c-headerNavWrapper.is-open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .c-headerNavWrapper::after {
    display: none;
  }
  .c-headerNavWrapper {
    background-image: url("/assets/images/bg_header_tab.png");
    background-size: cover;
    background-position: bottom right;
  }
}

@media screen and (min-width: 1024px) {
  .c-header {
    padding-inline: 1rem;
  }
  .c-headerMenu__item a {
    position: relative;
  }
  .c-headerMenu__item a::before {
    content: "";
    display: inline-block;
    width: 0px;
    height: 2px;
    background-color: var(--color-key);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    bottom: -2px;
    translate: -50% 0;
    transition: var(--animation);
  }
  .c-headerMenu__item a:hover::before {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .c-header {
    padding-block: 1.5rem;
    padding-inline: 3.5rem 2.5rem;
  }
  .c-headerNavWrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: auto;
    height: auto;
    background-color: transparent;
    background-image: inherit;
    position: static;
    overflow: inherit;
  }
  .c-headerNavWrapper::before,
  .c-headerNavWrapper::after {
    display: none;
  }
  .c-headerNavWrapper .l-container {
    width: auto;
    max-width: inherit;
    margin: 0;
  }
  .c-headerNav {
    padding-block: 0;
  }
  .c-headerButton {
    display: none;
  }
  .c-headerMenu {
    flex-direction: row;
    gap: 1.5rem;
  }
  .c-headerMenu__item a {
    font-size: 0.875rem;
    padding-block: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .c-headerMenu__item a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 6px;
    background-image: url("/assets/images/icon_arrow_bottom.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .c-headerInfo {
    display: flex !important;
  }
}
@media screen and (min-width: 1360px) {
  .c-headerTitle {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
}

/* footer */
.c-footer {
  padding-block: 2.5rem 5rem;
  position: relative;
}
.c-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 315px;
  background-image: url("/assets/images/bg_footer_sp.png");
  background-size: cover;
  background-position: top center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.c-footerLogo {
  width: 203px;
  margin-inline: auto 0;
  margin-bottom: 6.75rem;
}
.c-footerCopy {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-footer::before {
    height: 364px;
    background-image: url("/assets/images/bg_footer_tab.png");
  }
}

@media screen and (min-width: 1200px) {
  .c-footer {
    padding-block: 5rem;
  }
  .c-footer::before {
    height: 412px;
    background-image: url("/assets/images/bg_footer.png");
  }
  .c-footerContents {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .c-footerLogo {
    margin-bottom: 0;
  }
}

/* button */
.c-button {
  font-weight: var(--font-weight-bold);
  line-height: 1.429;
  padding-block: 0.625rem;
  padding-inline: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-key);
  border-radius: 54px;
}
.c-button svg {
  width: 1rem;
  height: 1rem;
}

@media screen and (min-width: 768px) {
  .c-button:hover {
    color: var(--color-white);
    background-color: var(--color-key);
  }
}
@media screen and (min-width: 1200px) {
  .c-button {
    padding-block: 1rem;
    padding-inline: 2rem;
    line-height: 1.438;
  }
}

.c-info {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.c-info em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.c-info::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("/assets/images/icon_info_round.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1200px) {
  .c-info {
    font-size: 0.875rem;
  }
}

/*
  Utility
---------------------------------------------- */
.u-bg-blue {
  background-color: var(--color-bg-key);
}

.u-text-base {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.u-text-red {
  color: #fd4755;
}

.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-mt-1 {
  margin-top: var(--spacing-1);
}
.u-mt-2 {
  margin-top: var(--spacing-2);
}
.u-mt-3 {
  margin-top: var(--spacing-3);
}
.u-mt-4 {
  margin-top: var(--spacing-4);
}
.u-mt-5 {
  margin-top: var(--spacing-5);
}

.u-mb-1 {
  margin-bottom: var(--spacing-1);
}
.u-mb-2 {
  margin-bottom: var(--spacing-2);
}
.u-mb-3 {
  margin-bottom: var(--spacing-3);
}
.u-mb-4 {
  margin-bottom: var(--spacing-4);
}
.u-mb-5 {
  margin-bottom: var(--spacing-5);
}

@media print, screen and (max-width: 767px) {
	.hide-sp {
		display : none !important;
	}
}

@media print, screen and (min-width: 768px) {
	.hide-pc {
		display : none !important;
	}
}