:root {
  --color-blue: #003AC2;
  --color-green: #00BF96;
  --color-white: #ffffff;
  --color-grey-light: #EFEFEF;
  --color-text-dark: #343434;
  --color-text-light: #d5dee5;
  --color-bg-grey: #E1E8ED;
  --color-bg-lightgrey: #E1E8ED;
  --font-family-en: "Roboto", sans-serif;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --body-bg-color: #ffffff;
  --body-text-color: var(--color-text-dark);
  --body-family: var(--font-family-ja);
  --body-pd: 25px;
  --scroll-padding: 79px;
  --sec-pd-top: 75px;
  --sec-pd-btm: 75px;
  --hd-height: 79px;
}

@media screen and (min-width: 992px) {
  :root {
    --scroll-padding: 75px;
    --hd-height: 75px;
    --sec-pd-top: 120px;
    --sec-pd-btm: 120px;
  }
}
@media screen and (max-width: 576px) {
  .d-none-down-sm {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .d-none-down-md {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .d-none-down-lg {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .d-none-down-xl {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .d-none-up-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .d-none-up-md {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .d-none-up-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .d-none-up-xl {
    display: none;
  }
}
.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.has-text-bold {
  font-weight: 700;
}

.has-text-centered {
  text-align: center;
}

.has-text-right {
  text-align: right;
}

.has-text-blue {
  color: var(--color-blue);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding: var(--scroll-padding);
}

body {
  position: static;
  font-family: var(--body-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern";
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body-text-color);
  background-color: var(--body-bg-color);
  overflow-x: hidden;
}

a {
  color: inherit;
  word-break: break-all;
  cursor: pointer;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

img,
svg {
  vertical-align: middle;
}

ul, ol {
  list-style: none;
  padding: 0;
}

dt {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

iframe {
  border: 0;
}

[hidden] {
  display: none !important;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

.title-en {
  font-family: var(--font-family-en);
  font-weight: 300;
  font-size: 45px;
  line-height: 1.2222222222;
  letter-spacing: 0.015em;
}

@media screen and (min-width: 768px) {
  .title-en {
    font-size: 55px;
    line-height: 1;
  }
}
.container {
  --_container-width: 1100px;
  --_container-pd: 25px;
  max-width: calc(var(--_container-width) + 2 * (var(--_container-pd)));
  padding-inline: var(--_container-pd);
  margin-inline: auto;
}

.sec {
  padding-top: var(--sec-pd-top);
  padding-bottom: var(--sec-pd-btm);
}

.btn {
  --_btn-font-size: 16px;
  --_btn-color: var(--color-text-dark);
  --_btn-bg-color: var(--color-grey-light);
  --_btn-color-hover: var(--color-text-light);
  --_btn-bg-color-hover: var(--color-text-dark);
  --_btn-dot-size: 6px;
  --_btn-dot-color: var(--color-text-light);
  --_btn-dot-color-hover: var(--color-text-dark);
  --_btn-circle-size: 40px;
  --_btn-circle-color: var(--color-text-dark);
  --_btn-circle-color-hover: var(--color-text-light);
  --_btn-circle-pos-right: 10px;
  position: relative;
  display: inline-block;
  min-width: 270px;
  align-items: center;
  padding-block: 1.375em;
  padding-left: 1.875em;
  padding-right: calc(var(--_btn-circle-size) + 1.25em);
  border-radius: 100px;
  cursor: pointer;
  -webkit-text-decoration-line: unset;
          text-decoration-line: unset;
  font-size: var(--_btn-font-size);
  letter-spacing: 0.02em;
  color: var(--_btn-color);
  line-height: 1;
  background-color: var(--_btn-bg-color);
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
}
.btn::before, .btn::after {
  content: "";
  display: block;
  position: absolute;
  transition: background-color 0.2s ease-out, transform 0.2s ease-out;
}
.btn::before {
  width: var(--_btn-circle-size);
  height: var(--_btn-circle-size);
  right: var(--_btn-circle-pos-right);
  top: 50%;
  margin-top: calc(var(--_btn-circle-size) / 2 * -1);
  background-color: var(--_btn-circle-color);
  border-radius: var(--_btn-circle-size);
  z-index: 1;
}
.btn::after {
  width: var(--_btn-dot-size);
  height: var(--_btn-dot-size);
  right: calc((var(--_btn-circle-size) - var(--_btn-dot-size)) / 2 + var(--_btn-circle-pos-right));
  top: 50%;
  margin-top: -3px;
  background-color: var(--_btn-dot-color);
  border-radius: var(--_btn-dot-size);
  z-index: 2;
}
.btn:hover {
  color: var(--_btn-color-hover);
  background-color: var(--_btn-bg-color-hover);
}
.btn:hover::before {
  background-color: var(--_btn-circle-color-hover);
}
.btn:hover::after {
  background-color: var(--_btn-dot-color-hover);
}

.hd {
  transition: background-color 0.25s ease-out;
}

.hd-logo-svg path,
.hd-logo-svg rect {
  transition: fill 0.4s ease;
  fill: #D5DEE5;
}

.is-open .hd-logo-svg .path1,
.is-on .hd-logo-svg .path1 {
  fill: #242421;
}
.is-open .hd-logo-svg .path2,
.is-on .hd-logo-svg .path2 {
  fill: #242421;
}
.is-open .hd-logo-svg .rect1,
.is-on .hd-logo-svg .rect1 {
  fill: #00AD7F;
}
.is-open .hd-logo-svg .rect2,
.is-on .hd-logo-svg .rect2 {
  fill: #2670B9;
}

.hd-menu a, .hd-menu span {
  display: block;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 992px) {
  .hd {
    position: fixed;
    width: 100%;
    height: var(--hd-height);
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: transparent;
  }
  .hd-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--hd-height);
  }
  .hd-logo {
    margin-left: var(--body-pd);
  }
  .hd.is-open {
    background-color: #FFFFFF;
  }
  .hd-menu {
    position: fixed;
    width: 100%;
    height: calc(100dvh - var(--hd-height));
    top: var(--hd-height);
    left: 0;
    bottom: 0;
    padding: 48px 48px 70px 48px;
    z-index: 10001;
    background-color: #FFFFFF;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-out, visibility 0s ease-out 1s;
  }
  .hd-menu.is-active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .hd-menu a, .hd-menu span {
    padding-block: 1.2em;
    border-bottom: 1px solid rgba(52, 52, 52, 0.3);
    font-size: 16px;
  }
  .hd-menu a {
    position: relative;
  }
  .hd-menu a::after {
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 9px;
    top: 50%;
    right: 0;
    background: center center no-repeat url("../images/2026/icon-angle-right.svg");
    background-size: contain;
    transform: translateY(-50%);
  }
  .has-hd-submenu svg {
    display: none;
  }
  .hd-submenu {
    padding-left: 30px;
  }
  .hd-submenu img {
    display: none;
  }
  .hamburger {
    --_hamburger-width: 50px;
    position: fixed;
    display: block;
    cursor: pointer;
    width: var(--_hamburger-width);
    height: var(--_hamburger-width);
    top: 14.5px;
    right: 15px;
    border: none;
    background-color: var(--color-text-light);
    border-radius: var(--_hamburger-width);
    transition: transform 0.25s ease-out;
  }
  .hamburger span {
    position: absolute;
    display: block;
    height: 1px;
    right: 15px;
    background-color: var(--color-text-dark);
    transition: transform 0.25s ease-out;
  }
  .hamburger span:first-child {
    transform-origin: center;
    width: 20px;
    top: 22.5px;
  }
  .hamburger span:last-child {
    transform-origin: center;
    width: 13px;
    top: 27.5px;
  }
  .hamburger[aria-expanded=true] span:first-child {
    transform: rotate(-26.5deg);
    top: 50%;
  }
  .hamburger[aria-expanded=true] span:last-child {
    transform: rotate(26.5deg);
    top: 50%;
    width: 20px;
  }
}
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
  .hd {
    position: fixed;
    width: 100%;
    height: var(--hd-height);
    z-index: 10000;
  }
  .hd-inner {
    max-width: 91.21522694vw;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-content: center;
  }
  .hd-logo {
    display: flex;
    align-items: center;
  }
  .hd-menu {
    --_font-color: var(--color-text-light);
    height: var(--hd-height);
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .hd-menu a, .hd-menu span {
    position: relative;
    transition: color 0.15s ease-out;
    color: var(--_font-color);
  }
  .hd-menu > li {
    margin-left: 35px;
  }
  .hd-menu > li > span,
  .hd-menu > li > a {
    position: relative;
  }
  .hd-menu > li > span::before,
  .hd-menu > li > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    bottom: -8px;
    left: 50%;
    margin-left: -2.5px;
    border-radius: 5px;
    background-color: var(--_font-color);
    z-index: 1;
    transition: opacity 0.25s ease-out;
    opacity: 0;
  }
  .hd-menu > li > span:hover::before,
  .hd-menu > li > a:hover::before {
    opacity: 1;
  }
  .hd-submenu {
    container-type: inline-size;
    position: fixed;
    width: 100%;
    padding-inline: 9.7364568cqi;
    top: var(--hd-height);
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4.0909090909cqi;
    padding-top: 40px;
    padding-bottom: 45px;
    justify-content: center;
    background-color: #FFFFFF;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-out, visibility 0s ease-out 1s;
  }
  .hd-submenu a {
    display: grid;
    row-gap: 1.25em;
    padding-bottom: 0.25em;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-blue);
  }
  .hd-submenu.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}
.is-on.hd {
  background-color: #ffffff;
}
.is-on .hd-menu {
  --_font-color: var(--color-text-dark);
}
.is-on .hd-menu .hd-menu-contact {
  border: 1px solid var(--color-text-dark);
  color: var(--color-text-dark);
  border-radius: 3px;
}
.is-on .hd-menu .hd-menu-column {
  border-radius: 3px;
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
}

.hd-menu .hd-menu-contact,
.hd-menu .hd-menu-column {
  border-radius: 3px;
  text-align: center;
}
.hd-menu .hd-menu-contact::before,
.hd-menu .hd-menu-column::before {
  display: none;
}
.hd-menu .hd-menu-contact {
  border: 1px solid var(--color-text-light);
  color: var(--color-text-light);
  background-color: transparent;
}
.hd-menu .hd-menu-column {
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
  border: none;
}

@media screen and (max-width: 992px) {
  .hd-menu .hd-menu-contact::after,
  .hd-menu .hd-menu-column::after {
    display: none !important;
  }
  .hd-menu .hd-menu-contact {
    margin-top: 40px;
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
  }
  .hd-menu .hd-menu-column {
    margin-top: 20px;
    background-color: var(--color-bg-grey);
    color: var(--color-text-dark);
  }
}
@media screen and (min-width: 992px) {
  .hd-menu .hd-menu-contact,
  .hd-menu .hd-menu-column {
    width: 150px;
    padding-block: 0.6em;
    transition: background-color 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out;
  }
  .hd-menu li:has(.hd-menu-column) {
    margin-left: 20px;
  }
  .is-on .hd-menu .hd-menu-contact {
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
    border-radius: 3px;
  }
  .is-on .hd-menu .hd-menu-contact:hover {
    background-color: var(--color-text-light);
    border-color: var(--color-text-light);
  }
  .is-on .hd-menu .hd-menu-column {
    border-radius: 3px;
    background-color: var(--color-bg-grey);
    border: 1px solid var(--color-bg-grey);
    color: var(--color-text-dark);
  }
  .is-on .hd-menu .hd-menu-column:hover {
    background-color: #ffffff;
    border-color: var(--color-text-dark);
  }
}
.footer-top-nav-outer {
  background-color: var(--color-bg-lightgrey);
  padding-block: 55px;
}

.footer-top-nav {
  display: grid;
  row-gap: 30px;
  column-gap: 50px;
  --_container-width: 950px;
}
.footer-top-nav .btn {
  --_btn-font-size: 18px;
  --_btn-color: var(--color-text-dark);
  --_btn-bg-color: #ffffff;
  --_btn-color-hover: var(--color-text-light);
  --_btn-bg-color-hover: var(--color-text-dark);
  --_btn-dot-color: #ffffff;
  --_btn-circle-color: var(--color-text-dark);
  --_btn-dot-color-hover: var(--color-text-dark);
  --_btn-circle-color-hover: var(--color-text-light);
  --_btn-circle-pos-right: 15px;
  font-weight: 500;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer-top-nav-outer {
    padding-block: 100px;
  }
  .footer-top-nav {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top-nav .btn {
    --_btn-font-size: 21px;
    --_btn-dot-size: 8px;
    --_btn-circle-size: 60px;
    --_btn-circle-pos-right: 20px;
    padding-block: 2em;
    padding-left: 70px;
  }
  .footer-top-nav .btn::before {
    margin-top: -30px;
  }
  .footer-top-nav .btn::after {
    margin-top: -4px;
  }
}
.home-bg-gradient {
  background: top center no-repeat;
  background-image: -webkit-image-set(url("../images/2026/home-fv-bg-mb.png") 1x, url("../images/2026/home-fv-bg-mb@2x.png") 2x, url("../images/2026/home-fv-bg-mb@3x.png") 3x);
  background-image: image-set(url("../images/2026/home-fv-bg-mb.png") 1x, url("../images/2026/home-fv-bg-mb@2x.png") 2x, url("../images/2026/home-fv-bg-mb@3x.png") 3x);
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 68px;
}

@media screen and (min-width: 576px) {
  .home-bg-gradient {
    background-image: -webkit-image-set(url("../images/2026/home-fv-bg-dt.png") 1x, url("../images/2026/home-fv-bg-dt@2x.png") 2x, url("../images/2026/home-fv-bg-dt@3x.png") 3x);
    background-image: image-set(url("../images/2026/home-fv-bg-dt.png") 1x, url("../images/2026/home-fv-bg-dt@2x.png") 2x, url("../images/2026/home-fv-bg-dt@3x.png") 3x);
  }
}
.home-fv {
  color: var(--color-text-light);
}

.home-fv-ttl-en {
  font-family: var(--font-family-en);
  font-weight: 300;
  font-size: 37px;
  line-height: 1.27;
  letter-spacing: 0.01em;
}

.home-fv-ttl-ja {
  margin-top: 16px;
  font-family: var(--font-family-ja);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.26;
  letter-spacing: 0.038em;
}

.home-fv-news {
  margin-top: 60px;
}
.home-fv-news .link {
  display: inline-block;
  width: 273px;
  padding-top: 20px;
  border-top: 1px solid var(--color-text-light);
  color: var(--color-text-light);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}
.home-fv-news .link:hover {
  text-decoration: underline;
}
.home-fv-news .date {
  font-family: var(--font-family-en);
  letter-spacing: 0.02em;
}
.home-fv-news .ttl {
  margin-top: 10px;
}

.home-about {
  margin-top: 110px;
}

.home-about-ttl-en {
  opacity: 0.3;
  color: #ffffff;
}

.home-about-ttl-ja {
  margin-top: 56px;
  font-size: 26px;
  line-height: 1.7307692308;
  color: var(--color-text-light);
}

.home-about-desc {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
}

@media screen and (min-width: 992px) {
  .home-bg-gradient {
    padding-top: 42.3177083333dvh;
    padding-bottom: 16.9270833333dvh;
  }
  .container-fv {
    max-width: 87.8477306003vw;
    padding-left: 0;
    padding-right: 3.6603221083vw;
  }
  .home-fv-ttl-en {
    font-size: 56px;
    line-height: 1.25;
  }
  .home-fv-ttl-ja {
    font-size: 24px;
  }
  .home-fv-news {
    display: flex;
    justify-content: flex-end;
    margin-top: 170px;
  }
  .home-about {
    margin-top: 170px;
    display: grid;
    grid-template-columns: 1fr 50%;
  }
  .home-about-ttl-ja {
    margin-top: 72px;
    font-size: 30px;
    line-height: 1.8333333333;
  }
  .home-about-desc {
    margin-top: 131px;
    font-size: 17px;
    line-height: 2.0588235294;
  }
}
.home-sec {
  padding-top: var(--sec-pd-top);
  padding-bottom: var(--sec-pd-btm);
}

.home-serv-ttl-ja {
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.home-serv-desc {
  margin-top: 32px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 400;
}

.home-sec-serv .btn-outer {
  margin-top: 46px;
}

@media screen and (max-width: 768px) {
  .home-serv-illust {
    margin-top: 40px;
    text-align: center;
  }
  .home-serv-ttl-ja {
    margin-top: 46px;
  }
  .home-sec-serv .btn-outer {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .home-sec-serv-content {
    position: relative;
    container-type: inline-size;
    margin-top: 72px;
  }
  .home-serv-illust {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 620px;
    width: 50%;
  }
  .home-serv-ttl-ja {
    font-size: 27px;
    line-height: 2;
  }
  .home-serv-desc {
    margin-top: 38px;
    font-size: 17px;
    line-height: 2.0588235294;
  }
  .home-sec-serv .btn-outer {
    margin-top: 56px;
  }
}
@media screen and (min-width: 992px) {
  .home-serv-illust {
    width: 56.3636363636cqi;
  }
}
.home-serv-video-wrap {
  margin-top: 75px;
}

.home-serv-video-ttl {
  padding-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid var(--color-text-dark);
}

.home-serv-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 325/273;
  margin-top: 25px;
  text-align: center;
  background: center center no-repeat;
  background-image: -webkit-image-set(url("../images/2026/home-movie-thumb.webp") 1x, url("../images/2026/home-movie-thumb@2x.webp") 2x, url("../images/2026/home-movie-thumb@3x.webp") 3x);
  background-image: image-set(url("../images/2026/home-movie-thumb.webp") 1x, url("../images/2026/home-movie-thumb@2x.webp") 2x, url("../images/2026/home-movie-thumb@3x.webp") 3x);
  background-size: cover;
}
.home-serv-video-thumb .icon-play {
  position: absolute;
  width: 100px;
  height: 100px;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  transition: transform 0.25s ease-out;
}

@media screen and (min-width: 768px) {
  .home-serv-video-wrap {
    margin-top: var(--sec-pd-top);
  }
  .home-serv-video-thumb {
    margin-top: 40px;
    aspect-ratio: 1100/470;
  }
  .home-serv-video-thumb .icon-play {
    width: 118px;
    height: 118px;
    margin-top: -59px;
    margin-left: -59px;
  }
  .home-serv-video-thumb:hover .icon-play {
    transform: scale(1.1);
  }
}
.home-sec-column {
  background-color: var(--color-bg-grey);
}

.home-column-desc {
  margin-top: 42px;
  font-size: 15px;
  line-height: 2;
}

.column-card {
  width: 277px;
  padding-block: 30px;
  padding-inline: 16px;
  background-color: #ffffff;
}
.column-card-thumb {
  aspect-ratio: 243/194;
  overflow: hidden;
}
.column-card-thumb img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}
.column-card-ttl {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  height: 2lh;
  overflow: hidden;
}
.column-card-desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6923076923;
  font-weight: 300;
}
.column-card-cat {
  width: -webkit-max-content;
  width: max-content;
  margin-top: 1.25em;
  padding-inline: 1em;
  padding-block: 0.4em;
  padding-bottom: calc(0.4em + 1px);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: #FFFFFF;
  background-color: var(--color-blue);
  border-radius: 20px;
}

@media screen and (min-width: 992px) {
  .home-column-desc {
    margin-top: 72px;
    font-size: 17px;
    line-height: 1.4705882353;
  }
  .column-card {
    width: 393px;
  }
  .column-card-thumb {
    aspect-ratio: 343/233;
  }
  .column-card-ttl {
    font-size: 19px;
    line-height: 1.5789473684;
  }
  .column-card-desc {
    font-size: 14px;
    line-height: 1.7857142857;
  }
  .column-card:hover .column-card-thumb img {
    transform: scale(1.05);
  }
}
.home-column-swiper-wrap {
  position: relative;
  margin-top: 56px;
  padding-top: 30px;
}
.home-column-swiper-wrap .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #5C5F62;
}
.home-column-swiper-wrap .swiper-pagination-progressbar {
  top: -2px;
  right: 0;
  left: auto;
  max-width: 214px;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.home-column-swiper {
  margin-right: -25px;
}
.home-column-swiper .swiper-slide {
  width: auto;
  height: auto;
}

@media screen and (min-width: 768px) {
  .home-column-swiper-wrap {
    margin-top: 0;
    padding-top: 55px;
  }
  .home-column-swiper-wrap .swiper-pagination-progressbar {
    height: 3px;
  }
  .home-column-swiper-wrap .swiper-pagination-progressbar-fill {
    height: 3px;
  }
}
@media (min-width: 1150px) {
  .home-column-swiper {
    margin-right: calc((var(--vw) * 100 - 100%) / -2);
  }
}
.home-new-cardlist {
  container-type: inline-size;
  display: grid;
  column-gap: 4.1666666667cqi;
  row-gap: 40px;
  margin-top: 32px;
}

.news-card a {
  text-decoration: none;
}
.news-card-thumb {
  aspect-ratio: 325/185;
  overflow: hidden;
}
.news-card-thumb img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
}
.news-card-ttl {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5625;
  font-weight: 500;
}
.news-card-info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-blue);
}
.news-card-cat {
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-blue);
}
.news-card-date {
  font-family: var(--font-family-en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .home-new-cardlist {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
  }
  .news-card-thumb {
    aspect-ratio: 367/216;
  }
  .news-card-ttl {
    margin-top: 1em;
    font-size: 17px;
    line-height: 1.5882352941;
  }
  .news-card-info {
    margin-top: 14px;
  }
  .news-card:hover .news-card-thumb img {
    transform: scale(1.05);
  }
}
.home-qa {
  margin-bottom: var(--sec-pd-btm);
}
.home-qa .container {
  --_container-width: 1100px;
}
.home-qa-inner {
  padding-inline: 48px;
  background-color: var(--color-bg-grey);
}
.home-qa .btn {
  margin-top: 1.75em;
  min-width: initial;
  max-width: 240px;
  width: 100%;
  padding-inline: 0;
  border-bottom: 1px solid var(--color-text-dark);
  background-color: transparent;
  color: var(--color-text-dark);
  border-radius: 0;
  opacity: 0.83;
}
.home-qa .btn::before {
  display: none;
}
.home-qa .btn::after {
  background-color: var(--color-text-dark);
  right: 0;
}

.home-qa-inner {
  padding-top: 46px;
  padding-bottom: 70px;
}

.home-qa-ttl {
  text-align: center;
  font-family: var(--font-family-en);
  font-weight: 300;
  font-size: 65px;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.home-qa-desc {
  padding-top: 46px;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .home-qa .container {
    container-type: inline-size;
  }
  .home-qa .btn:hover {
    color: var(--color-blue);
    border-color: var(--color-blue);
  }
  .home-qa .btn:hover::after {
    background-color: var(--color-blue);
    transform: scale(1.4);
  }
  .home-qa-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 16.3636363636cqi;
    padding-block: 90px;
  }
  .home-qa-desc {
    padding-top: 0;
    width: -webkit-max-content;
    width: max-content;
  }
}
.has-bg-nras-gradient {
  background: linear-gradient(307.81deg, #000F47 -0.83%, #000000 63.7%, #002D30 100%);
}

.nras-fv-bg-gradient {
  padding-top: 155px;
  padding-bottom: 80px;
}

.nras-fv-container {
  padding-inline: 25px;
}

.page-ttl-nras {
  --_bar-w: 8px;
  --_blue_bar-h: 30px;
  --_green_bar-h: 140px;
  position: relative;
  padding-left: calc(20px + var(--_bar-w));
  font-size: 42px;
  line-height: 1.119047619;
  font-weight: 300;
  font-family: var(--font-family-en);
  color: var(--color-text-light);
  letter-spacing: 0.01em;
}
.page-ttl-nras span {
  display: block;
  text-box: trim-both cap alphabetic;
}
.page-ttl-nras .small {
  margin-top: 35px;
  font-size: 32px;
}
.page-ttl-nras::before, .page-ttl-nras::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--_bar-w);
  z-index: 1;
}
.page-ttl-nras::before {
  height: var(--_blue_bar-h);
  background: linear-gradient(180deg, #145FFF 0%, rgba(20, 95, 255, 0.7) 100%);
}
.page-ttl-nras::after {
  height: var(--_green_bar-h);
  top: var(--_blue_bar-h);
  background: linear-gradient(180deg, #00BF96 0%, rgba(0, 191, 150, 0) 100%);
}

.nras-fv-desc {
  margin-top: 70px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  font-weight: 400;
}

.nras-fv-image {
  margin-top: 40px;
  padding-inline: 9px;
}

@media screen and (min-width: 992px) {
  .nras-fv-bg-gradient {
    padding-top: 225px;
    padding-bottom: 100px;
  }
  .nras-fv-container {
    padding-inline: 6.0761346999%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .page-ttl-nras {
    --_bar-w: 10px;
    font-size: 56px;
    padding-left: calc(36px + var(--_bar-w));
  }
  .page-ttl-nras .small {
    margin-top: 40px;
    font-size: 42px;
  }
  .nras-fv-desc {
    padding-left: 50px;
    font-size: 17px;
    line-height: 2.0588235294;
    color: var(--color-text-light);
  }
  .nras-fv-image {
    margin-top: initial;
    padding-inline: 0;
  }
}
.nras-about-container {
  --_container-width: 676px;
}

.nras-about {
  position: relative;
  --_arch-w: 549.32px;
  --_arch_h: 132.93px;
  margin-top: 50px;
  padding-top: 90px;
}
.nras-about::before {
  content: "";
  display: block;
  width: var(--_arch-w);
  aspect-ratio: 1015/246;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: top center no-repeat;
  background-image: url("../images/2026/nras/nras-about-arch.svg");
  background-size: cover;
}

.nras-about-head-ttl {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-text-light);
  font-family: var(--font-family-en);
  font-weight: 300;
  text-align: center;
}

.nras-about-head-desc {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-light);
  font-weight: 400;
}
.nras-about-head-desc .badge {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-block: 24px;
  padding-block: 7px;
  color: var(--color-text-dark);
  font-size: 19px;
  line-height: 1.3157894737;
  text-align: center;
  background: center center no-repeat;
  background-image: url("../images/2026/nras/nras-about-badge-mb.svg");
  background-size: cover;
}

.nras-about-focus {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}

.nras-about-focus-item {
  position: relative;
  color: var(--color-text-light);
}
.nras-about-focus-item .ttl {
  position: relative;
  padding-top: 32px;
  padding-bottom: 62px;
  font-size: 14.54px;
  line-height: 1.4649243466;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-align: center;
  z-index: 1;
}
.nras-about-focus-item .ttl-en {
  display: block;
  margin-bottom: 22px;
  font-size: 9.69px;
  font-family: var(--font-family-en);
  font-weight: 300;
}
.nras-about-focus-item .desc {
  position: relative;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6153846154;
  text-align: justify;
  z-index: 1;
}
.nras-about-focus-item::before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  aspect-ratio: 364/310;
  position: absolute;
  top: 0;
  background: top center no-repeat;
  z-index: 0;
}
.nras-about-focus-item.green .ttl {
  padding-left: 2px;
}
.nras-about-focus-item.green::before {
  right: -25px;
  background-image: url("../images/2026/nras/nras-focus-bg-green.svg");
  background-size: contain;
}
.nras-about-focus-item.blue .ttl {
  padding-right: 2px;
}
.nras-about-focus-item.blue::before {
  left: -25px;
  background-image: url("../images/2026/nras/nras-focus-bg-blue.svg");
  background-size: contain;
}

.nras-about-btn {
  --_btn-circle-size: 54px;
  --_btn-circle-pos-right: 13px;
  width: 100%;
  padding-inline: 0;
  margin-top: 40px;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .nras-about {
    --_arch-w: 1015.18px;
    --_arch_h: 245.67px;
    margin-top: 120px;
    padding-top: 160px;
  }
  .nras-about-head-ttl {
    font-size: 40px;
  }
  .nras-about-head-desc {
    margin-top: 40px;
    font-size: 17px;
    line-height: 2.0588235294;
    text-align: center;
  }
  .nras-about-head-desc .badge {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-inline: auto;
    margin-block: 30px;
    padding-block: 16px;
    padding-inline: 42px;
    font-size: 22px;
    line-height: 1.5909090909;
    background-image: url("../images/2026/nras/nras-about-badge-dt.svg");
    background-size: contain;
    text-box: trim-both cap alphabetic;
  }
  .nras-about-focus {
    margin-top: 60px;
    column-gap: 70px;
    padding-inline: 64px;
  }
  .nras-about-focus-item .ttl {
    padding-top: 65px;
    padding-bottom: 124px;
    padding-inline: 0;
    font-size: 24px;
    line-height: 1.75;
  }
  .nras-about-focus-item .ttl-en {
    font-size: 19px;
  }
  .nras-about-focus-item .desc {
    margin-top: 24px;
    line-height: 1.7692307692;
  }
  .nras-about-focus-item::before {
    width: calc(100% + 140px);
  }
  .nras-about-focus-item.green::before {
    right: -70px;
  }
  .nras-about-focus-item.blue::before {
    left: -70px;
  }
  .nras-about-btn {
    --_btn-circle-size: 60px;
    --_btn-circle-pos-right: 15px;
    margin-top: 80px;
    width: 600px;
    font-size: 21px;
  }
}
.nras-point {
  padding-top: 65px;
  padding-bottom: 45px;
  background-color: var(--color-bg-lightgrey);
}

.nras-point-head-ttl {
  font-size: 60px;
  font-weight: 300;
  font-family: var(--font-family-en);
  letter-spacing: 0.015em;
  text-box: trim-both cap alphabetic;
}

.nras-point-head-desc {
  margin-top: 45px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}

.nras-point-grp {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}

.nras-point-item {
  padding: 30px;
  border-radius: 20px;
  background-color: #ffffff;
}
.nras-point-item span {
  display: block;
  text-box: trim-both cap alphabetic;
}
.nras-point-item .ttl {
  margin-top: 22px;
  color: var(--color-blue);
}
.nras-point-item .en {
  font-family: var(--font-family-en);
  letter-spacing: 0.015em;
  font-size: 12px;
  font-weight: 400;
}
.nras-point-item .ja {
  margin-top: 15px;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.nras-point-item .desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 400;
}

.nras-point-fig-wrap {
  position: relative;
  margin-top: 30px;
  padding-top: 48px;
  padding-bottom: 30px;
  padding-inline: 18px;
  background-color: #ffffff;
  border-radius: 20px;
}

.nras-point-fig {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
.nras-point-fig .cap {
  width: 100%;
  position: absolute;
  top: 36px;
  left: 0;
  color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .nras-point {
    padding-block: 120px;
  }
  .nras-point-head-ttl {
    font-size: 70px;
  }
  .nras-point-head-desc {
    margin-top: 68px;
    font-size: 17px;
    line-height: 2.0588235294;
  }
  .nras-point-grp {
    margin-top: 50px;
  }
  .nras-point-item .ttl {
    margin-top: 29px;
  }
  .nras-point-item .ja {
    font-size: 21px;
  }
  .nras-point-item .desc {
    margin-top: 24px;
    line-height: 1.7857142857;
  }
  .nras-point-fig-wrap {
    margin-top: 55px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .nras-point-fig {
    font-size: 22px;
  }
  .nras-point-fig .cap {
    top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .nras-point-grp {
    display: flex;
    flex-flow: wrap row;
    row-gap: -5px;
    justify-content: center;
    margin-left: -16.5px;
    margin-right: -16.5px;
    align-items: flex-start;
  }
  .nras-point-item {
    flex: none;
    width: calc(33.3333333333% - 33px);
    margin-inline: 16.5px;
  }
  .nras-point-item:nth-child(2) {
    margin-top: 60px;
  }
  .nras-point-item:nth-child(3) {
    margin-top: 120px;
  }
  .nras-point-item:last-child {
    margin-top: 60px;
  }
}
.nras-dashboard {
  padding-block: 65px;
  color: var(--color-text-light);
}

.nras-dashboard-head-ttl {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-box: trim-both cap alphabetic;
  letter-spacing: 0.02em;
}

.nras-dashboard-head-desc {
  margin-top: 44px;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
}

.nras-dashboard-img {
  margin-top: 20px;
}

.nras-dashboard-caption {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}

.nras-dashboard-pointlist {
  padding-block: 35px;
  display: grid;
  row-gap: 15px;
}

.nras-dashboard-point {
  --_h: 58px;
  position: relative;
  padding: 1px;
  background: linear-gradient(90deg, rgba(176, 229, 252, 0.7) 0%, rgba(199, 239, 255, 0.3) 52%, rgb(136, 217, 252) 100%);
  border-radius: var(--_h);
}
.nras-dashboard-point::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  background: linear-gradient(307.81deg, #000F47 -0.83%, #000000 63.7%, #002D30 100%);
  border-radius: var(--_h);
  z-index: 1;
}
.nras-dashboard-point .inner {
  position: relative;
  display: flex;
  padding-block: 22px;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-box: trim-both cap alphabetic;
  background: linear-gradient(90deg, #145FFF 0%, rgba(20, 95, 255, 0.1) 51.92%, rgba(20, 95, 255, 0.3) 75.34%, #145FFF 100%);
  z-index: 2;
  border-radius: var(--_h);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4117647059;
}

.nras-dashboard-point-desc {
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .nras-dashboard {
    padding-block: 150px;
  }
  .nras-dashboard-head-ttl {
    font-size: 38px;
    line-height: 1.5789473684;
  }
  .nras-dashboard-head-desc {
    margin-top: 56px;
    font-size: 17px;
    line-height: 2.0588235294;
  }
  .nras-dashboard-caption {
    margin-top: 0;
    font-size: 17px;
    line-height: 2.0588235294;
  }
  .nras-dashboard-pointlist {
    padding-block: 50px;
    row-gap: 25px;
  }
  .nras-dashboard-point {
    --_h: 61px;
    display: inline-block;
    width: -webkit-max-content;
    width: max-content;
  }
  .nras-dashboard-point .inner {
    padding-inline: 55px;
    height: var(--_h);
    width: -webkit-max-content;
    width: max-content;
  }
  .nras-dashboard-point-desc {
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    font-size: 17px;
    line-height: 2.0588235294;
  }
}
.nras-impl {
  padding-top: 40px;
  padding-bottom: 65px;
}

.nras-impl-container {
  --_container-pd: 15px;
}

.nras-impl-inner {
  padding-block: 30px;
  padding-inline: 25px;
  background-color: var(--color-bg-lightgrey);
}

.nras-impl-head {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 28px;
}

.nras-impl-head-ttl {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.nras-impl-head-desc {
  margin-top: 24px;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
}

.nras-impl-steps {
  margin-top: 22px;
  padding: 25px;
  background-color: var(--color-white);
  border-radius: 20px;
}

.nras-impl-steps-ttl {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--color-text-light);
  text-align: center;
  font-size: 17px;
  line-height: 1.6470588235;
}

.nras-impl-stepitem {
  display: grid;
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
  column-gap: 10px;
  font-size: 16px;
  line-height: 1.3125;
}
.nras-impl-stepitem .num {
  font-weight: 600;
  font-family: var(--font-family-en);
  font-size: 25px;
  color: var(--color-blue);
  line-height: 1;
}
.nras-impl-stepitem + .nras-impl-stepitem {
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .nras-impl-head-ttl {
    text-align: center;
  }
  .nras-pict-3days {
    width: 154px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .nras-impl {
    padding-block: 120px;
  }
  .nras-impl-inner {
    padding-block: 90px;
  }
  .nras-impl-head {
    flex-direction: row-reverse;
    column-gap: 50px;
    justify-content: center;
    align-items: center;
  }
  .nras-impl-head-ttl {
    font-size: 36px;
    line-height: 1.5555555556;
  }
  .nras-impl-head-desc {
    margin-top: 40px;
    font-size: 17px;
    line-height: 2.0588235294;
  }
  .nras-impl-steps {
    max-width: 780px;
    margin-top: 60px;
    margin-inline: auto;
    padding: 0 50px 50px 50px;
  }
  .nras-impl-steps-ttl {
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    margin-bottom: 1.25em;
    font-size: 20px;
  }
  .nras-impl-steplist {
    width: -webkit-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .nras-impl-stepitem {
    font-size: 19px;
  }
  .nras-impl-stepitem .num {
    font-size: 30px;
  }
  .nras-impl-stepitem + .nras-impl-stepitem {
    margin-top: 22px;
  }
}
.nras-intr {
  margin-top: 50px;
}

.nras-intr-ttl {
  font-size: 30px;
  letter-spacing: 0.02em;
  position: relative;
  text-box: trim-both cap alphabetic;
  text-align: center;
}
.nras-intr-ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 4px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(20, 95, 255, 0.7) 0%, rgb(20, 95, 255) 30%, rgba(20, 95, 255, 0.3) 100%);
}

.nras-intr-desc {
  margin-top: 52px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}

.nras-plan {
  margin-top: 24px;
}

.nras-planitem {
  --_card-color: var(--color-green);
  padding: 25px 35px 35px 35px;
  border: 1px solid var(--_card-color);
  border-radius: 10px;
  text-align: center;
}
.nras-planitem .ttl-en {
  color: var(--_card-color);
  text-box: trim-both cap alphabetic;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.02em;
}
.nras-planitem .ttl-ja {
  margin-top: 30px;
  padding-block: 27px;
  border-top: 1px solid var(--_card-color);
  border-bottom: 1px solid var(--_card-color);
  font-size: 22px;
  line-height: 1.7727272727;
  text-box: trim-both cap alphabetic;
}
.nras-planitem .ttl-ja .small {
  font-size: 20px;
}
.nras-planitem .desc {
  margin-top: 25px;
  text-align: justify;
  font-size: 15px;
  line-height: 1.7333333333;
}
.nras-planitem .btn {
  margin-top: 25px;
  text-align: left;
}
.nras-planitem.b {
  --_card-color: #005ED1;
}

@media screen and (max-width: 768px) {
  .nras-planitem + .nras-planitem {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .nras-intr {
    margin-top: 120px;
  }
  .nras-intr-ttl {
    font-size: 38px;
  }
  .nras-intr-ttl::before {
    width: 344px;
    bottom: -48px;
  }
  .nras-intr-desc {
    margin-top: 84px;
    font-size: 17px;
    line-height: 2.0588235294;
    text-align: center;
  }
  .nras-planlist {
    display: grid;
    justify-content: center;
    column-gap: 45px;
    grid-template-columns: repeat(auto-fit, 348px);
  }
  .nras-plan {
    margin-top: 42px;
  }
  .nras-planitem {
    padding: 40px 35px 50px;
  }
  .nras-planitem .ttl-ja {
    margin-top: 30px;
  }
  .nras-planitem .desc {
    margin-top: 30px;
    line-height: 1.8666666667;
  }
  .nras-planitem .btn {
    margin-top: 25px;
  }
}
.nras-contact {
  padding-block: 90px;
  text-align: center;
  color: var(--color-text-light);
}
.nras-contact-ttl {
  font-size: 34px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.nras-contact-desc {
  margin-top: 34px;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}
.nras-contact .btn {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding-inline: 0;
  margin-inline: auto;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .nras-contact .btn {
    --_btn-font-size: 19px;
    --_btn-dot-size: 8px;
    --_btn-circle-size: 54px;
    --_btn-circle-pos-right: 13px;
    line-height: 1.2631578947;
  }
}
@media screen and (min-width: 768px) {
  .nras-contact {
    padding-block: 170px;
  }
  .nras-contact-ttl {
    font-size: 40px;
  }
  .nras-contact-desc {
    margin-top: 44px;
    font-size: 20px;
  }
  .nras-contact .btn {
    --_btn-font-size: 21px;
    --_btn-dot-size: 8px;
    --_btn-circle-size: 60px;
    --_btn-circle-pos-right: 15px;
    width: 600px;
    height: 90px;
    margin-top: 54px;
  }
}
.nras-faq {
  padding-block: 65px;
  background-color: var(--color-bg-lightgrey);
}

.nras-faq-head-ttl {
  font-size: 28px;
  letter-spacing: 0.02em;
  font-size: 400;
  text-align: center;
  text-box: trim-both cap alphabetic;
}

.nras-faqlist {
  margin-top: 40px;
}

.nras-faqitem .head {
  display: grid;
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
  column-gap: 20px;
  padding-block: 18px;
  padding-inline: 20px;
  background-color: var(--color-white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4705882353;
  letter-spacing: 0.01em;
  color: var(--color-blue);
  text-box: trim-both cap alphabetic;
}
.nras-faqitem .head .ttl-q {
  position: relative;
  font-family: var(--font-family-en);
  font-weight: 500;
  padding-right: 25px;
  font-size: 32px;
  line-height: 1;
}
.nras-faqitem .head .ttl-q::before {
  content: "";
  display: block;
  width: 1px;
  height: 0.8em;
  position: absolute;
  top: 0.1em;
  right: 0;
  background-color: var(--color-blue);
}
.nras-faqitem .body {
  margin-top: 24px;
  padding-inline: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7333333333;
}
.nras-faqitem + .nras-faqitem {
  margin-top: 28px;
}

@media screen and (min-width: 768px) {
  .nras-faq {
    padding-block: 120px;
  }
  .nras-faq-head-ttl {
    font-size: 30px;
  }
  .nras-faqlist {
    margin-top: 55px;
    padding-inline: 50px;
  }
  .nras-faqitem .head {
    align-items: center;
    padding-block: 28px;
    padding-inline: 35px;
    font-size: 21px;
    line-height: 1.4285714286;
  }
  .nras-faqitem .head .ttl-q::before {
    height: 0.8em;
    top: 50%;
    margin-top: -0.4em;
  }
  .nras-faqitem .body {
    margin-top: 32px;
    padding-inline: 40px;
    font-size: 17px;
    line-height: 1.8823529412;
  }
  .nras-faqitem + .nras-faqitem {
    margin-top: 46px;
  }
}/*# sourceMappingURL=style2026.css.map */