@charset "UTF-8";
/* Foundation
=========================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* Colors
=========================*/
:root {
  /* SMFL
  -----------------------------------------*/
  --THEME-BLUE: #0060FB;
  --THEME-GREEN: #6dfc54;
  --THEME-_center: #00e0cd;
  --MAIN-BLACK: #1b1f27;
  --MAIN-GRAY: #4a4a4a;
  --MAIN-GLAY_NOTE: #525252;
  --MAIN-WHITE: #ffffff;
  --MAIN-GRAY_PLACEHOLDER: #b3b3b3;
  --MAIN-ATTENTION: #ec2c18;
  --LINE-LINK: #a7a7a7;
  --LINE-FORM: #cccccc;
  --BG-GRAY_suppl: #000000;
  --BG-FAQ_section: #eaeaeb;
  --BG-breadcrumb: #fcfcfc;
  --BG-TABLE_TH_A: #1c1c22;
  --BG-TABLE_TH_B: #1c1c22;
  --BG-section-blue: #f9f9fb

  --ILLUSTRATION-GRAY: #656565;
  --ILLUSTRATION-GRAY_LINE: #c3c3c3;
  --ILLUSTRATION-BLUE_bg: #e3ebf7 ;
}

/* Font family
=========================*/
/* Noto Sans JP
-----------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-weight: normal;
  src: url(/carbon-neutral/fonts/NotoSansJP-Regular.ttf) format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: bold;
  src: url(/carbon-neutral/fonts/NotoSansJP-Bold.ttf) format("opentype");
}
@font-face {
  font-family: "Outfit";
  font-weight: normal;
  src: url(/carbon-neutral/fonts/Outfit-Regular.ttf) format("opentype");
}
@font-face {
  font-family: "Outfit";
  font-weight: 500;
  src: url(/carbon-neutral/fonts/Outfit-Medium.ttf) format("opentype");
}
@font-face {
  font-family: "Outfit";
  font-weight: bold;
  src: url(/carbon-neutral/fonts/Outfit-Bold.ttf) format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-weight: normal;
  src: url(/carbon-neutral/fonts/Poppins-Regular.ttf) format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  src: url(/carbon-neutral/fonts/Poppins-Light.ttf) format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  src: url(/carbon-neutral/fonts/Poppins-SemiBold.ttf) format("opentype");
}
@font-face {
  font-family: "Poppins";
  font-weight: bold;
  src: url(/carbon-neutral/fonts/Poppins-Bold.ttf) format("opentype");
}
body, body * {
  font-family: "Noto Sans JP", "Noto Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif;
  line-height: 1.8;
}

strong, b {
  font-weight: 700;
}

sup {
  font-size: 0.75em;
  vertical-align: text-top;
}

/* Layout
=========================*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-column--center {
  justify-content: center;
}
.l-column__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.l-column--1 > .l-column__item {
  width: calc((100% - 0 * 16px) / 1);
}
@media screen and (min-width: 769px) {
  .l-column--1.l-column--pc-gap-row-8 {
    row-gap: 8px;
  }
  .l-column--1.l-column--pc-gap-row-16 {
    row-gap: 16px;
  }
  .l-column--1.l-column--pc-gap-row-24 {
    row-gap: 24px;
  }
  .l-column--1.l-column--pc-gap-row-32 {
    row-gap: 32px;
  }
  .l-column--1.l-column--pc-gap-row-40 {
    row-gap: 40px;
  }
  .l-column--1.l-column--pc-gap-row-60 {
    row-gap: 60px;
  }
  .l-column--1.l-column--pc-gap-row-64 {
    row-gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .l-column--1.l-column--pc-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--1.l-column--pc-gap-col-8 > .l-column__item {
    width: calc((100% - 0 * 8px) / 1);
  }
  .l-column--1.l-column--pc-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--1.l-column--pc-gap-col-16 > .l-column__item {
    width: calc((100% - 0 * 16px) / 1);
  }
  .l-column--1.l-column--pc-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--1.l-column--pc-gap-col-24 > .l-column__item {
    width: calc((100% - 0 * 24px) / 1);
  }
  .l-column--1.l-column--pc-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--1.l-column--pc-gap-col-32 > .l-column__item {
    width: calc((100% - 0 * 32px) / 1);
  }
  .l-column--1.l-column--pc-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--1.l-column--pc-gap-col-40 > .l-column__item {
    width: calc((100% - 0 * 40px) / 1);
  }
  .l-column--1.l-column--pc-gap-col-60 {
    column-gap: 60px;
  }
  .l-column--1.l-column--pc-gap-col-60 > .l-column__item {
    width: calc((100% - 0 * 60px) / 1);
  }
}
@media screen and (max-width: 768px) {
  .l-column--1.l-column--sp-gap-row-0 {
    row-gap: 0 !important;
  }
  .l-column--1.l-column--sp-gap-row-8 {
    row-gap: 8px !important;
  }
  .l-column--1.l-column--sp-gap-row-16 {
    row-gap: 16px !important;
  }
  .l-column--1.l-column--sp-gap-row-24 {
    row-gap: 24px !important;
  }
  .l-column--1.l-column--sp-gap-row-32 {
    row-gap: 32px !important;
  }
  .l-column--1.l-column--sp-gap-row-40 {
    row-gap: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-column--1.l-column--sp-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--1.l-column--sp-gap-col-8 > .l-column__item {
    width: calc((100% - 0 * 8px) / 1);
  }
  .l-column--1.l-column--sp-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--1.l-column--sp-gap-col-16 > .l-column__item {
    width: calc((100% - 0 * 16px) / 1);
  }
  .l-column--1.l-column--sp-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--1.l-column--sp-gap-col-24 > .l-column__item {
    width: calc((100% - 0 * 24px) / 1);
  }
  .l-column--1.l-column--sp-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--1.l-column--sp-gap-col-32 > .l-column__item {
    width: calc((100% - 0 * 32px) / 1);
  }
  .l-column--1.l-column--sp-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--1.l-column--sp-gap-col-40 > .l-column__item {
    width: calc((100% - 0 * 40px) / 1);
  }
}
.l-column--2 > .l-column__item {
  width: calc((100% - 1 * 16px) / 2);
}
@media screen and (min-width: 769px) {
  .l-column--2.l-column--pc-gap-row-8 {
    row-gap: 8px;
  }
  .l-column--2.l-column--pc-gap-row-16 {
    row-gap: 16px;
  }
  .l-column--2.l-column--pc-gap-row-24 {
    row-gap: 24px;
  }
  .l-column--2.l-column--pc-gap-row-32 {
    row-gap: 32px;
  }
  .l-column--2.l-column--pc-gap-row-40 {
    row-gap: 40px;
  }
  .l-column--2.l-column--pc-gap-row-60 {
    row-gap: 60px;
  }
  .l-column--2.l-column--pc-gap-row-64 {
    row-gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .l-column--2.l-column--pc-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--2.l-column--pc-gap-col-8 > .l-column__item {
    width: calc((100% - 1 * 8px) / 2);
  }
  .l-column--2.l-column--pc-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--2.l-column--pc-gap-col-16 > .l-column__item {
    width: calc((100% - 1 * 16px) / 2);
  }
  .l-column--2.l-column--pc-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--2.l-column--pc-gap-col-24 > .l-column__item {
    width: calc((100% - 1 * 24px) / 2);
  }
  .l-column--2.l-column--pc-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--2.l-column--pc-gap-col-32 > .l-column__item {
    width: calc((100% - 1 * 32px) / 2);
  }
  .l-column--2.l-column--pc-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--2.l-column--pc-gap-col-40 > .l-column__item {
    width: calc((100% - 1 * 40px) / 2);
  }
  .l-column--2.l-column--pc-gap-col-60 {
    column-gap: 60px;
  }
  .l-column--2.l-column--pc-gap-col-60 > .l-column__item {
    width: calc((100% - 1 * 60px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .l-column--2.l-column--sp-gap-row-0 {
    row-gap: 0 !important;
  }
  .l-column--2.l-column--sp-gap-row-8 {
    row-gap: 8px !important;
  }
  .l-column--2.l-column--sp-gap-row-16 {
    row-gap: 16px !important;
  }
  .l-column--2.l-column--sp-gap-row-24 {
    row-gap: 24px !important;
  }
  .l-column--2.l-column--sp-gap-row-32 {
    row-gap: 32px !important;
  }
  .l-column--2.l-column--sp-gap-row-40 {
    row-gap: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-column--2.l-column--sp-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--2.l-column--sp-gap-col-8 > .l-column__item {
    width: calc((100% - 1 * 8px) / 2);
  }
  .l-column--2.l-column--sp-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--2.l-column--sp-gap-col-16 > .l-column__item {
    width: calc((100% - 1 * 16px) / 2);
  }
  .l-column--2.l-column--sp-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--2.l-column--sp-gap-col-24 > .l-column__item {
    width: calc((100% - 1 * 24px) / 2);
  }
  .l-column--2.l-column--sp-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--2.l-column--sp-gap-col-32 > .l-column__item {
    width: calc((100% - 1 * 32px) / 2);
  }
  .l-column--2.l-column--sp-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--2.l-column--sp-gap-col-40 > .l-column__item {
    width: calc((100% - 1 * 40px) / 2);
  }
}
.l-column--3 > .l-column__item {
  width: calc((100% - 2 * 16px) / 3);
}
@media screen and (min-width: 769px) {
  .l-column--3.l-column--pc-gap-row-8 {
    row-gap: 8px;
  }
  .l-column--3.l-column--pc-gap-row-16 {
    row-gap: 16px;
  }
  .l-column--3.l-column--pc-gap-row-24 {
    row-gap: 24px;
  }
  .l-column--3.l-column--pc-gap-row-32 {
    row-gap: 32px;
  }
  .l-column--3.l-column--pc-gap-row-40 {
    row-gap: 40px;
  }
  .l-column--3.l-column--pc-gap-row-60 {
    row-gap: 60px;
  }
  .l-column--3.l-column--pc-gap-row-64 {
    row-gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .l-column--3.l-column--pc-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--3.l-column--pc-gap-col-8 > .l-column__item {
    width: calc((100% - 2 * 8px) / 3);
  }
  .l-column--3.l-column--pc-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--3.l-column--pc-gap-col-16 > .l-column__item {
    width: calc((100% - 2 * 16px) / 3);
  }
  .l-column--3.l-column--pc-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--3.l-column--pc-gap-col-24 > .l-column__item {
    width: calc((100% - 2 * 24px) / 3);
  }
  .l-column--3.l-column--pc-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--3.l-column--pc-gap-col-32 > .l-column__item {
    width: calc((100% - 2 * 32px) / 3);
  }
  .l-column--3.l-column--pc-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--3.l-column--pc-gap-col-40 > .l-column__item {
    width: calc((100% - 2 * 40px) / 3);
  }
  .l-column--3.l-column--pc-gap-col-60 {
    column-gap: 60px;
  }
  .l-column--3.l-column--pc-gap-col-60 > .l-column__item {
    width: calc((100% - 2 * 60px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .l-column--3.l-column--sp-gap-row-0 {
    row-gap: 0 !important;
  }
  .l-column--3.l-column--sp-gap-row-8 {
    row-gap: 8px !important;
  }
  .l-column--3.l-column--sp-gap-row-16 {
    row-gap: 16px !important;
  }
  .l-column--3.l-column--sp-gap-row-24 {
    row-gap: 24px !important;
  }
  .l-column--3.l-column--sp-gap-row-32 {
    row-gap: 32px !important;
  }
  .l-column--3.l-column--sp-gap-row-40 {
    row-gap: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-column--3.l-column--sp-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--3.l-column--sp-gap-col-8 > .l-column__item {
    width: calc((100% - 2 * 8px) / 3);
  }
  .l-column--3.l-column--sp-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--3.l-column--sp-gap-col-16 > .l-column__item {
    width: calc((100% - 2 * 16px) / 3);
  }
  .l-column--3.l-column--sp-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--3.l-column--sp-gap-col-24 > .l-column__item {
    width: calc((100% - 2 * 24px) / 3);
  }
  .l-column--3.l-column--sp-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--3.l-column--sp-gap-col-32 > .l-column__item {
    width: calc((100% - 2 * 32px) / 3);
  }
  .l-column--3.l-column--sp-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--3.l-column--sp-gap-col-40 > .l-column__item {
    width: calc((100% - 2 * 40px) / 3);
  }
}
.l-column--4 > .l-column__item {
  width: calc((100% - 3 * 16px) / 4);
}
@media screen and (min-width: 769px) {
  .l-column--4.l-column--pc-gap-row-8 {
    row-gap: 8px;
  }
  .l-column--4.l-column--pc-gap-row-16 {
    row-gap: 16px;
  }
  .l-column--4.l-column--pc-gap-row-24 {
    row-gap: 24px;
  }
  .l-column--4.l-column--pc-gap-row-32 {
    row-gap: 32px;
  }
  .l-column--4.l-column--pc-gap-row-40 {
    row-gap: 40px;
  }
  .l-column--4.l-column--pc-gap-row-60 {
    row-gap: 60px;
  }
  .l-column--4.l-column--pc-gap-row-64 {
    row-gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .l-column--4.l-column--pc-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--4.l-column--pc-gap-col-8 > .l-column__item {
    width: calc((100% - 3 * 8px) / 4);
  }
  .l-column--4.l-column--pc-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--4.l-column--pc-gap-col-16 > .l-column__item {
    width: calc((100% - 3 * 16px) / 4);
  }
  .l-column--4.l-column--pc-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--4.l-column--pc-gap-col-24 > .l-column__item {
    width: calc((100% - 3 * 24px) / 4);
  }
  .l-column--4.l-column--pc-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--4.l-column--pc-gap-col-32 > .l-column__item {
    width: calc((100% - 3 * 32px) / 4);
  }
  .l-column--4.l-column--pc-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--4.l-column--pc-gap-col-40 > .l-column__item {
    width: calc((100% - 3 * 40px) / 4);
  }
  .l-column--4.l-column--pc-gap-col-60 {
    column-gap: 60px;
  }
  .l-column--4.l-column--pc-gap-col-60 > .l-column__item {
    width: calc((100% - 3 * 60px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .l-column--4.l-column--sp-gap-row-0 {
    row-gap: 0 !important;
  }
  .l-column--4.l-column--sp-gap-row-8 {
    row-gap: 8px !important;
  }
  .l-column--4.l-column--sp-gap-row-16 {
    row-gap: 16px !important;
  }
  .l-column--4.l-column--sp-gap-row-24 {
    row-gap: 24px !important;
  }
  .l-column--4.l-column--sp-gap-row-32 {
    row-gap: 32px !important;
  }
  .l-column--4.l-column--sp-gap-row-40 {
    row-gap: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-column--4.l-column--sp-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--4.l-column--sp-gap-col-8 > .l-column__item {
    width: calc((100% - 3 * 8px) / 4);
  }
  .l-column--4.l-column--sp-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--4.l-column--sp-gap-col-16 > .l-column__item {
    width: calc((100% - 3 * 16px) / 4);
  }
  .l-column--4.l-column--sp-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--4.l-column--sp-gap-col-24 > .l-column__item {
    width: calc((100% - 3 * 24px) / 4);
  }
  .l-column--4.l-column--sp-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--4.l-column--sp-gap-col-32 > .l-column__item {
    width: calc((100% - 3 * 32px) / 4);
  }
  .l-column--4.l-column--sp-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--4.l-column--sp-gap-col-40 > .l-column__item {
    width: calc((100% - 3 * 40px) / 4);
  }
}
.l-column--5 > .l-column__item {
  width: calc((100% - 4 * 16px) / 5);
}
@media screen and (min-width: 769px) {
  .l-column--5.l-column--pc-gap-row-8 {
    row-gap: 8px;
  }
  .l-column--5.l-column--pc-gap-row-16 {
    row-gap: 16px;
  }
  .l-column--5.l-column--pc-gap-row-24 {
    row-gap: 24px;
  }
  .l-column--5.l-column--pc-gap-row-32 {
    row-gap: 32px;
  }
  .l-column--5.l-column--pc-gap-row-40 {
    row-gap: 40px;
  }
  .l-column--5.l-column--pc-gap-row-60 {
    row-gap: 60px;
  }
  .l-column--5.l-column--pc-gap-row-64 {
    row-gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .l-column--5.l-column--pc-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--5.l-column--pc-gap-col-8 > .l-column__item {
    width: calc((100% - 4 * 8px) / 5);
  }
  .l-column--5.l-column--pc-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--5.l-column--pc-gap-col-16 > .l-column__item {
    width: calc((100% - 4 * 16px) / 5);
  }
  .l-column--5.l-column--pc-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--5.l-column--pc-gap-col-24 > .l-column__item {
    width: calc((100% - 4 * 24px) / 5);
  }
  .l-column--5.l-column--pc-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--5.l-column--pc-gap-col-32 > .l-column__item {
    width: calc((100% - 4 * 32px) / 5);
  }
  .l-column--5.l-column--pc-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--5.l-column--pc-gap-col-40 > .l-column__item {
    width: calc((100% - 4 * 40px) / 5);
  }
  .l-column--5.l-column--pc-gap-col-60 {
    column-gap: 60px;
  }
  .l-column--5.l-column--pc-gap-col-60 > .l-column__item {
    width: calc((100% - 4 * 60px) / 5);
  }
}
@media screen and (max-width: 768px) {
  .l-column--5.l-column--sp-gap-row-0 {
    row-gap: 0 !important;
  }
  .l-column--5.l-column--sp-gap-row-8 {
    row-gap: 8px !important;
  }
  .l-column--5.l-column--sp-gap-row-16 {
    row-gap: 16px !important;
  }
  .l-column--5.l-column--sp-gap-row-24 {
    row-gap: 24px !important;
  }
  .l-column--5.l-column--sp-gap-row-32 {
    row-gap: 32px !important;
  }
  .l-column--5.l-column--sp-gap-row-40 {
    row-gap: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-column--5.l-column--sp-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--5.l-column--sp-gap-col-8 > .l-column__item {
    width: calc((100% - 4 * 8px) / 5);
  }
  .l-column--5.l-column--sp-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--5.l-column--sp-gap-col-16 > .l-column__item {
    width: calc((100% - 4 * 16px) / 5);
  }
  .l-column--5.l-column--sp-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--5.l-column--sp-gap-col-24 > .l-column__item {
    width: calc((100% - 4 * 24px) / 5);
  }
  .l-column--5.l-column--sp-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--5.l-column--sp-gap-col-32 > .l-column__item {
    width: calc((100% - 4 * 32px) / 5);
  }
  .l-column--5.l-column--sp-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--5.l-column--sp-gap-col-40 > .l-column__item {
    width: calc((100% - 4 * 40px) / 5);
  }
}
.l-column--6 > .l-column__item {
  width: calc((100% - 5 * 16px) / 6);
}
@media screen and (min-width: 769px) {
  .l-column--6.l-column--pc-gap-row-8 {
    row-gap: 8px;
  }
  .l-column--6.l-column--pc-gap-row-16 {
    row-gap: 16px;
  }
  .l-column--6.l-column--pc-gap-row-24 {
    row-gap: 24px;
  }
  .l-column--6.l-column--pc-gap-row-32 {
    row-gap: 32px;
  }
  .l-column--6.l-column--pc-gap-row-40 {
    row-gap: 40px;
  }
  .l-column--6.l-column--pc-gap-row-60 {
    row-gap: 60px;
  }
  .l-column--6.l-column--pc-gap-row-64 {
    row-gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .l-column--6.l-column--pc-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--6.l-column--pc-gap-col-8 > .l-column__item {
    width: calc((100% - 5 * 8px) / 6);
  }
  .l-column--6.l-column--pc-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--6.l-column--pc-gap-col-16 > .l-column__item {
    width: calc((100% - 5 * 16px) / 6);
  }
  .l-column--6.l-column--pc-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--6.l-column--pc-gap-col-24 > .l-column__item {
    width: calc((100% - 5 * 24px) / 6);
  }
  .l-column--6.l-column--pc-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--6.l-column--pc-gap-col-32 > .l-column__item {
    width: calc((100% - 5 * 32px) / 6);
  }
  .l-column--6.l-column--pc-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--6.l-column--pc-gap-col-40 > .l-column__item {
    width: calc((100% - 5 * 40px) / 6);
  }
  .l-column--6.l-column--pc-gap-col-60 {
    column-gap: 60px;
  }
  .l-column--6.l-column--pc-gap-col-60 > .l-column__item {
    width: calc((100% - 5 * 60px) / 6);
  }
}
@media screen and (max-width: 768px) {
  .l-column--6.l-column--sp-gap-row-0 {
    row-gap: 0 !important;
  }
  .l-column--6.l-column--sp-gap-row-8 {
    row-gap: 8px !important;
  }
  .l-column--6.l-column--sp-gap-row-16 {
    row-gap: 16px !important;
  }
  .l-column--6.l-column--sp-gap-row-24 {
    row-gap: 24px !important;
  }
  .l-column--6.l-column--sp-gap-row-32 {
    row-gap: 32px !important;
  }
  .l-column--6.l-column--sp-gap-row-40 {
    row-gap: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .l-column--6.l-column--sp-gap-col-8 {
    column-gap: 8px;
  }
  .l-column--6.l-column--sp-gap-col-8 > .l-column__item {
    width: calc((100% - 5 * 8px) / 6);
  }
  .l-column--6.l-column--sp-gap-col-16 {
    column-gap: 16px;
  }
  .l-column--6.l-column--sp-gap-col-16 > .l-column__item {
    width: calc((100% - 5 * 16px) / 6);
  }
  .l-column--6.l-column--sp-gap-col-24 {
    column-gap: 24px;
  }
  .l-column--6.l-column--sp-gap-col-24 > .l-column__item {
    width: calc((100% - 5 * 24px) / 6);
  }
  .l-column--6.l-column--sp-gap-col-32 {
    column-gap: 32px;
  }
  .l-column--6.l-column--sp-gap-col-32 > .l-column__item {
    width: calc((100% - 5 * 32px) / 6);
  }
  .l-column--6.l-column--sp-gap-col-40 {
    column-gap: 40px;
  }
  .l-column--6.l-column--sp-gap-col-40 > .l-column__item {
    width: calc((100% - 5 * 40px) / 6);
  }
}
@media screen and (max-width: 768px) {
  .l-column--sp-1 > .l-column__item {
    width: calc((100% - 0 * 16px) / 1) !important;
  }
  .l-column--sp-2 > .l-column__item {
    width: calc((100% - 1 * 16px) / 2) !important;
  }
  .l-column--sp-3 > .l-column__item {
    width: calc((100% - 2 * 16px) / 3) !important;
  }
  .l-column--sp-4 > .l-column__item {
    width: calc((100% - 3 * 16px) / 4) !important;
  }
}
.l-column--2[class*="--ratio"] {
  gap: 40px;
}
.l-column--2[class*="--ratio"] > .l-column__item {
  width: calc((100% - 40px) * 0.5);
}
.l-column--2.l-column--ratio-44-56 > .l-column__item:nth-child(1) {
  width: calc((100% - 40px) * 0.4435);
}
.l-column--2.l-column--ratio-44-56 > .l-column__item:nth-child(2) {
  width: calc((100% - 40px) * 0.5565);
}
.l-column--2.l-column--ratio-56-44 > .l-column__item:nth-child(1) {
  width: calc((100% - 40px) * 0.5565);
}
.l-column--2.l-column--ratio-56-44 > .l-column__item:nth-child(2) {
  width: calc((100% - 40px) * 0.4435);
}
.l-column--2.l-column--ratio-37-63 > .l-column__item:nth-child(1) {
  width: calc((100% - 40px) * 0.3696);
}
.l-column--2.l-column--ratio-37-63 > .l-column__item:nth-child(2) {
  width: calc((100% - 40px) * 0.6304);
}
.l-column--2.l-column--ratio-35-65 > .l-column__item:nth-child(1) {
  width: calc((100% - 40px) * 0.3478);
}
.l-column--2.l-column--ratio-35-65 > .l-column__item:nth-child(2) {
  width: calc((100% - 40px) * 0.6522);
}
.l-column--2.l-column--ratio-22-78 > .l-column__item:nth-child(1) {
  width: calc((100% - 40px) * 0.2173);
}
.l-column--2.l-column--ratio-22-78 > .l-column__item:nth-child(2) {
  width: calc((100% - 40px) * 0.7827);
}
.l-column--2 .c-button {
  flex: 1 1 auto;
}

.l-mainWrapper {
  min-width: 1040px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-mainWrapper {
    min-width: auto;
  }
}

.l-section {
  width: 1040px;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-section {
    width: 100%;
    padding: 0 16px;
  }
}
.l-section__inner--768 {
  max-width: 768px;
  margin: 0 auto;
}

.l-keyvisual {
  width: 100%;
  margin: 0 auto;
  min-width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual {
    min-width: auto;
  }
}
.l-keyvisual__inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-keyvisual--top {
  position: relative;
  height: 600px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top {
    background: url(/carbon-neutral/images/bg-firstview_sp.webp) no-repeat;
    height: 520px;
    max-height: 700px;
    background-size: 370px;
    background-position: right 130px;
    margin-top: 24px;
  }
}
.l-keyvisual--top::after {
  position: absolute;
  top: -77px;
  left: 461px;
  width: 1072px;
  height: 857px;
  content: "";
  background-image: url(/carbon-neutral/images/bg-firstview_pc.webp);
  background-size: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 1440px) {
  .l-keyvisual--top::after {
    left: 83%;
    transform: translateX(-50vw);
  }
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top::after {
    content: none;
  }
}
.l-keyvisual--top .l-keyvisual__textWrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  min-width: 470px;
  max-width: 470px;
  width: 32%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top .l-keyvisual__textWrap {
    top: 0;
    left: 16px;
    transform: none;
    min-width: inherit;
    width: 70.6%;
  }
}
@media screen and (min-width: 1440px) {
  .l-keyvisual--top .l-keyvisual__textWrap {
    position: relative;
    top: 300px;
  }
}
.l-keyvisual--top .l-keyvisual__inner {
  position: relative;
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top .l-keyvisual__inner::before {
    content: "";
    position: absolute;
    display: block;
    width: 58px;
    height: 7px;
    right: 20px;
    top: 170px;
    background: url(/carbon-neutral/images/common/icon_kv_line.png) no-repeat;
    background-size: contain;
    z-index: -1;
  }
}
.l-keyvisual--top .l-keyvisual__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 170px;
  height: 276px;
  left: 0px;
  top: 280px;
  background: url(/carbon-neutral/images/common/icon_kv_square_pc.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top .l-keyvisual__inner::after {
    width: 47px;
    height: 54px;
    left: 0px;
    top: 230px;
    background: url(/carbon-neutral/images/common/icon_kv_square_sp.png) no-repeat;
    background-size: contain;
  }
}
.l-keyvisual--top .l-keyvisual__image {
  width: 100%;
}
.l-keyvisual--top .l-keyvisual__titleSub {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top .l-keyvisual__titleSub {
    margin-top: 16px;
  }
}
.l-keyvisual--top .l-keyvisual__titleSub .c-text {
  font-size: 20px;
  line-height: 175%;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--top .l-keyvisual__titleSub .c-text {
    font-size: 14px;
  }
}
.l-keyvisual--lower {
  background: #f6f6f8;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower {
    min-width: auto;
  }
}
.l-keyvisual--lower .l-keyvisual__inner {
  position: relative;
  max-width: 1270px;
  padding-left: 16px;
  margin: 0 auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__inner {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .l-keyvisual--lower .l-keyvisual__inner {
    right: -2%;
    margin-right: auto;
  }
}
.l-keyvisual--lower .l-keyvisual__inner::before {
  content: "";
  position: absolute;
  top: 32.1%;
  left: -160px;
  width: 34px;
  height: 5px;
  background-image: url("/carbon-neutral/images/common/icon_keyvisual_lower01.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__inner::before {
    content: none;
  }
}
.l-keyvisual--lower .l-keyvisual__left, .l-keyvisual--lower .l-keyvisual__right {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__left, .l-keyvisual--lower .l-keyvisual__right {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.l-keyvisual--lower .l-keyvisual__left {
  position: relative;
  width: 555px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__left {
    width: 100%;
    margin-top: -10%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    order: 2;
    padding-bottom: 48px;
  }
}
.l-keyvisual--lower .l-keyvisual__right {
  position: relative;
  max-width: 930px;
  width: 100%;
}
.l-keyvisual--lower .l-keyvisual__right ::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 16px;
  width: 112px;
  height: 46px;
  background-image: url("/carbon-neutral/images/common/icon_keyvisual_lower02.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__right ::after {
    width: 32px;
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__right {
    width: 100%;
    order: 1;
  }
}
.l-keyvisual--lower .l-keyvisual__right > picture {
  display: flex;
  flex-direction: column;
}
.l-keyvisual--lower .l-keyvisual__company {
  font-size: 13px;
  color: #4a4a4a;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__company {
    padding: 0 16px;
    order: -1;
  }
}
.l-keyvisual--lower .l-keyvisual__company span {
  padding: 2px 3px;
  line-height: 1.5;
  background: #ffffff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__company {
    padding: 0 16px;
  }
}
.l-keyvisual--lower .l-keyvisual__title {
  margin-top: 11px;
  margin-left: -15px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__title {
    order: 0;
    margin-left: 0;
  }
}
.l-keyvisual--lower .l-keyvisual__text {
  margin-top: 16px;
  font-size: 16px;
  color: #4a4a4a;
}
.l-keyvisual--lower .l-keyvisual__points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__points {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 3;
    padding: 0 32px;
    gap: 16px;
    margin-top: 32px;
  }
}
.l-keyvisual--lower .l-keyvisual__point {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__point {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
  }
}
.l-keyvisual--lower .l-keyvisual__point::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 1px;
  height: 100%;
  background: #c4c4c4;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__point::after {
    width: 100%;
    height: 1px;
    right: 0;
    top: inherit;
    bottom: -12px;
  }
}
.l-keyvisual--lower .l-keyvisual__point:last-child::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__point:last-child::after {
    content: "";
  }
}
.l-keyvisual--lower .l-keyvisual__point__num {
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #0060fb;
  gap: 4px;
}
.l-keyvisual--lower .l-keyvisual__point__num span {
  font-family: Outfit;
  line-height: 1.6;
}
.l-keyvisual--lower .l-keyvisual__point__num span:last-child {
  background: linear-gradient(147deg, #0060fb 10.38%, #0060fb 57.92%, #b0f137 89.62%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-keyvisual--lower .l-keyvisual__point__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  margin-top: 8px;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #1b1f27;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__point__title {
    text-align: left;
    align-items: start;
    margin-top: 0;
  }
}
.l-keyvisual--lower .l-keyvisual__submit {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__submit {
    order: 2;
    padding: 16px 24px;
    margin: 0 auto;
    width: calc(100% - 64px);
    max-width: 640px;
  }
}
.l-keyvisual--lower .l-keyvisual__submit .c-button__text {
  line-height: 1.5;
}
.l-keyvisual--lower .l-keyvisual__submit .c-button__text span {
  font-size: 13px;
  line-height: 1.5;
}
.l-keyvisual--lower .l-keyvisual__contact {
  position: relative;
  line-height: 1.5;
  color: #4a4a4a;
  z-index: 1;
  transition: all ease-out 0.2s;
}
.l-keyvisual--lower .l-keyvisual__contact::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background: #1b1f27;
  z-index: -1;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__contact::before {
    content: none;
  }
}
.l-keyvisual--lower .l-keyvisual__contact:hover {
  color: #fff;
}
.l-keyvisual--lower .l-keyvisual__contact:hover::before {
  width: 100%;
}
.l-keyvisual--lower .l-keyvisual__image {
  width: 100%;
  object-fit: cover;
  object-position: right;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__image {
    height: 100%;
    object-fit: inherit;
  }
}
.l-keyvisual--lower .l-keyvisual__inquiry {
  order: 5;
}
.l-keyvisual--lower .l-keyvisual__inquiry .c-text {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__inquiry .c-text {
    text-align: center;
  }
}
.l-keyvisual--lower .l-keyvisual__titleSub {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__titleSub {
    margin: 0 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-keyvisual--lower .l-keyvisual__titleSub .c-text {
    font-size: 14px;
  }
}

.l-list {
  counter-reset: container_counter 0;
}
.l-list__item {
  position: relative;
  color: #1B1F27;
}
.l-list__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .l-list__item:not(:first-child) {
    margin-top: 8px !important;
  }
}
.l-list__item .c-text {
  line-height: 1.9;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-list__item .c-text {
    font-size: 16px;
  }
}
.l-list--disc {
  padding-left: 18px;
}
@media screen and (max-width: 768px) {
  .l-list--disc {
    padding-left: 14px;
  }
}
.l-list--disc .l-list__item {
  line-height: 1.5;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .l-list--disc .l-list__item {
    font-size: 14px;
  }
}
.l-list--disc .l-list__item::marker {
  font-size: 10px;
}
.l-list--disc .l-list__item:not(:first-child) {
  margin-top: 0;
}
.l-list--disc .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.l-list--disc-circle .l-list__item {
  padding-left: 18px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: normal;
  color: #1B1F27;
}
@media screen and (max-width: 768px) {
  .l-list--disc-circle .l-list__item {
    font-size: 14px;
  }
}
.l-list--disc-circle .l-list__item:not(:first-child) {
  margin-top: 8px;
}
.l-list--disc-circle .l-list__item:nth-of-type(1)::before {
  content: "①";
}
.l-list--disc-circle .l-list__item:nth-of-type(2)::before {
  content: "②";
}
.l-list--disc-circle .l-list__item:nth-of-type(3)::before {
  content: "③";
}
.l-list--disc-circle .l-list__item:nth-of-type(4)::before {
  content: "④";
}
.l-list--disc-circle .l-list__item:nth-of-type(5)::before {
  content: "⑤";
}
.l-list--disc-circle .l-list__item:nth-of-type(6)::before {
  content: "⑥";
}
.l-list--disc-circle .l-list__item:nth-of-type(7)::before {
  content: "⑦";
}
.l-list--disc-circle .l-list__item:nth-of-type(8)::before {
  content: "⑧";
}
.l-list--disc-circle .l-list__item:nth-of-type(9)::before {
  content: "⑨";
}
.l-list--disc-circle .l-list__item:nth-of-type(10)::before {
  content: "⑩";
}
.l-list--disc-circle .l-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}
.l-list--disc-circle .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.l-list--disc-l .l-list__item {
  padding-left: 21px;
  line-height: 2;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #4A4A4A;
}
.l-list--disc-l .l-list__item:not(:first-child) {
  margin-top: 8px;
}
.l-list--disc-l .l-list__item::before {
  position: absolute;
  top: 12px;
  left: 2px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background-color: #0060FB;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .l-list--disc-l .l-list__item::before {
    width: 7px;
    height: 7px;
  }
}
.l-list--disc-l .l-list__item--lh-200::before {
  top: 17px;
}
.l-list--disc-l .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.l-list--check {
  max-width: 800px;
  margin: 0 auto;
}
.l-list--check .l-list__item {
  padding-left: 42px;
}
@media screen and (max-width: 768px) {
  .l-list--check .l-list__item {
    padding-left: 36px;
  }
}
.l-list--check .l-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  content: "";
  background-image: url(/carbon-neutral/images/common/icon_list_check.svg);
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .l-list--check .l-list__item::before {
    top: 4px;
    width: 28px;
    height: 28px;
  }
}
.l-list--annotation .l-list__item {
  padding-left: 18px;
  line-height: 1.5;
  font-size: 13px;
  font-weight: normal;
  color: #525252;
}
.l-list--annotation .l-list__item:not(:first-child) {
  margin-top: 8px;
}
.l-list--annotation .l-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  content: "※";
}
.l-list--annotation .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.l-list--decimal {
  padding-left: 20px;
}
.l-list--decimal .l-list__item {
  line-height: 1.5;
  font-size: 16px;
  font-weight: normal;
  list-style-type: decimal;
}
.l-list--decimal .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.l-list--decimal-l > .l-list__item {
  padding-left: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
  counter-increment: container_counter;
}
@media screen and (max-width: 768px) {
  .l-list--decimal-l > .l-list__item {
    font-size: 16px;
    line-height: 1.75;
  }
}
.l-list--decimal-l > .l-list__item::before {
  position: absolute;
  top: -4px;
  left: 0;
  font-family: Poppins;
  font-size: 24px;
  color: #0060FB;
  content: counter(container_counter) ".";
}
@media screen and (max-width: 768px) {
  .l-list--decimal-l > .l-list__item::before {
    top: -2px;
    font-size: 20px;
  }
}
.l-list--decimal-l > .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.l-list--annotationDecimal > .l-list__item {
  padding-left: 25px;
  line-height: 1.5;
  font-size: 13px;
  font-weight: normal;
  color: #525252;
  counter-increment: container_counter;
}
.l-list--annotationDecimal > .l-list__item:not(:first-child) {
  margin-top: 8px;
}
.l-list--annotationDecimal > .l-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  content: "※" counter(container_counter);
}
.l-list--annotationDecimal > .l-list__item .c-text {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.l-background {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-background {
    min-width: auto;
  }
}
.l-background::before {
  position: absolute;
  width: 1012px;
  height: 593px;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}
.l-background__container {
  z-index: 1;
  min-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-background__container {
    min-width: auto;
  }
}
.l-background--color-blue {
  background-color: #F9F9FB;
}
.l-background--color-gray {
  background-color: #EAEAEB;
}
.l-background[class*=l-background--pattern-]::before {
  background-image: url(/carbon-neutral/images/common/bg_pattern_1.png);
}
.l-background--pattern-1::before {
  top: -220px;
  left: 82%;
  width: 506px;
  transform: rotate(-30deg);
}
@media screen and (min-width: 1440px) {
  .l-background--pattern-1::before {
    right: -150px;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-background--pattern-1::before {
    top: -94px;
    right: -175px;
    left: auto;
    width: 252px;
    height: 148px;
    transform: rotate(-30deg);
  }
}
.l-background--pattern-2::before {
  top: -100px;
  left: 70%;
  transform: rotate(30deg);
}
@media screen and (min-width: 1440px) {
  .l-background--pattern-2::before {
    right: -500px;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-background--pattern-2::before {
    top: -26px;
    right: -135px;
    left: auto;
    width: 252px;
    height: 148px;
    transform: rotate(29.484deg);
  }
}
.l-background--pattern-3::before {
  top: -270px;
  left: 52%;
  transform: rotate(42deg);
}
@media screen and (min-width: 1440px) {
  .l-background--pattern-3::before {
    right: -320px;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-background--pattern-3::before {
    top: -74px;
    right: -100px;
    left: auto;
    width: 252px;
    height: 148px;
    transform: rotate(42deg);
  }
}

.l-point {
  display: flex;
  flex-direction: column;
}
.l-point__imageBox {
  max-width: 164px;
  max-height: 164px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-point__imageBox {
    max-width: 120px;
    max-height: 120px;
  }
}
.l-point__imageBox--104 {
  max-width: 104px;
  max-height: 104px;
}
.l-point__imageBox img {
  width: inherit;
}
.l-point__titleBox {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .l-point__titleBox {
    margin-top: 16px;
  }
}
.l-point__titleBox sub {
  font-size: 11px;
  vertical-align: text-top;
}
.l-point__scopeBox {
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-point__scopeBox {
    text-align: left;
  }
}
.l-point .l-point__scopeText {
  font-family: "OutFit";
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  background: var(--GRADATION-NUM, linear-gradient(147deg, #0060FB 10.38%, #0060FB 57.92%, #B0F137 89.62%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .l-point .l-point__scopeText {
    font-size: 16px;
  }
}
.l-point__titleInner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-point__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #0060FB;
  text-align: center;
}
.l-point__title sup {
  font-size: 13px;
  vertical-align: text-top;
}
@media screen and (max-width: 768px) {
  .l-point__title {
    font-size: 20px;
  }
}
.l-point__title--number {
  display: block;
  font-size: 40px;
  font-family: "OutFit";
  font-weight: 500;
}
.l-point__title--number .c-text {
  color: #0060FB;
  font-weight: bold;
}
.l-point__title--number .c-text sub {
  font-size: 11px;
  vertical-align: text-top;
}
.l-point__textBox {
  margin-top: 16px;
}
.l-point__text {
  font-size: 14px;
  color: #4A4A4A;
}
@media screen and (max-width: 768px) {
  .l-point__text {
    font-size: 13px;
  }
}
.l-point__number {
  font-family: Outfit;
  background: linear-gradient(147deg, #0060fb 10.38%, #0060fb 57.92%, #b0f137 89.62%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-point__number {
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .l-point--icon-l .l-point__imageBox {
    max-width: 164px;
    max-height: 164px;
  }
}

.l-table {
  box-sizing: border-box;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-table {
    overflow-x: scroll;
  }
}
.l-table--960 {
  max-width: 960px;
}
.l-table__table {
  width: 100%;
  table-layout: fixed;
  overflow: hidden;
  box-sizing: border-box;
}
.l-table__iconImage {
  margin: 0 auto;
  width: 100px;
}
.l-table td, .l-table th {
  padding: 24px;
  box-sizing: border-box;
  border: 1px solid #CBCBCD;
}
@media screen and (max-width: 768px) {
  .l-table td, .l-table th {
    padding: 12px;
  }
}
.l-table th {
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(28, 28, 34, 0.07);
}
.l-table th.country {
  width: 144px;
}
.l-table th + td {
  border-left: none;
}
.l-table td {
  box-sizing: border-box;
  vertical-align: middle;
  word-break: break-all;
  background-color: #fff;
}
.l-table__description.l-table__description--leftborder {
  border-left: 1px solid #CBCBCD;
}
.l-table tr th:first-of-type {
  border-left: none;
  border-right: none;
}
.l-table tr:first-of-type th {
  border-top: none;
}
.l-table tr:first-of-type th:first-of-type {
  border-left: none;
}
.l-table tr:first-of-type th:last-of-type {
  border-right: none;
}
.l-table tr:last-of-type th {
  border-bottom: none;
}
.l-table sub {
  font-size: 10px;
  vertical-align: text-top;
}
.l-table--maxWidth {
  max-width: 100%;
}
.l-table--scroll {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-table--scroll {
    padding-bottom: 18px;
    scrollbar-width: thin;
    scrollbar-color: #000 #F0F0F0;
  }
  .l-table--scroll .l-table__table {
    width: 180%;
  }
  .l-table--scroll::-webkit-scrollbar {
    height: 6px;
  }
  .l-table--scroll::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 8px;
  }
  .l-table--scroll::-webkit-scrollbar-track {
    background-color: #F0F0F0;
    border-radius: 8px;
  }
}
@media screen and (max-width: 768px) {
  .l-table--scroll:has(caption) {
    padding-top: 36px;
  }
}
.l-table--scroll caption {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .l-table--scroll caption {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    transform: translateX(-50%);
  }
}
.l-table--scroll caption > * {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-table--scroll caption > * {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-table--scroll-l .l-table__table {
    width: 220%;
  }
}

.l-cta {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-cta {
    padding: 0 16px;
  }
}
.l-cta__container {
  position: relative;
  min-width: 960px;
  padding: 56px 0;
  background: linear-gradient(50deg, #0060FB 0%, #004CC7 100%);
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-cta__container {
    min-width: auto;
    padding: 48px 24px;
    border-radius: 5px;
  }
}
.l-cta__container::before {
  position: absolute;
  top: -356px;
  left: -268px;
  width: 1737px;
  height: 1017px;
  content: "";
  background: url(/carbon-neutral/images/common/bg_pattern_3_pc.svg);
  background-size: 100%;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-cta__container::before {
    top: -50px;
    left: -120px;
    width: 819px;
    height: 480px;
  }
}
.l-cta__container .l-section {
  width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-cta__container .l-section {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-cta__contents {
    max-width: 340px;
    width: fit-content;
    margin: 0 auto;
  }
}
.l-cta__image {
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-cta__image {
    max-width: 224px;
  }
}
.l-cta__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-cta__title {
    font-size: 24px;
  }
}
.l-cta .c-textLink {
  position: relative;
  font-size: 13px;
  color: #fff;
  z-index: 0;
  transition: all ease-out 0.2s;
}
.l-cta .c-textLink::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background: #1b1f27;
  z-index: -1;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .l-cta .c-textLink::before {
    content: none;
  }
}
.l-cta .c-textLink:hover::before {
  width: 100%;
}
.l-cta .l-column--2 {
  gap: 72px;
}
@media screen and (max-width: 768px) {
  .l-cta .l-column--2 {
    gap: 24px;
  }
}
.l-cta .l-column--2 > .l-column__item {
  width: calc((100% - 72px) / 2);
}
.l-cta--overseas {
  display: block;
}
@media screen and (max-width: 768px) {
  .l-cta--overseas .l-cta__container {
    padding: 48px 24px;
  }
}
.l-cta--overseas .l-column--2 {
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .l-cta--overseas .l-column--2 {
    gap: 24px;
  }
}
.l-cta--overseas .l-column--2 > .l-column__item:first-child {
  white-space: nowrap;
  max-width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-cta--overseas .l-column--2 > .l-column__item:first-child {
    white-space: normal;
  }
}
.l-cta--overseas .l-column--2 > .l-column__item:first-child .c-text {
  color: #FFFFFF;
}
.l-cta--overseas .l-column--2 > .l-column__item:last-child {
  align-items: end;
}
.l-cta--overseas .l-column--2 > .l-column__item:last-child .l-cta__contents {
  max-width: 340px;
  width: 100%;
}
.l-cta--noimage .l-cta__title {
  font-size: 20px;
  font-weight: normal;
}
.l-cta--noimage .l-cta__container {
  box-shadow: none;
}
.l-cta--noimage .l-column--2 {
  gap: 64px;
  align-items: center;
}
.l-cta--noimage .l-column__item:nth-of-type(1) {
  width: calc((100% - 64px) * 0.6205);
}
.l-cta--noimage .l-column__item:nth-of-type(2) {
  width: calc((100% - 64px) * 0.3795);
}

.l-footer {
  background: #25282C;
  padding-top: 80px;
  min-width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    min-width: auto;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-section {
    padding: 0 24px;
  }
}
.l-footer__imageText {
  max-width: 340px;
}
@media screen and (max-width: 768px) {
  .l-footer__imageText {
    max-width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-column {
    flex-direction: column;
  }
}

.l-footerCta {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 13.1%, rgba(0, 0, 0, 0.1) 86.9%), #1B1F27;
  padding: 80px 0;
  min-width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-footerCta {
    padding: 40px 0;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footerCta__columnList {
    flex-direction: column;
  }
}
.l-footerCta__columnList .l-footerCta__columnItem {
  width: 100%;
}
.l-footerCta__columnList .l-footerCta__columnItem:nth-of-type(odd) .l-cta__container {
  background: #0150D0;
}
@media screen and (min-width: 1440px) {
  .l-footerCta__columnList .l-footerCta__columnItem:nth-of-type(odd) .l-cta__container::before {
    top: -320px;
    left: -290px;
  }
}
.l-footerCta__columnList .l-footerCta__columnItem:nth-of-type(even) .l-cta__container {
  background: #0362FC;
}
.l-footerCta__columnList .l-footerCta__columnItem:nth-of-type(even) .l-cta__container::before {
  top: -323px;
  left: -916px;
  opacity: 0.03;
}
@media screen and (max-width: 768px) {
  .l-footerCta__columnList .l-footerCta__columnItem:nth-of-type(even) .l-cta__container::before {
    top: -50px;
    left: -120px;
    opacity: 0.06;
  }
}
.l-footerCta .l-section {
  max-width: inherit;
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-section {
    max-width: 1338px;
    width: 100%;
  }
}
.l-footerCta .l-sention__container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.l-footerCta .l-cta__ctaTitle {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .l-footerCta .l-cta__ctaTitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.l-footerCta .l-cta__ctaTitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}
.l-footerCta .l-cta__ctaTitle .l-cta__ctaTitle--samll {
  font-size: 16px;
}
.l-footerCta .l-cta__container {
  display: flex;
  flex-direction: column;
  min-width: inherit;
  padding: 32px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-footerCta .l-cta__container {
    padding: 24px 16px;
  }
}
.l-footerCta .l-cta__title {
  font-size: 20px;
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__title {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__title {
    text-align: left;
  }
}
.l-footerCta .l-cta__ctaSubText {
  color: #ffffff;
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__ctaSubText {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__ctaSubText {
    text-align: left;
  }
}
.l-footerCta .l-cta__baseText {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__baseText {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__baseText {
    text-align: left;
  }
}
.l-footerCta .l-cta__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__card {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__card {
    flex-direction: row;
  }
}
.l-footerCta .l-cta__card.l-column--2 .l-column__item {
  width: 100%;
}
.l-footerCta .l-cta__card.l-column--2 .l-column__item:nth-of-type(3) {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__card.l-column--2 .l-column__item {
    flex-direction: row;
  }
  .l-footerCta .l-cta__card.l-column--2 .l-column__item:nth-of-type(1) {
    width: calc((100% - 32px) * 0.43795);
  }
  .l-footerCta .l-cta__card.l-column--2 .l-column__item:nth-of-type(2) {
    width: calc((100% - 32px) * 0.51094);
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__card.l-column--2 .l-column__item {
    width: 100%;
  }
}
.l-footerCta .l-cta__card.l-column--2 .c-button {
  flex: 0;
  margin: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .l-footerCta .l-cta__card.l-column--2 .c-button {
    padding: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__card.l-column--2 .c-button {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__card.l-column--2 .c-button {
    max-width: 340px;
    flex: 1;
  }
}
.l-footerCta .l-cta__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .l-footerCta .l-cta__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__contents {
    align-items: start;
  }
}
.l-footerCta__inner {
  margin: 0 auto;
}
.l-footerCta__titleWrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.l-footerCta__titleSub {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footerCta__titleSub {
    font-size: 14px;
    line-height: 140%;
  }
}
.l-footerCta__titleMain {
  display: inline-block;
  font-size: 44px;
  font-weight: 700;
  padding: 0 12px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 13.1%, rgba(0, 0, 0, 0.1) 86.9%), #1B1F27;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-footerCta__titleMain {
    font-size: 32px;
  }
}
.l-footerCta__titleMain--small {
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .l-footerCta__titleMain--small {
    font-size: 24px;
  }
}
.l-footerCta__titleMainWrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.l-footerCta__textDecoration {
  position: absolute;
  color: #ffffff;
  font-size: 26px;
  left: 14.7%;
  top: -46%;
}
@media screen and (max-width: 768px) {
  .l-footerCta__textDecoration {
    font-size: 17px;
    left: 4.7%;
    top: -14%;
  }
}
.l-footerCta__textDecoration::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .l-footerCta__textDecoration::before {
    width: 64px;
    height: 64px;
  }
}
.l-footerCta .l-cta__image {
  max-width: 160px;
}
@media screen and (max-width: 768px) {
  .l-footerCta .l-cta__image {
    max-width: 240px;
  }
}
@media screen and (min-width: 1440px) {
  .l-footerCta .l-cta__image {
    max-width: 240px;
  }
}

.l-footerCopy {
  background: #25282C;
  padding: 80px 0 80px 0;
  min-width: 1040px;
}
@media screen and (max-width: 768px) {
  .l-footerCopy {
    min-width: auto;
    padding: 48px 0;
  }
}
.l-footerCopy__link.c-textLink {
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: all ease-out 0.2s;
}
.l-footerCopy__link.c-textLink:hover {
  font-weight: 700;
  text-decoration: underline;
}
.l-footerCopy__linkList {
  display: flex;
  gap: 8px 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-footerCopy__linkList {
    gap: 24px 32px;
    justify-content: center;
  }
}
.l-footerCopy__copyText {
  color: #ffffff;
  font-size: 10px;
  text-align: right;
  font-family: "Poppins";
}
@media screen and (max-width: 768px) {
  .l-footerCopy__copyText {
    text-align: center;
  }
}
.l-footerCopy__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-footerCopy__container {
    flex-direction: column;
  }
}
.l-footerCopy__textWrap {
  flex: 1;
}
.l-footerCopy__logoWrap {
  width: 386px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l-footerCopy__logoWrap {
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footerCopy__logoWrap .c-image {
    max-width: 240px;
    width: 100%;
  }
}

.l-heading {
  position: relative;
  background-color: #F9F9FB;
}
.l-heading__inner {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-heading__inner {
    padding: 48px 0;
  }
}
.l-heading__title {
  line-height: 1.4;
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-heading__title {
    font-size: 34px;
  }
}
.l-heading__subTitle {
  line-height: 1.9;
  font-size: 20px;
}
.l-heading__subTitle + .l-heading__title {
  margin-top: 24px;
}

.l-description .c-textLink {
  font-size: inherit;
  display: inline;
  color: #525252;
}
.l-description__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-description__item {
    flex-direction: column;
  }
}
.l-description__item:not(:first-of-type) {
  margin-top: 16px;
}
.l-description__contents {
  flex: 1;
}
.l-description__contents--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-description--word {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .l-description--word {
    padding-left: 0;
  }
}
.l-description--word .l-description__item {
  gap: 32px;
  padding: 32px 40px;
  background-color: rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .l-description--word .l-description__item {
    gap: 8px;
    padding: 24px;
  }
}
.l-description--word .l-description__title {
  position: relative;
  min-width: 240px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #0060FB;
}
@media screen and (max-width: 768px) {
  .l-description--word .l-description__title {
    min-width: auto;
  }
}
.l-description--word .l-description__title::before {
  position: absolute;
  top: 14px;
  left: -50px;
  width: 34px;
  height: 2px;
  content: "";
  background-color: #D9D9D9;
}
@media screen and (max-width: 768px) {
  .l-description--word .l-description__title::before {
    left: -32px;
    width: 24px;
  }
}
.l-description--word .l-description__contents .c-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.75;
  color: #4A4A4A;
}
.l-description--reference .l-description__item {
  gap: 64px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  .l-description--reference .l-description__item {
    gap: 8px;
    padding: 24px;
  }
}
.l-description--reference .l-description__title {
  font-weight: bold;
  line-height: 2;
  color: #4A4A4A;
}
.l-description--reference .l-description__contents {
  position: relative;
}
.l-description--reference .l-description__contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: #CBCBCD;
}
@media screen and (max-width: 768px) {
  .l-description--reference .l-description__contents::before {
    content: none;
  }
}
.l-description--reference .l-description__contents .c-text {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  color: #525252;
}
.l-description--reference .l-description__contents .c-textLink {
  transition: all ease-out 0.2s;
}
.l-description--reference .l-description__contents .c-textLink:hover {
  font-weight: 700;
  color: #1B1F27;
}
.l-description--outline .l-description__item {
  padding: 32px 40px;
  border: 4px solid rgba(0, 0, 0, 0.04);
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .l-description--outline .l-description__item {
    gap: 8px;
    padding: 24px;
  }
}
.l-description--outline .l-description__title {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 700;
}

.l-article__item {
  position: relative;
  padding: 32px 48px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-article__item {
    padding: 32px 24px;
  }
}
.l-article__item:not(:first-of-type) {
  margin-top: 32px;
}
.l-article__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 14px;
  content: "";
  background-image: url(/carbon-neutral/images/common/icon_article.png);
  background-size: 100%;
}
.l-article__item--simple::before {
  content: none;
}
.l-article__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .l-article__title {
    font-size: 20px;
  }
}
.l-article__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  color: #4A4A4A;
}
@media screen and (max-width: 768px) {
  .l-article__text {
    font-size: 13px;
    line-height: 1.75;
  }
}
.l-article__titleBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-article__titleBox {
    flex-direction: column;
  }
}
.l-article__titleWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.l-article__titleWrap .l-article__titleBox {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 49.0740740741%;
}
.l-article__titleWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.l-article__titleWrap .l-article__titleBox {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 49.0740740741%;
}
.l-article__imageBox {
  width: 256px;
}
@media screen and (max-width: 768px) {
  .l-article__imageBox {
    width: 100%;
  }
}
.l-article__imageBox + .l-article__textBox {
  margin-top: 24px;
}
.l-article__textBox {
  width: 560px;
}
@media screen and (max-width: 768px) {
  .l-article__textBox {
    width: 100%;
  }
}
.l-article__labelBox {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 49.0740740741%;
}
@media screen and (max-width: 768px) {
  .l-article__labelBox {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
.l-article__labelWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .l-article__labelWrap {
    margin-top: 24px;
  }
}
.l-article__label {
  min-width: 150px;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  text-align: center;
  color: #0060FB;
  background-color: rgba(46, 49, 73, 0.04);
  border-radius: 50vh;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-article__label {
    width: 100%;
    font-size: 13px;
    line-height: 1.75;
  }
}
.l-article__labelText {
  font-size: 14px;
  line-height: 1.5;
  color: #4A4A4A;
}
@media screen and (max-width: 768px) {
  .l-article__labelText {
    width: 100%;
    font-size: 13px;
  }
}
.l-article__contents {
  margin-top: 32px;
}
.l-article__arrow {
  position: relative;
}
.l-article__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 28px;
  background: url("/carbon-neutral/images/common/icon_article_arrow.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-38px, -50%);
}
.l-article__check {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 44.4444444444%;
}
@media screen and (max-width: 768px) {
  .l-article__check {
    width: 100%;
  }
}
.l-article__check.l-list__item {
  padding-left: 36px;
  align-items: baseline;
}
.l-article__check.l-list__item:not(:first-child) {
  margin-top: 0;
}
.l-article__check.l-list__item::before {
  width: 28px;
  height: 28px;
}
.l-article__checkWrap {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #EBEBED;
}
.l-article__contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-article__contact {
    display: block;
  }
}
.l-article__contact--list .l-list__item:not(:first-child) {
  margin-top: 16px;
}
.l-article__contact--button {
  width: 340px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-article__contact--button {
    width: 100%;
  }
}
.l-article__contact--button .c-button--submit {
  margin-inline: auto;
  padding: 20px 48px;
}
.l-article--col .l-article__item {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .l-article--col .l-article__item {
    flex-direction: column;
    gap: 54px;
  }
}
.l-article--col .l-article__container {
  position: relative;
  flex: 1;
}
.l-article--col .l-article__container:nth-of-type(2)::before {
  position: absolute;
  top: 50%;
  left: -59px;
  width: 22px;
  height: 28px;
  content: "";
  background: url("/carbon-neutral/images/common/icon_article_arrow.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .l-article--col .l-article__container:nth-of-type(2)::before {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.l-article--col .l-article__title {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .l-article--col .l-article__title {
    font-size: 18px;
  }
}
.l-article--col .l-article__labelBox {
  width: 100%;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
  touch-action: none; /* iOSのスクロール制御 */
}

.l-header {
  position: fixed;
  background: #FFF;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 85px;
  top: 0;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: auto;
  }
}
.l-header__wrap {
  flex: 1;
  height: 100%;
}
.l-header__logo {
  display: flex;
  align-items: center;
  min-width: 150px;
  max-width: 150px;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    padding-left: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-header__logo {
    min-width: 150px;
    max-width: 150px;
    padding-left: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__logo {
    width: 250px;
    max-width: inherit;
    padding-left: 40px;
  }
}
.l-header__logo img {
  width: 100%;
}
.l-header__inner {
  display: flex;
  gap: 32px;
  flex: 1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 12px 8px 12px 16px;
    justify-content: space-between;
  }
}
.l-header__linkMainWrap {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  min-width: 834px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .l-header__linkMainWrap {
    min-width: inherit;
    align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .l-header__linkMainWrap {
    gap: 8px;
    min-width: 834px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__linkMainWrap {
    gap: 32px;
  }
}
.l-header__gnav {
  display: flex;
  align-items: center;
}
.l-header__gnavList {
  display: flex;
  gap: 0px;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .l-header__gnavList {
    gap: 0px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__gnavList {
    gap: 16px;
  }
}
.l-header__spwrap {
  display: flex;
  max-height: 65px;
  padding: 12px 8px 12px 16px;
  box-sizing: border-box;
}
.l-header__gnavItem {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.l-header__gnavItem.-open {
  background: #F9F9FB;
}
.l-header__gnavItem.-open .l-header__subMenu {
  opacity: 1;
  visibility: visible;
}
.l-header__gnavItem--dropDown .l-header__gnavTextLink::before {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%);
  background: url(/carbon-neutral/images/common/icon_arrowDown.svg) no-repeat;
  background-size: contain;
}
.l-header__gnavItem.-open .l-header__gnavTextLink::before {
  transform: translate(-50%, 0) rotate(180deg);
}
.l-header__subMenu {
  position: absolute;
  padding: 46px 40px;
  width: 100%;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: rgba(246, 246, 248, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  cursor: auto;
}
.l-header__subMenu:hover {
  opacity: 1;
  visibility: visible;
}
.l-header__subMenuList {
  display: flex;
  gap: 32px;
}
.l-header__subMenuListItem {
  width: calc((100% - 64px) / 3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #CBCBCD;
}
.l-header__subMenuListItem:last-of-type {
  border-right: none;
}
.l-header__subMenuLink {
  color: #1B1F27;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -3em 0 #1B1F27, 0 0 0 #1B1F27;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header__subMenuLink {
    text-shadow: none;
  }
}
.l-header__subMenuLink:hover {
  text-shadow: 0 0 0 #0060FB, 0 3em 0 #0060FB;
}
.l-header__gnavTextLink {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  flex: 1 1 auto;
  padding: 0 8px;
  color: #2D2D2D;
  font-size: 13px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  transition: all ease-out 0.2s;
}
@media screen and (min-width: 960px) {
  .l-header__gnavTextLink {
    font-size: 13px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__gnavTextLink {
    font-size: 14px;
  }
}
.l-header__gnavTextLink:hover {
  background-color: #F9F9FB;
}
.l-header__gnavTextLink:hover .l-header__gnavTextLinkInner {
  text-shadow: 0 0 0 #0060FB, 0 1.5em 0 #0060FB;
}
.l-header__gnavTextLinkInner {
  display: inline-block;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #1B1F27, 0 0 0 #1B1F27;
  transition: text-shadow 0.3s;
  white-space: nowrap;
}
.l-header__otherLink {
  display: flex;
}
.l-header__otherLinkList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .l-header__otherLinkList {
    align-items: normal;
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__otherLinkList {
    gap: 24px;
    align-items: center;
    flex-direction: row;
  }
}
.l-header__otherLinkItem {
  text-align: center;
  border-radius: 100px;
  background: #F0F0F0;
}
@media screen and (min-width: 960px) {
  .l-header__otherLinkItem {
    text-align: center;
    border-radius: 100px;
    background: #F0F0F0;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__otherLinkItem {
    background: inherit;
    border-radius: 0;
  }
}
.l-header__otherLinkText {
  color: rgba(45, 45, 45, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 150%; /* 18px */
  text-decoration: none;
  padding: 4px 12px 5px;
  display: block;
  text-underline-offset: 4px;
  text-decoration: none;
  transition: all ease-out 0.2s;
}
@media screen and (min-width: 960px) {
  .l-header__otherLinkText {
    padding: 4px 12px 5px;
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__otherLinkText {
    padding: 0;
  }
}
.l-header__otherLinkText:hover {
  color: #0060FB;
  text-decoration: underline;
}
.l-header__ctaButton {
  position: relative;
  background: var(--THEME-BLUE, #0060FB);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 16px 12px 28px;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .l-header__ctaButton {
    padding: 8px;
    border-radius: 2px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__ctaButton {
    padding: 0 12px 12px 12px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__ctaButton {
    padding: 27px 24px 35px;
  }
}
.l-header__ctaButton:hover {
  background-color: #6DFC54;
}
.l-header__ctaButton:hover::before {
  background-image: none;
  background-color: #1B1F27;
  mask-image: url(/carbon-neutral/images/common/icon_sitelinkAnchor.svg);
  mask-size: 100%;
}
.l-header__ctaButton:hover .l-header__ctaButtonText {
  text-shadow: 0 0 0 #1B1F27, 0 3em 0 #1B1F27;
}
.l-header__ctaButton::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/carbon-neutral/images/common/icon_sitelinkAnchor.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  left: 50%;
  bottom: 12px;
  transform: translate(-50%, 0%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .l-header__ctaButton::before {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__ctaButton::before {
    bottom: 8px;
  }
}
.l-header__ctaButton.-open {
  background-color: #1B1F27;
}
.l-header__ctaButton.-open::before {
  transform: translate(-50%, 0) rotate(270deg);
}
.l-header__ctaButton.-open .l-header__ctaButtonText {
  text-shadow: none;
  color: #fff;
}
.l-header__ctaButton.-open:hover .l-header__ctaButtonText {
  text-shadow: none;
  color: #fff !important;
}
.l-header__ctaButton.-open:hover::before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header__ctaButton.-hidden {
    background-color: #0060FB;
  }
}
@media screen and (max-width: 768px) {
  .l-header__ctaButton.-hidden .l-header__ctaButtonText {
    text-shadow: 0 0 0 #fff, 0 3em 0 #fff;
  }
}
.l-header__ctaButtonText {
  position: relative;
  color: #fff;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  line-height: 150%; /* 22.5px */
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -3em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header__ctaButtonText {
    font-size: 12px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__ctaButtonText {
    font-size: 13px;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__ctaButtonText {
    font-size: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__ctaButtonText .u-only-pc {
    display: none !important;
  }
}
.l-header__ctaBox {
  position: absolute;
  padding: 40px 64px;
  width: 100%;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  opacity: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 13.1%, rgba(0, 0, 0, 0.1) 86.9%), rgba(27, 31, 39, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-header__ctaBox {
    height: 77svh;
  }
}
.l-header__ctaBox.-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.l-header__ctaBox:hover {
  opacity: 1;
  visibility: visible;
}
.l-header .l-section {
  max-width: inherit;
}
@media screen and (min-width: 769px) {
  .l-header .l-section {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header .l-section {
    max-width: 1338px;
    width: 100%;
  }
}
.l-header .l-sention__container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.l-header .l-cta__ctaTitle {
  position: relative;
  margin-inline: auto;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__ctaTitle {
    font-size: 14px;
  }
}
.l-header .l-cta__ctaTitle .l-cta__ctaTitle--samll {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__ctaTitle .l-cta__ctaTitle--samll {
    font-size: 12px;
  }
}
.l-header .l-cta__container {
  display: flex;
  flex-direction: column;
  min-width: inherit;
  padding: 16px;
  height: 100%;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__container {
    background: linear-gradient(99deg, #0060FB 17.68%, #004CC7 82.32%);
    padding: 16px 16px 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__container::before {
    content: "";
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__container::after {
    content: "";
    display: block;
    position: absolute;
    background: url(/carbon-neutral/images/common/icon_greenButton.png) no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    right: 16px;
    bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-header__columnList {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-header__columnList .l-header__columnItem {
    width: 100%;
  }
}
.l-header .l-cta__columnList .l-cta__columnItem:nth-of-type(odd) .l-cta__container {
  background: #0150D0;
}
@media screen and (min-width: 1440px) {
  .l-header .l-cta__columnList .l-cta__columnItem:nth-of-type(odd) .l-cta__container::before {
    top: -323px;
    left: -916px;
    opacity: 0.03;
  }
}
.l-header .l-cta__columnList .l-cta__columnItem:nth-of-type(even) .l-cta__container {
  background: #0362FC;
}
.l-header .l-cta__columnList .l-cta__columnItem:nth-of-type(even) .l-cta__container::before {
  top: -410px;
  left: -1290px;
}
.l-header .l-cta__title {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__title {
    text-align: left;
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__title {
    text-align: left;
  }
}
.l-header .l-cta__ctaSubText {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__ctaSubText {
    text-align: left;
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__ctaSubText {
    text-align: left;
  }
}
.l-header .l-cta__baseText {
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__baseText {
    text-align: left;
  }
}
.l-header .l-cta__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__card {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__card {
    flex-direction: row;
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header .l-cta__card {
    gap: 32px;
  }
}
.l-header .l-cta__card.l-column--2 .l-column__item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(1) {
    width: calc((100% - 16px) * 0.43795);
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(2) {
    width: calc((100% - 16px) * 0.51094);
    flex: 1 1 auto;
  }
}
.l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(3) {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__card.l-column--2 .l-column__item {
    flex-direction: row;
  }
  .l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(1) {
    width: 150px;
  }
  .l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(2) {
    width: 278px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header .l-cta__card.l-column--2 .l-column__item {
    flex-direction: row;
  }
  .l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(1) {
    width: 200px;
  }
  .l-header .l-cta__card.l-column--2 .l-column__item:nth-of-type(2) {
    width: 268px;
  }
}
.l-header .l-cta__card.l-column--2 .c-button {
  flex: 0;
  margin: 0;
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__card.l-column--2 .c-button {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .l-header .l-cta__card.l-column--2 .c-button {
    max-width: 340px;
  }
}
.l-header .l-cta__card.l-column--2 .c-button--cta {
  padding: 16px 40px;
}
.l-header .l-cta__card.l-column--2 .c-button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.28px;
}
.l-header .l-cta__card.l-column--2 .c-button__label {
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.26px;
  border: 1px solid #1B1F27;
  border-radius: 100px;
}
.l-header .l-cta__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__contents {
    align-items: flex-start;
  }
}
@media screen and (min-width: 769px) {
  .l-header .l-cta__contents {
    align-items: start;
  }
}
.l-header__inner {
  margin: 0 auto;
}
.l-header__titleWrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.l-header__titleSub {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.l-header__titleMain {
  display: inline-block;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 13.1%, rgba(0, 0, 0, 0.1) 86.9%), #1B1F27;
  z-index: 1;
}
.l-header__titleMainWrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.l-header__textDecoration {
  position: absolute;
  color: #ffffff;
  font-size: 26px;
  left: 13%;
  top: -38%;
}
.l-header__textDecoration::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.l-header .l-cta__image {
  max-width: 160px;
}
@media screen and (max-width: 768px) {
  .l-header .l-cta__image {
    max-width: 120px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header .l-cta__image {
    max-width: 200px;
  }
}
.l-header__toggleWrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 40px;
  padding: 7px 5px 2px;
  gap: 5px;
}
.l-header__toggleWrap.-open .l-header__toggleLine:nth-of-type(1) {
  transform: translateX(-50%) rotate(30deg);
  top: 50%;
}
.l-header__toggleWrap.-open .l-header__toggleLine:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggleWrap.-open .l-header__toggleLine:nth-of-type(3) {
  transform: translateX(-50%) rotate(-30deg);
  top: 50%;
}
.l-header__toggle {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header__toggle {
    width: 28px;
    height: 14px;
  }
}
.l-header__toggleLine {
  position: absolute;
  display: block;
  top: calc(50% - 1px);
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  background-color: #0060FB;
  transition: all 0.2s ease;
}
.l-header__toggleLine:nth-of-type(1) {
  top: 0;
}
.l-header__toggleLine:nth-of-type(2) {
  top: 7px;
}
.l-header__toggleLine:nth-of-type(3) {
  top: 14px;
}
.l-header .l-header__togleTitle {
  font-weight: 700;
  color: #0060FB;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__togleTitle {
    font-size: 8px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .c-button--close {
    font-size: 14px;
    font-weight: 700;
  }
}
.l-header.js-uaCheck.is-active .l-header__gnavTextLinkInner {
  font-size: 12px;
  color: #1B1F27;
  text-shadow: none;
}
.l-header.js-uaCheck.is-active .l-header__subMenuLink {
  color: #1B1F27;
  text-shadow: none;
}
.l-header.js-uaCheck.is-active .l-header__ctaButtonText {
  color: #fff;
  text-shadow: none;
}
.l-header.js-uaCheck.is-active .l-header__ctaButton:hover .l-header__ctaButtonText {
  color: #1B1F27;
}
.l-header.js-uaCheck.is-active .l-header__ctaButton.-hidden {
  background-color: #0060FB;
}
.l-header.js-uaCheck.is-active .l-header__ctaButton.-hidden .l-header__ctaButtonText {
  color: #fff;
}
.l-header.js-uaCheck.is-active .l-header__ctaButton.-hidden::before {
  background-color: #fff;
  background-image: none;
  mask-image: url(/carbon-neutral/images/common/icon_sitelinkAnchor.svg);
  mask-size: 100%;
}

@keyframes slideInClip {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slideOutClip {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
.l-forms {
  display: flex;
  gap: 64px;
  color: #1B1F27;
}
@media screen and (max-width: 768px) {
  .l-forms {
    flex-direction: column;
    gap: 40px;
  }
}
.l-forms__left {
  width: 393px;
}
@media screen and (max-width: 768px) {
  .l-forms__left {
    width: 100%;
  }
}
.l-forms__right {
  width: 503px;
}
@media screen and (max-width: 768px) {
  .l-forms__right {
    width: 100%;
  }
}
.l-forms__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .l-forms__title {
    font-size: 24px;
  }
}
.l-forms__title span {
  display: block;
  font-weight: bold;
  line-height: 1.4;
}
.l-forms__subTitle {
  color: #4A4A4A;
}
.l-forms__subTitle + .l-forms__title {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .l-forms__subTitle + .l-forms__title {
    margin-top: 8px;
  }
}
.l-forms__thumbnail {
  margin-top: 32px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-forms__thumbnail {
    max-width: 240px;
    margin: 0 auto;
    margin-top: 32px;
  }
}
.l-forms__thumbnail--half {
  max-width: 50%;
}
.l-forms__thumbnail--350 {
  max-width: 350px;
}
.l-forms__thumbnail--shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.l-forms__names {
  margin-top: 24px;
  font-weight: bold;
}
.l-forms__names--required {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-forms__names--required span {
  padding: 3px 6px 4px 6px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #EC2C18;
  color: #EC2C18;
}
.l-forms__check {
  margin-top: 32px;
  padding: 24px 32px;
  background-color: #F9F9FB;
}
@media screen and (max-width: 768px) {
  .l-forms__check {
    padding: 16px 24px;
    margin-top: 24px;
  }
}
.l-forms__personal {
  padding: 24px 32px;
  background-color: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  .l-forms__personal {
    padding: 16px 24px;
    margin-top: 24px;
  }
}
.l-forms .elq-form .elq-label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  margin-top: 24px;
  color: #1B1F27;
}
.l-forms .elq-form .elq-label:has(.elq-required)::after {
  content: "必須";
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  width: max-content;
  padding: 3px 6px 4px 6px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #EC2C18;
  color: #EC2C18;
  transform: translate(0, -50%);
}
.l-forms .elq-form .elq-label .elq-required {
  display: none;
}
.l-forms .elq-form .single-checkbox-row {
  margin-top: 8px;
  line-height: 1;
}
.l-forms .elq-form .field-control-wrapper {
  line-height: 1;
}
.l-forms .elq-form input,
.l-forms .elq-form textarea {
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  border-color: #CCCCCC;
}
.l-forms .elq-form input::placeholder,
.l-forms .elq-form textarea::placeholder {
  color: #B3B3B3;
}
.l-forms .elq-form input {
  position: relative;
  margin-top: 8px;
  font-size: 16px;
}
.l-forms .elq-form input[type=checkbox] {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  appearance: none;
}
.l-forms .elq-form input[type=checkbox]::after {
  content: "同意します";
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  width: max-content;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  color: #1B1F27;
  transform: translate(0, -50%);
}
.l-forms .elq-form input[type=checkbox].LV_valid_field {
  border-color: #0060FB;
  background: #0060FB;
}
.l-forms .elq-form input[type=checkbox].LV_valid_field::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: url("/carbon-neutral/images/common/icon_form_check.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}
.l-forms .elq-form input[type=text], .l-forms .elq-form input[type=tel], .l-forms .elq-form input[type=email] {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  line-height: 1.5;
}
.l-forms .elq-form input[type=Submit] {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-top: 32px;
  margin-inline: auto;
  padding: 24px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  box-sizing: border-box;
  outline: none;
  position: relative;
  border-radius: 2px;
  background: #0060FB;
  background-image: url(/carbon-neutral/images/common/icon_btn_arrow_white.png);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  border: none;
  transition: all ease-out 0.2s;
}
.l-forms .elq-form input[type=Submit]:hover {
  cursor: pointer;
  color: #1B1F27;
  background-color: #6DFC54;
  background-image: url(/carbon-neutral/images/common/icon_btn_arrow_black.png);
}
.l-forms .elq-form textarea {
  position: relative;
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  box-sizing: border-box;
}
.l-forms .elq-form .LV_valid_field,
.l-forms .elq-form input.LV_valid_field:active,
.l-forms .elq-form input.LV_valid_field:hover,
.l-forms .elq-form textarea.LV_valid_field:active,
.l-forms .elq-form textarea.LV_valid_field:hover {
  border-color: #00CC00;
  appearance: none;
}
.l-forms .elq-form .LV_invalid_field,
.l-forms .elq-form input.LV_invalid_field:active,
.l-forms .elq-form input.LV_invalid_field:hover,
.l-forms .elq-form textarea.LV_invalid_field:active,
.l-forms .elq-form textarea.LV_invalid_field:hover {
  border-color: #EC2C18;
  appearance: none;
}
.l-forms .elq-form .LV_valid {
  display: none;
}
.l-forms .elq-form .LV_invalid {
  color: #EC2C18;
  font-size: 13px;
}
.l-forms .l-list {
  display: block;
}
.l-forms .l-list__item {
  margin-top: 8px;
  padding-left: 36px;
}
.l-forms .l-list__item::before {
  top: 0;
  width: 28px;
  height: 28px;
  background-size: 100%;
  transform: translateY(0);
}
.l-forms .l-list__item .c-text {
  font-weight: normal;
}
.l-forms .l-list__item .c-text--s {
  line-height: 1.75;
  font-size: 16px;
}
.l-forms .l-list__item .c-text--xs {
  line-height: 1.5;
  font-size: 14px;
}

.l-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-card {
    padding: 24px;
  }
}
.l-card__floatText {
  font-family: Outfit;
  position: absolute;
  top: 24px;
  left: 16px;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #0060FB;
  writing-mode: vertical-rl;
  text-orientation: unset;
}
@media screen and (max-width: 768px) {
  .l-card__floatText {
    top: 24px;
    left: 16px;
  }
}
.l-card__floatText--right {
  left: auto;
  right: 16px;
}
.l-card__floatText > span {
  font-family: Outfit;
}
.l-card__floatText > .l-card__floatText--number {
  margin-top: 4px;
  background: linear-gradient(237deg, #0060FB 10%, #0060FB 57%, #B0F137 88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-card__imageBox {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-card__imageBox {
    width: 80px;
    height: 80px;
  }
}
.l-card__image {
  width: 100%;
}
.l-card__textBox {
  margin-top: 24px;
}
.l-card__titleInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #0060FB;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-card__title {
    font-size: 18px;
  }
}
.l-card__title sub {
  font-size: 12px;
  vertical-align: text-top;
}
.l-card__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  color: #4a4a4a;
}
@media screen and (max-width: 768px) {
  .l-card__text {
    margin-top: 8px;
    font-size: 13px;
  }
}
.l-card--tag {
  padding: 32px 40px;
}
.l-card--tag .l-card__imageBox {
  width: 80px;
  height: 80px;
  margin: 0;
}
.l-card--tag .l-card__title {
  color: #1B1F27;
  font-size: 18px;
  text-align: left;
}
.l-card--tag .l-card__floatText {
  right: -6px;
  left: inherit;
}

.l-accordion {
  width: 100%;
  box-sizing: border-box;
}
.l-accordion__item {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.l-accordion__item + .l-accordion__item {
  margin-top: 16px;
}
.l-accordion__labelWrap {
  position: relative;
  padding: 24px 64px 24px 83px;
  cursor: pointer;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .l-accordion__labelWrap {
    padding: 24px 56px 24px 60px;
  }
}
.l-accordion__labelWrap::before {
  font-family: Outfit;
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  content: "Q";
  background: linear-gradient(147deg, #0060FB 10.38%, #0060FB 57.92%, #B0F137 89.62%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .l-accordion__labelWrap::before {
    left: 24px;
    font-size: 24px;
  }
}
.l-accordion__labelWrap:hover .l-accordion__label {
  color: #0060FB;
}
.l-accordion__label {
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #1B1F27;
  text-align: left;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .l-accordion__label {
    line-height: 1.5;
  }
}
.l-accordion__label--open .l-accordion__icon .l-accordion__iconInner::before {
  transform: translate(-50%, 0) rotate(90deg);
}
.l-hamburger .l-accordion__label {
  font-size: 14px !important;
}

.l-accordion__icon {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  width: 16px;
  height: 16px;
}
.l-accordion__icon .l-accordion__iconInner {
  position: relative;
  display: block;
}
.l-accordion__icon .l-accordion__iconInner::before, .l-accordion__icon .l-accordion__iconInner::after {
  transition: all 0.3s;
  position: absolute;
  content: "";
  background-color: #1B1F27;
  display: block;
  width: 2px;
  height: 16px;
  top: 0;
  left: 50%;
  border-radius: 2px;
}
.l-accordion__icon .l-accordion__iconInner::after {
  left: 55%;
  transform: translate(-50%, 0) rotate(90deg);
}
.l-accordion__detail {
  max-height: 0;
  pointer-events: all;
  transition: max-height ease 0.4s;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-accordion__detail.open .l-hamburger__link {
  font-size: 14px !important;
}
.l-accordion__detailContents {
  padding: 0 82px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .l-accordion__detailContents {
    padding: 0 24px 24px 60px;
  }
}
.l-accordion__detailContents * {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-accordion__detailContents::-webkit-scrollbar, .l-accordion__detailContents *::-webkit-scrollbar {
  display: none;
}
.l-accordion__detailContents .c-text {
  font-size: 14px;
  color: #4A4A4A;
}
.l-accordion--hamburger .l-accordion__labelWrap {
  padding: 20px 32px 20px 16px;
}
.l-accordion--hamburger .l-accordion__labelWrap::before {
  content: "";
}
.l-accordion--hamburger .l-accordion__item {
  box-shadow: inherit;
}
.l-accordion--hamburger .l-accordion__label {
  color: var(--MAIN-BLACK, #1B1F27);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%; /* 21px */
}
.l-accordion--hamburger .l-accordion__icon {
  right: -5px;
  width: 14px;
  height: 14px;
}
.l-accordion--hamburger .l-accordion__iconInner::before {
  height: 14px;
}
.l-accordion--hamburger .l-accordion__iconInner::after {
  height: 14px;
}
.l-accordion--hamburger .l-accordion__detailContents {
  padding: 0;
}
.l-accordion--hamburger .l-accordion__detail {
  background: #F9F9FB;
}
.l-accordion--hamburger .l-hamburger__link {
  margin-left: 28px;
}

.l-step {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-step {
    flex-direction: column;
  }
}
.l-step__floating {
  display: block;
  position: absolute;
  left: 0;
  width: 320px;
}
.l-step__floating.is-fixed {
  position: fixed;
}
@media screen and (max-width: 768px) {
  .l-step__floating {
    display: none;
  }
}
.l-step__floatingList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.l-step__floatingItem {
  display: flex;
  gap: 8px;
  opacity: 0.5;
  transition: 0.3s all ease;
}
.l-step__floatingItem.-active {
  opacity: 1;
}
.l-step__floatingItem.-active .l-step__floatingText {
  color: #0060FB;
}
.l-step__floatingNumberBox {
  min-width: 21px;
}
.l-step .l-step__floatingText {
  color: #4A4A4A;
  line-height: 150%; /* 24px */
  font-weight: 700;
}
.l-step__list {
  width: 536px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .l-step__list {
    gap: 64px;
    width: 100%;
  }
}
.l-step__listItem {
  position: relative;
  display: flex;
  gap: 64px;
  padding: 32px 32px 24px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .l-step__listItem {
    gap: 48px;
    padding: 0 16px;
  }
}
.l-step__listItem::before {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 101%;
  height: auto;
  aspect-ratio: 600/40;
  content: "";
  background-image: url(/carbon-neutral/images/common/img_step_arrow_white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, 0.03));
}
@media screen and (max-width: 768px) {
  .l-step__listItem::before {
    left: 50%;
    width: 120%;
    transform: translateX(-50%);
  }
}
.l-step__listItem--color-blue {
  background-color: #F9F9FB;
}
.l-step__numberBox {
  flex: 0 0 auto;
  width: 42px;
}
@media screen and (max-width: 768px) {
  .l-step__numberBox {
    width: 28px;
  }
}
.l-step__numberBoxInner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-step__stepText {
  color: #0060FB;
  font-family: Outfit;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%; /* 12px */
}
@media screen and (max-width: 768px) {
  .l-step__stepText {
    font-size: 10px;
  }
}
.l-step__numberText {
  text-align: center;
  font-family: Outfit;
  font-size: 64px;
  font-weight: 500;
  line-height: 100%; /* 64px */
  background: var(--GRADATION-NUM, linear-gradient(147deg, #0060FB 10.38%, #0060FB 57.92%, #B0F137 89.62%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .l-step__numberText {
    font-size: 32px;
  }
}
.l-step__textBox {
  position: relative;
}
.l-step__textBox::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 1px;
  left: -32px;
  background-color: #CBCBCD;
}
.l-step--bg-gray .l-step__listItem {
  background-color: #F9F9FB;
}
.l-step--bg-gray .l-step__listItem::before {
  background-image: url(/carbon-neutral/images/common/img_step_arrow_gray.svg);
}

.l-hamburger {
  position: fixed;
  display: none;
  top: 65px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 13.1%, rgba(0, 0, 0, 0.1) 86.9%), rgba(27, 31, 39, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 98;
  width: 100vw;
  height: calc(100dvh - 77px);
  opacity: 0;
  transition: all 0.4s ease;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  overflow: auto;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger.-open {
  animation: slideInClip 0.4s ease forwards;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.l-hamburger.-hidden {
  animation: slideOutClip 0.4s ease forwards;
  visibility: hidden;
  pointer-events: all;
}
.l-hamburger__bg {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: #fff;
}
.l-hamburger__wrap {
  padding: 8px 0px 40px;
}
.l-hamburger__list {
  display: flex;
  flex-direction: column;
}
.l-hamburger__item {
  position: relative;
  border-bottom: 1px solid var(--table-line-flame, #F0F0F0);
}
.l-hamburger__item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%) rotate(-90deg);
  background: url(/carbon-neutral/images/common/icon_arrowDown.svg) no-repeat;
  background-size: contain;
}
.l-hamburger__item--noIcon::before {
  display: none;
}
.l-hamburger__link {
  display: block;
  padding: 20px 32px 20px 16px;
  margin-right: 0px;
  color: var(--MAIN-BLACK, #1B1F27);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}
.l-hamburger__inquiryList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 48px;
  margin-top: 48px;
}
.l-hamburger__inquiryItem {
  position: relative;
  display: flex;
  align-items: center;
}
.l-hamburger__inquiryItem:nth-of-type(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  left: -24px;
  top: 50%;
  transform: translate(0, -50%);
  background: #CBCBCD;
}
.l-hamburger__inquiryLink {
  color: var(--MAIN-GRAY, #4A4A4A);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  text-decoration: none;
}
.l-hamburger--ctaMenu {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 13.1%, rgba(0, 0, 0, 0.1) 86.9%), rgba(27, 31, 39, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 89svh;
}
.l-hamburger--ctaMenu .l-hamburger__ctaBox {
  width: 100%;
  padding: 45px 0px 45px;
}
.l-hamburger--ctaMenu .l-section {
  max-width: inherit;
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-section {
    max-width: 1338px;
    width: 100%;
  }
}
.l-hamburger--ctaMenu .l-sention__container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.l-hamburger--ctaMenu .l-cta__ctaTitle {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__ctaTitle {
    font-size: 14px;
  }
}
.l-hamburger--ctaMenu .l-cta__ctaTitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}
.l-hamburger--ctaMenu .l-cta__ctaTitle .l-cta__ctaTitle--samll {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__ctaTitle .l-cta__ctaTitle--samll {
    font-size: 12px;
  }
}
.l-hamburger--ctaMenu .l-cta__container {
  display: flex;
  flex-direction: column;
  min-width: inherit;
  padding: 32px;
  height: 100%;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__container {
    background: linear-gradient(99deg, #0060FB 17.68%, #004CC7 82.32%);
    padding: 16px 16px 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__container::before {
    content: "";
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__container::after {
    content: "";
    display: block;
    position: absolute;
    background: url(/carbon-neutral/images/common/icon_greenButton.png) no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    right: 16px;
    bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-hamburger__columnList {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-hamburger__columnList .l-hamburger__columnItem {
    width: 100%;
  }
}
.l-hamburger--ctaMenu .l-cta__columnList .l-cta__columnItem:nth-of-type(odd) .l-cta__container {
  background: #0150D0;
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__columnList .l-cta__columnItem:nth-of-type(odd) .l-cta__container::before {
    top: -323px;
    left: -916px;
    opacity: 0.03;
  }
}
.l-hamburger--ctaMenu .l-cta__columnList .l-cta__columnItem:nth-of-type(even) .l-cta__container {
  background: #0362FC;
}
.l-hamburger--ctaMenu .l-cta__columnList .l-cta__columnItem:nth-of-type(even) .l-cta__container::before {
  top: -410px;
  left: -1290px;
}
.l-hamburger--ctaMenu .l-cta__title {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__title {
    text-align: left;
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__title {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__title {
    text-align: left;
  }
}
.l-hamburger--ctaMenu .l-cta__ctaSubText {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__ctaSubText {
    text-align: left;
    font-size: 11px;
  }
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__ctaSubText {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__ctaSubText {
    text-align: left;
  }
}
.l-hamburger--ctaMenu .l-cta__baseText {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__baseText {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__baseText {
    text-align: left;
  }
}
.l-hamburger--ctaMenu .l-cta__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__card {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__card {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__card {
    flex-direction: row;
  }
}
.l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item:nth-of-type(1) {
    width: calc((100% - 16px) * 0.43795);
  }
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item:nth-of-type(2) {
    width: calc((100% - 16px) * 0.51094);
    flex: 1 1 auto;
  }
}
.l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item:nth-of-type(3) {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item {
    flex-direction: row;
  }
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item:nth-of-type(1) {
    width: calc((100% - 32px) * 0.43795);
  }
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item:nth-of-type(2) {
    width: calc((100% - 32px) * 0.51094);
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .l-column__item {
    width: 100%;
  }
}
.l-hamburger--ctaMenu .l-cta__card.l-column--2 .c-button {
  flex: 0;
  margin: 0;
  max-width: 100%;
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .c-button {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__card.l-column--2 .c-button {
    max-width: 340px;
    flex: 1;
  }
}
.l-hamburger--ctaMenu .l-cta__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-hamburger--ctaMenu .l-cta__contents {
    align-items: flex-start;
  }
}
@media screen and (min-width: 960px) {
  .l-hamburger--ctaMenu .l-cta__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .l-hamburger--ctaMenu .l-cta__contents {
    align-items: start;
  }
}

@keyframes slideInClip {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slideOutClip {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
.l-thanks .l-article__item {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .l-thanks .l-article__item {
    padding: 24px 16px;
  }
}
.l-thanks .c-button {
  margin-inline: auto;
}
.l-thanks__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-thanks__container {
    display: block;
  }
}
.l-thanks__icon {
  line-height: 1;
  text-align: center;
}
.l-thanks__icon img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .l-thanks__icon img {
    width: 80px;
  }
}
.l-thanks__title {
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .l-thanks__title {
    font-size: 17px;
  }
}
.l-thanks__image {
  width: 393px;
}
@media screen and (max-width: 768px) {
  .l-thanks__image {
    width: 100%;
  }
}
.l-thanks__image img {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.l-thanks__image--350 img {
  max-width: 350px;
}
.l-thanks__image--185 img {
  max-width: 185px;
}
@media screen and (max-width: 768px) {
  .l-thanks__image--sp-224 img {
    max-width: 224px;
  }
}
.l-thanks__button {
  width: 447px;
}
@media screen and (max-width: 768px) {
  .l-thanks__button {
    width: 100%;
  }
}

/* Object
=========================*/
/* Component
-----------------------------------------*/
.c-button {
  box-sizing: border-box;
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--color-white);
  text-decoration: none;
}
.c-button__text--freeIcon {
  font-size: 13px;
  border-radius: 100px;
  border: 1px solid #1B1F27;
  padding: 4px 8px;
}
.c-button--footer {
  position: relative;
  padding: 16px 26px 16px 8px;
  border-radius: 0px;
  background-color: inherit;
  max-width: 320px;
  margin: 0 auto;
  align-items: flex-start;
  transition: all ease-out 0.2s;
}
.c-button--footer .c-button__text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}
.c-button--footer .c-button__text::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/carbon-neutral/images/common/icon_sitelinkAnchor.svg) no-repeat;
}
.c-button--footer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #CBCBCD;
  transition: all ease-out 0.2s;
}
.c-button--footer .c-button__text {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--footer .c-button__text {
    text-shadow: none;
    color: #fff;
  }
}
.c-button--footer:hover .c-button__text {
  text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
}
@media screen and (max-width: 768px) {
  .c-button--footer:hover .c-button__text {
    text-shadow: none;
    color: #fff;
  }
}
.c-button--footer:hover::before {
  transform: scaleY(2);
}
.c-button--anchor {
  position: relative;
  border-bottom: 1px solid var(--table-line-dark, #CBCBCD);
  padding: 24px 26px 24px 8px;
  border-radius: 0px;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .c-button--anchor {
    padding: 20px 40px 20px 8px;
  }
}
.c-button--anchor .c-button__text {
  color: #1B1F27;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -4em 0 #1B1F27, 0 0 0 #1B1F27;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--anchor .c-button__text {
    text-shadow: none;
    color: #1B1F27;
  }
}
.c-button--anchor .c-button__text::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/carbon-neutral/images/common/icon_anchorLinkArrow.svg) no-repeat;
}
.c-button--anchor:hover {
  border-bottom: 1px solid #0060FB;
}
.c-button--anchor:hover .c-button__text {
  text-shadow: 0 0 0 #0060FB, 0 4em 0 #0060FB;
}
@media screen and (max-width: 768px) {
  .c-button--anchor:hover .c-button__text {
    text-shadow: none;
    color: #0060FB;
  }
}
.c-button--sitelink {
  background: #ffffff;
  border: 1px solid #0060FB;
  border-radius: 0;
  padding: 24px 64px 24px 32px;
  align-items: flex-start;
  max-width: 580px;
  min-height: 144px;
  margin: 0 auto;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .c-button--sitelink {
    padding: 24px 40px 24px 16px;
    min-height: auto;
  }
}
.c-button--sitelink::before {
  content: "";
  display: block;
  width: 32px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0060FB;
}
@media screen and (max-width: 768px) {
  .c-button--sitelink::before {
    width: 24px;
  }
}
.c-button--sitelink::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/carbon-neutral/images/common/icon_sitelinkAnchor.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-button--sitelink::after {
    right: 4px;
  }
}
.c-button--sitelink .c-button__title {
  color: #0060FB;
}
.c-button--sitelink .c-button__rowLayoutBox {
  position: relative;
  padding-left: 112px;
}
@media screen and (max-width: 768px) {
  .c-button--sitelink .c-button__rowLayoutBox {
    padding-left: 64px;
  }
}
.c-button--sitelink .c-button__rowLayoutBox .c-image {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 88px;
  transform: translateY(-50%);
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .c-button--sitelink .c-button__rowLayoutBox .c-image {
    max-width: 48px;
  }
}
.c-button--sitelink .c-text.u-c-blue {
  position: relative;
  z-index: 0;
  width: fit-content;
  transition: all ease-out 0.2s;
}
.c-button--sitelink .c-text.u-c-blue::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background: #0060FB;
  z-index: -1;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .c-button--sitelink .c-text.u-c-blue::before {
    content: none;
  }
}
.c-button--sitelink:hover .c-text.u-c-blue {
  color: #fff !important;
}
.c-button--sitelink:hover .c-text.u-c-blue::before {
  width: 100%;
}
.c-button--sitelink:hover .c-button__rowLayoutBox .c-image {
  transform: translateY(-50%) scale(1.15);
}
@media screen and (max-width: 768px) {
  .c-button--sitelink:hover .c-button__rowLayoutBox .c-image {
    transform: translateY(-50%);
  }
}
.c-button--cta {
  max-width: 340px;
  padding: 24px;
  border-radius: 2px;
  background: #6DFC54;
  transition: all ease-out 0.2s;
}
.c-button--cta::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  content: "";
  box-sizing: border-box;
  background-image: url(/carbon-neutral/images/common/icon_btn_arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.c-button--cta .c-button__text {
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #1B1F27, 0 0 0 #1B1F27;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--cta .c-button__text {
    text-shadow: none;
    color: #1B1F27;
  }
}
.c-button--cta:hover {
  background-color: #fff;
}
.c-button--cta:hover .c-button__text {
  text-shadow: 0 0 0 #0060FB, 0 1.5em 0 #0060FB;
}
@media screen and (max-width: 768px) {
  .c-button--cta:hover .c-button__text {
    text-shadow: none;
    color: #0060FB;
  }
}
.c-button--cta:hover::before {
  background-image: none;
  background-color: #0060FB;
  mask-image: url(/carbon-neutral/images/common/icon_btn_arrow.svg);
  mask-size: 100%;
}
.c-button--submit {
  max-width: 340px;
  padding: 24px;
  border-radius: 2px;
  background: #0060FB;
  transition: all ease-out 0.2s;
}
.c-button--submit::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  content: "";
  box-sizing: border-box;
  background-image: url(/carbon-neutral/images/common/icon_btn_arrow_white.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.c-button--submit--window::before {
  background-image: url(/carbon-neutral/images/common/icon_btn_window_white.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.c-button--submit--window:hover::before {
  mask-image: url(/carbon-neutral/images/common/icon_btn_window_white.png) !important;
}
.c-button--submit--download::before {
  background-image: url(/carbon-neutral/images/common/icon_btn_download_white.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.c-button--submit--download:hover::before {
  mask-image: url(/carbon-neutral/images/common/icon_btn_download_white.png) !important;
}
.c-button--submit .c-button__text {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -3em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--submit .c-button__text {
    text-shadow: none;
    color: #fff;
  }
}
.c-button--submit:hover {
  background-color: #6DFC54;
}
.c-button--submit:hover .c-button__text {
  text-shadow: 0 0 0 #1B1F27, 0 3em 0 #1B1F27;
}
@media screen and (max-width: 768px) {
  .c-button--submit:hover .c-button__text {
    text-shadow: none;
    color: #1B1F27;
  }
}
.c-button--submit:hover::before {
  background-image: none;
  background-color: #1B1F27;
  mask-image: url(/carbon-neutral/images/common/icon_btn_arrow.svg);
  mask-size: 100%;
}
.c-button--home {
  max-width: 340px;
  padding: 20px 48px;
  border: 1px solid #1B1F27;
  border-radius: 2px;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .c-button--home {
    max-width: 263px;
  }
}
.c-button--home::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  content: "";
  box-sizing: border-box;
  background-image: url(/carbon-neutral/images/common/icon_btn_arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.c-button--home .c-button__text {
  font-size: 16px;
  font-weight: 700;
  color: #1B1F27;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -3em 0 #1B1F27, 0 0 0 #1B1F27;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--home .c-button__text {
    text-shadow: none;
    color: #1B1F27;
  }
}
.c-button--home:hover {
  background-color: #1B1F27;
}
.c-button--home:hover .c-button__text {
  text-shadow: 0 0 0 #fff, 0 3em 0 #fff;
}
@media screen and (max-width: 768px) {
  .c-button--home:hover .c-button__text {
    text-shadow: none;
    color: #fff;
  }
}
.c-button--home:hover::before {
  background-image: none;
  background-color: #fff;
  mask-image: url(/carbon-neutral/images/common/icon_btn_arrow.svg);
  mask-size: 100%;
}
.c-button--close {
  border-radius: 2px;
  border: 1px solid var(--MAIN-WHITE, #FFF);
  color: #fff;
}

.c-headline {
  position: relative;
  margin: 104px 0 48px;
}
@media screen and (max-width: 768px) {
  .c-headline {
    margin: 64px 0 32px;
  }
}
.c-headline__title {
  line-height: 1.35;
  font-size: 40px;
  font-weight: bold;
  color: #1B1F27;
}
@media screen and (max-width: 768px) {
  .c-headline__title {
    font-size: 28px;
  }
}
.c-headline__title:has(.c-headline__note) {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .c-headline__title:has(.c-headline__note) {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.c-headline__subTitle {
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
}
.c-headline__subTitle + .c-headline__title {
  margin-top: 4px;
}
.c-headline__note {
  position: relative;
  padding-left: 17px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  color: #525252;
}
.c-headline__note::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: inherit;
  content: "※";
}
.c-headline--primary::before {
  position: absolute;
  top: -28px;
  left: -31px;
  width: 34px;
  height: 34px;
  content: "";
  background-image: url(/carbon-neutral/images/common/icon_headline_primary.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-headline--primary::before {
    top: -15.5px;
    left: -10.5px;
    width: 17px;
    height: 17px;
  }
}
.c-headline--primary + .c-headline--secondary {
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .c-headline--primary + .c-headline--secondary {
    margin-top: 48px;
  }
}
.c-headline--secondary::before {
  position: absolute;
  top: -24px;
  left: 0;
  width: 80px;
  height: 7px;
  content: "";
  background: linear-gradient(102deg, #0060FB 6.89%, #0060FB 61.73%, #B0F137 90.39%);
}
@media screen and (max-width: 768px) {
  .c-headline--secondary::before {
    top: -16px;
    width: 60px;
    height: 5px;
  }
}
.c-headline--secondary .c-headline__title {
  line-height: 1.4;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .c-headline--secondary .c-headline__title {
    font-size: 24px;
  }
}
.c-headline--tertiary {
  padding-left: 28px;
  margin: 56px 0 24px;
}
@media screen and (max-width: 768px) {
  .c-headline--tertiary {
    padding-left: 16px;
    margin: 40px 0 16px;
  }
}
.c-headline--tertiary::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 28px;
  content: "";
  background: linear-gradient(180deg, #0060FB 6.89%, #0060FB 61.73%, #B0F137 90.39%);
}
@media screen and (max-width: 768px) {
  .c-headline--tertiary::before {
    width: 5px;
    height: 100%;
  }
}
.c-headline--tertiary .c-headline__title {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-headline--tertiary .c-headline__title {
    font-size: 18px;
  }
}
.c-headline--anchor .c-headline__title {
  display: flex;
  gap: 24px;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .c-headline--anchor .c-headline__title {
    gap: 16px;
    font-size: 24px;
  }
}
.c-headline--anchor .c-headline__title::before {
  display: block;
  margin-top: -12px;
  min-width: 10px;
  height: 97px;
  content: "";
  background-image: url(/carbon-neutral/images/common/icon_headline_anchor.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-headline--anchor .c-headline__title::before {
    height: 52px;
    margin-top: 0;
    background-image: url(/carbon-neutral/images/common/icon_headline_anchor_sp.svg);
  }
}

.c-separator {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid #000;
}

.c-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  color: #1B1F27;
}
@media screen and (max-width: 768px) {
  .c-text {
    font-size: 16px;
  }
}
.c-text + .c-text {
  margin-top: 24px;
}
.c-text--xxxl {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .c-text--xxxl {
    font-size: 32px;
  }
}
.c-text--xxl {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .c-text--xxl {
    font-size: 24px;
  }
}
.c-text--xl {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .c-text--xl {
    font-size: 20px;
  }
}
.c-text--l {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c-text--l {
    font-size: 17px;
  }
}
.c-text--m {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .c-text--m {
    font-size: 16px;
  }
}
.c-text--s {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-text--s {
    font-size: 14px;
  }
}
.c-text--ss {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .c-text--ss {
    font-size: 14px;
  }
}
.c-text--xs {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-text--xs {
    font-size: 12px;
  }
}
.c-text--xxs {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .c-text--xxs {
    font-size: 10px;
  }
}

.c-image img {
  width: 100%;
  margin: 0 auto;
  vertical-align: middle;
}
.c-image img.c-image__half {
  width: 50%;
}
.c-image img.c-image__350 {
  width: 350px;
}
.c-image[href] {
  display: block;
}
.c-image[href] img {
  transition: transform 0.25s ease-out;
}
.c-image[href]:hover > img {
  transform: scale(0.975);
}
.c-image--angle-circle {
  border-radius: 24px;
}
.c-image--angle-circle > img {
  border-radius: inherit;
}
.c-image--angle-circle-l {
  border-radius: 32px;
}
.c-image--angle-circle-m {
  border-radius: 24px;
}
.c-image--angle-circle-s {
  border-radius: 16px;
}
.c-image--angle-circle-xs {
  border-radius: 8px;
}
.c-image--width-fixed-m.c-image--position-center, .c-image--width-fixed-l.c-image--position-center {
  margin: 0 auto;
}
.c-image--width-fixed-m {
  max-width: 720px;
}
.c-image--width-fixed-l {
  max-width: 1008px;
}
.c-image--width-768 img {
  width: 768px;
}
.c-image--width-730 img {
  width: 730px;
}
@media screen and (max-width: 768px) {
  .c-image--width-730 img {
    width: 100%;
  }
}

.c-footerNavigation__title {
  color: #4A4E52;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 32px */
}
.c-footerNavigation__blockItem:nth-of-type(n+2) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .c-footerNavigation__blockItem:nth-of-type(n+2) {
    margin-top: 16px;
  }
}
.c-footerNavigation__linkItem {
  position: relative;
  padding-left: 1em;
}
.c-footerNavigation__linkItem::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 20px;
  background: url(/carbon-neutral/images/common/icon_footerLinklist.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.c-footerNavigation__linkItem:nth-of-type(n+2) {
  margin-top: 12px;
}
.c-footerNavigation__linkText {
  display: block;
  color: #C3C4C5;
  text-decoration: none;
  line-height: 150%;
  transition: all ease-out 0.2s;
  text-decoration: none;
  text-underline-offset: 4px;
}
@media screen and (max-width: 768px) {
  .c-footerNavigation__linkText {
    font-size: 13px;
  }
}
.c-footerNavigation__linkText:hover {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

.c-textLink {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #1B1F27;
}
.c-textLink__hover:hover {
  font-weight: 700;
  color: #1B1F27;
}

.c-breadcrumb {
  background-color: #FCFCFC;
}
.c-breadcrumb__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  min-width: 1040px;
  max-width: 1280px;
  width: 100%;
  padding: 16px 40px;
  margin: 0 auto;
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb__list {
    min-width: auto;
    padding: 8px 16px;
    max-width: inherit;
  }
}
.c-breadcrumb__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-breadcrumb__item:first-of-type .c-breadcrumb__link {
  margin-left: 0;
}
.c-breadcrumb__item:first-of-type .c-breadcrumb__link::before {
  content: none;
}
.c-breadcrumb__item:not(:first-of-type) .c-breadcrumb__link {
  margin-left: 32px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb__item:not(:first-of-type) .c-breadcrumb__link {
    margin-left: 24px;
  }
}
.c-breadcrumb__item .c-breadcrumb__link {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: #4A4A4A;
  border-radius: 4px;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb__item .c-breadcrumb__link {
    font-size: 10px;
  }
}
.c-breadcrumb__item .c-breadcrumb__link img {
  vertical-align: middle;
}
.c-breadcrumb__item .c-breadcrumb__link::before {
  content: "";
  position: absolute;
  display: block;
  left: -24px;
  top: 50%;
  transform: translateY(calc(-50% + 1px));
  width: 16px;
  height: 16px;
  background-image: url(/carbon-neutral/images/common/icon_arrow_right.svg);
  background-position: -1px center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb__item .c-breadcrumb__link::before {
    left: -20px;
    top: 50%;
    transform: translateY(calc(-50% + 1px));
  }
}
.c-breadcrumb__item .c-breadcrumb__link:hover {
  color: #0060FB;
  text-decoration: underline;
}
.c-breadcrumb__item .c-breadcrumb__link--current {
  font-weight: bold;
  color: #1B1F27;
}
.c-breadcrumb__item .c-breadcrumb__link--current:focus, .c-breadcrumb__item .c-breadcrumb__link--current:hover {
  color: #1B1F27;
  text-decoration: none;
}

/* Project
-----------------------------------------*/
/* Utility
-----------------------------------------*/
/* Background関連のUtility
=========================*/
.u {
  /* background-color */
}
.u-bg-none {
  background: none !important;
}
.u-bgc-none {
  background: none !important;
}
.u-bgc-section-blue {
  background-color: #F9F9FB !important;
}
.u-bgc-section-black {
  background-color: #363A3F !important;
}
.u-bgc-table-lightGray {
  background-color: rgba(28, 28, 34, 0.04) !important;
}
.u-bgc-qa-gray {
  background-color: #EAEAEB !important;
}

/* Display関連のUtility
=========================*/
.u {
  /* justify-content */
  /* align-items */
  /* SP,PCの出しわけ */
}
.u-d-block {
  display: block !important;
}
.u-d-flex {
  display: flex !important;
}
.u-jc-center {
  justify-content: center !important;
}
.u-jc-start {
  justify-content: start !important;
}
.u-jc-end {
  justify-content: end !important;
}
.u-jc-between {
  justify-content: space-between !important;
}
.u-jc-around {
  justify-content: space-around !important;
}
@media screen and (max-width: 768px) {
  .u-sp-jc-center {
    justify-content: center !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sp-jc-start {
    justify-content: start !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sp-jc-end {
    justify-content: end !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sp-jc-between {
    justify-content: space-between !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sp-jc-around {
    justify-content: space-around !important;
  }
}
.u-ai-center {
  align-items: center !important;
}
.u-ai-start {
  align-items: start !important;
}
.u-ai-end {
  align-items: end !important;
}
.u-only-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-only-sp {
    display: block !important;
  }
}
.u-only-pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none !important;
  }
}
.u-onlyFlex-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-onlyFlex-sp {
    display: flex !important;
  }
}
.u-onlyFlex-pc {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .u-onlyFlex-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) {
  .u-pc-l-d-none {
    display: none !important;
  }
}
/* Margin関連のUtility
=========================*/
.u-m-0-auto {
  margin: 0 auto !important;
}

.u-m-0 {
  margin: 0 !important;
}

/* margin-top */
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mt-28 {
  margin-top: 28px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mt-36 {
  margin-top: 36px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-44 {
  margin-top: 44px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mt-52 {
  margin-top: 52px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mt-68 {
  margin-top: 68px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mt-76 {
  margin-top: 76px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-84 {
  margin-top: 84px !important;
}

.u-mt-88 {
  margin-top: 88px !important;
}

.u-mt-92 {
  margin-top: 92px !important;
}

.u-mt-96 {
  margin-top: 96px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-mt-0 {
    margin-top: 0 !important;
  }
  .u-sp-mt-4 {
    margin-top: 4px !important;
  }
  .u-sp-mt-8 {
    margin-top: 8px !important;
  }
  .u-sp-mt-12 {
    margin-top: 12px !important;
  }
  .u-sp-mt-16 {
    margin-top: 16px !important;
  }
  .u-sp-mt-20 {
    margin-top: 20px !important;
  }
  .u-sp-mt-24 {
    margin-top: 24px !important;
  }
  .u-sp-mt-28 {
    margin-top: 28px !important;
  }
  .u-sp-mt-32 {
    margin-top: 32px !important;
  }
  .u-sp-mt-36 {
    margin-top: 36px !important;
  }
  .u-sp-mt-40 {
    margin-top: 40px !important;
  }
  .u-sp-mt-44 {
    margin-top: 44px !important;
  }
  .u-sp-mt-48 {
    margin-top: 48px !important;
  }
  .u-sp-mt-52 {
    margin-top: 52px !important;
  }
  .u-sp-mt-56 {
    margin-top: 56px !important;
  }
  .u-sp-mt-60 {
    margin-top: 60px !important;
  }
  .u-sp-mt-64 {
    margin-top: 64px !important;
  }
  .u-sp-mt-68 {
    margin-top: 68px !important;
  }
  .u-sp-mt-72 {
    margin-top: 72px !important;
  }
  .u-sp-mt-76 {
    margin-top: 76px !important;
  }
  .u-sp-mt-80 {
    margin-top: 80px !important;
  }
  .u-sp-mt-84 {
    margin-top: 84px !important;
  }
  .u-sp-mt-88 {
    margin-top: 88px !important;
  }
  .u-sp-mt-92 {
    margin-top: 92px !important;
  }
  .u-sp-mt-96 {
    margin-top: 96px !important;
  }
  .u-sp-mt-100 {
    margin-top: 100px !important;
  }
}
/* margin-bottom */
.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mb-28 {
  margin-bottom: 28px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-mb-36 {
  margin-bottom: 36px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-44 {
  margin-bottom: 44px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-mb-52 {
  margin-bottom: 52px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-mb-68 {
  margin-bottom: 68px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-mb-76 {
  margin-bottom: 76px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-84 {
  margin-bottom: 84px !important;
}

.u-mb-88 {
  margin-bottom: 88px !important;
}

.u-mb-92 {
  margin-bottom: 92px !important;
}

.u-mb-96 {
  margin-bottom: 96px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-sp-mb-4 {
    margin-bottom: 4px !important;
  }
  .u-sp-mb-8 {
    margin-bottom: 8px !important;
  }
  .u-sp-mb-12 {
    margin-bottom: 12px !important;
  }
  .u-sp-mb-16 {
    margin-bottom: 16px !important;
  }
  .u-sp-mb-20 {
    margin-bottom: 20px !important;
  }
  .u-sp-mb-24 {
    margin-bottom: 24px !important;
  }
  .u-sp-mb-28 {
    margin-bottom: 28px !important;
  }
  .u-sp-mb-32 {
    margin-bottom: 32px !important;
  }
  .u-sp-mb-36 {
    margin-bottom: 36px !important;
  }
  .u-sp-mb-40 {
    margin-bottom: 40px !important;
  }
  .u-sp-mb-44 {
    margin-bottom: 44px !important;
  }
  .u-sp-mb-48 {
    margin-bottom: 48px !important;
  }
  .u-sp-mb-52 {
    margin-bottom: 52px !important;
  }
  .u-sp-mb-56 {
    margin-bottom: 56px !important;
  }
  .u-sp-mb-60 {
    margin-bottom: 60px !important;
  }
  .u-sp-mb-64 {
    margin-bottom: 64px !important;
  }
  .u-sp-mb-68 {
    margin-bottom: 68px !important;
  }
  .u-sp-mb-72 {
    margin-bottom: 72px !important;
  }
  .u-sp-mb-76 {
    margin-bottom: 76px !important;
  }
  .u-sp-mb-80 {
    margin-bottom: 80px !important;
  }
  .u-sp-mb-84 {
    margin-bottom: 84px !important;
  }
  .u-sp-mb-88 {
    margin-bottom: 88px !important;
  }
  .u-sp-mb-92 {
    margin-bottom: 92px !important;
  }
  .u-sp-mb-96 {
    margin-bottom: 96px !important;
  }
  .u-sp-mb-100 {
    margin-bottom: 100px !important;
  }
}
/* margin-left */
.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-260 {
  margin-left: 260px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-ml-174 {
    margin-left: calc(174 / 375 * 100vw) !important;
  }
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-ml-28 {
  margin-left: 28px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-ml-36 {
  margin-left: 36px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-ml-44 {
  margin-left: 44px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-ml-52 {
  margin-left: 52px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-ml-68 {
  margin-left: 68px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-ml-76 {
  margin-left: 76px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-ml-84 {
  margin-left: 84px !important;
}

.u-ml-88 {
  margin-left: 88px !important;
}

.u-ml-92 {
  margin-left: 92px !important;
}

.u-ml-96 {
  margin-left: 96px !important;
}

.u-ml-100 {
  margin-left: 100px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-ml-0 {
    margin-left: 0 !important;
  }
  .u-sp-ml-4 {
    margin-left: 4px !important;
  }
  .u-sp-ml-8 {
    margin-left: 8px !important;
  }
  .u-sp-ml-12 {
    margin-left: 12px !important;
  }
  .u-sp-ml-16 {
    margin-left: 16px !important;
  }
  .u-sp-ml-20 {
    margin-left: 20px !important;
  }
  .u-sp-ml-24 {
    margin-left: 24px !important;
  }
  .u-sp-ml-28 {
    margin-left: 28px !important;
  }
  .u-sp-ml-32 {
    margin-left: 32px !important;
  }
  .u-sp-ml-36 {
    margin-left: 36px !important;
  }
  .u-sp-ml-40 {
    margin-left: 40px !important;
  }
  .u-sp-ml-44 {
    margin-left: 44px !important;
  }
  .u-sp-ml-48 {
    margin-left: 48px !important;
  }
  .u-sp-ml-52 {
    margin-left: 52px !important;
  }
  .u-sp-ml-56 {
    margin-left: 56px !important;
  }
  .u-sp-ml-60 {
    margin-left: 60px !important;
  }
  .u-sp-ml-64 {
    margin-left: 64px !important;
  }
  .u-sp-ml-68 {
    margin-left: 68px !important;
  }
  .u-sp-ml-72 {
    margin-left: 72px !important;
  }
  .u-sp-ml-76 {
    margin-left: 76px !important;
  }
  .u-sp-ml-80 {
    margin-left: 80px !important;
  }
  .u-sp-ml-84 {
    margin-left: 84px !important;
  }
  .u-sp-ml-88 {
    margin-left: 88px !important;
  }
  .u-sp-ml-92 {
    margin-left: 92px !important;
  }
  .u-sp-ml-96 {
    margin-left: 96px !important;
  }
  .u-sp-ml-100 {
    margin-left: 100px !important;
  }
}
/* margin-right */
.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-mr-28 {
  margin-right: 28px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-mr-36 {
  margin-right: 36px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mr-44 {
  margin-right: 44px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-mr-52 {
  margin-right: 52px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-mr-68 {
  margin-right: 68px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-mr-76 {
  margin-right: 76px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-mr-84 {
  margin-right: 84px !important;
}

.u-mr-88 {
  margin-right: 88px !important;
}

.u-mr-92 {
  margin-right: 92px !important;
}

.u-mr-96 {
  margin-right: 96px !important;
}

.u-mr-100 {
  margin-right: 100px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-mr-0 {
    margin-right: 0 !important;
  }
  .u-sp-mr-4 {
    margin-right: 4px !important;
  }
  .u-sp-mr-8 {
    margin-right: 8px !important;
  }
  .u-sp-mr-12 {
    margin-right: 12px !important;
  }
  .u-sp-mr-16 {
    margin-right: 16px !important;
  }
  .u-sp-mr-20 {
    margin-right: 20px !important;
  }
  .u-sp-mr-24 {
    margin-right: 24px !important;
  }
  .u-sp-mr-28 {
    margin-right: 28px !important;
  }
  .u-sp-mr-32 {
    margin-right: 32px !important;
  }
  .u-sp-mr-36 {
    margin-right: 36px !important;
  }
  .u-sp-mr-40 {
    margin-right: 40px !important;
  }
  .u-sp-mr-44 {
    margin-right: 44px !important;
  }
  .u-sp-mr-48 {
    margin-right: 48px !important;
  }
  .u-sp-mr-52 {
    margin-right: 52px !important;
  }
  .u-sp-mr-56 {
    margin-right: 56px !important;
  }
  .u-sp-mr-60 {
    margin-right: 60px !important;
  }
  .u-sp-mr-64 {
    margin-right: 64px !important;
  }
  .u-sp-mr-68 {
    margin-right: 68px !important;
  }
  .u-sp-mr-72 {
    margin-right: 72px !important;
  }
  .u-sp-mr-76 {
    margin-right: 76px !important;
  }
  .u-sp-mr-80 {
    margin-right: 80px !important;
  }
  .u-sp-mr-84 {
    margin-right: 84px !important;
  }
  .u-sp-mr-88 {
    margin-right: 88px !important;
  }
  .u-sp-mr-92 {
    margin-right: 92px !important;
  }
  .u-sp-mr-96 {
    margin-right: 96px !important;
  }
  .u-sp-mr-100 {
    margin-right: 100px !important;
  }
}
/* Padding関連のUtility
=========================*/
.u-p-0 {
  padding: 0 !important;
}

/* padding-top */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-4 {
  padding-top: 4px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pt-12 {
  padding-top: 12px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pt-28 {
  padding-top: 28px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pt-36 {
  padding-top: 36px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-44 {
  padding-top: 44px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pt-52 {
  padding-top: 52px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pt-68 {
  padding-top: 68px !important;
}

.u-pt-72 {
  padding-top: 72px !important;
}

.u-pt-76 {
  padding-top: 76px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-84 {
  padding-top: 84px !important;
}

.u-pt-88 {
  padding-top: 88px !important;
}

.u-pt-92 {
  padding-top: 92px !important;
}

.u-pt-96 {
  padding-top: 96px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pt-104 {
  padding-top: 104px !important;
}

.u-pt-108 {
  padding-top: 108px !important;
}

.u-pt-112 {
  padding-top: 112px !important;
}

.u-pt-116 {
  padding-top: 116px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-pt-0 {
    padding-top: 0 !important;
  }
  .u-sp-pt-4 {
    padding-top: 4px !important;
  }
  .u-sp-pt-8 {
    padding-top: 8px !important;
  }
  .u-sp-pt-12 {
    padding-top: 12px !important;
  }
  .u-sp-pt-16 {
    padding-top: 16px !important;
  }
  .u-sp-pt-20 {
    padding-top: 20px !important;
  }
  .u-sp-pt-24 {
    padding-top: 24px !important;
  }
  .u-sp-pt-28 {
    padding-top: 28px !important;
  }
  .u-sp-pt-32 {
    padding-top: 32px !important;
  }
  .u-sp-pt-36 {
    padding-top: 36px !important;
  }
  .u-sp-pt-40 {
    padding-top: 40px !important;
  }
  .u-sp-pt-44 {
    padding-top: 44px !important;
  }
  .u-sp-pt-48 {
    padding-top: 48px !important;
  }
  .u-sp-pt-52 {
    padding-top: 52px !important;
  }
  .u-sp-pt-56 {
    padding-top: 56px !important;
  }
  .u-sp-pt-60 {
    padding-top: 60px !important;
  }
  .u-sp-pt-64 {
    padding-top: 64px !important;
  }
  .u-sp-pt-68 {
    padding-top: 68px !important;
  }
  .u-sp-pt-72 {
    padding-top: 72px !important;
  }
  .u-sp-pt-76 {
    padding-top: 76px !important;
  }
  .u-sp-pt-80 {
    padding-top: 80px !important;
  }
  .u-sp-pt-84 {
    padding-top: 84px !important;
  }
  .u-sp-pt-88 {
    padding-top: 88px !important;
  }
  .u-sp-pt-92 {
    padding-top: 92px !important;
  }
  .u-sp-pt-96 {
    padding-top: 96px !important;
  }
  .u-sp-pt-100 {
    padding-top: 100px !important;
  }
  .u-sp-pt-104 {
    padding-top: 104px !important;
  }
  .u-sp-pt-108 {
    padding-top: 108px !important;
  }
  .u-sp-pt-112 {
    padding-top: 112px !important;
  }
  .u-sp-pt-116 {
    padding-top: 116px !important;
  }
  .u-sp-pt-120 {
    padding-top: 120px !important;
  }
}
/* padding-bottom */
.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-4 {
  padding-bottom: 4px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pb-12 {
  padding-bottom: 12px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pb-28 {
  padding-bottom: 28px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pb-36 {
  padding-bottom: 36px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-44 {
  padding-bottom: 44px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pb-52 {
  padding-bottom: 52px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pb-68 {
  padding-bottom: 68px !important;
}

.u-pb-72 {
  padding-bottom: 72px !important;
}

.u-pb-76 {
  padding-bottom: 76px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-84 {
  padding-bottom: 84px !important;
}

.u-pb-88 {
  padding-bottom: 88px !important;
}

.u-pb-92 {
  padding-bottom: 92px !important;
}

.u-pb-96 {
  padding-bottom: 96px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-pb-104 {
  padding-bottom: 104px !important;
}

.u-pb-108 {
  padding-bottom: 108px !important;
}

.u-pb-112 {
  padding-bottom: 112px !important;
}

.u-pb-116 {
  padding-bottom: 116px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-pb-0 {
    padding-bottom: 0 !important;
  }
  .u-sp-pb-4 {
    padding-bottom: 4px !important;
  }
  .u-sp-pb-8 {
    padding-bottom: 8px !important;
  }
  .u-sp-pb-12 {
    padding-bottom: 12px !important;
  }
  .u-sp-pb-16 {
    padding-bottom: 16px !important;
  }
  .u-sp-pb-20 {
    padding-bottom: 20px !important;
  }
  .u-sp-pb-24 {
    padding-bottom: 24px !important;
  }
  .u-sp-pb-28 {
    padding-bottom: 28px !important;
  }
  .u-sp-pb-32 {
    padding-bottom: 32px !important;
  }
  .u-sp-pb-36 {
    padding-bottom: 36px !important;
  }
  .u-sp-pb-40 {
    padding-bottom: 40px !important;
  }
  .u-sp-pb-44 {
    padding-bottom: 44px !important;
  }
  .u-sp-pb-48 {
    padding-bottom: 48px !important;
  }
  .u-sp-pb-52 {
    padding-bottom: 52px !important;
  }
  .u-sp-pb-56 {
    padding-bottom: 56px !important;
  }
  .u-sp-pb-60 {
    padding-bottom: 60px !important;
  }
  .u-sp-pb-64 {
    padding-bottom: 64px !important;
  }
  .u-sp-pb-68 {
    padding-bottom: 68px !important;
  }
  .u-sp-pb-72 {
    padding-bottom: 72px !important;
  }
  .u-sp-pb-76 {
    padding-bottom: 76px !important;
  }
  .u-sp-pb-80 {
    padding-bottom: 80px !important;
  }
  .u-sp-pb-84 {
    padding-bottom: 84px !important;
  }
  .u-sp-pb-88 {
    padding-bottom: 88px !important;
  }
  .u-sp-pb-92 {
    padding-bottom: 92px !important;
  }
  .u-sp-pb-96 {
    padding-bottom: 96px !important;
  }
  .u-sp-pb-100 {
    padding-bottom: 100px !important;
  }
  .u-sp-pb-104 {
    padding-bottom: 104px !important;
  }
  .u-sp-pb-108 {
    padding-bottom: 108px !important;
  }
  .u-sp-pb-112 {
    padding-bottom: 112px !important;
  }
  .u-sp-pb-116 {
    padding-bottom: 116px !important;
  }
  .u-sp-pb-120 {
    padding-bottom: 120px !important;
  }
}
/* padding-left */
.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-4 {
  padding-left: 4px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pl-12 {
  padding-left: 12px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pl-28 {
  padding-left: 28px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pl-36 {
  padding-left: 36px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pl-44 {
  padding-left: 44px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pl-52 {
  padding-left: 52px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pl-68 {
  padding-left: 68px !important;
}

.u-pl-72 {
  padding-left: 72px !important;
}

.u-pl-76 {
  padding-left: 76px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-pl-84 {
  padding-left: 84px !important;
}

.u-pl-88 {
  padding-left: 88px !important;
}

.u-pl-92 {
  padding-left: 92px !important;
}

.u-pl-96 {
  padding-left: 96px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

.u-pl-104 {
  padding-left: 104px !important;
}

.u-pl-108 {
  padding-left: 108px !important;
}

.u-pl-112 {
  padding-left: 112px !important;
}

.u-pl-116 {
  padding-left: 116px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-pl-0 {
    padding-left: 0 !important;
  }
  .u-sp-pl-4 {
    padding-left: 4px !important;
  }
  .u-sp-pl-8 {
    padding-left: 8px !important;
  }
  .u-sp-pl-12 {
    padding-left: 12px !important;
  }
  .u-sp-pl-16 {
    padding-left: 16px !important;
  }
  .u-sp-pl-20 {
    padding-left: 20px !important;
  }
  .u-sp-pl-24 {
    padding-left: 24px !important;
  }
  .u-sp-pl-28 {
    padding-left: 28px !important;
  }
  .u-sp-pl-32 {
    padding-left: 32px !important;
  }
  .u-sp-pl-36 {
    padding-left: 36px !important;
  }
  .u-sp-pl-40 {
    padding-left: 40px !important;
  }
  .u-sp-pl-44 {
    padding-left: 44px !important;
  }
  .u-sp-pl-48 {
    padding-left: 48px !important;
  }
  .u-sp-pl-52 {
    padding-left: 52px !important;
  }
  .u-sp-pl-56 {
    padding-left: 56px !important;
  }
  .u-sp-pl-60 {
    padding-left: 60px !important;
  }
  .u-sp-pl-64 {
    padding-left: 64px !important;
  }
  .u-sp-pl-68 {
    padding-left: 68px !important;
  }
  .u-sp-pl-72 {
    padding-left: 72px !important;
  }
  .u-sp-pl-76 {
    padding-left: 76px !important;
  }
  .u-sp-pl-80 {
    padding-left: 80px !important;
  }
  .u-sp-pl-84 {
    padding-left: 84px !important;
  }
  .u-sp-pl-88 {
    padding-left: 88px !important;
  }
  .u-sp-pl-92 {
    padding-left: 92px !important;
  }
  .u-sp-pl-96 {
    padding-left: 96px !important;
  }
  .u-sp-pl-100 {
    padding-left: 100px !important;
  }
  .u-sp-pl-104 {
    padding-left: 104px !important;
  }
  .u-sp-pl-108 {
    padding-left: 108px !important;
  }
  .u-sp-pl-112 {
    padding-left: 112px !important;
  }
  .u-sp-pl-116 {
    padding-left: 116px !important;
  }
  .u-sp-pl-120 {
    padding-left: 120px !important;
  }
}
/* padding-right */
.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-4 {
  padding-right: 4px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-pr-12 {
  padding-right: 12px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-pr-28 {
  padding-right: 28px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-pr-36 {
  padding-right: 36px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pr-44 {
  padding-right: 44px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-pr-52 {
  padding-right: 52px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-pr-68 {
  padding-right: 68px !important;
}

.u-pr-72 {
  padding-right: 72px !important;
}

.u-pr-76 {
  padding-right: 76px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pr-84 {
  padding-right: 84px !important;
}

.u-pr-88 {
  padding-right: 88px !important;
}

.u-pr-92 {
  padding-right: 92px !important;
}

.u-pr-96 {
  padding-right: 96px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-pr-104 {
  padding-right: 104px !important;
}

.u-pr-108 {
  padding-right: 108px !important;
}

.u-pr-112 {
  padding-right: 112px !important;
}

.u-pr-116 {
  padding-right: 116px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-pr-0 {
    padding-right: 0 !important;
  }
  .u-sp-pr-4 {
    padding-right: 4px !important;
  }
  .u-sp-pr-8 {
    padding-right: 8px !important;
  }
  .u-sp-pr-12 {
    padding-right: 12px !important;
  }
  .u-sp-pr-16 {
    padding-right: 16px !important;
  }
  .u-sp-pr-20 {
    padding-right: 20px !important;
  }
  .u-sp-pr-24 {
    padding-right: 24px !important;
  }
  .u-sp-pr-28 {
    padding-right: 28px !important;
  }
  .u-sp-pr-32 {
    padding-right: 32px !important;
  }
  .u-sp-pr-36 {
    padding-right: 36px !important;
  }
  .u-sp-pr-40 {
    padding-right: 40px !important;
  }
  .u-sp-pr-44 {
    padding-right: 44px !important;
  }
  .u-sp-pr-48 {
    padding-right: 48px !important;
  }
  .u-sp-pr-52 {
    padding-right: 52px !important;
  }
  .u-sp-pr-56 {
    padding-right: 56px !important;
  }
  .u-sp-pr-60 {
    padding-right: 60px !important;
  }
  .u-sp-pr-64 {
    padding-right: 64px !important;
  }
  .u-sp-pr-68 {
    padding-right: 68px !important;
  }
  .u-sp-pr-72 {
    padding-right: 72px !important;
  }
  .u-sp-pr-76 {
    padding-right: 76px !important;
  }
  .u-sp-pr-80 {
    padding-right: 80px !important;
  }
  .u-sp-pr-84 {
    padding-right: 84px !important;
  }
  .u-sp-pr-88 {
    padding-right: 88px !important;
  }
  .u-sp-pr-92 {
    padding-right: 92px !important;
  }
  .u-sp-pr-96 {
    padding-right: 96px !important;
  }
  .u-sp-pr-100 {
    padding-right: 100px !important;
  }
  .u-sp-pr-104 {
    padding-right: 104px !important;
  }
  .u-sp-pr-108 {
    padding-right: 108px !important;
  }
  .u-sp-pr-112 {
    padding-right: 112px !important;
  }
  .u-sp-pr-116 {
    padding-right: 116px !important;
  }
  .u-sp-pr-120 {
    padding-right: 120px !important;
  }
}
/* Text関連のUtility
=========================*/
.u {
  /* text align */
  /* font-weight */
  /* line-height */
}
.u-ta-center {
  text-align: center !important;
}
.u-ta-left {
  text-align: left !important;
}
.u-ta-right {
  text-align: right !important;
}
@media screen and (max-width: 768px) {
  .u-sp-ta-center {
    text-align: center !important;
  }
  .u-sp-ta-left {
    text-align: left !important;
  }
  .u-sp-ta-right {
    text-align: right !important;
  }
}
.u-fw-normal {
  font-weight: normal !important;
}
.u-fw-bold {
  font-weight: bold !important;
}
.u-ff-outfit {
  font-family: "Outfit" !important;
}
.u-lh-100 {
  line-height: 1 !important;
}
.u-lh-120 {
  line-height: 1.2 !important;
}
.u-lh-130 {
  line-height: 1.3 !important;
}
.u-lh-140 {
  line-height: 1.4 !important;
}
.u-lh-150 {
  line-height: 1.5 !important;
}
.u-lh-160 {
  line-height: 1.6 !important;
}
.u-lh-170 {
  line-height: 1.7 !important;
}
.u-lh-175 {
  line-height: 1.75 !important;
}
.u-lh-180 {
  line-height: 1.8 !important;
}
.u-lh-190 {
  line-height: 1.9 !important;
}
.u-lh-200 {
  line-height: 2 !important;
}
@media screen and (max-width: 768px) {
  .u-sp-lh-100 {
    line-height: 1 !important;
  }
  .u-sp-lh-120 {
    line-height: 1.2 !important;
  }
  .u-sp-lh-130 {
    line-height: 1.3 !important;
  }
  .u-sp-lh-140 {
    line-height: 1.4 !important;
  }
  .u-sp-lh-150 {
    line-height: 1.5 !important;
  }
  .u-sp-lh-160 {
    line-height: 1.6 !important;
  }
  .u-sp-lh-170 {
    line-height: 1.7 !important;
  }
  .u-sp-lh-175 {
    line-height: 1.75 !important;
  }
  .u-sp-lh-180 {
    line-height: 1.8 !important;
  }
  .u-sp-lh-190 {
    line-height: 1.9 !important;
  }
  .u-sp-lh-200 {
    line-height: 2 !important;
  }
}

/* font-size */
.u-fz-10 {
  font-size: 10px !important;
}

.u-fz-11 {
  font-size: 11px !important;
}

.u-fz-12 {
  font-size: 12px !important;
}

.u-fz-13 {
  font-size: 13px !important;
}

.u-fz-14 {
  font-size: 14px !important;
}

.u-fz-15 {
  font-size: 15px !important;
}

.u-fz-16 {
  font-size: 16px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-fz-10 {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-11 {
    font-size: 11px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-12 {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-13 {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-14 {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-15 {
    font-size: 15px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-16 {
    font-size: 16px !important;
  }
}

.u-fz-18 {
  font-size: 18px !important;
}

.u-fz-20 {
  font-size: 20px !important;
}

.u-fz-22 {
  font-size: 22px !important;
}

.u-fz-24 {
  font-size: 24px !important;
}

.u-fz-26 {
  font-size: 26px !important;
}

.u-fz-28 {
  font-size: 28px !important;
}

.u-fz-30 {
  font-size: 30px !important;
}

.u-fz-32 {
  font-size: 32px !important;
}

.u-fz-34 {
  font-size: 34px !important;
}

.u-fz-36 {
  font-size: 36px !important;
}

.u-fz-38 {
  font-size: 38px !important;
}

.u-fz-40 {
  font-size: 40px !important;
}

@media screen and (max-width: 768px) {
  .u-sp-fz-18 {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-20 {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-22 {
    font-size: 22px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-24 {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-26 {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-28 {
    font-size: 28px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-30 {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-32 {
    font-size: 32px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-34 {
    font-size: 34px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-36 {
    font-size: 36px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-38 {
    font-size: 38px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-fz-40 {
    font-size: 40px !important;
  }
}

.u-c-blue {
  color: #0060FB !important;
}
.u-c-white {
  color: #ffffff !important;
}
.u-c-gray-dark {
  color: #4A4A4A !important;
}
.u-c-gray {
  color: #C3C4C5 !important;
}
.u-c-gray-note {
  color: #525252 !important;
}
.u-c-black-bright {
  color: #333333 !important;
}
.u-c-gradation-num {
  background: var(--GRADATION-NUM, linear-gradient(147deg, #0060FB 10.38%, #0060FB 57.92%, #B0F137 89.62%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.u-w-fit {
  width: fit-content !important;
}
.u-w-10p {
  width: 10% !important;
}
.u-w-20p {
  width: 20% !important;
}
.u-w-30p {
  width: 30% !important;
}
.u-w-40p {
  width: 40% !important;
}
.u-w-50p {
  width: 50% !important;
}
.u-w-60p {
  width: 60% !important;
}
.u-w-70p {
  width: 70% !important;
}
@media screen and (max-width: 768px) {
  .u-sp-w-fit {
    width: fit-content !important;
  }
  .u-sp-w-10p {
    width: 10% !important;
  }
  .u-sp-w-20p {
    width: 20% !important;
  }
  .u-sp-w-30p {
    width: 30% !important;
  }
  .u-sp-w-40p {
    width: 40% !important;
  }
  .u-sp-w-50p {
    width: 50% !important;
  }
  .u-sp-w-60p {
    width: 60% !important;
  }
  .u-sp-w-70p {
    width: 70% !important;
  }
}

/* unique style
-----------------------------------------*/
.f-article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 104px;
}
@media screen and (max-width: 768px) {
  .f-article {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (min-width: 1440px) {
  .f-article {
    left: -25%;
    width: 125%;
  }
}
.f-article:nth-of-type(n + 2) {
  margin-top: 64px;
}
.f-article__imageWrap {
  position: relative;
  left: -40px;
  max-width: 846px;
  height: auto;
  width: 123%;
  aspect-ratio: 606/728;
}
@media screen and (min-width: 1040px) {
  .f-article__imageWrap {
    left: 0;
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  .f-article__imageWrap {
    width: 100vw;
    left: 0;
    aspect-ratio: auto;
  }
}
.f-article__imageWrap .c-image {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  width: calc(100% + 40px);
}
@media screen and (min-width: 1040px) {
  .f-article__imageWrap .c-image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .f-article__imageWrap .c-image {
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .f-article__imageWrap {
    margin-left: 0;
  }
}
.f-article__image {
  width: 100%;
  position: absolute;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .f-article__image {
    position: relative;
    top: auto;
    transform: translateY(0);
  }
}
.f-article__subTitle {
  font-family: Outfit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.65px;
}
.f-article__subTitle > * {
  font-family: Outfit;
}
.f-article__textWrap {
  width: calc(100% + 40px);
}
@media screen and (min-width: 1040px) {
  .f-article__textWrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .f-article__textWrap {
    width: 100%;
  }
}