@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background-color: #f4f4f4;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* スライダー全体 */
.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライドのグループを横並び */
  overflow: hidden; /* はみ出たスライドを隠す */
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .slider-wrapper {
    display: none;
  }
}

/* スライド3枚のグループ */
.slider {
  -webkit-animation: scroll-left 20s infinite linear 0.5s both;
          animation: scroll-left 20s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* スライド3枚を横並び */
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .slider {
    -webkit-animation: scroll-left 60s infinite linear 0.5s both;
            animation: scroll-left 60s infinite linear 0.5s both;
  }
}

/* スライド */
.slide {
  width: 24vw;
}

/* スライドの画像 */
.slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.c-breadcrumbs {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs {
    margin-bottom: 0.75rem;
  }
}

.c-breadcrumbs__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__list {
    gap: 0.5rem;
  }
}

.c-breadcrumbs__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__item {
    gap: 0.5rem;
  }
}
.c-breadcrumbs__item:not(:first-child)::before {
  display: inline-block;
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 4px;
  height: 0.25rem;
  border-top: solid 1px #000;
  border-top: solid 0.0625rem #000;
  border-right: solid 1px #000;
  border-right: solid 0.0625rem #000;
  left: 10px;
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__item:not(:first-child)::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.c-breadcrumbs__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__link {
    gap: 0.625rem;
  }
}
.c-breadcrumbs__link img {
  width: 12px;
  width: 0.75rem;
  height: auto;
}

.c-btn {
  min-width: 280px;
  min-width: 17.5rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #3c5c9b;
  background-color: #fff;
  border: 2px solid #3c5c9b;
  border: 0.125rem solid #3c5c9b;
  width: 306px;
  width: 19.125rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1.1875rem;
    padding: 1rem 4rem;
    border-radius: 0.375rem;
    width: auto;
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    background-color: #3c5c9b;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
  }
}

.c-page-title__en {
  color: #3c5c9b;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-page-title__en {
    font-size: 4.875rem;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}

.c-page-title__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  margin-top: -7px;
  margin-top: -0.4375rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-page-title__ja {
    margin-top: 0;
    font-size: 1.25rem;
  }
}

.c-project-cards {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .c-project-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4375rem;
  }
}

.c-col-sidebar {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-col-sidebar {
    width: 18.2%;
  }
}

.c-col-sidebar__inner {
  padding-top: 56px;
  padding-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-col-sidebar__inner {
    gap: 2.8125rem;
    padding: 3.5rem 0;
  }
}

.c-col-sidebar__recommended {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
}

.c-col-sidebar__recommended-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}

.c-col-sidebar__recommended-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  gap: 0.8125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .c-col-sidebar__recommended-list {
    width: 100%;
    gap: 1.5625rem;
  }
}

.c-col-sidebar__recommended-item {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .c-col-sidebar__recommended-item {
    width: 100%;
  }
}

.c-col-sidebar__recommended-link {
  display: block;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
}
.c-col-sidebar__recommended-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .55)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}
@media (any-hover: hover) {
  .c-col-sidebar__recommended-link:hover .c-col-sidebar__recommended-img {
    opacity: 0.8;
  }
}

.c-col-sidebar__recommended-img {
  width: 100%;
  aspect-ratio: 320/185;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.c-col-sidebar__recommended-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
}

.c-col-sidebar__recommended-date {
  display: none;
}

.c-col-sidebar__recommended-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.45;
  text-shadow: 0 0 4px rgba(0, 0, 0, .4);
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, .4);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.c-col-sidebar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}

.c-col-sidebar__nav-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.c-col-sidebar__nav-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  color: #3c5c9b;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-col-sidebar__nav-en {
    font-size: 1.9375rem;
  }
}

.c-col-sidebar__nav-ja {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
}

.c-col-sidebar__nav-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  gap: 0.5625rem;
  row-gap: 7px;
  row-gap: 0.4375rem;
}

.c-col-sidebar__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #656565;
  border: 1px solid #898989;
  border-radius: 6.25rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (any-hover: hover) {
  .c-col-sidebar__tag:hover {
    background-color: #898989;
    color: #fff;
  }
}

.c-col-sidebar__nav:nth-of-type(2) .c-col-sidebar__tag {
  color: #3c5c9b;
  border-color: #3c5c9b;
  background-color: #fff;
}
@media (any-hover: hover) {
  .c-col-sidebar__nav:nth-of-type(2) .c-col-sidebar__tag:hover {
    background-color: #3c5c9b;
    color: #fff;
  }
}

body.active {
  height: 100%;
  overflow: hidden;
}

.header {
  height: 40px;
  height: 2.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 4.375rem;
  }
}

.header__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 3.125rem;
  }
}

.header__logo {
  max-width: 74px;
  max-width: 4.625rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 6.25rem;
  }
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 15px;
  margin-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item a {
  padding: 0 15px;
  padding: 0 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}

.header__nav-item.header__nav-item--contact a {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  position: relative;
  height: auto;
  height: initial;
  color: #fff;
  background-color: #de8430;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-left: 10px;
  margin-left: 0.625rem;
  width: 11px;
  width: 0.6875rem;
  height: 12px;
  height: 0.75rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 40px;
  width: 2.5rem;
  height: inherit;
  background-color: #de8430;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 15px;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -4px;
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 4px;
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 228px 0;
  padding: 14.25rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(98, 58, 20, .95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) {
  .l-with-sidebar__main {
    width: calc(100% - 15rem);
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .l-with-sidebar__main-inner {
    padding-inline: 2rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.p-login {
  padding: 40px 20px;
  padding: 2.5rem 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-login {
    padding: 3.75rem 25px;
  }
}

.p-login__card {
  width: 100%;
  max-width: 508px;
  max-width: 31.75rem;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, .25);
          box-shadow: 0 0 0.75rem rgba(0, 0, 0, .25);
  padding: 48px 20px;
  padding: 3rem 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
  gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-login__card {
    padding: 4rem 7.75rem 3.75rem;
    max-width: 44.5rem;
    gap: 2.0625rem;
  }
}

.p-login__card.p-login__card--register {
  gap: 14px;
  gap: 0.875rem;
}
.p-login__card.p-login__card--register .p-login__body {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.p-login__card.p-login__card--password-reset .p-login__status {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-login__card.p-login__card--password-reset .p-login__status {
    white-space: normal;
  }
}

.p-login__top {
  text-align: center;
}

.p-login__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.p-login__badge {
  display: inline-block;
  background-color: #edeff1;
  border-radius: 1.875rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #1f54a4;
}

.p-login__logo {
  width: 180px;
  width: 11.25rem;
  height: auto;
  display: block;
}

.p-login__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-login__title-wrap {
  text-align: center;
}

.p-login__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-login__title {
    font-size: 2rem;
  }
}

.p-login__desc {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-login__desc {
    font-size: 1rem;
  }
}

.p-login__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-login__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-login__body--spaced {
  gap: 40px;
  gap: 2.5rem;
}

.p-login__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-login__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-login__field-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
  gap: 1.1875rem;
}

.p-login__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.p-login__label-bar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  width: 0.25rem;
  height: 24px;
  height: 1.5rem;
  background-color: #3c5c9b;
}

.p-login__label-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-login__label-text {
    font-size: 1.25rem;
  }
}

.p-login__input-wrap {
  position: relative;
}

.p-login__input {
  width: 100%;
  padding: 12px;
  padding: 0.75rem;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border: 0.0625rem solid #d9d9d9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .p-login__input {
    padding: 1rem;
  }
}

.p-login__input::-webkit-input-placeholder {
  color: #999999;
}

.p-login__input::-moz-placeholder {
  color: #999999;
}

.p-login__input::-ms-input-placeholder {
  color: #999999;
}

.p-login__input::placeholder {
  color: #999999;
}

.p-login__input--with-eye {
  padding-right: 48px;
  padding-right: 3rem;
}

.p-login__eye-btn {
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-login__eye-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-login__eye-icon--show {
  display: none;
}

.p-login__eye-btn.is-visible .p-login__eye-icon--hide {
  display: none;
}
.p-login__eye-btn.is-visible .p-login__eye-icon--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-login__forgot-link {
  display: block;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-underline-offset: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-login__forgot-link {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-login__forgot-link:hover {
    opacity: 0.8;
  }
}

.p-login__btn {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 14px 65px;
  padding: 0.875rem 4.0625rem;
  background-color: #3c5c9b;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media (any-hover: hover) {
  .p-login__btn:hover {
    opacity: 0.8;
  }
}

.p-login__form > .p-login__btn {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.p-login__register-link {
  display: block;
  text-align: center;
  padding: 10px 6px 6px;
  padding: 0.625rem 0.375rem 0.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #3c5c9b;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-underline-offset: 0.625rem;
  text-decoration-thickness: 1px;
  text-decoration-thickness: 0.0625rem;
}
@media (any-hover: hover) {
  .p-login__register-link:hover {
    opacity: 0.8;
  }
}

.p-login__benefits {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  padding: 1.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-login__benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  gap: 0.5rem;
}

.p-login__benefit-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-login__benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-login__benefit-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
}

.p-login__status {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
  text-align: center;
}

.p-login__note {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
}

.p-login__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-login__result-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
  text-align: center;
}

.p-column__article {
  position: relative;
  background-color: #fff;
  text-decoration: none;
  color: #000;
  display: block;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-column__article:hover .p-column__article-photo img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-column__article-photo {
  overflow: hidden;
  aspect-ratio: 268/145;
}

.p-column__article-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-column__article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-column__article-body {
  padding: 23px 25px 26px;
  padding: 1.4375rem 1.5625rem 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-column__article-body {
    padding: 1.3125rem 0.8125rem 1.9375rem;
  }
}

.p-column__article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-column__article-meta {
    gap: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

.p-column__article-date {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-column__article-date {
    font-size: 0.9375rem;
  }
}

.p-column__article-cat {
  position: relative;
  z-index: 10;
  text-decoration: none;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  border-radius: 6.25rem;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-column__article-cat {
    font-size: 0.6875rem;
  }
}

.p-column__article-cat--solar {
  background-color: #fff;
  color: #2055a4;
  border: 1px solid #2055a4;
}

.p-column__article-cat--battery {
  background-color: #fff;
  color: #3c5c9b;
  border: 1px solid #3c5c9b;
}

.p-column__article-title {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-column__article-title {
    font-size: 1.125rem;
    margin-bottom: 0.4375rem;
  }
}

.p-column__article-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  gap: 0.375rem;
}

.p-column__article-tag {
  position: relative;
  z-index: 10;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  color: #656565;
  border: 1px solid #898989;
  border-radius: 6.25rem;
  padding: 3px 16px;
  padding: 0.1875rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-column__article-tag {
    padding: 0.125rem 1rem;
    font-size: 0.6875rem;
  }
}

.p-column__article-title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.p-page__hero {
  position: relative;
}

.p-page__hero-body {
  position: absolute;
  top: 9%;
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-page__hero-body {
    left: 2.1875rem;
    top: auto;
    top: 19%;
    padding-inline: 0;
  }
}

.p-page__hero-en {
  color: #3c5c9b;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 900;
  font-size: 55px;
  font-size: 3.4375rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-page__hero-en {
    font-size: 4.875rem;
  }
}

.p-page__hero-ja {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 7px;
  margin-top: 0.4375rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-page__hero-ja {
    font-size: 1.25rem;
    margin-top: 0;
  }
}

.p-page__hero-text {
  margin-top: 37px;
  margin-top: 2.3125rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-page__hero-text {
    margin-top: 3.9375rem;
    line-height: 1.9;
    font-size: 1.0625rem;
  }
}

.c-project-card {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.5rem;
}

.c-project-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  border-radius: 0.5rem;
  position: relative;
}

.c-project-card__new {
  position: absolute;
  top: -9px;
  top: -0.5625rem;
  z-index: 1;
  left: 8px;
  left: 0.5rem;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #ffb200;
  font-family: "Arial", sans-serif;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-project-card__photo {
  position: relative;
  overflow: hidden;
  background-color: #d9d9d9;
  border-radius: 0.5rem 0.5rem 0 0;
}
.c-project-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
  aspect-ratio: 334/180;
}

.c-project-card__body {
  padding: 28px 24px 20px;
  padding: 1.75rem 1.5rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-project-card__body {
    padding: 1.75rem 1.25rem 1.25rem;
  }
}

.c-project-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-project-card__yield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4px;
  gap: 0.25rem;
}

.c-project-card__yield-num {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  font-family: "Hanken Grotesk", sans-serif;
  line-height: 1;
}

.c-project-card__yield-pct {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.c-project-card__yield-pct .tax {
  font-size: 12px;
  font-size: 0.75rem;
}

.c-project-card__favorite {
  position: absolute;
  top: 23px;
  top: 1.4375rem;
  right: 24px;
  right: 1.5rem;
  z-index: 2;
  height: 32px;
  height: 2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-project-card__favorite {
    right: 1.5rem;
    width: 1.8125rem;
  }
}

.c-project-card__favorite-icon {
  fill: #d6d6d6;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}

.c-project-card__favorite.is-favorited .c-project-card__favorite-icon {
  fill: #ffb200;
}

.c-project-card__favorite.is-favorited img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1.01 0 0 0 0 0 1 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0.67 0.32999999999999996" /><feFuncG type="table" tableValues="0.67 0.32999999999999996" /><feFuncB type="table" tableValues="0.67 0.32999999999999996" /></feComponentTransfer><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.52047 0.60751 0.14931 0 0 0.27571 0.75194 0.13272 0 0 0.21488000000000002 0.42186 0.31348999999999994 0 0 0 0 0 1 0" /><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="13.639219999999998 -11.482899999999999 -1.1563199999999998 0 0 -3.4207799999999997 5.747699999999999 -1.1563199999999998 0 0 -3.4207799999999997 -11.482899999999999 15.90368 0 0 0 0 0 1 0" /><feColorMatrix type="hueRotate" color-interpolation-filters="sRGB" values="15" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.07" /><feFuncG type="linear" slope="1.07" /><feFuncB type="linear" slope="1.07" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.91" intercept="0.044999999999999984" /><feFuncG type="linear" slope="0.91" intercept="0.044999999999999984" /><feFuncB type="linear" slope="0.91" intercept="0.044999999999999984" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) saturate(100%) invert(67%) sepia(79%) saturate(1706%) hue-rotate(15deg) brightness(107%) contrast(91%);
          filter: brightness(0) saturate(100%) invert(67%) sepia(79%) saturate(1706%) hue-rotate(15deg) brightness(107%) contrast(91%);
}

.c-project-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  gap: 0.1875rem;
}

.c-project-card__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  margin: 0;
}

.c-project-card__name img {
  width: 11px;
  width: 0.6875rem;
  height: 26px;
  height: 1.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.c-project-card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-project-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
  padding: 0.25rem 0;
  border-bottom: 1px dotted #d9d9d9;
  font-size: 12px;
  font-size: 0.75rem;
}
.c-project-card__row:last-child {
  border-bottom: none;
}

.c-project-card__key {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}

.c-project-card__val {
  color: #000;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
}

.c-project-card__val-unit {
  font-size: 17px;
  font-size: 1.0625rem;
}

.c-project-card__val--month {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
}
.c-project-card__val--month span {
  font-size: 12px;
  font-size: 0.75rem;
}

.c-project-card__prefecture {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: 23px;
  left: 1.4375rem;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-project-card__prefecture {
    top: -1.125rem;
    left: 1.125rem;
  }
}
.c-project-card__prefecture--battery {
  background-color: #3c5c9b;
}
.c-project-card__prefecture--solar {
  background-color: #2ea980;
}

.c-sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-sidebar {
    z-index: 10;
    display: block;
    width: 15rem;
    background-color: #fff;
    min-height: 100vh;
    position: fixed;
    top: 0;
    height: 100vh;
    overflow-y: auto;
  }
}

.c-sidebar__inner {
  padding: 48px 0 32px;
  padding: 3rem 0 2rem;
}

.c-sidebar__category {
  background-color: #edeff1;
  font-weight: 700;
  color: #2055a4;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 8px 0;
  padding: 0.5rem 0;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 24px;
  margin: 0 1.5rem;
  border-radius: 1.875rem;
}

.c-sidebar__logo {
  padding: 0 24px;
  padding: 0 1.5rem;
  width: 95%;
  margin: 13px auto 0;
  margin: 0.8125rem auto 0;
}
.c-sidebar__logo img {
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .c-sidebar__nav {
    margin-top: 2.875rem;
  }
}

.c-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-sidebar__item {
  border-top: 1px solid #d9d9d9;
}
.c-sidebar__item:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.c-sidebar__item--current .c-sidebar__link {
  background-color: #f4f4f4;
}

.c-sidebar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  gap: 0.125rem;
  padding: 15px 24px;
  padding: 0.9375rem 1.5rem;
  text-decoration: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.c-sidebar__link:hover {
  opacity: 1;
}
.c-sidebar__link:hover .c-sidebar__desc {
  color: #3c5c9b;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
}

.c-sidebar__desc {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  display: block;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.c-sidebar__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #3c5c9b;
  display: block;
}

.c-sidebar__cta {
  margin: 38px 24px 0;
  margin: 2.375rem 1.5rem 0;
  text-align: center;
  background-color: #fff;
}

.c-sidebar__cta-register-area {
  border: 1px solid #3c5c9b;
  padding: 16px 9px;
  padding: 1rem 0.5625rem;
  margin-block: 15px;
  margin-block: 0.9375rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.c-sidebar__cta-text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #000;
  letter-spacing: 0.02em;
}

.c-sidebar__cta-name {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #3c5c9b;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

.c-sidebar__cta-register {
  display: block;
  background-color: #2055a4;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border: 2px solid #3c5c9b;
  border: 0.125rem solid #3c5c9b;
}
@media (any-hover: hover) {
  .c-sidebar__cta-register:hover {
    opacity: 1;
    background-color: #fff;
    color: #3c5c9b;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

.c-sidebar__cta-login {
  display: block;
  background-color: #fff;
  color: #3c5c9b;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 11px 16px;
  padding: 0.6875rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid #3c5c9b;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .c-sidebar__cta-login:hover {
    background-color: #3c5c9b;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
  }
}

/*======================================
            ログイン時
=======================================*/
.c-sidebar__cta-register-area-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}
.c-sidebar__cta-register-area-user span {
  width: 21%;
}

.c-sidebar__cta-register-area-user-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
}

.p-project-detail__header-right .p-project-swiper__pagination {
  position: absolute;
  bottom: -37px;
  bottom: -2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__header-right .p-project-swiper__pagination {
    bottom: -2.75rem;
  }
}
.p-project-detail__header-right .p-project-swiper__pagination .swiper-pagination-bullet {
  background-color: #3c5c9b;
  background: #b2b6bf;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-project-detail__header-right .p-project-swiper__pagination .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.p-project-detail__header-right .p-project-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #3c5c9b;
  opacity: 1;
}

.swiper-scrollbar {
  position: absolute;
  bottom: -73px !important;
  bottom: -4.5625rem !important;
  left: 0 !important;
}
@media screen and (min-width: 768px) {
  .swiper-scrollbar {
    bottom: -2.3125rem !important;
  }
}

.swiper-scrollbar-drag {
  background-color: #3c5c9b !important;
}

.swiper-scrollbar-horizontal {
  background-color: #bcbcbc !important;
}

/*======================================
            蓄電池とは
=======================================*/
.p-battery__policy-slider {
  position: relative;
}

.p-battery__policy-slider .p-battery__policy-slider-controls {
  position: absolute;
  bottom: 23px;
  bottom: 1.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.p-battery__policy-slider-controls .policy-swiper-button-next {
  position: absolute;
  right: -44px;
  right: -2.75rem;
  top: 0;
}
.p-battery__policy-slider-controls .policy-swiper-button-prev {
  position: absolute;
  left: -44px;
  left: -2.75rem;
  top: 0;
}

.test {
  font-size: 100px;
  font-size: 6.25rem;
  background-color: #000;
  color: #fff;
}

.p-battery__main-inner {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-battery__main-inner {
    padding-inline: 2.375rem;
  }
}

.p-battery__hero {
  position: relative;
}

.p-battery__hero-img {
  width: 100%;
}
.p-battery__hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-battery__hero-body {
  position: absolute;
  inset: 0;
  top: 45px;
  top: 2.8125rem;
  left: 17px;
  left: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__hero-body {
    top: 3.4375rem;
    left: 2.5rem;
  }
}

.p-battery__hero-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.16;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-battery__hero-en {
    font-size: 5.5rem;
    line-height: 1;
    font-size: clamp(2.875rem, -0.125rem + 6.25vw, 5.5rem);
  }
}

.p-battery__hero-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__hero-ja {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.p-battery__hero-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__hero-sub {
    font-size: 1.875rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-battery__hero-sub {
    margin-top: 4.9375rem;
  }
}

.p-battery__hero-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 96%;
}
@media screen and (min-width: 768px) {
  .p-battery__hero-text {
    font-size: 1rem;
    line-height: 2;
    width: 100%;
  }
}

.p-battery__nav-bar {
  padding-block: 16px 34px;
  padding-block: 1rem 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  -o-border-image: linear-gradient(#fff 0 0) 0/0/0 100vw;
     border-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) fill 0/0/0 100vw;
     border-image: linear-gradient(#fff 0 0) fill 0/0/0 100vw;
}
@media screen and (min-width: 768px) {
  .p-battery__nav-bar {
    gap: 2.875rem;
    padding-block: 1rem 3.625rem;
  }
}

.p-battery__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
}

.p-battery__breadcrumb-link {
  color: #000;
  text-decoration: none;
}

.p-battery__breadcrumb-sep {
  display: inline-block;
  width: 4px;
  width: 0.25rem;
  height: 7px;
  height: 0.4375rem;
  border-top: 1.5px solid #000;
  border-top: 0.09375rem solid #000;
  border-right: 1.5px solid #000;
  border-right: 0.09375rem solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-battery__breadcrumb-current {
  color: #000;
}

.p-battery__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 12px;
  row-gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-battery__tabs {
    gap: 2.75rem;
  }
}

.p-battery__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-battery__tab {
    font-size: 1.125rem;
    gap: 1.0625rem;
  }
}
.p-battery__tab::after {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-color: #130079;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 3l3 4 3-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-battery__tab::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-battery__section {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-battery__section {
    margin-top: 5.9375rem;
  }
}

.p-battery__section--gray .p-battery__section-inner {
  background-color: #f2f5f8;
}

.p-battery__section--blue {
  margin-top: 64px;
  margin-top: 4rem;
  -o-border-image: linear-gradient(#e6ebf4 0 0) 0/0/0 100vw;
     border-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e6ebf4)) fill 0/0/0 100vw;
     border-image: linear-gradient(#e6ebf4 0 0) fill 0/0/0 100vw;
}
@media screen and (min-width: 768px) {
  .p-battery__section--blue {
    margin-top: 2.25rem;
    padding-block: 3.8125rem 6.25rem;
  }
}
.p-battery__section-head {
  background: -webkit-gradient(linear, left top, right top, from(#1f4b9d), to(#1e2e4d));
  background: linear-gradient(90deg, #1f4b9d 0%, #1e2e4d 100%);
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-battery__section-head {
    padding: 2.3125rem 2.5625rem 2.75rem;
  }
}

.p-battery__section-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-battery__section-en {
    font-size: 4rem;
  }
}

.p-battery__section-ja {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 8px 0 0;
  margin: 0.5rem 0 0;
  position: relative;
  z-index: 1;
}
.p-battery__section-icon {
  position: absolute;
  right: -14px;
  right: -0.875rem;
  top: 29%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 120px;
  height: 7.5rem;
  width: auto;
  opacity: 0.25;
  pointer-events: none;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .p-battery__section-icon {
    width: 18.875rem;
    height: auto;
    right: 2.6875rem;
  }
}

.icon-thunder.p-battery__section-icon {
  height: 85px;
  height: 5.3125rem;
  right: 8px;
  right: 0.5rem;
  top: 29%;
}
@media screen and (min-width: 768px) {
  .icon-thunder.p-battery__section-icon {
    width: 18.875rem;
    height: auto;
    right: 1.25rem;
  }
}

.hydro-power .p-battery__section-icon {
  top: 37%;
  right: 6px;
  right: 0.375rem;
}

.risk-icon.p-battery__section-icon {
  right: -26px;
  right: -1.625rem;
  top: 52%;
  height: 183px;
  height: 11.4375rem;
}
@media screen and (min-width: 768px) {
  .risk-icon.p-battery__section-icon {
    top: 53%;
    height: auto;
    right: 1.25rem;
  }
}

.p-battery__section-inner {
  padding-block: 26px 17px;
  padding-block: 1.625rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__section-inner {
    padding-block: 3.0625rem 1.0625rem;
  }
}

.p-battery__h1-display {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-battery__h1-display {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2.25rem;
  }
}

.p-battery__business-text {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-battery__business-text {
    text-align: center;
    margin-inline: auto;
    width: 82%;
    font-size: 1.25rem;
  }
}

.p-battery__model-message {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 38px;
  margin-top: 2.375rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-battery__model-message {
    font-size: 2.5rem;
    margin-top: 3.75rem;
  }
}
.p-battery__model-message span {
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-battery__model-message span {
    border-bottom: none;
  }
}

.p-battery__model-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__model-text {
    width: 76%;
    margin-top: 1.3125rem;
  }
}

.p-battery__model-img {
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__model-img {
    margin-top: 3.125rem;
  }
}

.p-battery__product-title {
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-battery__product-title {
    font-size: 2.75rem;
    margin-top: 8.75rem;
    padding-bottom: 0.875rem;
  }
}
.p-battery__product-title .number {
  color: #3c5c9b;
  font-size: 39px;
  font-size: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__product-title .number {
    font-size: 3.875rem;
  }
}

.p-battery__h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-battery__h2 {
    font-size: 2.5rem;
  }
}
.p-battery__h2 span {
  color: #3c5c9b;
}

.p-battery__h2-accent {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
  color: #2055a4;
  letter-spacing: 0.07em;
  vertical-align: middle;
}

.p-battery__h2-strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 900;
  color: #222222;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-battery__h2-strong {
    font-size: 1.375rem;
  }
}

.p-battery__h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__h3 {
    font-size: 1.875rem;
    margin-top: 5.0625rem;
  }
}

.p-battery__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__text {
    line-height: 2;
    width: 71%;
    margin-top: 1.3125rem;
  }
}

.p-battery__text.risk-text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  margin-block: 26px;
  margin-block: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__text.risk-text {
    width: 100%;
    margin-block: 1.3125rem 3.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-battery__text.refused-text {
    width: 100%;
    margin-block: 1.375rem 3.0625rem;
  }
}

.p-battery__refused-title {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.6;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-battery__refused-title {
    font-size: 2.5rem;
    margin-top: 8.0625rem;
  }
}

.p-battery__system-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
  margin-block: 34px;
  margin-block: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-battery__system-title {
    font-size: 2.5rem;
    margin-block: 2.125rem 1rem;
  }
}
.p-battery__system-title span {
  color: #3c5c9b;
}

.p-battery__text-lg {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #000;
  line-height: 1.85;
}
@media screen and (min-width: 768px) {
  .p-battery__text-lg {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.p-battery__title.p-battery__text-lg--market {
  margin-top: 10px;
  margin-top: 0.625rem;
  letter-spacing: 0.05em;
}
.p-battery__title.p-battery__text-lg--market span {
  color: #3c5c9b;
}

@media screen and (min-width: 768px) {
  .p-battery__text-lg.p-battery__text-lg--market {
    width: 83%;
    margin-inline: auto;
  }
}

.p-battery__text-lg.p-battery__text-lg--market span {
  color: #3c5c9b;
}

.p-battery__title-diff {
  font-weight: 900;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__title-diff {
    font-size: 2.375rem;
    margin-top: 4.6875rem;
  }
}

.p-battery__title-diff-text {
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-battery__title-diff-text {
    font-size: 1.0625rem;
    margin-top: 2.3125rem;
  }
}

.p-battery__diff-block {
  margin-top: 31px;
  margin-top: 1.9375rem;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .p-battery__diff-block {
    overflow: visible;
    overflow: initial;
    width: 100%;
    margin-top: 3.3125rem;
  }
}
.p-battery__diff-block img {
  width: 583px;
  width: 36.4375rem;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .p-battery__diff-block img {
    width: 100%;
  }
}

.p-battery__diff-block::-webkit-scrollbar {
  height: 6px;
  height: 0.375rem;
}

.p-battery__diff-block::-webkit-scrollbar-track {
  background: #e6ebf4;
}

.p-battery__diff-block::-webkit-scrollbar-thumb {
  background: #3c5c9b;
  border-radius: 0.625rem;
}

.p-battery__term-block {
  margin-block: 33px 140px;
  margin-block: 2.0625rem 8.75rem;
}
@media screen and (min-width: 768px) {
  .p-battery__term-block {
    margin-block: 7.75rem;
  }
}

.p-battery__term-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.p-battery__term-title .number {
  color: #3c5c9b;
  font-size: 39px;
  font-size: 2.4375rem;
}
.p-battery__term-title .unit {
  font-size: 30px;
  font-size: 1.875rem;
}
.p-battery__term-title .term {
  color: #3c5c9b;
  font-size: 30px;
  font-size: 1.875rem;
}

.p-battery__goal-img {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-battery__goal-img {
    margin-top: 2.3125rem;
  }
}

.p-battery__issue-list {
  margin-top: 35px;
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.4375rem;
    margin-top: 2.9375rem;
  }
}

.p-battery__issue-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  background-color: #fff;
  border-radius: 0.875rem;
  padding: 31px 24px 15px;
  padding: 1.9375rem 1.5rem 0.9375rem;
  -webkit-box-shadow: 0 0 3.84px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0 3.84px 0 rgba(0, 0, 0, .25);
  min-height: 176px;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-item {
    padding: 2.6875rem 1.5rem 1rem;
  }
}

.p-battery__issue-badge {
  position: absolute;
  top: -14px;
  top: -0.875rem;
  left: 23px;
  left: 1.4375rem;
  display: inline-block;
  background-color: #1d345e;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 15px;
  padding: 0.375rem 0.9375rem;
  border-radius: 1.875rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-badge {
    left: 1.75rem;
    padding: 0.375rem 0.8125rem;
  }
}

.p-battery__issue-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-content {
    gap: 1.3125rem;
  }
}

.p-battery__issue-label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2055a4;
  letter-spacing: 0.1em;
  margin: 0;
}

.p-battery__issue-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  width: 3.75rem;
  height: 71px;
  height: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-icon {
    margin-top: 0.4375rem;
    width: 3.875rem;
    height: 3.875rem;
  }
}
.p-battery__issue-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-battery__issue-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  color: #3c5c9b;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-title {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

.p-battery__issue-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-battery__issue-text {
    letter-spacing: 0.05em;
  }
}

.p-battery__arrow {
  width: 48px;
  width: 3rem;
  margin-block: 31px;
  margin-block: 1.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-battery__arrow {
    width: 8%;
    margin-block: 2.375rem;
  }
}

.p-battery__feature-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  margin-top: 26px;
  margin-top: 1.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.3125rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-battery__feature-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 25px 20px 23px;
  padding: 1.5625rem 1.25rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-card {
    padding: 1.25rem 1.3125rem 1.25rem;
    width: 50%;
    border-radius: 0.9375rem;
  }
}

.p-battery__feature-card-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-battery__feature-card-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-card-icon {
    width: 3.9375rem;
    height: 3.9375rem;
  }
}
.p-battery__feature-card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-battery__feature-card-body {
  text-align: left;
}
.p-battery__feature-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-card-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.5625rem;
  }
}

.p-battery__feature-card-label {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #3c5c9b;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 1px 10px;
  padding: 0.0625rem 0.625rem;
  border-radius: 0.25rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-card-label {
    display: inline-block;
    width: auto;
    font-size: 0.75rem;
    padding: 0.125rem 0.6875rem 0.125rem;
  }
}

.p-battery__feature-card-title {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-card-title {
    line-height: 1;
    font-size: 1.25rem;
  }
}

.p-battery__feature-card-desc {
  font-size: 14px;
  font-size: 0.875rem;
  color: #434343;
  margin-top: 19px;
  margin-top: 1.1875rem;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-battery__feature-card-desc {
    text-align: center;
    margin-top: 0.375rem;
  }
}

.p-battery__green-banner {
  background-color: #2ea980;
  border-radius: 1.125rem;
  padding: 32px 16px;
  padding: 2rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-battery__green-banner {
    border-radius: 1.5rem;
    padding: 2.5625rem 2.5rem 4.0625rem;
  }
}

.p-battery__green-banner-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-battery__green-banner-text {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}

.p-battery__notes {
  list-style: none;
  margin-top: 18px;
  margin-top: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-battery__notes {
    margin-top: 1.6875rem;
    margin-left: 1.3125rem;
    gap: 0.25rem;
  }
}
.p-battery__notes li {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-battery__notes li {
    font-size: 0.875rem;
  }
}
.p-battery__notes li + li {
  margin-top: -4px;
  margin-top: -0.25rem;
}

.p-battery__img-block {
  width: 100%;
}
.p-battery__img-block img {
  width: 100%;
  height: auto;
  display: block;
}
.p-battery__img-block--small {
  max-width: 400px;
  max-width: 25rem;
  margin: 0 auto;
}
.p-battery__img-block--small img {
  width: 100%;
}
.p-battery__img-block--natural {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-battery__img-block--natural img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.p-battery__title {
  font-size: 31px;
  font-size: 1.9375rem;
  margin-block: 20px;
  margin-block: 1.25rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-battery__title {
    text-align: center;
    font-size: 3.4375rem;
    margin-block: 2.1875rem;
  }
}

.p-battery__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-battery__policy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6%;
    margin-top: 1.1875rem;
  }
}

.p-battery__policy-list {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-battery__policy-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 46%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-battery__policy-item {
  border-bottom: 2px solid #d9d9d9;
  border-bottom: 0.125rem solid #d9d9d9;
  padding-left: 39px;
  padding-left: 2.4375rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 43px;
  padding-top: 2.6875rem;
}
.p-battery__policy-item.is-active {
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
}
.p-battery__policy-item.is-active .p-battery__policy-trigger .p-battery__policy-num {
  color: #2055a4;
}
.p-battery__policy-item.is-active .p-battery__policy-trigger .p-battery__policy-title {
  color: #0b2966;
}

@media screen and (min-width: 768px) {
  .js-policy-slider {
    display: none;
  }
}

.p-battery__policy-slider-item {
  padding-block: 45px;
  padding-block: 2.8125rem;
}

.p-battery__policy-slider-title {
  font-size: 24px;
  font-size: 1.5rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
}
.p-battery__policy-slider-title span {
  color: #3c5c9b;
  margin-right: 16px;
  margin-right: 1rem;
}

.p-battery__policy-slider-img {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-battery__policy-slider-img img {
  aspect-ratio: 343/320;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-battery__policy-slider-text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  line-height: 1.7;
}

.p-battery__policy-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (any-hover: hover) {
  .p-battery__policy-trigger:hover {
    opacity: 0.8;
  }
}

.p-battery__policy-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 700;
  color: #a7a7a7;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 44px;
  min-width: 2.75rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.p-battery__policy-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #a7a7a7;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.p-battery__policy-panels {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-battery__policy-panels {
    display: block;
  }
}

.p-battery__policy-panel {
  display: none;
}
.p-battery__policy-panel.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-battery__policy-panel-image {
  width: 100%;
  aspect-ratio: 532/375;
  margin-top: 41px;
  margin-top: 2.5625rem;
}
.p-battery__policy-panel-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-battery__policy-panel-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-battery__policy-panel-text {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
}

.p-battery__policy-attention-list {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-battery__policy-attention-list {
    margin-left: 1.375rem;
    margin-top: 1.3125rem;
    font-size: 0.875rem;
  }
}
.p-battery__policy-attention-list li + li {
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-battery__section--gray {
  margin-top: 39px;
  margin-top: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__section--gray {
    margin-top: 3.9375rem;
  }
}

.p-battery__major-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  line-height: 1.8;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-battery__major-title {
    font-size: 2.5625rem;
    margin-block: 1.375rem;
    margin-top: 9.0625rem;
    line-height: 1.6;
  }
}

.p-battery__increase-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 35px;
  margin-top: 2.1875rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__increase-title {
    font-size: 2.75rem;
    margin-top: 7.125rem;
    display: inline-block;
    border-bottom: 0.125rem solid #3c5c9b;
    padding-bottom: 21px;
  }
}
.p-battery__increase-title .number {
  color: #3c5c9b;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-battery__increase-title .number {
    font-size: 4.25rem;
  }
}

.p-battery__increase-img {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-battery__increase-img {
    margin-top: 6.5625rem;
  }
}

.p-battery__policy-panel-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}
.p-battery__policy-panel-notes li {
  font-size: 12px;
  font-size: 0.75rem;
  color: #6b6b6b;
  line-height: 1.6;
}

.p-battery__markets {
  margin-top: 19px;
  margin-top: 1.1875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__markets {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
  }
}

.p-battery__market-card {
  background-color: #fff;
  border: 2px solid #3c5c9b;
  border: 0.125rem solid #3c5c9b;
  border-radius: 0.875rem;
  padding: 12px 20px 26px;
  padding: 0.75rem 1.25rem 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-battery__market-card {
    padding: 1.125rem 1.5rem 1.125rem;
  }
}

.p-battery__market-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  gap: 0.75rem;
}

.p-battery__market-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b2966;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-battery__market-num {
    font-size: 1.25rem;
  }
}

.p-battery__market-icon {
  width: 80px;
  width: 5rem;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-battery__market-icon {
    width: 5.625rem;
  }
}
.p-battery__market-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-battery__market-icon.market-icon-2,
.p-battery__market-icon.market-icon-3 {
  width: 60px;
  width: 3.75rem;
  height: 73px;
  height: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__market-icon.market-icon-2,
  .p-battery__market-icon.market-icon-3 {
    width: 4.75rem;
    height: 5.5rem;
  }
}

.p-battery__market-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__market-title {
    font-size: 1.625rem;
    margin-top: 0.375rem;
  }
}

.p-battery__market-sub {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2055a4;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-battery__market-sub {
    font-size: 1.375rem;
    margin-top: -0.1875rem;
  }
}

.p-battery__market-body-title {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.p-battery__market-body {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__market-body {
    margin-top: 2.0625rem;
  }
}

.p-battery__market-body-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__market-body-text {
    margin-top: 1.25rem;
  }
}

.p-battery__step-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

.p-battery__step-list {
  list-style: none;
  padding: 0;
  margin-top: 90px;
  margin-top: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 116px;
  gap: 7.25rem;
}
@media screen and (min-width: 768px) {
  .p-battery__step-list {
    width: 95%;
    margin-inline: auto;
    gap: 3.3125rem;
    margin-top: 3.875rem;
  }
}

.p-battery__step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  gap: 0.875rem;
  padding: 38px 17px 20px;
  padding: 2.375rem 1.0625rem 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  position: relative;
  min-height: 151px;
  min-height: 9.4375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__step-item {
    gap: 1.25rem;
    padding: 1.5rem 3.5rem 1.75rem 12.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 9.25rem;
    width: 95%;
    margin-inline: auto;
  }
}
.p-battery__step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -27px;
  bottom: -1.6875rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-left: 0.875rem solid transparent;
  border-right: 14px solid transparent;
  border-right: 0.875rem solid transparent;
  border-top: 10px solid #2055a4;
  border-top: 0.625rem solid #2055a4;
}
@media screen and (min-width: 768px) {
  .p-battery__step-item:not(:last-child)::after {
    bottom: -2.5625rem;
    border-left-width: 1.5rem;
    border-right-width: 1.5rem;
    border-top-width: 1.125rem;
  }
}

.p-battery__step-icon {
  position: absolute;
  left: 50%;
  top: -72px;
  top: -4.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border: 0.0625rem solid #d9d9d9;
  color: #0b2966;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-battery__step-icon {
    width: 11rem;
    height: 11rem;
    left: -2.875rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-battery__step-icon svg {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}
.p-battery__step-icon img {
  width: 52px;
  width: 3.25rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-battery__step-icon img {
    width: 5.0625rem;
  }
}

.p-battery__step-icon.step-icon-1 img {
  width: 46px;
  width: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__step-icon.step-icon-1 img {
    width: 5.0625rem;
  }
}

.p-battery__step-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-battery__step-body {
    gap: 0.125rem;
  }
}

.p-battery__step-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3c5c9b;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-battery__step-title {
    font-size: 1.75rem;
  }
}

.p-battery__step-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-battery__step-text {
    margin-top: 0.6875rem;
    font-size: 1.1875rem;
  }
}

.p-battery__step-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #0b2966;
}

.p-battery__step-label {
  font-family: "Hanken Grotesk", sans-serif;
  color: #898989;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 6px;
  margin-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__step-label {
    font-size: 1.25rem;
    margin-left: 0;
  }
}

.p-battery__step-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-style: italic;
  line-height: 0.9;
  color: #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-battery__step-num {
    font-size: 4.625rem;
  }
}

.p-battery__decide-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.6;
  margin-top: 33px;
  margin-top: 2.0625rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-battery__decide-title {
    font-size: 2.5rem;
    margin-top: 8.0625rem;
    margin-bottom: 1.375rem;
  }
}

.p-battery__investmentRisk-title {
  font-size: 32px;
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-battery__investmentRisk-title {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 3.5rem;
    line-height: 1.5;
  }
}
.p-battery__investmentRisk-title span {
  color: #3c5c9b;
}

.p-battery__investmentRisk-text {
  margin-top: 13px;
  margin-top: 0.8125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.86;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-battery__investmentRisk-text {
    margin-top: 2.0625rem;
    font-size: 1.25rem;
    width: 82%;
    margin-inline: auto;
    line-height: 1.7;
  }
}
.p-battery__investmentRisk-text span {
  color: #3c5c9b;
}

.p-battery__investmentRisk-message {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.6;
  margin-top: 38px;
  margin-top: 2.375rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #3c5c9b;
  border-bottom: 0.125rem solid #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-battery__investmentRisk-message {
    font-size: 2.5rem;
    margin-top: 8.0625rem;
  }
}

.p-battery__pm-list {
  margin-top: 19px;
  margin-top: 1.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-list {
    margin-top: 3.5rem;
    gap: 2rem;
  }
}

.p-battery__pm-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  background-color: #fff;
  padding: 24px 23px;
  padding: 1.5rem 1.4375rem;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1.8125rem;
    padding: 2.8125rem 2.6875rem 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-battery__pm-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-battery__pm-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    min-width: 0;
    gap: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-battery__pm-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3c5c9b;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-num {
    font-size: 1.1875rem;
  }
}

.p-battery__pm-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
  color: #3c5c9b;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-title {
    font-size: 2rem;
    margin-top: 0.375rem;
  }
}

.p-battery__pm-question {
  color: #3c5c9b;
  border-left: 4px solid #3c5c9b;
  border-left: 0.25rem solid #3c5c9b;
  background-color: #eff2f7;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-question {
    font-size: 1.25rem;
    padding: 0.625rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-battery__pm-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-text {
    margin-top: 0.75rem;
  }
}

.p-battery__pm-note {
  background-color: #eff2f7;
  border-radius: 0.375rem;
  padding: 15px 14px 9px 9px;
  padding: 0.9375rem 0.875rem 0.5625rem 0.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-note {
    margin-top: 1.625rem;
    gap: 0.75rem;
    min-height: 7.875rem;
    padding: 1.125rem 1.3125rem 1rem 1rem;
  }
}

.p-battery__pm-note-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #4969a7;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, .1), 0 0.0625rem 0.1875rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, .1), 0 0.0625rem 0.1875rem rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-battery__pm-note-label {
    padding: 0.5rem 0.75rem;
  }
}

.p-battery__pm-note-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  margin: 0;
}
.p-battery__pm-img {
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-battery__pm-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    min-width: 0;
  }
}
.p-battery__pm-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  min-height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-battery__category-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-battery__category-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.p-battery__category-card {
  background-color: #fff;
  border-radius: 0.625rem;
  border-left: 6px solid #2d4773;
  border-left: 0.375rem solid #2d4773;
  padding: 18px 24px;
  padding: 1.125rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  -webkit-box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .p-battery__category-card {
    padding: 1.5rem;
  }
}
.p-battery__category-card.color-1 {
  border-left-color: #2d4773;
}
.p-battery__category-card.color-1 .p-battery__category-num {
  background-color: #2d4773;
}
.p-battery__category-card.color-1 .p-battery__category-list li > span {
  color: #2d4773;
}
.p-battery__category-card.color-2 {
  border-left-color: #3c5c9b;
}
.p-battery__category-card.color-2 .p-battery__category-num {
  background-color: #3c5c9b;
}
.p-battery__category-card.color-2 .p-battery__category-list li > span {
  color: #3c5c9b;
}
.p-battery__category-card.color-3 {
  border-left-color: #4d6caa;
}
.p-battery__category-card.color-3 .p-battery__category-num {
  background-color: #4d6caa;
}
.p-battery__category-card.color-3 .p-battery__category-list li > span {
  color: #4d6caa;
}
.p-battery__category-card.color-4 {
  border-left-color: #5c7cb5;
}
.p-battery__category-card.color-4 .p-battery__category-num {
  background-color: #5c7cb5;
}
.p-battery__category-card.color-4 .p-battery__category-list li > span {
  color: #5c7cb5;
}
.p-battery__category-card.color-5 {
  border-left-color: #6d8cc4;
}
.p-battery__category-card.color-5 .p-battery__category-num {
  background-color: #6d8cc4;
}
.p-battery__category-card.color-5 .p-battery__category-list li > span {
  color: #6d8cc4;
}
.p-battery__category-card.color-6 {
  border-left-color: #7c9cd5;
}
.p-battery__category-card.color-6 .p-battery__category-num {
  background-color: #7c9cd5;
}
.p-battery__category-card.color-6 .p-battery__category-list li > span {
  color: #7c9cd5;
}
.p-battery__category-card.color-7 {
  border-left-color: #8dacd8;
}
.p-battery__category-card.color-7 .p-battery__category-num {
  background-color: #8dacd8;
}
.p-battery__category-card.color-7 .p-battery__category-list li > span {
  color: #8dacd8;
}

.p-battery__category-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-battery__category-head {
    gap: 0.75rem;
  }
}

.p-battery__category-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50%;
  background-color: #2d4773;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, .1);
}

.p-battery__category-name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-battery__category-name {
    font-size: 1.375rem;
  }
}

.p-battery__category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}
.p-battery__category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  gap: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.7;
}
.p-battery__category-list span {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-battery__category-icon {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 3px;
  margin-top: 0.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-battery__category-cta {
  background-color: #2ea980;
  border-radius: 0.875rem;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-battery__category-cta {
    gap: 1.25rem;
  }
}

.p-battery__category-cta-icon {
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-battery__category-cta-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-battery__category-cta-body {
    gap: 0.5rem;
  }
}

.p-battery__category-cta-title {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-battery__category-cta-title {
    font-size: 1.625rem;
  }
}

.p-battery__category-cta-divider {
  display: block;
  width: 64px;
  width: 4rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
}

.p-battery__category-cta-sub {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-battery__category-cta-sub {
    font-size: 0.875rem;
  }
}

.p-battery__risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-battery__risk-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  gap: 1.25rem;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 28px 32px;
  padding: 1.75rem 2rem;
}

.p-battery__risk-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  background-color: rgba(46, 169, 128, .12);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-battery__risk-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-battery__risk-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.p-battery__risk-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0;
}

.p-battery__cta-card {
  background-color: #fff;
  border-radius: 0.875rem;
  padding: 22px 20px 32px;
  padding: 1.375rem 1.25rem 2rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, .25);
          box-shadow: 0 0 0.75rem rgba(0, 0, 0, .25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-card {
    padding: 3rem 1.5625rem 2rem;
    gap: 2.5rem;
    margin-top: 7.625rem;
  }
}

.p-battery__cta-heading {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-heading {
    font-size: 1.75rem;
  }
}

.p-battery__cta-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-step {
    gap: 1.375rem;
    width: 12.125rem;
  }
}

.p-battery__cta-step-card {
  width: 100%;
  background-color: #3c5c9b;
  border-radius: 0.75rem;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-step-card {
    padding: 1.5rem 1rem;
    gap: 1rem;
    min-height: 11.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-battery__cta-step--last .p-battery__cta-step-card {
  background-color: #2ea980;
}

.p-battery__cta-step-top {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 0.12em;
  line-height: 1;
}

.p-battery__cta-step-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.p-battery__cta-step-icon {
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-battery__cta-step-name {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-step-name {
    font-size: 1.125rem;
  }
}
.p-battery__cta-step--last .p-battery__cta-step-name {
  color: #2ea980;
}

.p-battery__cta-step-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-step-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 5.625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-battery__cta-bottom {
  background-color: #f1f5f9;
  border-radius: 0.5rem;
  padding: 25px 10px;
  padding: 1.5625rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-bottom {
    padding: 2.5rem 7.25rem;
  }
}

.p-battery__cta-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-text {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    width: 84%;
    margin-inline: auto;
    line-height: 2.1;
  }
}

.p-battery__cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 433px;
  max-width: 27.0625rem;
  padding: 15px 40px;
  padding: 0.9375rem 2.5rem;
  background-color: #3c5c9b;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .p-battery__cta-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
  }
}
.p-battery__cta-btn:hover {
  opacity: 0.85;
}

.p-category__main {
  padding-top: 70px;
  padding-top: 4.375rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-category__main {
    padding-inline: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-category__hero {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
.p-category__page-title {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-category__page-title {
    margin-top: 3.5rem;
  }
}

.p-category__message {
  font-weight: 700;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-category__message {
    font-size: 1.0625rem;
    margin-top: 1.25rem;
  }
}
.p-category__message span {
  color: #3c5c9b;
  font-weight: 700;
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.p-category__main-inner {
  padding-top: 57px !important;
  padding-top: 3.5625rem !important;
}
@media screen and (min-width: 768px) {
  .p-category__main-inner {
    padding-top: 1.6875rem !important;
  }
}

.p-category__result-count {
  font-size: 20px;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-category__result-count {
    gap: 0.3125rem;
  }
}

.p-category__result-count__total {
  color: #3c5c9b;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.p-category__result-count__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-category__result-count__unit {
    margin-right: 0.375rem;
    font-size: 1rem;
  }
}

.p-category__result-count__range {
  color: #3c5c9b;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.p-category__cards-wrapper {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-category__cards-wrapper {
    margin-top: 2rem;
  }
}

.p-category__cards-content {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-category__main .c-col-sidebar {
  display: block;
  margin-top: 32px;
  margin-top: 2rem;
}

.column-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.column-detail__breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  gap: 0.4375rem;
}

.column-detail__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.column-detail__breadcrumb-item + .column-detail__breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 3px;
  width: 0.1875rem;
  height: 5px;
  height: 0.3125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='5' viewBox='0 0 3 5' fill='none'%3E%3Cpath d='M0.5 0.5L2.5 2.5L0.5 4.5' stroke='%23888888' stroke-width='0.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.column-detail__breadcrumb-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}
@media (any-hover: hover) {
  .column-detail__breadcrumb-link:hover {
    text-decoration: underline;
  }
}

.column-detail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .column-detail__wrapper {
    margin-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}

.column-detail__article {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .column-detail__article {
    margin-top: 0;
    width: 80%;
  }
}

.column-detail__header {
  margin-bottom: 47px;
  margin-bottom: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .column-detail__header {
    margin-bottom: 0;
  }
}

.column-detail__header-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  gap: 0.5625rem;
  margin-bottom: 9px;
  margin-bottom: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .column-detail__header-tags {
    margin-bottom: 0;
  }
}
.column-detail__title {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.02em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .column-detail__title {
    margin-top: 1rem;
    font-size: 1.9375rem;
    line-height: 1.4;
  }
}

.column-detail__header-hash-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .column-detail__header-hash-tags {
    margin-top: 1.25rem;
    padding-bottom: 0;
  }
}

.column-detail__hash-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #656565;
  text-decoration: none;
  line-height: 1.5;
  border: 1px solid #898989;
  border-radius: 6.25rem;
  padding: 3px 16px;
  padding: 0.1875rem 1rem;
}
@media screen and (min-width: 768px) {
  .column-detail__hash-tag {
    padding: 0.1875rem 0.9375rem;
  }
}
@media (any-hover: hover) {
  .column-detail__hash-tag:hover {
    text-decoration: underline;
  }
}

.column-detail__divider {
  border: none;
  border-top: 1px solid #c0c0c0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .column-detail__divider {
    margin-top: 1.875rem;
  }
}

.column-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .column-detail__meta {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 2.25rem;
    margin-bottom: 3.75rem;
    gap: 2rem;
  }
}

.column-detail__meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .column-detail__meta-item {
    font-size: 1rem;
    gap: 0.75rem;
  }
}

.column-detail__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .column-detail__lead {
    gap: 2rem;
  }
}

.column-detail__hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.column-detail__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  -webkit-box-shadow: 0 0 0.125rem rgba(0, 0, 0, .15);
          box-shadow: 0 0 0.125rem rgba(0, 0, 0, .15);
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .column-detail__author {
    margin-top: 3.5625rem;
    padding: 2rem 1.5rem;
  }
}

.column-detail__author-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.column-detail__author-photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 86px;
  width: 5.375rem;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .column-detail__author-photo {
    width: 6.25rem;
  }
}
.column-detail__author-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.column-detail__author-name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .column-detail__author-name {
    font-size: 1.125rem;
  }
}

.column-detail__author-label {
  display: none;
}

.column-detail__author-title {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #3c5c9b !important;
  margin-top: 3px !important;
  margin-top: 0.1875rem !important;
  line-height: 1.6 !important;
  letter-spacing: 0.02em !important;
}
@media screen and (min-width: 768px) {
  .column-detail__author-title {
    margin-top: 0.25rem !important;
    font-size: 1rem !important;
  }
}

.column-detail__author-bio {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: #242424 !important;
  line-height: 1.6 !important;
}
@media screen and (min-width: 768px) {
  .column-detail__author-bio {
    margin-top: 0.4375rem !important;
    line-height: 1.5 !important;
  }
}

.column-detail__toc {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 29px 16px;
  padding: 1.8125rem 1rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .column-detail__toc {
    padding: 2.6875rem 2.5rem;
    margin-top: 3.375rem;
  }
}

.column-detail__toc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  gap: 1rem;
}

.column-detail__toc-item + .column-detail__toc-item {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.column-detail__toc-item--sub {
  padding-left: 40px;
  padding-left: 2.5rem;
}

.column-detail__toc-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 21px;
  width: 1.3125rem;
  height: 21px;
  height: 1.3125rem;
  background-color: #3c5c9b;
  border-radius: 50%;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .column-detail__toc-num {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0;
    font-size: 0.8125rem;
  }
}

.column-detail__toc-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .column-detail__toc-text {
    line-height: 1.33;
  }
}

.column-detail__content {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content {
    margin-top: 3.5625rem;
  }
}

.column-detail__content h2 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #3c5c9b;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content h2 {
    font-size: 1.75rem;
    padding-bottom: 2rem;
    line-height: 1.4;
    margin-top: 3.75rem;
  }
}

.column-detail__content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-detail__content h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.8;
  background-color: #f3f3f3;
  border-left: 4px solid #3c5c9b;
  border-left: 0.25rem solid #3c5c9b;
  border-radius: 0.25rem;
  margin-top: 66px;
  margin-top: 4.125rem;
  padding: 9px 16px 8px 21px;
  padding: 0.5625rem 1rem 0.5rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content h3 {
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    font-size: 1.5rem;
    margin-top: 3.625rem;
    line-height: 1.4;
  }
}

.column-detail__content h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.85;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content h4 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    line-height: 1.4;
  }
}

.column-detail__content h5 {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .column-detail__content h5 {
    font-size: 1.125rem;
  }
}

.column-detail__content h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.column-detail__content p {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 2.18;
}
@media screen and (min-width: 768px) {
  .column-detail__content p {
    margin-top: 2.1875rem;
  }
}

.column-detail__content > ul {
  list-style: disc;
  padding-left: 24px;
  padding-left: 1.5rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content > ul {
    margin-top: 1.9375rem;
  }
}

.column-detail__content > ul li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .column-detail__content > ul li {
    line-height: 1.8;
  }
}
.column-detail__content > ul li + li {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.column-detail__content > ol {
  list-style: decimal;
  padding-left: 27px;
  padding-left: 1.6875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content > ol {
    margin-top: 3.8125rem;
  }
}

.column-detail__content > ol li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}
.column-detail__content > ol li + li {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.column-detail__content a {
  word-wrap: anywhere;
  word-break: break-word;
  color: #3c5c9b;
}

.column-detail__intro {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 2.14;
}
@media screen and (min-width: 768px) {
  .column-detail__intro {
    font-size: 1rem;
  }
}

.column-detail__textbox {
  margin-top: 22px;
  margin-top: 1.375rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .column-detail__textbox {
    padding: 2.5rem;
    font-size: 1rem;
    padding: 2.5rem 1.5rem 2.75rem 3rem;
    margin-top: 3.5625rem;
  }
}
.column-detail__textbox ul li {
  list-style: disc;
}
.column-detail__textbox ul li + li {
  margin-top: 34px;
  margin-top: 2.125rem;
}
.column-detail__textbox ul li::marker {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .column-detail__textbox ul li::marker {
    font-size: 0.5625rem;
  }
}

.column-detail__content blockquote,
.column-detail__quote {
  border: none;
  position: relative;
  padding: 14px 12px 17px;
  padding: 0.875rem 0.75rem 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .column-detail__content blockquote,
  .column-detail__quote {
    padding: 0.5rem 2.5rem 2.5rem;
    margin-top: 1.625rem;
    gap: 0.875rem;
  }
}
.column-detail__content blockquote p,
.column-detail__quote p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.87;
}
@media screen and (min-width: 768px) {
  .column-detail__content blockquote p,
  .column-detail__quote p {
    line-height: 1.8;
  }
}
.column-detail__content blockquote cite,
.column-detail__quote cite {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000;
  font-style: normal;
  text-align: right;
}

.column-detail__content blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #afafaf;
  height: 100%;
  width: 3px;
  width: 0.1875rem;
}
.column-detail__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .column-detail__share {
    margin-top: 2.125rem;
  }
}

.column-detail__share-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .column-detail__share-title {
    font-size: 1.5rem;
  }
}

.column-detail__share-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.column-detail__share-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  border-radius: 50%;
  background-color: #3c5c9b;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (min-width: 768px) {
  .column-detail__share-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (any-hover: hover) {
  .column-detail__share-icon:hover {
    opacity: 0.8;
  }
}

.column-detail__related {
  margin-top: 68px;
  margin-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .column-detail__related {
    margin-top: 3.5625rem;
    margin-block: 1.5625rem;
  }
}

.column-detail__related-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .column-detail__related-title {
    font-size: 1.5rem;
    margin-top: 4.6875rem;
    margin-bottom: 1.875rem;
  }
}

.column-detail__related-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .column-detail__related-articles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.column-detail__related-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .column-detail__related-article:hover {
    opacity: 0.85;
  }
}

.column-detail__related-img {
  position: relative;
  overflow: hidden;
}
.column-detail__related-img img {
  width: 100%;
  height: 180px;
  height: 11.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .column-detail__related-img img {
    height: 15rem;
  }
}

.column-detail__related-badge {
  position: absolute;
  bottom: 10px;
  bottom: 0.625rem;
  left: 10px;
  left: 0.625rem;
  background-color: #3c5c9b;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.3125rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.column-detail__related-new {
  position: absolute;
  top: 10px;
  top: 0.625rem;
  right: 10px;
  right: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50%;
  background-color: #9e821b;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.column-detail__related-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .column-detail__related-body {
    padding: 1rem 1rem 2rem;
  }
}

.column-detail__related-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.column-detail__related-date {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000;
}

.column-detail__related-fav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column-detail__related-article-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  gap: 0.375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}

.column-detail__related-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  gap: 0.25rem;
}

.column-detail__related-tag {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #656565;
}

.column-detail__back {
  text-align: center;
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .column-detail__back {
    margin-top: 3.75rem;
  }
}

.p-column__main-inner {
  padding-top: 45px;
  padding-top: 2.8125rem;
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-column__main-inner {
    padding-inline: 2rem;
    padding-top: 4rem;
  }
}

.p-column__filter {
  background-color: transparent;
  margin-bottom: 74px;
  margin-bottom: 4.625rem;
}
@media screen and (min-width: 768px) {
  .p-column__filter {
    margin-bottom: 4.75rem;
  }
}

.p-column__filter-group {
  margin-bottom: 37px;
  margin-bottom: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-column__filter-group {
    margin-bottom: 1.5rem;
  }
}

.p-column__filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-column__filter-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 600;
  color: #3c5c9b;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-column__filter-en {
    font-size: 1.1875rem;
  }
}

.p-column__filter-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-column__filter-title {
    font-size: 0.9375rem;
    margin-block: 0.3125rem;
  }
}

.p-column__filter-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px;
  gap: 0.6875rem;
  row-gap: 8px;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-column__filter-tags {
    gap: 0.75rem;
  }
}

.p-column__filter-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3c5c9b;
  border: 1px solid #3c5c9b;
  border-radius: 6.25rem;
  padding: 4px 14px;
  padding: 0.25rem 0.875rem;
  background-color: #fff;
  -webkit-transition: all 0.2s ease, border-color 0.2s ease;
  transition: all 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-column__filter-tag {
    padding: 0.25rem 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-column__filter-tag:hover {
    background-color: #3c5c9b;
    color: #fff;
    -webkit-transition: all 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    transition: all 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    opacity: 1;
  }
}

.p-column__filter-group--tags .p-column__filter-tag {
  background-color: transparent;
  color: #656565;
  border-color: #898989;
}
@media (any-hover: hover) {
  .p-column__filter-group--tags .p-column__filter-tag:hover {
    background-color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .p-column__filter-tag {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-column__filter-tag {
    background-color: #fff;
  }
}

.p-column__list-header {
  margin-bottom: 21px;
  margin-bottom: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-column__list-header {
    margin-bottom: 1.25rem;
  }
}

.p-column__count {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-column__count {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 0.9375rem;
  }
}

.p-column__count-total {
  font-weight: 700;
  color: #2055a4;
  font-size: 19px;
  font-size: 1.1875rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-column__count-total {
    margin-right: 0.375rem;
    margin-bottom: 0;
  }
}

.p-column__count-range {
  font-weight: 700;
  color: #2055a4;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-column__count-range {
    margin-left: 0.5rem;
    margin-right: 0.3125rem;
    margin-bottom: 0;
  }
}

.p-column__articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 21px;
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-column__articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.p-column__more {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-column__more {
    margin-top: 3.5rem;
  }
}

.p-project__main {
  padding-top: 54px;
  padding-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .p-project__main {
    padding-top: 4.375rem;
  }
}

.p-project__main-inner {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-project__main-inner {
    padding-inline: 2rem;
    max-width: 1200px;
    margin-inline: auto;
  }
}

.p-project__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  gap: 2.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-project__wrapper {
    margin-top: 4rem;
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1200px;
    margin-inline: auto;
  }
}

.privacy__inner {
  max-width: 1200px;
  max-width: 75rem;
  margin-inline: auto;
  padding: 32px 20px 48px;
  padding: 2rem 20px 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .privacy__inner {
    padding: 3rem 2.5rem 5rem;
  }
}

.p-privacy__title-block {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title-block {
    margin-top: 3.5rem;
  }
}

.p-privacy__ja {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 7px;
  margin-top: 0.4375rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-privacy__ja {
    font-size: 1.25rem;
    margin-top: 0;
  }
}

.p-privacy__en {
  color: #3c5c9b;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 900;
  font-size: 55px;
  font-size: 3.4375rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-privacy__en {
    font-size: 4.875rem;
  }
}

.p-privacy__lead {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-privacy__section {
  margin-top: 32px;
  margin-top: 2rem;
}
.p-privacy__section dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-privacy__section .first {
  margin-top: 16px;
  margin-top: 1rem;
}
.p-privacy__section dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-top: 2.5rem;
  }
}

.p-privacy__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  margin: 0;
  color: #3c5c9b;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  padding-left: 16px;
  padding-left: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    gap: 1.125rem;
    font-size: 1.375rem;
    padding-block: 0.3125rem;
  }
}

.p-privacy__heading::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  width: 0.25rem;
  left: 0;
  height: 100%;
  background-color: #3c5c9b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading::before {
    height: 100%;
  }
}

.p-privacy__text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    margin-top: 1rem;
  }
}

.p-privacy__list {
  list-style: disc;
  margin-top: 16px;
  margin-top: 1rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list {
    margin-top: 1.5rem;
  }
}
.p-privacy__list p {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list p {
    margin-top: 1rem;
  }
}

.p-privacy__list li {
  line-height: 1.7;
}

.p-privacy__list li + li {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-privacy__address strong {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-privacy__date {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-privacy__date {
    margin-top: 2rem;
  }
}
.p-privacy__date strong {
  display: block;
}

.p-project-detail {
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail {
    padding-top: 2rem;
  }
}

.p-project-detail__inner {
  max-width: 1200px;
  max-width: 75rem;
  margin-inline: auto;
  padding: 32px 20px 48px;
  padding: 2rem 20px 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-project-detail__inner {
    padding: 3rem 2.5rem 5rem;
  }
}

.p-project-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  gap: 1.6875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-project-detail__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
  }
}

.p-project-detail__header-left {
  margin-top: 9px;
  margin-top: 0.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-project-detail__header-left {
    width: 47%;
  }
}

.p-project-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.p-project-detail__status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 32px;
  padding: 0.4375rem 2rem;
  background-color: #e04415;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.p-project-detail__id {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
}

.p-project-detail__price-section {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price-section {
    margin-top: 1.375rem;
  }
}

.p-project-detail__price-label {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price-label {
    font-size: 0.875rem;
  }
}

.p-project-detail__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3px;
  gap: 0.1875rem;
  color: #3c5c9b;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price {
    margin-top: 0;
  }
}

.p-project-detail__price-big {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price-big {
    font-size: 3.5rem;
  }
}

.p-project-detail__price-oku {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price-oku {
    font-size: 2rem;
  }
}

.p-project-detail__price-mid {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price-mid {
    font-size: 3.5rem;
  }
}

.p-project-detail__price-man {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-project-detail__price-man {
    font-size: 2rem;
  }
}

.p-project-detail__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__title {
    margin-top: 0.875rem;
    font-size: 1.125rem;
    gap: 0.5rem;
  }
}
.p-project-detail__title svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__title svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-project-detail__metrics.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metrics.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 1.25rem;
  }
}

.p-project-detail__metrics.u-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metrics.u-mobile {
    display: none;
  }
}

.p-project-detail__metric {
  padding: 4px 8px 12px;
  padding: 0.25rem 0.5rem 0.75rem;
  background-color: #fff;
  border-top: 2px solid #D8DEEB;
  border-top: 0.125rem solid #D8DEEB;
  border-bottom: 2px solid #D8DEEB;
  border-bottom: 0.125rem solid #D8DEEB;
  border-right: 2px solid #D8DEEB;
  border-right: 0.125rem solid #D8DEEB;
  text-align: center;
  width: 33.3333333333%;
}
.p-project-detail__metric:first-child {
  border-left: 2px solid #D8DEEB;
  border-left: 0.125rem solid #D8DEEB;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metric {
    padding: 1rem 1.125rem;
  }
}

.p-project-detail__metric-label {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metric-label {
    font-size: 0.875rem;
  }
}

.p-project-detail__metric-value {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-project-detail__metric-num {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1;
  color: #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metric-num {
    font-size: 2rem;
  }
}

.p-project-detail__metric-unit {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metric-unit {
    font-size: 1.125rem;
  }
}
.p-project-detail__metric-unit--ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .p-project-detail__metric-unit--ja {
    font-size: 1rem;
  }
}

.p-project-detail__info.u-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  gap: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__info.u-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-project-detail__info.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.125rem;
    margin-top: 1.5625rem;
    margin-top: 1.875rem;
  }
}

.p-project-detail__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  padding: 14px 16px 14px 16px;
  padding: 0.875rem 1rem 0.875rem 1rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-project-detail__info-row {
    padding: 0.625rem 1rem 0.8125rem 1rem;
  }
}

.p-project-detail__info-label {
  width: 144px;
  width: 9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #898989;
}
@media screen and (min-width: 768px) {
  .p-project-detail__info-label {
    width: 12.5rem;
  }
}

.p-project-detail__info-value {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.p-project-detail__header-right {
  min-width: 0;
  width: 100%;
  position: relative;
  height: 320px;
  height: 20rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__header-right {
    height: 32.5rem;
  }
}

.p-project-swiper {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.p-project-swiper .swiper-wrapper,
.p-project-swiper .swiper-slide {
  width: 100%;
  min-width: 0;
}

.p-project-swiper__pagination {
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
}

.p-project-detail__image {
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.p-project-detail__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-project-detail__summary {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__summary {
    margin-top: 4.375rem;
  }
}

.p-project-detail__summary-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-project-detail__summary-title {
    font-size: 1.75rem;
  }
}

.p-project-detail__tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-project-detail__tables {
    gap: 1.6875rem;
    margin-top: 2.125rem;
  }
}

.p-project-detail__table-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  gap: 0.4375rem;
}

.p-project-detail__table-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  height: 30px;
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-project-detail__table-heading {
    font-size: 1.25rem;
    height: 2.375rem;
  }
}

.p-project-detail__table {
  width: 100%;
  background-color: #fff;
  display: block;
}
.p-project-detail__table tbody {
  display: block;
}
.p-project-detail__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-project-detail__table th,
.p-project-detail__table td {
  border-top: none;
  border-bottom: 1px solid #d6d6d6;
  border-bottom: 0.0625rem solid #d6d6d6;
  vertical-align: middle;
  text-align: left;
}
.p-project-detail__table tr:first-child th:first-child,
.p-project-detail__table tr:first-child td:nth-child(2) {
  border-top: 1px solid #d6d6d6;
  border-top: 0.0625rem solid #d6d6d6;
}
.p-project-detail__table th {
  width: 48%;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #898989;
  letter-spacing: 0.04em;
  line-height: 1.6;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-project-detail__table th {
    width: 35%;
  }
}
@media screen and (min-width: 768px) {
  .p-project-detail__table th {
    font-size: 0.75rem;
  }
}
.p-project-detail__table td {
  width: 52%;
  padding: 17px 12px;
  padding: 1.0625rem 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-project-detail__table td {
    width: 29%;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
}
.p-project-detail__table .no-border {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-project-detail__table .no-border {
    border-bottom: 0.0625rem solid #d6d6d6;
  }
}
.p-project-detail__table--wide th {
  width: 100%;
}
.p-project-detail__table--wide td {
  width: 100%;
  line-height: 1.8;
}
.p-project-detail__table--wide tr:first-child td:nth-child(2) {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-project-detail__table {
    display: table;
    border-collapse: collapse;
  }
  .p-project-detail__table tbody {
    display: table-row-group;
  }
  .p-project-detail__table tr {
    display: table-row;
  }
  .p-project-detail__table th,
  .p-project-detail__table td {
    border-top: 0.0625rem solid #d6d6d6;
    border-bottom: none;
  }
  .p-project-detail__table tr:last-child th,
  .p-project-detail__table tr:last-child td {
    border-bottom: 0.0625rem solid #d6d6d6;
  }
  .p-project-detail__table th {
    display: table-cell;
    vertical-align: middle;
    width: 15rem;
    padding: 1.5rem;
    font-size: 0.875rem;
  }
  .p-project-detail__table td {
    display: table-cell;
    vertical-align: middle;
    padding: 1.5rem;
    font-size: 1rem;
  }
  .p-project-detail__table--wide th {
    width: 15rem;
  }
  .p-project-detail__table--wide td {
    width: auto;
    line-height: 1.8;
  }
  .p-project-detail__table--wide tr:first-child td:nth-child(2) {
    border-top: 0.0625rem solid #d6d6d6;
  }
}

.p-project-detail__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 78px;
  margin-top: 4.875rem;
  width: 90%;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-project-detail__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 78%;
    gap: 2.5rem;
  }
}

.p-project-detail__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px 44px;
  padding: 0.875rem 2.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-project-detail__btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
}
.p-project-detail__btn--outline {
  background-color: #fff;
  border: 2px solid #3c5c9b;
  border: 0.125rem solid #3c5c9b;
  color: #3c5c9b;
  width: 100%;
}
@media (any-hover: hover) {
  .p-project-detail__btn--outline:hover {
    background-color: #3c5c9b;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
.p-project-detail__btn--fill {
  background-color: #3c5c9b;
  border: 2px solid #3c5c9b;
  border: 0.125rem solid #3c5c9b;
  color: #fff;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .p-project-detail__btn--fill:hover {
    background-color: #fff;
    color: #3c5c9b;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
  }
}

.p-project-detail__related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-project-detail__related-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  height: 50px;
  height: 3.125rem;
}

.p-project-detail__related-circle {
  display: block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  border-radius: 50%;
  border: 6px solid #3c5c9b;
  border: 0.375rem solid #3c5c9b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-project-detail__related-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3c5c9b;
  margin: 0;
  line-height: 1.5;
}

.p-project-detail__related-cards {
  position: relative;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .p-project-detail__related-cards {
    margin-right: -2.5rem;
  }
}
.p-project-detail__related-cards .c-project-card {
  max-width: 320px;
  max-width: 20rem;
}

.js-related-slider-button {
  position: absolute;
  width: 100px;
  width: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  gap: 1.0625rem;
  bottom: -54px;
  bottom: -3.375rem;
}
@media screen and (min-width: 768px) {
  .js-related-slider-button {
    display: none;
  }
}

.p-project-detail__back {
  margin-top: 123px;
  margin-top: 7.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-project-detail__back {
    margin-top: 6.375rem;
  }
}
.p-project-detail__back a {
  width: 86%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-project-detail__back a {
    width: auto;
  }
}

.p-registration-hero {
  position: relative;
  overflow: hidden;
  height: 512px;
  height: 32rem;
}
@media screen and (min-width: 768px) {
  .p-registration-hero {
    height: 32.5rem;
  }
}

.p-registration-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.p-registration-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-registration-hero__overlay {
  position: absolute;
  inset: 0;
}

.p-registration-hero__inner {
  width: 100%;
  padding: 38px 16px;
  padding: 2.375rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-registration-hero__inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 0.5rem;
  }
}

.p-registration-hero__en {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 900;
  font-size: 56px;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-registration-hero__en {
    font-size: 4.75rem;
    line-height: 1;
  }
}

.p-registration-hero__ja {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-registration-hero__ja {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.p-registration-hero__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-registration-hero__desc {
    line-height: 2;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-registration-hero__desc {
    margin-top: 2.8125rem;
  }
}

.p-registration-hero__login {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .p-registration-hero__login {
    line-height: 2;
    text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, .75);
  }
}

.p-registration-form {
  padding: 44px 16px 40px;
  padding: 2.75rem 1rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-registration-form {
    padding: 4rem 0.5rem 4rem 0;
  }
}

.p-registration-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-registration-form__inner {
    max-width: 75rem;
    margin: 0 auto;
    gap: 2.5rem;
  }
}

.p-registration-form__title {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-registration-form__title {
    font-size: 1.75rem;
    text-align: center;
  }
}

.p-registration-form__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-registration-form__desc {
    margin-top: 3.9375rem;
  }
}

.p-registration-form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-registration-form__body {
    gap: 2.5rem;
    max-width: 860px;
    margin-inline: auto;
  }
}

.p-registration-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  gap: 0.6875rem;
  margin-top: 31px;
  margin-top: 1.9375rem;
  max-width: 414px;
  max-width: 25.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-registration-steps {
    margin-top: 2.5rem;
  }
}

.p-registration-steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
}

.p-registration-steps__circle {
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  border-radius: 50%;
  background-color: #d6d6d6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-registration-steps__circle {
    width: 2.125rem;
    height: 2.125rem;
  }
}

.p-registration-steps__item--active .p-registration-steps__circle {
  background-color: #3c5c9b;
}

.p-registration-steps__num {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
}

.p-registration-steps__line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  height: 0.0625rem;
  background-color: #afafaf;
  min-width: 24px;
  min-width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-registration-steps__line {
    min-width: 5rem;
  }
}

.p-registration-steps__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #afafaf;
}

.p-registration-steps__item--active .p-registration-steps__label {
  color: #000;
}

.p-registration-field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-registration-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-registration-field.post-code .p-registration-field__input {
    width: 11.875rem;
  }
}

.p-registration-field__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-registration-field__header {
    width: 15rem;
  }
}

.p-registration-field__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-registration-field__name {
    font-size: 1.25rem;
  }
}

.p-registration-field__badge {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  border-radius: 0.3125rem;
  white-space: nowrap;
}

.p-registration-field__badge--required {
  background-color: #3c5c9b;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-registration-field__badge--optional {
  background-color: #838383;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.p-registration-field__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-registration-field__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.p-registration-field__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .p-registration-field__col {
    width: 17.5rem;
  }
}

.p-registration-field__input {
  width: 100%;
  height: 50px;
  height: 3.125rem;
  padding: 0 16px;
  padding: 0 1rem;
  border: 1px solid #dddddd;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.5rem;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-registration-field__input::-webkit-input-placeholder {
  color: #999999;
}
.p-registration-field__input::-moz-placeholder {
  color: #999999;
}
.p-registration-field__input::-ms-input-placeholder {
  color: #999999;
}
.p-registration-field__input::placeholder {
  color: #999999;
}

.p-registration-field__select-wrap {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-registration-field__select-wrap {
    width: 22.5rem;
  }
}

.p-registration-field__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-right: 2px solid #6c7575;
  border-right: 0.125rem solid #6c7575;
  border-bottom: 2px solid #6c7575;
  border-bottom: 0.125rem solid #6c7575;
  pointer-events: none;
}
.p-registration-field__select {
  width: 100%;
  height: 44px;
  height: 2.75rem;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dddddd;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.3125rem;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-registration-field__select {
    height: 2.75rem;
  }
}

.p-registration-field__select.is-placeholder {
  color: #999999;
}

.p-registration-field__select option {
  color: #000;
}

.p-registration-field__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #000;
}

.p-registration-field__input.is-invalid {
  border-color: #e54848;
  background-color: #fff5f5;
}

.p-registration-field__error {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #e54848;
}
@media screen and (min-width: 768px) {
  .p-registration-field__error {
    font-size: 0.875rem;
  }
}

.p-registration-field > .p-registration-field__error {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-registration-field > .p-registration-field__error {
    left: 15.5rem;
    width: auto;
  }
}

.p-registration-field__body {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-registration-field--email {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-registration-field--email .p-registration-field__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-registration-field--email .p-registration-field__body {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-registration-field--email .p-registration-field__input--medium {
    width: 100%;
  }
}
.p-registration-field--email .p-registration-field__note {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-registration-field--email .p-registration-field__note {
    margin-top: 1.125rem;
  }
}

.p-registration-agree {
  padding: 8px 0;
  padding: 0.5rem 0;
  text-align: center;
}

.p-registration-agree__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  cursor: pointer;
}

input.p-registration-agree__checkbox[type=checkbox] {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  margin-top: 0;
  border: 1px solid #838383;
  border: 0.0625rem solid #838383;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  input.p-registration-agree__checkbox[type=checkbox] {
    border: 0.125rem solid #838383;
  }
}

input.p-registration-agree__checkbox[type=checkbox]:checked {
  background-color: #3c5c9b;
  border-color: #3c5c9b;
}

input.p-registration-agree__checkbox[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom: 0.125rem solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-registration-agree__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #6f6f6f;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-registration-agree__text {
    line-height: 1.4;
  }
}

.p-registration-agree__link {
  color: #3c5c9b;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-registration-agree__link:hover {
    opacity: 0.8;
  }
}

.p-registration-submit {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-registration-submit {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 0;
  }
}

.p-registration-submit__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  height: 3.5rem;
  padding: 12px 46px;
  padding: 0.75rem 2.875rem;
  background-color: #3c5c9b;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 332px;
  max-width: 20.75rem;
}
@media screen and (min-width: 768px) {
  .p-registration-submit__btn {
    height: auto;
    padding: 1.25rem 1.8125rem;
    font-size: 1.125rem;
  }
}

.p-registration-submit__btn:hover {
  opacity: 0.8;
}

.p-registration-confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-registration-confirm {
    max-width: 860px;
    margin-inline: auto;
    gap: 3rem;
  }
}

.p-registration-confirm__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #dddddd;
  border-top: 0.0625rem solid #dddddd;
}

.p-registration-confirm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  padding: 16px 0;
  padding: 1rem 0;
  border-bottom: 1px solid #dddddd;
  border-bottom: 0.0625rem solid #dddddd;
}
@media screen and (min-width: 768px) {
  .p-registration-confirm__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 1.5rem;
    padding: 1.25rem 0;
  }
}

.p-registration-confirm__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #838383;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-registration-confirm__label {
    width: 15rem;
    font-size: 1rem;
  }
}

.p-registration-confirm__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-registration-confirm__value {
    font-size: 1.125rem;
  }
}

.p-registration-confirm__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-registration-confirm__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}

.p-registration-confirm__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  height: 3.5rem;
  padding: 12px 56px;
  padding: 0.75rem 3.5rem;
  background-color: #fff;
  border: 1px solid #dddddd;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-registration-confirm__back {
    height: auto;
    padding: 1.25rem 5rem;
    font-size: 1.125rem;
  }
}

.p-registration-confirm__back:hover {
  opacity: 0.7;
}

.p-registration-complete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-registration-complete {
    max-width: 860px;
    margin-inline: auto;
    gap: 3rem;
    padding: 3rem 0;
  }
}

.p-registration-complete__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-registration-complete__text {
    font-size: 1.125rem;
  }
}

.p-registration-complete__actions {
  text-align: center;
}

.p-search__main {
  padding-top: 70px;
  padding-top: 4.375rem;
}

.p-search__main-inner {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-search__main-inner {
    padding-inline: 2rem;
    max-width: 1200px;
    margin-inline: auto;
  }
}

.p-search__section--battery {
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-search__section--battery {
    margin-top: 4rem;
  }
}

.p-search__section--solar {
  margin-top: 117px;
  margin-top: 7.3125rem;
}
@media screen and (min-width: 768px) {
  .p-search__section--solar {
    margin-top: 7.1875rem;
  }
}

.p-search__section--magazine {
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .p-search__section--magazine {
    margin-top: 7.5rem;
  }
}

.p-search__section-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  gap: 2.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-search__section-body {
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-search__section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  gap: 0.875rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-search__section-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 1.5625rem;
    min-width: 1.5625rem;
  }
}

.p-search__section-dot {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  border-radius: 50%;
  border: 5px solid currentColor;
  border: 0.3125rem solid currentColor;
  background-color: transparent;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-search__section-dot--battery {
  color: #2055a4;
}
.p-search__section-dot--solar {
  color: #2ea980;
}
.p-search__section-dot--magazine {
  color: #9e821b;
}

.p-search__section-text {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-search__section-text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 1.5rem;
    letter-spacing: 0.24em;
  }
}
.p-search__section-text--battery {
  color: #2055a4;
}
.p-search__section-text--solar {
  color: #2ea980;
}
.p-search__section-text--magazine {
  color: #9e821b;
}

.p-search__cards {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-search__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4375rem;
  }
}

.p-search__section-btn {
  margin-top: 41px;
  margin-top: 2.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-search__section-btn {
    margin-top: 3.1875rem;
  }
}
.p-search__section-btn--battery {
  color: #2055a4;
}
.p-search__section-btn--solar {
  color: #2ea980;
}
.p-search__section-btn--magazine {
  color: #9e821b;
}

.p-terms {
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-terms {
    padding-top: 7.125rem;
  }
}

.p-terms__inner {
  width: 100%;
  max-width: 1200px;
  max-width: 75rem;
  margin-inline: auto;
  padding: 40px 20px 40px;
  padding: 2.5rem 20px 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-terms__inner {
    padding: 4rem 2.5rem 3rem;
  }
}

.p-terms__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e7e7e7;
  border-bottom: 0.0625rem solid #e7e7e7;
}
@media screen and (min-width: 768px) {
  .p-terms__head {
    gap: 2.75rem;
    padding-bottom: 3rem;
  }
}

.p-terms__head .c-breadcrumbs {
  margin-bottom: 0;
}

.p-terms__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.p-terms__title-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 900;
  color: #3c5c9b;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-terms__title-en {
    font-size: 4.875rem;
  }
}

.p-terms__title-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-terms__title-ja {
    font-size: 1.25rem;
    margin-top: 0;
  }
}

.p-terms__body {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-terms__body {
    margin-top: 3rem;
    gap: 2.5rem;
  }
}

.p-terms__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-terms__section {
    gap: 1rem;
  }
}

.p-terms__section-heading {
  display: inline-block;
  border: 1px solid #3c5c9b;
  border: 0.0625rem solid #3c5c9b;
  padding: 2px 10px 2px 16px;
  padding: 0.125rem 0.625rem 0.125rem 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3c5c9b;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-terms__section-heading {
    font-size: 1.25rem;
  }
}

.p-terms__section-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-terms__section-text {
    font-size: 1rem;
  }
}

.p-terms__date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin: 0;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-terms__date {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.p-terms__disclaimer {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer {
    margin-top: 5rem;
  }
}

.p-terms__disclaimer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer-head {
    margin-bottom: 3rem;
  }
}

.p-terms__disclaimer-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer-en {
    font-size: 3.125rem;
  }
}

.p-terms__disclaimer-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3c5c9b;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer-ja {
    font-size: 1.75rem;
  }
}

.p-terms__disclaimer-body {
  border-top: 1px solid #e7e7e7;
  border-top: 0.0625rem solid #e7e7e7;
  padding-top: 32px;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer-body {
    padding-top: 4rem;
    gap: 2rem;
  }
}

.p-terms__disclaimer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer-text {
    font-size: 1rem;
  }
}

.p-terms__disclaimer-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-terms__disclaimer-date {
    font-size: 1rem;
  }
}

.p-top__sp-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  height: 64px;
  height: 4rem;
  position: sticky;
  top: 0;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .p-top__sp-header {
    display: none;
  }
}

.p-top__sp-header-inner {
  width: 100%;
  padding-inline: 16px;
  padding-inline: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top__sp-header-logo img {
  height: 19px;
  height: 1.1875rem;
  width: auto;
}

.p-top__sp-header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}

.p-top__sp-header-badge {
  background-color: #edeff1;
  color: #2055a4;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  padding: 3px 8px;
  padding: 0.1875rem 0.5rem;
  border-radius: 1.875rem;
  letter-spacing: 0.06em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top__sp-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}

.p-top__sp-header-login {
  background-color: #0b2966;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 8px;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.5rem;
  letter-spacing: 0.06em;
}

.p-top__sp-header-login--logged-out {
  color: #3c5c9b;
  background-color: #fff;
  border: 1px solid #3c5c9b;
}

.p-top__hamburger {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  gap: 0.4375rem;
}
.p-top__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background-color: #2055a4;
  border-radius: 0.125rem;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.p-top__hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(0.5625rem) rotate(45deg);
          transform: translateY(0.5625rem) rotate(45deg);
}
.p-top__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.p-top__hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-0.5625rem) rotate(-45deg);
          transform: translateY(-0.5625rem) rotate(-45deg);
}

.p-top__drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .4);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-top__drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.p-top__drawer-close {
  position: fixed;
  top: 0;
  right: 260px;
  right: 16.25rem;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  background-color: #3c5c9b;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s ease 0s, visibility 0s linear 0.35s, -webkit-transform 0.35s ease 0s;
  transition: opacity 0.35s ease 0s, visibility 0s linear 0.35s, -webkit-transform 0.35s ease 0s;
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s, visibility 0s linear 0.35s;
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s, visibility 0s linear 0.35s, -webkit-transform 0.35s ease 0s;
  z-index: 302;
}
.p-top__drawer-close::before, .p-top__drawer-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  width: 2.125rem;
  height: 2px;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 0.125rem;
}
.p-top__drawer-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-top__drawer-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-drawer-open .p-top__drawer-close {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.35s ease 0.15s, visibility 0s linear 0s, -webkit-transform 0.35s ease 0.15s;
  transition: opacity 0.35s ease 0.15s, visibility 0s linear 0s, -webkit-transform 0.35s ease 0.15s;
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s, visibility 0s linear 0s;
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s, visibility 0s linear 0s, -webkit-transform 0.35s ease 0.15s;
}

.p-top__drawer {
  position: fixed;
  top: -1px;
  top: -0.0625rem;
  right: 0;
  bottom: 0;
  width: 260px;
  width: 16.25rem;
  background-color: #0b2966;
  z-index: 301;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  overflow-y: auto;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
.p-top__drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-top__drawer.p-top__drawer--log-out {
  background-color: #fff;
}
.p-top__drawer.p-top__drawer--log-out .p-top__drawer-link-sub {
  color: #000;
}
.p-top__drawer.p-top__drawer--log-out .p-top__drawer-link-title {
  color: #3c5c9b;
}
.p-top__drawer.p-top__drawer--log-out .p-top__drawer-item {
  border-bottom: 1px dotted #b0b0b0;
}

.p-top__drawer-link-username {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-top__drawer--log-out .p-top__drawer-list {
  padding-top: 8px;
  padding-top: 0.5rem;
}

.p-top__drawer-user {
  display: none;
}
.p-top__drawer-user__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  gap: 0.5625rem;
}

.p-top__drawer-avatar {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top__drawer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__drawer-username {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.p-top__drawer-user--guest {
  height: auto;
  display: block;
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  margin-top: 36px;
  margin-top: 2.25rem;
  border: 1px solid #3c5c9b;
  background-color: #fafafa;
  width: 80%;
  margin-inline: auto;
}

.p-top__drawer-guest-text {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  text-align: center;
}

.p-top__drawer-guest-text span {
  margin-top: 7px;
  margin-top: 0.4375rem;
  display: inline-block;
  width: 77%;
}

.p-top__drawer-guest-actions {
  margin-top: 12px;
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-top__drawer-auth-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 44px;
  min-height: 2.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #3c5c9b;
}
.p-top__drawer-auth-btn--register {
  background-color: #3c5c9b;
  color: #fff;
}
.p-top__drawer-auth-btn--login {
  background-color: #fff;
  color: #3c5c9b;
}

.p-top__drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-top__drawer-item {
  border-bottom: 1px solid #fff;
}
.p-top__drawer-item--cta {
  padding: 0;
}
.p-top__drawer-item--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #fff;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}
.p-top__drawer-item--sub .p-top__drawer-link {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  padding-left: 33px;
  padding-left: 2.0625rem;
  gap: 13px;
  gap: 0.8125rem;
}
.p-top__drawer-item--sub.is-open {
  max-height: 200px;
  max-height: 12.5rem;
  padding: 9px 0;
  padding: 0.5625rem 0;
}
.p-top__drawer-item--icon {
  border-top: 1px solid #fff;
}

.p-top__drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 24px;
  padding: 0.9375rem 1.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-top__drawer-link--cta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3px;
  gap: 0.1875rem;
  position: relative;
}
.p-top__drawer-link--cta .p-top__drawer-arrow {
  position: absolute;
  right: 24px;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-top__drawer-link--cta.is-open .p-top__drawer-arrow {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.p-top__drawer-link-sub {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.p-top__drawer-link-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.p-top__drawer-item--icon .p-top__drawer-link {
  font-size: 16px;
  font-size: 1rem;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.p-top__drawer-item--icon .p-top__drawer-link svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-top__drawer-arrow {
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

body.is-drawer-open {
  overflow: hidden;
}

.p-top__header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top__header-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background-color: #0b2966;
    height: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 15rem);
    margin-left: auto;
  }
}

.p-top__header-nav.logout {
  background-color: #4f5768;
}

.p-top__header-inner {
  width: 100%;
  padding-inline: 48px;
  padding-inline: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.p-top__header-menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
  gap: 3.25rem;
}

.p-top__header-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  gap: 0.6875rem;
  height: 100%;
}

.p-top__header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  height: 100%;
}

.p-top__header-badge {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  font-size: 11px;
  font-size: 0.6875rem;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  border-radius: 0.25rem;
}

.p-top__header-link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 400;
}

.p-top__header-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.p-top__user-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 180px;
  width: 11.25rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, .12);
          box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, .12);
  z-index: 100;
  display: none;
  border-radius: 0.625rem;
}
.p-top__user-menu.is-open {
  display: block;
}

.p-top__user-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  padding: 14px 16px;
  padding: 0.875rem 1rem;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #242424;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.p-top__user-menu-item + .p-top__user-menu-item {
  border-top: 1px solid #d9d9d9;
}
.p-top__user-menu-item:hover {
  background-color: #f4f4f4;
}
.p-top__user-menu-item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-top__header-user-icon {
  width: 17%;
}

.p-top__header-username {
  display: inline-block;
  max-width: 7em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-top__header-arrow {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-top: solid 2px #fff;
  border-top: solid 0.125rem #fff;
  border-right: solid 2px #fff;
  border-right: solid 0.125rem #fff;
  left: 10px;
  top: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.p-top__header-user.is-open .p-top__header-arrow {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.p-top__hero {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__hero {
    height: 18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top__hero,
  .p-top__hero-img,
  .p-top__hero-img img {
    height: inherit;
  }
}

.p-top__hero-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .p-top__hero-body {
    top: 53%;
  }
}

.p-top__hero-en {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 34px;
  font-size: 2.125rem;
  letter-spacing: 0.3em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-top__hero-en {
    line-height: 1.5;
    font-size: 3rem;
  }
}

.p-top__hero-ja {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-top: 11px;
  margin-top: 0.6875rem;
  letter-spacing: 0.8em;
}
@media screen and (min-width: 768px) {
  .p-top__hero-ja {
    font-size: 1.125rem;
    letter-spacing: 0.7em;
    margin-top: 0.3125rem;
  }
}

.p-top__section {
  padding-inline: 16px;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__section {
    padding: 0 2.9375rem;
    max-width: 75rem;
    margin-inline: auto;
  }
}

.p-top__section--battery {
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top__section--battery {
    margin-top: 4rem;
  }
}

.p-top__section--solar {
  margin-top: 117px;
  margin-top: 7.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top__section--solar {
    margin-top: 7.1875rem;
  }
}

.p-top__section--magazine {
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__section--magazine {
    margin-top: 7.5rem;
  }
}

.p-top__section-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  gap: 2.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top__section-body {
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top__section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  gap: 0.875rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top__section-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 1.5625rem;
    min-width: 1.5625rem;
  }
}

.p-top__section-dot {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  border-radius: 50%;
  border: 5px solid currentColor;
  border: 0.3125rem solid currentColor;
  background-color: transparent;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #2055a4;
}

.p-top__section-text {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3c5c9b;
}
@media screen and (min-width: 768px) {
  .p-top__section-text {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 1.5rem;
    letter-spacing: 0.24em;
  }
}

.p-top__cards {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-top__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4375rem;
  }
}

.p-top__section-btn {
  text-align: center;
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top__section-btn {
    margin-top: 3.1875rem;
  }
}

.p-top__why {
  margin-top: 96px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-top__why {
    padding: 0 2.9375rem;
    margin-top: 7.1875rem;
    max-width: 1200px;
    margin-inline: auto;
  }
}

.p-top__why-inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: 16px;
  margin-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__why-inner {
    margin-inline: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top__why-photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top__why-photo {
    width: 50%;
  }
}
.p-top__why-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.p-top__why-body {
  padding-inline: 36px;
  padding-inline: 2.25rem;
  padding-bottom: 66px;
  padding-bottom: 4.125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__why-body {
    padding-inline: 4.25rem;
    padding-bottom: 0;
    margin-top: 0;
  }
}

.p-top__why-title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-thickness: 0.125rem;
  text-underline-offset: 17px;
  text-underline-offset: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-top__why-title span {
    font-size: 3rem;
    text-underline-offset: 1.1875rem;
    text-decoration-thickness: 0.1875rem;
    display: block;
  }
}
.p-top__why-title span + span {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top__why-text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.75;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top__why-text {
    margin-top: clamp(0.625rem, -9.1607142857rem + 20.3869047619vw, 9.1875rem);
    font-size: 1rem;
  }
}

.p-top__articles {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px 23px;
  gap: 2rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-top__articles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top__article {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  gap: 0.6875rem;
  border-radius: 0.5rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.p-top__article-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-top__article-photo {
  height: 180px;
  height: 11.25rem;
  overflow: hidden;
  background-color: #d9d9d9;
}
.p-top__article-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__article-time {
  color: #9a9a9a;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.p-top__article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.p-top__article-body {
  padding: 0px 20px 12px;
  padding: 0rem 1.25rem 0.75rem;
}

.p-top__article-cat {
  display: inline-block;
  border-radius: 6.25rem;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
}

.p-top__article-cat--solar {
  background-color: #fff;
  color: #2055a4;
  border: 1px solid #2055a4;
}

.p-top__article-cat--battery {
  background-color: #fff;
  color: #3c5c9b;
  border: 1px solid #3c5c9b;
}

.p-top__article-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  position: relative;
}

.p-top__article-tags::before {
  content: "";
  width: calc(100% + 2.5rem);
  height: 0;
  border-top: 1px dotted #b1b1b1;
  position: absolute;
  top: 0;
  left: -20px;
  left: -1.25rem;
}

.p-top__article-tag {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3c5c9b;
  text-decoration: none;
}

.p-top__article-text {
  color: #626262;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.p-top__article-title {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1.4;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-top__article-title:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.p-top__footer {
  margin-top: 160px;
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-top__footer {
    margin-top: 7.5rem;
  }
}

.p-top__footer-bar {
  background-color: #3c5c9b;
  padding: 46px 20px 14px;
  padding: 2.875rem 1.25rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__footer-bar {
    width: calc(100% - 15rem);
    margin-left: auto;
    padding: 1.875rem 2rem 0.875rem;
  }
}

.p-top__footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top__footer-inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 75rem;
  }
}

.p-top__footer-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  gap: 0.4375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__footer-brand {
    text-align: left;
    gap: 0.9375rem;
  }
}

.p-top__footer-logo {
  width: 134px;
  width: 8.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top__footer-logo {
    width: 10.5rem;
    margin-inline: 0;
  }
}

.p-top__footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-top__footer-info {
    margin-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}

.p-top__footer-company {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-top__footer-company {
    font-size: 0.6875rem;
  }
}

.p-top__footer-address {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-top__footer-address {
    font-size: 0.6875rem;
  }
}

.p-top__footer-copy {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #fff;
  margin-top: 28px;
  margin-top: 1.75rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-top__footer-copy {
    font-size: 0.6875rem;
    margin-top: 1.25rem;
  }
}

.p-top__footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
  gap: 1.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top__footer-nav {
    margin-bottom: 0.125rem;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.p-top__footer-link {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-top__footer-link:hover {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=styles.css.map */
