@charset "UTF-8";
/* Media Query
-----------------------------------------------------------*/
/* hover
-----------------------------------------------------------*/
/* font-size
-----------------------------------------------------------*/
:root {
  /* ============ size ============ */
  --base-font-size: calc(10 / 1440 * 100vw);
  /* ============ color ============ */
  --color-green1: #2fa58e;
  --color-green2: #12504a;
  --color-green3: #edfbec;
  --color-green4: #92ff8f;
  --color-gray: #f5f5f5;
  --color-text: #222222;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blue1: #47afff;
  --color-blue2: #0089de;
  --color-line: #e0e0e0;
  --color-border: var(--color-line);
  --color-bg-light: var(--color-gray);
  --color-bg-section: var(--color-green3);
  --color-placeholder: #999999;
  --color-focus:
      0 0 0 0.2rem var(--color-white), 0 0 0 0.4rem var(--color-green1);
  --color-danger: #ff0000;
  /* ============ ease ============ */
  --ease-power2-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-time: 0.8s;
}

@media screen and (max-width: 780px) {
  :root {
    --base-font-size: calc(10 / 390 * 100vw);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  word-wrap: break-word;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
* {
  margin: 0;
  padding: 0;
  line-height: inherit;
  scroll-behavior: auto;
  scroll-padding-top: 0;
}

html {
  width: 100%;
  font-size: var(--base-font-size);
  word-break: normal;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  background: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  color: var(--color-text);
  font-optical-sizing: auto;
}

/* block
-----------------------------------------------------------*/
main {
  overflow: hidden;
  display: block;
  width: 100%;
}

header,
footer,
article,
section {
  display: block;
  width: 100%;
}

hr {
  overflow: visible;
  width: 100%;
  height: 0;
  border: 0;
  border-top: 0.1rem solid var(--color-border);
  background-color: inherit;
  color: inherit;
}

/* text
-----------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: bold;
}

p,
span,
small {
  font-size: inherit;
  font-weight: inherit;
}

strong {
  font-size: inherit;
  font-weight: bold;
}

label {
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  cursor: pointer;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
  touch-action: manipulation;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    color: var(--color-text);
  }
}
@media (hover: none) {
  a:active {
    text-decoration: none;
    color: var(--color-text);
  }
}
a:focus, a:focus-visible {
  outline: none;
}
a:focus-visible {
  box-shadow: var(--color-focus);
}

/* list
-----------------------------------------------------------*/
ol,
ul,
dl,
ol li,
ul li {
  list-style: none;
}

/* table
-----------------------------------------------------------*/
table {
  width: 100%;
  border: 0.1rem solid var(--color-border);
  text-indent: 0;
  border-collapse: collapse;
  caption-side: bottom;
}
table thead,
table tbody,
table tfoot,
table tr,
table td,
table th {
  border-color: inherit;
  text-align: left;
}

/* form
-----------------------------------------------------------*/
form,
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  border: 0.1rem solid var(--color-border);
  border-radius: 0;
  outline: none;
  background-color: var(--color-white);
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  touch-action: manipulation;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--color-focus);
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 1;
  color: var(--color-placeholder);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 1;
  color: var(--color-placeholder);
}

input:not([type=checkbox]):not([type=radio]) {
  display: block;
  width: 100%;
}
input:not([type=checkbox]):not([type=radio]):-moz-read-only {
  padding-right: 0;
  padding-left: 0;
  border: none;
  background-color: transparent;
}
input:not([type=checkbox]):not([type=radio]):read-only {
  padding-right: 0;
  padding-left: 0;
  border: none;
  background-color: transparent;
}

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

input[type=number] {
  text-align: left;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

textarea {
  resize: none;
  vertical-align: bottom;
}

select {
  text-transform: none;
  word-wrap: normal;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
}

/* button
-----------------------------------------------------------*/
button {
  border: none;
  outline: none;
  background-color: transparent;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
  touch-action: manipulation;
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
button:focus {
  outline: none;
  box-shadow: none;
}
button:focus-visible {
  outline: none;
  box-shadow: var(--color-focus);
}

[role=button] {
  cursor: pointer;
}

/* img
-----------------------------------------------------------*/
picture {
  display: block;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  overflow: visible;
}

@media screen and (min-width: 781px) {
  .-sp {
    display: none !important;
  }
}
@media screen and (max-width: 780px) {
  .-pc {
    display: none !important;
  }
}
/* ============================================================
   Site Header
   ============================================================ */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 10.4rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1rem);
}
@media screen and (max-width: 780px) {
  .siteHeader {
    height: 6rem;
  }
}
.siteHeader_inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3.6rem 0 1rem;
}
@media screen and (max-width: 780px) {
  .siteHeader_inner {
    padding: 0 2.62rem 0 0.8rem;
  }
}
.siteHeader_logo {
  flex-shrink: 0;
}
.siteHeader_logo_link {
  display: flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .siteHeader_logo_link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .siteHeader_logo_link:active {
    opacity: 0.7;
  }
}
.siteHeader_logo img {
  width: 25.2rem;
  height: auto;
}
@media screen and (max-width: 780px) {
  .siteHeader_logo img {
    width: 15rem;
  }
}
.siteHeader_nav {
  margin-left: auto;
}
@media screen and (max-width: 780px) {
  .siteHeader_nav {
    display: none;
  }
}
.siteHeader_nav_list {
  display: flex;
  align-items: center;
  gap: 0 2.2rem;
}
.siteHeader_nav_link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(10px, 2rem);
  color: var(--color-black);
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .siteHeader_nav_link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .siteHeader_nav_link:active {
    opacity: 0.7;
  }
}
.siteHeader_actions {
  display: flex;
  align-items: center;
  gap: 0 2.2rem;
  margin-left: 2.2rem;
}
@media screen and (max-width: 780px) {
  .siteHeader_actions {
    display: none;
  }
}
.siteHeader_hamburger {
  display: none;
  position: relative;
  width: 2.7rem;
  height: 1.4rem;
  margin-left: auto;
}
@media screen and (max-width: 780px) {
  .siteHeader_hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.siteHeader_hamburger_line {
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: var(--color-black);
  transition: transform 0.3s var(--ease-power2-out), opacity 0.3s var(--ease-power2-out);
}
.siteHeader_drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-gray);
  overflow-y: auto;
}
.siteHeader_drawer.is-open {
  display: block;
}
.siteHeader_drawer_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3rem;
  padding: 2rem 2.5rem 4rem;
}
.siteHeader_drawer_close {
  position: relative;
  width: 2.8rem;
  height: 2.5rem;
}
.siteHeader_drawer_close_line {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-black);
}
.siteHeader_drawer_close_line:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.siteHeader_drawer_close_line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.siteHeader_drawer_nav {
  width: 100%;
}
.siteHeader_drawer_nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem 0;
}
.siteHeader_drawer_nav_link {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(10px, 1.8rem);
  line-height: 1;
  text-align: center;
  color: var(--color-black);
  text-decoration: underline;
}
.siteHeader_drawer_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-top: 1rem;
}
.siteHeader_drawer_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 1rem;
}
.siteHeader_drawer_footer_link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(10px, 1.4rem);
  line-height: 310%;
  text-align: center;
  color: var(--color-green2);
}
.siteHeader_drawer_footer_logo img {
  width: 15rem;
  height: auto;
}

/* ヘッダー分の余白をbodyに付与 */
body {
  padding-top: 10.4rem;
}
@media screen and (max-width: 780px) {
  body {
    padding-top: 6rem;
  }
}

/* ============================================================
   Site Footer
   ============================================================ */
.siteFooter_main {
  background-color: #e2e2e2;
}
.siteFooter_main_inner {
  display: flex;
  justify-content: space-between;
  padding: 6rem 12rem;
}
@media screen and (max-width: 780px) {
  .siteFooter_main_inner {
    flex-direction: column;
    gap: 4rem 0;
    padding: 4rem 2rem;
  }
}
.siteFooter_left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 780px) {
  .siteFooter_left {
    align-items: center;
  }
}
.siteFooter_logo img {
  width: 29.6rem;
  height: auto;
}
@media screen and (max-width: 780px) {
  .siteFooter_logo img {
    width: 20.7rem;
  }
}
.siteFooter_nav {
  margin-top: 2.4rem;
  padding-left: 1.9rem;
}
@media screen and (max-width: 780px) {
  .siteFooter_nav {
    margin-top: 2rem;
    padding-left: 0;
  }
}
.siteFooter_nav_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (max-width: 780px) {
  .siteFooter_nav_list {
    text-align: center;
  }
  .siteFooter_nav_list li:not(:last-child) {
    margin-bottom: 0.6rem;
  }
}
.siteFooter_nav_link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(10px, 2.2rem);
  line-height: 200%;
  color: var(--color-black);
  text-decoration: underline;
}
@media screen and (max-width: 780px) {
  .siteFooter_nav_link {
    font-size: max(10px, 1.6rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .siteFooter_nav_link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .siteFooter_nav_link:active {
    opacity: 0.7;
  }
}
.siteFooter_right {
  display: flex;
  flex-direction: column;
}
.siteFooter_company {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(10px, 1.6rem);
  line-height: 200%;
  color: var(--color-black);
}
.siteFooter_address {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(10px, 1.6rem);
  line-height: 170%;
  color: var(--color-black);
}
@media screen and (max-width: 780px) {
  .siteFooter_address {
    font-size: max(10px, 1.4rem);
  }
}
.siteFooter_address_note {
  font-size: max(10px, 1.4rem);
}
@media screen and (max-width: 780px) {
  .siteFooter_address_note {
    font-size: max(10px, 1.2rem);
  }
}
.siteFooter_notice {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(10px, 1.2rem);
  line-height: 180%;
  color: var(--color-black);
}
@media screen and (max-width: 780px) {
  .siteFooter_notice {
    margin-top: 1rem;
  }
}
.siteFooter_insurerLogo {
  margin-top: 2.4rem;
}
@media screen and (max-width: 780px) {
  .siteFooter_insurerLogo {
    margin-top: 2rem;
  }
}
.siteFooter_insurerLogo img {
  width: 26rem;
  height: auto;
}
@media screen and (max-width: 780px) {
  .siteFooter_insurerLogo img {
    margin: 0 auto;
  }
}
.siteFooter_bottom {
  background-color: var(--color-green2);
  padding: 2rem 0;
}
@media screen and (max-width: 780px) {
  .siteFooter_bottom {
    padding: 1.2rem 1.5rem;
  }
}
.siteFooter_bottom_inner {
  padding: 0 12rem;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .siteFooter_bottom_inner {
    padding: 1.2rem 1.5rem;
  }
}
.siteFooter_bottom_links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(10px, 1.6rem);
  line-height: 200%;
  color: var(--color-white);
}
@media screen and (max-width: 780px) {
  .siteFooter_bottom_links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 1.2rem;
    font-size: max(10px, 1.2rem);
  }
}
.siteFooter_bottom_links a {
  color: var(--color-white);
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .siteFooter_bottom_links a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .siteFooter_bottom_links a:active {
    opacity: 0.7;
  }
}
.siteFooter_bottom_copyright {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(10px, 1.4rem);
  line-height: 200%;
  color: var(--color-white);
}
@media screen and (max-width: 780px) {
  .siteFooter_bottom_copyright {
    font-size: max(10px, 1.1rem);
    margin-top: 1.2rem;
  }
}

/* ============================================================
   CTA Block Component
   ============================================================ */
.ctaBlock {
  width: 100%;
  background-color: var(--color-green1);
  padding: 10rem 0;
}
@media screen and (max-width: 780px) {
  .ctaBlock {
    padding: 6rem 0;
  }
}
.ctaBlock_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 112rem;
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .ctaBlock_inner {
    padding: 0 2.5rem;
    gap: 5rem 0;
  }
}
.ctaBlock_header {
  text-align: center;
}
.ctaBlock_heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(10px, 4.2rem);
  line-height: 200%;
  color: var(--color-white);
}
@media screen and (max-width: 780px) {
  .ctaBlock_heading {
    font-size: max(10px, 3rem);
    line-height: 1.4;
  }
}
.ctaBlock_time {
  display: inline-flex;
  align-items: center;
  width: 29.6rem;
  height: 3.6rem;
  margin-top: 0.4rem;
  padding-left: 5.7rem;
  border: 0.2rem solid var(--color-white);
  border-radius: 100vmax;
  position: relative;
}
@media screen and (max-width: 780px) {
  .ctaBlock_time {
    width: 25.7rem;
    height: 3rem;
    margin-top: 2.4rem;
    padding-left: 5.2rem;
  }
}
.ctaBlock_time_icon {
  width: 4.3rem;
  height: 4.3rem;
  position: absolute;
  left: -0.5rem;
}
@media screen and (max-width: 780px) {
  .ctaBlock_time_icon {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.ctaBlock_time_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(10px, 2.2rem);
  line-height: 1;
  color: var(--color-white);
}
@media screen and (max-width: 780px) {
  .ctaBlock_time_text {
    font-size: max(10px, 1.8rem);
  }
}
.ctaBlock_items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 780px) {
  .ctaBlock_items {
    flex-direction: column;
    gap: 3rem 0;
  }
}
.ctaBlock_item {
  display: flex;
  flex-direction: column;
  width: 36rem;
}
@media screen and (max-width: 780px) {
  .ctaBlock_item {
    width: 100%;
  }
}
.ctaBlock_item_image {
  overflow: hidden;
}
@media screen and (max-width: 780px) {
  .ctaBlock_item_image {
    width: 100%;
  }
}
.ctaBlock_item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ctaBlock_item_label {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(10px, 2rem);
  letter-spacing: -0.05em;
  line-height: 150%;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 780px) {
  .ctaBlock_item_label {
    font-size: max(10px, 1.8rem);
    margin-top: 1rem;
    letter-spacing: initial;
  }
}
.ctaBlock_buttons {
  display: flex;
  gap: 3.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 780px) {
  .ctaBlock_buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    width: 100%;
    margin-top: 2rem;
  }
}

/* ============================================================
   Section Heading - 共通見出しコンポーネント
   .sectionHeading を付けるだけで下に緑アクセントラインが付く
   ============================================================ */
.sectionHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(10px, 3.7rem);
  line-height: 150%;
  color: var(--color-black);
}
@media screen and (max-width: 780px) {
  .sectionHeading {
    font-size: max(10px, 3rem);
  }
}
.sectionHeading::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.6rem;
  margin-top: 2rem;
  background-color: var(--color-green1);
}

/* ============================================================
   Accordion Component
   ============================================================ */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion_item:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 780px) {
  .accordion_item:not(:last-child) {
    margin-bottom: 1.4rem;
  }
}
.accordion_item_question {
  display: flex;
  align-items: center;
  padding: 1rem 5rem 1rem 2.4rem;
  cursor: pointer;
  background-color: var(--color-green3);
}
@media screen and (max-width: 780px) {
  .accordion_item_question {
    padding: 1.3rem 2.8rem 1.3rem 0.9rem;
  }
}
.accordion_item_q {
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: max(10px, 2.8rem);
  line-height: 140%;
  margin-right: 1.2rem;
  color: var(--color-green1);
}
@media screen and (max-width: 780px) {
  .accordion_item_q {
    font-size: max(10px, 2.4rem);
  }
}
.accordion_item_text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(10px, 2rem);
  line-height: 160%;
}
@media screen and (max-width: 780px) {
  .accordion_item_text {
    font-size: max(10px, 1.6rem);
  }
}
.accordion_item_toggle {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 1.6rem;
  position: relative;
}
.accordion_item_icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  background-image: linear-gradient(var(--color-black), var(--color-black)), linear-gradient(var(--color-black), var(--color-black));
  background-size: 2.4rem 0.2rem, 0.2rem 2.4rem;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  transition: background-size 0.3s var(--ease-power2-out);
}
@media screen and (max-width: 780px) {
  .accordion_item_icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.accordion_item_answer {
  padding: 3rem 16rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(10px, 1.6rem);
  line-height: 180%;
}
@media screen and (max-width: 780px) {
  .accordion_item_answer {
    padding: 2rem 1.5rem;
    font-size: max(10px, 1.4rem);
  }
}
.accordion_item.is-open .accordion_item_icon {
  background-size: 2.4rem 0.2rem, 0 0;
}

/* ============================================================
   button - 共通丸角ボタン
   CSSカスタムプロパティでPC/SP別にサイズを制御:
   --w-pc / --w-sp, --h-pc / --h-sp, --fs-pc / --fs-sp,
   --pl-pc / --pl-sp, --pr-pc / --pr-sp, --icon-w-pc / --icon-w-sp,
   --mt-pc / --mt-sp
   ============================================================ */
.button-dark,
.button-light,
.button-gray,
.button-blue,
.button-pink {
  display: flex;
  align-items: center;
  width: calc(var(--w-pc, 306) * 0.1rem);
  height: calc(var(--h-pc, 68) * 0.1rem);
  padding: 0 calc(var(--pr-pc, 20) * 0.1rem) 0 calc(var(--pl-pc, 20) * 0.1rem);
}
.button-dark[style*="--mt-pc"],
.button-light[style*="--mt-pc"],
.button-gray[style*="--mt-pc"],
.button-blue[style*="--mt-pc"],
.button-pink[style*="--mt-pc"] {
  margin: calc(var(--mt-pc) * 0.1rem) auto 0;
}
.button-dark,
.button-light,
.button-gray,
.button-blue,
.button-pink {
  border-radius: 100vmax;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(var(--fs-pc, 24) * 0.1rem);
  letter-spacing: 0.1em;
  text-align: left;
  white-space: nowrap;
  transition: background-color 0.3s var(--ease-power2-out), color 0.3s var(--ease-power2-out);
}
@media screen and (max-width: 780px) {
  .button-dark,
  .button-light,
  .button-gray,
  .button-blue,
  .button-pink {
    width: calc(var(--w-sp, 306) * 0.1rem);
    height: calc(var(--h-sp, 68) * 0.1rem);
    padding: 0 calc(var(--pr-sp, 20) * 0.1rem) 0 calc(var(--pl-sp, 20) * 0.1rem);
    font-size: calc(var(--fs-sp, 24) * 0.1rem);
  }
  .button-dark[style*="--mt-sp"],
  .button-light[style*="--mt-sp"],
  .button-gray[style*="--mt-sp"],
  .button-blue[style*="--mt-sp"],
  .button-pink[style*="--mt-sp"] {
    margin: calc(var(--mt-sp) * 0.1rem) auto 0;
  }
}
.button-dark.is-hasIcon,
.button-light.is-hasIcon,
.button-gray.is-hasIcon,
.button-blue.is-hasIcon,
.button-pink.is-hasIcon {
  justify-content: space-between;
}
.button-dark:not(.is-hasIcon),
.button-light:not(.is-hasIcon),
.button-gray:not(.is-hasIcon),
.button-blue:not(.is-hasIcon),
.button-pink:not(.is-hasIcon) {
  justify-content: center;
}
.button-dark .button_icon,
.button-light .button_icon,
.button-gray .button_icon,
.button-blue .button_icon,
.button-pink .button_icon {
  flex-shrink: 0;
  width: calc(var(--icon-w-pc, 30) * 0.1rem);
  height: calc(var(--icon-w-pc, 30) * 0.1rem);
}
@media screen and (max-width: 780px) {
  .button-dark .button_icon,
  .button-light .button_icon,
  .button-gray .button_icon,
  .button-blue .button_icon,
  .button-pink .button_icon {
    width: calc(var(--icon-w-sp, 30) * 0.1rem);
    height: calc(var(--icon-w-sp, 30) * 0.1rem);
  }
}
.button-dark .button_icon path,
.button-light .button_icon path,
.button-gray .button_icon path,
.button-blue .button_icon path,
.button-pink .button_icon path {
  transition: stroke 0.3s var(--ease-power2-out);
}

.button-dark {
  background-color: var(--color-green2);
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .button-dark:hover {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
  .button-dark:hover .button_icon path {
    stroke: var(--color-black);
  }
}
@media (hover: none) {
  .button-dark:active {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
  .button-dark:active .button_icon path {
    stroke: var(--color-black);
  }
}

.button-light {
  background-color: var(--color-white);
  color: var(--color-black);
}
.button-light-bordered {
  border: 0.1rem solid #8f8f8f;
}
@media (hover: hover) and (pointer: fine) {
  .button-light:hover {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
}
@media (hover: none) {
  .button-light:active {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
}

.button-gray {
  background-color: #888888;
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .button-gray:hover {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
}
@media (hover: none) {
  .button-gray:active {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
}

.button-blue {
  background-color: #0089de;
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .button-blue:hover {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
  .button-blue:hover .button_icon path {
    stroke: var(--color-black);
  }
}
@media (hover: none) {
  .button-blue:active {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
  .button-blue:active .button_icon path {
    stroke: var(--color-black);
  }
}

.button-pink {
  background-color: #ff3a75;
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .button-pink:hover {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
  .button-pink:hover .button_icon path {
    stroke: var(--color-black);
  }
}
@media (hover: none) {
  .button-pink:active {
    background-color: var(--color-green4);
    color: var(--color-black);
  }
  .button-pink:active .button_icon path {
    stroke: var(--color-black);
  }
}

/* ============================================================
   Page Header - 下層ページ共通見出し
   緑背景 + 左上斜め装飾 + 英語タイトル + 黒バッジ日本語タイトル
   ============================================================ */
.pageHeader {
  position: relative;
  width: 100%;
  padding: 0.87rem 0 2.72rem;
  background-color: var(--color-green1);
  overflow: hidden;
}
@media screen and (max-width: 780px) {
  .pageHeader {
    padding: 0.8rem 0 0.9rem;
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.pageHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 630/150;
  background: linear-gradient(90deg, #2fa58e 0%, rgba(146, 255, 143, 0.6) 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
@media screen and (max-width: 780px) {
  .pageHeader::before {
    aspect-ratio: 188/100;
  }
}
.pageHeader_inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.pageHeader_en {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: max(10px, 7.6rem);
  line-height: 150%;
  letter-spacing: -0.38rem;
  color: var(--color-white);
}
@media screen and (max-width: 780px) {
  .pageHeader_en {
    font-size: max(10px, 5.5rem);
    line-height: 1;
  }
}
.pageHeader_ja {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: -3.3rem auto 0;
  position: relative;
  background-color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(10px, 2.2rem);
  line-height: 150%;
  color: var(--color-white);
}
@media screen and (max-width: 780px) {
  .pageHeader_ja {
    font-size: max(10px, 1.5rem);
    margin: -1.2rem auto 0;
  }
}

.breadcrumbs {
  padding-bottom: 1.8rem;
  max-width: 120rem;
  margin: 0 auto;
}
.breadcrumbs_list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.6rem;
}
.breadcrumbs_item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.6rem;
}
.breadcrumbs_item:last-child {
  overflow: hidden;
  flex-shrink: 1;
  min-width: 0;
}
.breadcrumbs_separator {
  display: block;
  width: 0.6rem;
  min-width: 6px;
}
.breadcrumbs_separator > img {
  width: 100%;
}
.breadcrumbs_current {
  overflow: hidden;
  color: var(--color-black);
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 780px) {
  .breadcrumbs {
    padding: 0 0 1rem;
    width: 34rem;
  }
  .breadcrumbs_list {
    gap: 1.4rem;
  }
  .breadcrumbs_item {
    gap: 1.4rem;
  }
  .breadcrumbs_separator {
    width: 0.5rem;
    min-width: 5px;
  }
}/*# sourceMappingURL=common.css.map */