﻿html {
  scroll-behavior: smooth;
  font-size: 100%;
}
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
body {
  padding: 0;
  margin: 0;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif !important;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-base);
}
main {
  font-feature-settings: "palt" 1;
}
a {
  color: var(--color-primary);
}
button {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: inherit;
  background: none;
  border: none;
}
@media (hover) {
  [href^="tel:"] {
    color: var(--color-base);
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}
ul[class],
ol[class] {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
sup {
  vertical-align: super;
}
:root {
  --color-base: #050f1a;
  --color-primary: #289c99;
  --color-yellow-green: #f7fce1;
  --color-red: #c00000;
  --color-white: #ffffff;
  --color-gold: #ce8d00;
  --color-off-white: #fffaf0;
}
.c-background-primary {
  background: var(--color-primary);
}
.c-breadcrumb-layout {
  padding: 15px 15px 0;
}
@media print, screen and (width>=769px) {
  .c-breadcrumb-layout {
    padding: 20px 20px 0;
  }
}
.c-breadcrumb {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}
.c-breadcrumb__item {
  font-size: 1.2rem;
  color: #cdcdcd;
  white-space: nowrap;
}
.c-breadcrumb__item:last-child .c-breadcrumb__link {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
.c-breadcrumb__item:last-child .c-breadcrumb__icon {
  display: none;
}
.c-breadcrumb__link {
  color: #838383;
  text-decoration: none;
}
@media (hover: hover) {
  .c-breadcrumb__link:hover {
    text-decoration: underline;
  }
}
.c-breadcrumb__icon {
  padding: 0 5px;
}
.c-breadcrumb--ellipsis {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c-breadcrumb--ellipsis .c-breadcrumb__item {
  display: inline;
}
.c-button {
  color: var(--color-base);
  text-decoration: none;
  cursor: pointer;
}
.c-collapse {
  margin: 0;
}
.c-collapse-switcher {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #000;
}
.c-collapse-switcher::after {
  content: "▲";
  transition: 0.25s ease-out;
  transform: rotate(180deg);
}
.c-collapse-switcher[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.c-collapse-content {
  padding: 50px 20px;
  margin: 0;
  border: 1px solid #000;
  border-top: none;
  overflow: hidden;
}
.c-collapse-content + .c-collapse-switcher {
  border-top: none;
}
.c-embed {
  aspect-ratio: 2/1;
}
.c-embed--ratio-1-1 {
  aspect-ratio: 1/1;
}
.c-embed--ratio-1-2 {
  aspect-ratio: 2/1;
}
.c-embed--ratio-2-3 {
  aspect-ratio: 3/2;
}
.c-embed--ratio-3-4 {
  aspect-ratio: 4/3;
}
.c-embed--ratio-9-16 {
  aspect-ratio: 16/9;
}
.c-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.c-icon {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  vertical-align: middle;
  background-color: var(--color, currentColor);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}
.c-icon--stretch {
  width: 100%;
}
.fk-icon--mdi-home {
  --svg: url(/common/img/svg-icons/mdi-home.svg);
}
.fk-icon--mdi-menu {
  --svg: url(/common/img/svg-icons/mdi-menu.svg);
}
.fk-icon--mdi-light-alert-circle {
  --svg: url(/common/img/svg-icons/mdi-light-alert-circle.svg);
}
.fk-icon--mdi-light-circle {
  --svg: url(/common/img/svg-icons/mdi-light-circle.svg);
}
.fk-icon--add {
  --svg: url(/common/img/svg-icons/add.svg);
}
.fk-icon--caret-down {
  --svg: url(/common/img/svg-icons/caret-down.svg);
}
.fk-icon--caret-left {
  --svg: url(/common/img/svg-icons/caret-left.svg);
}
.fk-icon--caret-right {
  --svg: url(/common/img/svg-icons/caret-right.svg);
}
.fk-icon--caret-up {
  --svg: url(/common/img/svg-icons/caret-up.svg);
}
.fk-icon--clear {
  --svg: url(/common/img/svg-icons/clear.svg);
}
.fk-icon--done {
  --svg: url(/common/img/svg-icons/done.svg);
}
.fk-icon--search {
  --svg: url(/common/img/svg-icons/search.svg);
}
.c-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.35s ease-out;
}
.c-overlay--open {
  pointer-events: all;
  opacity: 1;
}
.c-overlay--exclusive {
  background-color: rgba(255, 255, 255, 0.8);
}
.c-overlay--exclusive .c-modal {
  color: #fff;
  background-color: #333;
}
.c-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  padding: 20px;
  margin: auto auto;
  background-color: #fff;
  opacity: 0;
  transition: all 0.25s ease-out;
}
.c-modal--open {
  opacity: 1;
}
.c-modal .c-modal-content {
  display: block;
}
.c-modal-content {
  display: none;
}
.c-modal-closer {
  display: block;
  margin-left: auto;
  cursor: pointer;
}
body.has-overlay {
  overflow-y: hidden;
}
.c-tab-switcher {
  display: flex;
}
.c-tab-switcher__item {
  padding: 10px;
  cursor: pointer;
  user-select: none;
  border: 1px solid #000;
  border-left-color: rgba(0, 0, 0, 0);
}
.c-tab-switcher__item:first-child {
  border-left-color: #000;
}
.c-tab-switcher__item[aria-selected="true"] {
  color: #fff;
  cursor: default;
  background-color: #000;
}
.c-tab-content__item {
  padding: 10px 0;
}
.c-base-layout {
  position: relative;
  width: 100%;
  max-width: 1310px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.c-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 0;
  list-style: none;
  margin-bottom: -20px;
  margin-left: -20px;
}
@media print, screen and (width>=769px) {
  .c-grid {
    margin-bottom: -24px;
    margin-left: -24px;
  }
}
.c-grid > * {
  padding-bottom: 20px;
  padding-left: 20px;
}
@media print, screen and (width>=769px) {
  .c-grid > * {
    padding-bottom: 24px;
    padding-left: 24px;
  }
}
.c-grid > * {
  width: 100%;
}
.c-grid img[src$=".svg"] {
  width: 100%;
}
.c-grid--gutter-large {
  margin-bottom: -32px;
  margin-left: -32px;
}
@media print, screen and (width>=769px) {
  .c-grid--gutter-large {
    margin-bottom: -48px;
    margin-left: -48px;
  }
}
.c-grid--gutter-large > * {
  padding-bottom: 32px;
  padding-left: 32px;
}
@media print, screen and (width>=769px) {
  .c-grid--gutter-large > * {
    padding-bottom: 48px;
    padding-left: 48px;
  }
}
.c-grid--gutter-small {
  margin-bottom: -10px;
  margin-left: -10px;
}
@media print, screen and (width>=769px) {
  .c-grid--gutter-small {
    margin-bottom: -16px;
    margin-left: -16px;
  }
}
.c-grid--gutter-small > * {
  padding-bottom: 10px;
  padding-left: 10px;
}
@media print, screen and (width>=769px) {
  .c-grid--gutter-small > * {
    padding-bottom: 16px;
    padding-left: 16px;
  }
}
.c-grid--gutter-collapse {
  margin-bottom: 0;
  margin-left: 0;
}
@media print, screen and (width>=769px) {
  .c-grid--gutter-collapse {
    margin-bottom: 0;
    margin-left: 0;
  }
}
.c-grid--gutter-collapse > * {
  padding-bottom: 0;
  padding-left: 0;
}
@media print, screen and (width>=769px) {
  .c-grid--gutter-collapse > * {
    padding-bottom: 0;
    padding-left: 0;
  }
}
.c-grid--center {
  justify-content: center;
}
.c-grid--middle {
  align-items: center;
}
.c-grid--item-fill > * {
  display: flex;
}
.c-grid--width-1-2 > * {
  width: 50%;
}
.c-grid--width-1-3 > * {
  width: 33.3333333333%;
}
.c-grid--width-1-4 > * {
  width: 25%;
}
.c-grid--width-1-5 > * {
  width: 20%;
}
.c-grid--width-1-6 > * {
  width: 16.6666666667%;
}
.c-grid--width-1-10 > * {
  width: 10%;
}
@media screen and (min-width: 480px) {
  .c-sm\:grid--width-1-2 > * {
    width: 50%;
  }
  .c-sm\:grid--width-1-3 > * {
    width: 33.3333333333%;
  }
  .c-sm\:grid--width-1-4 > * {
    width: 25%;
  }
  .c-sm\:grid--width-1-5 > * {
    width: 20%;
  }
  .c-sm\:grid--width-1-6 > * {
    width: 16.6666666667%;
  }
  .c-sm\:grid--width-1-10 > * {
    width: 10%;
  }
}
@media screen and (min-width: 769px) {
  .c-md\:grid--width-1-2 > * {
    width: 50%;
  }
  .c-md\:grid--width-1-3 > * {
    width: 33.3333333333%;
  }
  .c-md\:grid--width-1-4 > * {
    width: 25%;
  }
  .c-md\:grid--width-1-5 > * {
    width: 20%;
  }
  .c-md\:grid--width-1-6 > * {
    width: 16.6666666667%;
  }
  .c-md\:grid--width-1-10 > * {
    width: 10%;
  }
}
@media screen and (min-width: 980px) {
  .c-lg\:grid--width-1-2 > * {
    width: 50%;
  }
  .c-lg\:grid--width-1-3 > * {
    width: 33.3333333333%;
  }
  .c-lg\:grid--width-1-4 > * {
    width: 25%;
  }
  .c-lg\:grid--width-1-5 > * {
    width: 20%;
  }
  .c-lg\:grid--width-1-6 > * {
    width: 16.6666666667%;
  }
  .c-lg\:grid--width-1-10 > * {
    width: 10%;
  }
}
@media screen and (min-width: 1280px) {
  .c-xl\:grid--width-1-2 > * {
    width: 50%;
  }
  .c-xl\:grid--width-1-3 > * {
    width: 33.3333333333%;
  }
  .c-xl\:grid--width-1-4 > * {
    width: 25%;
  }
  .c-xl\:grid--width-1-5 > * {
    width: 20%;
  }
  .c-xl\:grid--width-1-6 > * {
    width: 16.6666666667%;
  }
  .c-xl\:grid--width-1-10 > * {
    width: 10%;
  }
}
@media print, screen and (width<769px) {
  .o-inner {
    padding-inline: 12px;
  }
}
.o-wrapper {
  box-sizing: border-box;
  padding-inline: 16px;
  padding-bottom: 64px;
}
@media print, screen and (width>=769px) {
  .o-wrapper {
    width: 1028px;
    padding-inline: 24px;
    padding-bottom: 120px;
    margin-inline: auto;
  }
}
.c-inline-block {
  display: inline-block;
}
.c-block {
  display: block;
}
.c-table {
  display: table;
}
.c-table-cell {
  display: table-cell;
}
@media print, screen and (width<769px) {
  .u-pc-only {
    display: none !important;
  }
}
@media print, screen and (width>=769px) {
  .u-sp-only {
    display: none !important;
  }
}
.c-flex {
  display: flex;
}
.c-flex--wrap {
  flex-wrap: wrap;
}
.c-flex--vertical {
  flex-direction: column;
}
.c-flex--vertical-reversed {
  flex-direction: column-reverse;
}
.c-flex--horizontal {
  flex-direction: row;
}
.c-flex--horizontal-reversed {
  flex-direction: row-reverse;
}
.c-flex--left {
  justify-content: flex-start;
}
.c-flex--right {
  justify-content: flex-end;
}
.c-flex--center {
  justify-content: center;
}
.c-flex--center > img {
  flex-shrink: 0;
}
.c-flex--space-between {
  justify-content: space-between;
}
.c-flex--space-around {
  justify-content: space-around;
}
.c-flex--top {
  align-items: flex-start;
}
.c-flex--middle {
  align-items: center;
}
.c-flex--bottom {
  align-items: flex-end;
}
.c-inline-flex {
  display: inline-flex;
}
.c-flex-item-fill {
  width: 100%;
}
.c-flex-item-top {
  justify-content: flex-start;
}
.c-flex-item-center {
  justify-content: center;
}
.c-flex-item-bottom {
  justify-content: flex-end;
}
.c-flex-item-grow {
  flex-grow: 1;
}
.c-flex-item-shrink {
  flex-shrink: 1;
}
.c-flex-item-no-shrink {
  flex-shrink: 0;
}
.c-clearfix {
  overflow: hidden;
}
.c-float-right {
  float: right;
}
.c-float-left {
  float: left;
}
img.c-stretch {
  width: 100%;
  max-width: none;
  height: auto;
  vertical-align: bottom;
}
.c-mt-auto {
  margin-top: auto;
}
.c-mr-auto {
  margin-right: auto;
}
.c-mb-auto {
  margin-bottom: auto;
}
.c-ml-auto {
  margin-left: auto;
}
.c-mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.c-my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.c-cursor-pointer {
  cursor: pointer;
}
.c-cursor-default {
  cursor: default;
}
.c-cursor-not-allowed {
  cursor: not-allowed;
}
.c-pointer-events-none {
  pointer-events: none;
}
.c-pointer-events-visible {
  pointer-events: visible;
}
.c-text-bold {
  font-weight: bold;
}
.c-text-normal {
  font-weight: normal;
}
.c-text-color-primary {
  color: var(--color-primary);
}
.c-text-color-caution {
  color: var(--color-caution);
}
.c-text-color-muted {
  color: var(--color-muted);
}
.c-text-color-white {
  color: var(--color-white);
}
.c-text-underline {
  text-decoration: underline;
}
@media (hover: none) {
  [href^="tel:"] {
    text-decoration: underline;
  }
}
.c-text-capitalize {
  text-transform: capitalize;
}
.c-text-uppercase {
  text-transform: uppercase;
}
.c-text-lowercase {
  text-transform: lowercase;
}
.c-text-left {
  text-align: left;
}
.c-text-center {
  text-align: center;
}
.c-text-right {
  text-align: right;
}
.c-text-top {
  vertical-align: top;
}
.c-text-middle {
  vertical-align: middle;
}
.c-text-bottom {
  vertical-align: bottom;
}
@media screen and (min-width: 481px) {
  .c-sm\:text-left {
    text-align: left;
  }
}
@media screen and (min-width: 481px) {
  .c-sm\:text-center {
    text-align: center;
  }
}
@media screen and (min-width: 481px) {
  .c-sm\:text-right {
    text-align: right;
  }
}
@media screen and (min-width: 481px) {
  .c-sm\:text-top {
    vertical-align: top;
  }
}
@media screen and (min-width: 481px) {
  .c-sm\:text-middle {
    vertical-align: middle;
  }
}
@media screen and (min-width: 481px) {
  .c-sm\:text-bottom {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 770px) {
  .c-md\:text-left {
    text-align: left;
  }
}
@media screen and (min-width: 770px) {
  .c-md\:text-center {
    text-align: center;
  }
}
@media screen and (min-width: 770px) {
  .c-md\:text-right {
    text-align: right;
  }
}
@media screen and (min-width: 770px) {
  .c-md\:text-top {
    vertical-align: top;
  }
}
@media screen and (min-width: 770px) {
  .c-md\:text-middle {
    vertical-align: middle;
  }
}
@media screen and (min-width: 770px) {
  .c-md\:text-bottom {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 981px) {
  .c-lg\:text-left {
    text-align: left;
  }
}
@media screen and (min-width: 981px) {
  .c-lg\:text-center {
    text-align: center;
  }
}
@media screen and (min-width: 981px) {
  .c-lg\:text-right {
    text-align: right;
  }
}
@media screen and (min-width: 981px) {
  .c-lg\:text-top {
    vertical-align: top;
  }
}
@media screen and (min-width: 981px) {
  .c-lg\:text-middle {
    vertical-align: middle;
  }
}
@media screen and (min-width: 981px) {
  .c-lg\:text-bottom {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 1281px) {
  .c-xl\:text-left {
    text-align: left;
  }
}
@media screen and (min-width: 1281px) {
  .c-xl\:text-center {
    text-align: center;
  }
}
@media screen and (min-width: 1281px) {
  .c-xl\:text-right {
    text-align: right;
  }
}
@media screen and (min-width: 1281px) {
  .c-xl\:text-top {
    vertical-align: top;
  }
}
@media screen and (min-width: 1281px) {
  .c-xl\:text-middle {
    vertical-align: middle;
  }
}
@media screen and (min-width: 1281px) {
  .c-xl\:text-bottom {
    vertical-align: bottom;
  }
}
.c-text-note {
  position: relative;
  padding-left: 1.5rem;
}
.c-text-note::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline;
  content: "※";
}
.c-text-link {
  color: var(--color-base);
  text-decoration: underline;
}
.c-text-link:hover {
  text-decoration: none;
}
.c-text-link .c-icon {
  padding: 0 3px;
}
.c-none {
  display: none !important;
}
@media print, screen and (width>=480px) {
  .c-sm\:none {
    display: none !important;
  }
}
@media print, screen and (width>=769px) {
  .c-md\:none {
    display: none !important;
  }
}
@media print, screen and (width>=980px) {
  .c-lg\:none {
    display: none !important;
  }
}
@media print, screen and (width>=1280px) {
  .c-xl\:none {
    display: none !important;
  }
}
@media print, screen and (width>=480px) {
  .c-sm\:block {
    display: block !important;
  }
}
@media print, screen and (width>=769px) {
  .c-md\:block {
    display: block !important;
  }
}
@media print, screen and (width>=980px) {
  .c-lg\:block {
    display: block !important;
  }
}
@media print, screen and (width>=1280px) {
  .c-xl\:block {
    display: block !important;
  }
}
@media print, screen and (width>=480px) {
  .c-sm\:flex {
    display: flex !important;
  }
}
@media print, screen and (width>=769px) {
  .c-md\:flex {
    display: flex !important;
  }
}
@media print, screen and (width>=980px) {
  .c-lg\:flex {
    display: flex !important;
  }
}
@media print, screen and (width>=1280px) {
  .c-xl\:flex {
    display: flex !important;
  }
}
.c-overflow-hidden {
  overflow: hidden;
}
.c-overflow-visible {
  overflow: visible;
}
.c-overflow-auto {
  overflow: auto;
}
.c-overflow-hidden {
  overflow: scroll;
}
.u-mt-8-8 {
  margin-top: 8px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-8-8 {
    margin-top: 8px !important;
  }
}
.u-mb-8-8 {
  margin-bottom: 8px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-8-8 {
    margin-bottom: 8px !important;
  }
}
.u-pt-8-8 {
  padding-top: 8px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-8-8 {
    padding-top: 8px !important;
  }
}
.u-pb-8-8 {
  padding-bottom: 8px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-8-8 {
    padding-bottom: 8px !important;
  }
}
.u-px-8-8 {
  padding-inline: 8px !important;
}
@media print, screen and (width>=769px) {
  .u-px-8-8 {
    padding-inline: 8px !important;
  }
}
.u-mt-10-0 {
  margin-top: 10px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-10-0 {
    margin-top: 0px !important;
  }
}
.u-mb-10-0 {
  margin-bottom: 10px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-10-0 {
    margin-bottom: 0px !important;
  }
}
.u-pt-10-0 {
  padding-top: 10px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-10-0 {
    padding-top: 0px !important;
  }
}
.u-pb-10-0 {
  padding-bottom: 10px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-10-0 {
    padding-bottom: 0px !important;
  }
}
.u-px-10-0 {
  padding-inline: 10px !important;
}
@media print, screen and (width>=769px) {
  .u-px-10-0 {
    padding-inline: 0px !important;
  }
}
.u-mt-12-12 {
  margin-top: 12px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-12-12 {
    margin-top: 12px !important;
  }
}
.u-mb-12-12 {
  margin-bottom: 12px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-12-12 {
    margin-bottom: 12px !important;
  }
}
.u-pt-12-12 {
  padding-top: 12px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-12-12 {
    padding-top: 12px !important;
  }
}
.u-pb-12-12 {
  padding-bottom: 12px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-12-12 {
    padding-bottom: 12px !important;
  }
}
.u-px-12-12 {
  padding-inline: 12px !important;
}
@media print, screen and (width>=769px) {
  .u-px-12-12 {
    padding-inline: 12px !important;
  }
}
.u-mt-16-30 {
  margin-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-16-30 {
    margin-top: 30px !important;
  }
}
.u-mb-16-30 {
  margin-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-16-30 {
    margin-bottom: 30px !important;
  }
}
.u-pt-16-30 {
  padding-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-16-30 {
    padding-top: 30px !important;
  }
}
.u-pb-16-30 {
  padding-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-16-30 {
    padding-bottom: 30px !important;
  }
}
.u-px-16-30 {
  padding-inline: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-px-16-30 {
    padding-inline: 30px !important;
  }
}
.u-mt-16-34 {
  margin-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-16-34 {
    margin-top: 34px !important;
  }
}
.u-mb-16-34 {
  margin-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-16-34 {
    margin-bottom: 34px !important;
  }
}
.u-pt-16-34 {
  padding-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-16-34 {
    padding-top: 34px !important;
  }
}
.u-pb-16-34 {
  padding-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-16-34 {
    padding-bottom: 34px !important;
  }
}
.u-px-16-34 {
  padding-inline: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-px-16-34 {
    padding-inline: 34px !important;
  }
}
.u-mt-16-40 {
  margin-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-16-40 {
    margin-top: 40px !important;
  }
}
.u-mb-16-40 {
  margin-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-16-40 {
    margin-bottom: 40px !important;
  }
}
.u-pt-16-40 {
  padding-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-16-40 {
    padding-top: 40px !important;
  }
}
.u-pb-16-40 {
  padding-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-16-40 {
    padding-bottom: 40px !important;
  }
}
.u-px-16-40 {
  padding-inline: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-px-16-40 {
    padding-inline: 40px !important;
  }
}
.u-mt-16-50 {
  margin-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-16-50 {
    margin-top: 50px !important;
  }
}
.u-mb-16-50 {
  margin-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-16-50 {
    margin-bottom: 50px !important;
  }
}
.u-pt-16-50 {
  padding-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-16-50 {
    padding-top: 50px !important;
  }
}
.u-pb-16-50 {
  padding-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-16-50 {
    padding-bottom: 50px !important;
  }
}
.u-px-16-50 {
  padding-inline: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-px-16-50 {
    padding-inline: 50px !important;
  }
}
.u-mt-16-60 {
  margin-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-16-60 {
    margin-top: 60px !important;
  }
}
.u-mb-16-60 {
  margin-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-16-60 {
    margin-bottom: 60px !important;
  }
}
.u-pt-16-60 {
  padding-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-16-60 {
    padding-top: 60px !important;
  }
}
.u-pb-16-60 {
  padding-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-16-60 {
    padding-bottom: 60px !important;
  }
}
.u-px-16-60 {
  padding-inline: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-px-16-60 {
    padding-inline: 60px !important;
  }
}
.u-mt-16-68 {
  margin-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-16-68 {
    margin-top: 68px !important;
  }
}
.u-mb-16-68 {
  margin-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-16-68 {
    margin-bottom: 68px !important;
  }
}
.u-pt-16-68 {
  padding-top: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-16-68 {
    padding-top: 68px !important;
  }
}
.u-pb-16-68 {
  padding-bottom: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-16-68 {
    padding-bottom: 68px !important;
  }
}
.u-px-16-68 {
  padding-inline: 16px !important;
}
@media print, screen and (width>=769px) {
  .u-px-16-68 {
    padding-inline: 68px !important;
  }
}
.u-mt-20-20 {
  margin-top: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-20-20 {
    margin-top: 20px !important;
  }
}
.u-mb-20-20 {
  margin-bottom: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-20-20 {
    margin-bottom: 20px !important;
  }
}
.u-pt-20-20 {
  padding-top: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-20-20 {
    padding-top: 20px !important;
  }
}
.u-pb-20-20 {
  padding-bottom: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-20-20 {
    padding-bottom: 20px !important;
  }
}
.u-px-20-20 {
  padding-inline: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-px-20-20 {
    padding-inline: 20px !important;
  }
}
.u-mt-20-57 {
  margin-top: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-20-57 {
    margin-top: 57px !important;
  }
}
.u-mb-20-57 {
  margin-bottom: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-20-57 {
    margin-bottom: 57px !important;
  }
}
.u-pt-20-57 {
  padding-top: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-20-57 {
    padding-top: 57px !important;
  }
}
.u-pb-20-57 {
  padding-bottom: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-20-57 {
    padding-bottom: 57px !important;
  }
}
.u-px-20-57 {
  padding-inline: 20px !important;
}
@media print, screen and (width>=769px) {
  .u-px-20-57 {
    padding-inline: 57px !important;
  }
}
.u-mt-26-59 {
  margin-top: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-26-59 {
    margin-top: 59px !important;
  }
}
.u-mb-26-59 {
  margin-bottom: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-26-59 {
    margin-bottom: 59px !important;
  }
}
.u-pt-26-59 {
  padding-top: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-26-59 {
    padding-top: 59px !important;
  }
}
.u-pb-26-59 {
  padding-bottom: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-26-59 {
    padding-bottom: 59px !important;
  }
}
.u-px-26-59 {
  padding-inline: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-px-26-59 {
    padding-inline: 59px !important;
  }
}
.u-mt-26-66 {
  margin-top: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-26-66 {
    margin-top: 66px !important;
  }
}
.u-mb-26-66 {
  margin-bottom: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-26-66 {
    margin-bottom: 66px !important;
  }
}
.u-pt-26-66 {
  padding-top: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-26-66 {
    padding-top: 66px !important;
  }
}
.u-pb-26-66 {
  padding-bottom: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-26-66 {
    padding-bottom: 66px !important;
  }
}
.u-px-26-66 {
  padding-inline: 26px !important;
}
@media print, screen and (width>=769px) {
  .u-px-26-66 {
    padding-inline: 66px !important;
  }
}
.u-mt-28-66 {
  margin-top: 28px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-28-66 {
    margin-top: 66px !important;
  }
}
.u-mb-28-66 {
  margin-bottom: 28px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-28-66 {
    margin-bottom: 66px !important;
  }
}
.u-pt-28-66 {
  padding-top: 28px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-28-66 {
    padding-top: 66px !important;
  }
}
.u-pb-28-66 {
  padding-bottom: 28px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-28-66 {
    padding-bottom: 66px !important;
  }
}
.u-px-28-66 {
  padding-inline: 28px !important;
}
@media print, screen and (width>=769px) {
  .u-px-28-66 {
    padding-inline: 66px !important;
  }
}
.u-mt-30-48 {
  margin-top: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-30-48 {
    margin-top: 48px !important;
  }
}
.u-mb-30-48 {
  margin-bottom: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-30-48 {
    margin-bottom: 48px !important;
  }
}
.u-pt-30-48 {
  padding-top: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-30-48 {
    padding-top: 48px !important;
  }
}
.u-pb-30-48 {
  padding-bottom: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-30-48 {
    padding-bottom: 48px !important;
  }
}
.u-px-30-48 {
  padding-inline: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-px-30-48 {
    padding-inline: 48px !important;
  }
}
.u-mt-30-56 {
  margin-top: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-30-56 {
    margin-top: 56px !important;
  }
}
.u-mb-30-56 {
  margin-bottom: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-30-56 {
    margin-bottom: 56px !important;
  }
}
.u-pt-30-56 {
  padding-top: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-30-56 {
    padding-top: 56px !important;
  }
}
.u-pb-30-56 {
  padding-bottom: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-30-56 {
    padding-bottom: 56px !important;
  }
}
.u-px-30-56 {
  padding-inline: 30px !important;
}
@media print, screen and (width>=769px) {
  .u-px-30-56 {
    padding-inline: 56px !important;
  }
}
.u-mt-32-60 {
  margin-top: 32px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-32-60 {
    margin-top: 60px !important;
  }
}
.u-mb-32-60 {
  margin-bottom: 32px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-32-60 {
    margin-bottom: 60px !important;
  }
}
.u-pt-32-60 {
  padding-top: 32px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-32-60 {
    padding-top: 60px !important;
  }
}
.u-pb-32-60 {
  padding-bottom: 32px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-32-60 {
    padding-bottom: 60px !important;
  }
}
.u-px-32-60 {
  padding-inline: 32px !important;
}
@media print, screen and (width>=769px) {
  .u-px-32-60 {
    padding-inline: 60px !important;
  }
}
.u-mt-38-42 {
  margin-top: 38px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-38-42 {
    margin-top: 42px !important;
  }
}
.u-mb-38-42 {
  margin-bottom: 38px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-38-42 {
    margin-bottom: 42px !important;
  }
}
.u-pt-38-42 {
  padding-top: 38px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-38-42 {
    padding-top: 42px !important;
  }
}
.u-pb-38-42 {
  padding-bottom: 38px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-38-42 {
    padding-bottom: 42px !important;
  }
}
.u-px-38-42 {
  padding-inline: 38px !important;
}
@media print, screen and (width>=769px) {
  .u-px-38-42 {
    padding-inline: 42px !important;
  }
}
.u-mt-40-40 {
  margin-top: 40px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-40-40 {
    margin-top: 40px !important;
  }
}
.u-mb-40-40 {
  margin-bottom: 40px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-40-40 {
    margin-bottom: 40px !important;
  }
}
.u-pt-40-40 {
  padding-top: 40px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-40-40 {
    padding-top: 40px !important;
  }
}
.u-pb-40-40 {
  padding-bottom: 40px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-40-40 {
    padding-bottom: 40px !important;
  }
}
.u-px-40-40 {
  padding-inline: 40px !important;
}
@media print, screen and (width>=769px) {
  .u-px-40-40 {
    padding-inline: 40px !important;
  }
}
.u-mt-60-64 {
  margin-top: 60px !important;
}
@media print, screen and (width>=769px) {
  .u-mt-60-64 {
    margin-top: 64px !important;
  }
}
.u-mb-60-64 {
  margin-bottom: 60px !important;
}
@media print, screen and (width>=769px) {
  .u-mb-60-64 {
    margin-bottom: 64px !important;
  }
}
.u-pt-60-64 {
  padding-top: 60px !important;
}
@media print, screen and (width>=769px) {
  .u-pt-60-64 {
    padding-top: 64px !important;
  }
}
.u-pb-60-64 {
  padding-bottom: 60px !important;
}
@media print, screen and (width>=769px) {
  .u-pb-60-64 {
    padding-bottom: 64px !important;
  }
}
.u-px-60-64 {
  padding-inline: 60px !important;
}
@media print, screen and (width>=769px) {
  .u-px-60-64 {
    padding-inline: 64px !important;
  }
}
.u-width-1-12 {
  width: 8.3333333333%;
}
.u-width-2-12 {
  width: 16.6666666667%;
}
.u-width-3-12 {
  width: 25%;
}
.u-width-4-12 {
  width: 33.3333333333%;
}
.u-width-5-12 {
  width: 41.6666666667%;
}
.u-width-6-12 {
  width: 50%;
}
.u-width-7-12 {
  width: 58.3333333333%;
}
.u-width-8-12 {
  width: 66.6666666667%;
}
.u-width-9-12 {
  width: 75%;
}
.u-width-10-12 {
  width: 83.3333333333%;
}
.u-width-11-12 {
  width: 91.6666666667%;
}
.u-width-12-12 {
  width: 100%;
}
.u-width-1-10 {
  width: 10%;
}
.u-width-2-10 {
  width: 20%;
}
.u-width-3-10 {
  width: 30%;
}
.u-width-4-10 {
  width: 40%;
}
.u-width-5-10 {
  width: 50%;
}
.u-width-6-10 {
  width: 60%;
}
.u-width-7-10 {
  width: 70%;
}
.u-width-8-10 {
  width: 80%;
}
.u-width-9-10 {
  width: 90%;
}
.u-width-10-10 {
  width: 100%;
}
@media screen and (min-width: 480px) {
  .u-sm\:width-1-12 {
    width: 8.3333333333%;
  }
  .u-sm\:width-2-12 {
    width: 16.6666666667%;
  }
  .u-sm\:width-3-12 {
    width: 25%;
  }
  .u-sm\:width-4-12 {
    width: 33.3333333333%;
  }
  .u-sm\:width-5-12 {
    width: 41.6666666667%;
  }
  .u-sm\:width-6-12 {
    width: 50%;
  }
  .u-sm\:width-7-12 {
    width: 58.3333333333%;
  }
  .u-sm\:width-8-12 {
    width: 66.6666666667%;
  }
  .u-sm\:width-9-12 {
    width: 75%;
  }
  .u-sm\:width-10-12 {
    width: 83.3333333333%;
  }
  .u-sm\:width-11-12 {
    width: 91.6666666667%;
  }
  .u-sm\:width-12-12 {
    width: 100%;
  }
  .u-sm\:width-1-10 {
    width: 10%;
  }
  .u-sm\:width-2-10 {
    width: 20%;
  }
  .u-sm\:width-3-10 {
    width: 30%;
  }
  .u-sm\:width-4-10 {
    width: 40%;
  }
  .u-sm\:width-5-10 {
    width: 50%;
  }
  .u-sm\:width-6-10 {
    width: 60%;
  }
  .u-sm\:width-7-10 {
    width: 70%;
  }
  .u-sm\:width-8-10 {
    width: 80%;
  }
  .u-sm\:width-9-10 {
    width: 90%;
  }
  .u-sm\:width-10-10 {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .u-md\:width-1-12 {
    width: 8.3333333333%;
  }
  .u-md\:width-2-12 {
    width: 16.6666666667%;
  }
  .u-md\:width-3-12 {
    width: 25%;
  }
  .u-md\:width-4-12 {
    width: 33.3333333333%;
  }
  .u-md\:width-5-12 {
    width: 41.6666666667%;
  }
  .u-md\:width-6-12 {
    width: 50%;
  }
  .u-md\:width-7-12 {
    width: 58.3333333333%;
  }
  .u-md\:width-8-12 {
    width: 66.6666666667%;
  }
  .u-md\:width-9-12 {
    width: 75%;
  }
  .u-md\:width-10-12 {
    width: 83.3333333333%;
  }
  .u-md\:width-11-12 {
    width: 91.6666666667%;
  }
  .u-md\:width-12-12 {
    width: 100%;
  }
  .u-md\:width-1-10 {
    width: 10%;
  }
  .u-md\:width-2-10 {
    width: 20%;
  }
  .u-md\:width-3-10 {
    width: 30%;
  }
  .u-md\:width-4-10 {
    width: 40%;
  }
  .u-md\:width-5-10 {
    width: 50%;
  }
  .u-md\:width-6-10 {
    width: 60%;
  }
  .u-md\:width-7-10 {
    width: 70%;
  }
  .u-md\:width-8-10 {
    width: 80%;
  }
  .u-md\:width-9-10 {
    width: 90%;
  }
  .u-md\:width-10-10 {
    width: 100%;
  }
}
@media screen and (min-width: 980px) {
  .u-lg\:width-1-12 {
    width: 8.3333333333%;
  }
  .u-lg\:width-2-12 {
    width: 16.6666666667%;
  }
  .u-lg\:width-3-12 {
    width: 25%;
  }
  .u-lg\:width-4-12 {
    width: 33.3333333333%;
  }
  .u-lg\:width-5-12 {
    width: 41.6666666667%;
  }
  .u-lg\:width-6-12 {
    width: 50%;
  }
  .u-lg\:width-7-12 {
    width: 58.3333333333%;
  }
  .u-lg\:width-8-12 {
    width: 66.6666666667%;
  }
  .u-lg\:width-9-12 {
    width: 75%;
  }
  .u-lg\:width-10-12 {
    width: 83.3333333333%;
  }
  .u-lg\:width-11-12 {
    width: 91.6666666667%;
  }
  .u-lg\:width-12-12 {
    width: 100%;
  }
  .u-lg\:width-1-10 {
    width: 10%;
  }
  .u-lg\:width-2-10 {
    width: 20%;
  }
  .u-lg\:width-3-10 {
    width: 30%;
  }
  .u-lg\:width-4-10 {
    width: 40%;
  }
  .u-lg\:width-5-10 {
    width: 50%;
  }
  .u-lg\:width-6-10 {
    width: 60%;
  }
  .u-lg\:width-7-10 {
    width: 70%;
  }
  .u-lg\:width-8-10 {
    width: 80%;
  }
  .u-lg\:width-9-10 {
    width: 90%;
  }
  .u-lg\:width-10-10 {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .u-xl\:width-1-12 {
    width: 8.3333333333%;
  }
  .u-xl\:width-2-12 {
    width: 16.6666666667%;
  }
  .u-xl\:width-3-12 {
    width: 25%;
  }
  .u-xl\:width-4-12 {
    width: 33.3333333333%;
  }
  .u-xl\:width-5-12 {
    width: 41.6666666667%;
  }
  .u-xl\:width-6-12 {
    width: 50%;
  }
  .u-xl\:width-7-12 {
    width: 58.3333333333%;
  }
  .u-xl\:width-8-12 {
    width: 66.6666666667%;
  }
  .u-xl\:width-9-12 {
    width: 75%;
  }
  .u-xl\:width-10-12 {
    width: 83.3333333333%;
  }
  .u-xl\:width-11-12 {
    width: 91.6666666667%;
  }
  .u-xl\:width-12-12 {
    width: 100%;
  }
  .u-xl\:width-1-10 {
    width: 10%;
  }
  .u-xl\:width-2-10 {
    width: 20%;
  }
  .u-xl\:width-3-10 {
    width: 30%;
  }
  .u-xl\:width-4-10 {
    width: 40%;
  }
  .u-xl\:width-5-10 {
    width: 50%;
  }
  .u-xl\:width-6-10 {
    width: 60%;
  }
  .u-xl\:width-7-10 {
    width: 70%;
  }
  .u-xl\:width-8-10 {
    width: 80%;
  }
  .u-xl\:width-9-10 {
    width: 90%;
  }
  .u-xl\:width-10-10 {
    width: 100%;
  }
}
.c-about__inner {
  margin-top: 41px;
}
@media print, screen and (width>=769px) {
  .c-about__inner {
    margin-top: 39px;
  }
}
@media print, screen and (width<769px) {
  .c-about__contents:not(:first-of-type) .c-about__contents-heading {
    margin-top: 60px;
  }
}
.c-about__contents-heading {
  margin-top: 40px;
}
@media print, screen and (width>=769px) {
  .c-about__contents-heading {
    margin-top: 60px;
  }
}
.c-about__contents-sub-heading + .c-about__contents-text {
  margin-top: 20px;
}
.c-about__contents-sub-sub-heading {
  font-size: 20px !important;
  font-weight: 800;
  margin-top: 38px;
}
@media print, screen and (width<769px) {
  .c-about__contents-sub-sub-heading {
    text-align: center;
    line-height: 1.5;
  }
}
@media print, screen and (width>=769px) {
  .c-about__contents-sub-sub-heading {
    margin-top: 40px;
  }
}
@media print, screen and (width<769px) {
  .c-about__contents-sub-sub-heading--large {
    font-size: 22px !important;
  }
}
@media print, screen and (width>=769px) {
  .c-about__contents-sub-sub-heading--large-line {
    line-height: 1.5;
  }
}
.c-about__contents-sub-sub-heading--flex {
  display: flex;
}
@media print, screen and (width<769px) {
  .c-about__contents-sub-sub-heading--flex {
    text-align: left;
  }
}
.c-about__contents-item {
  margin-top: 20px;
}
@media print, screen and (width>=769px) {
  .c-about__contents-item {
    margin-top: 18px;
  }
}
.c-about__contents-item + .c-about__contents-item {
  margin-top: 60px;
}
.c-about__contents-list-item {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
}
@media print, screen and (width>=769px) {
  .c-about__contents-list-item {
    gap: 5px;
  }
}
.c-about__contents-list-item--small {
  font-size: 16px;
}
@media print, screen and (width<769px) {
  .c-about__contents-list-item + .c-about__contents-list-item {
    margin-top: 16px;
  }
}
.c-about__contents-list-item::before {
  content: "";
  display: block;
  width: 20px;
  height: 17px;
  background-image: url("https://sbisec.akamaized.net/sbisec/images/static/2025/gsplus_gold_gs_plus_gold_icon_check.svg");
  background-position: center;
  background-size: contain;
}
@media print, screen and (width>=769px) {
  .c-about__contents-list-item::before {
    width: 14px;
    height: 12px;
  }
}
.c-about__contents-list-item--disc {
  padding-left: 0.4em;
  gap: 10px;
}
.c-about__contents-list-item--disc::before {
  content: "・";
  font-size: 16px;
  background: none;
  width: auto;
  height: auto;
}
.c-about__contents-image-box {
  text-align: center;
}
.c-about__contents-image-box--off-white {
  background-color: var(--color-off-white);
}
@media print, screen and (width<769px) {
  .c-about__contents-image-box--off-white {
    padding: 22px 21px 22px 33px;
    margin-inline: -28px;
  }
}
@media print, screen and (width>=769px) {
  .c-about__contents-image-box--off-white {
    padding-block: 60px;
  }
}
@media print, screen and (width<769px) {
  .c-about__contents-image {
    width: fit-content;
  }
}
.c-about__contents-note {
  margin-top: 20px;
  font-feature-settings: normal;
}
@media print, screen and (width>=769px) {
  .c-about__contents-note {
    margin-top: 30px;
  }
}
@media print, screen and (width>=769px) {
  .c-about__contents-note + .c-about__contents-note {
    margin-top: 24px;
  }
}
@media print, screen and (width<769px) {
  .c-about__contents-note--metrics {
    font-feature-settings: "palt" 1;
  }
}
.c-about__contents-text {
  margin-top: 15px;
}
@media print, screen and (width>=769px) {
  .c-about__contents-text {
    margin-top: 20px;
  }
}
.c-banner {
  position: sticky;
  right: 0;
  bottom: 0;
  z-index: 11;
  text-align: right;
  display: flex;
  flex-direction: column;
}
@media print, screen and (width>=769px) {
  .c-banner {
    min-width: 1028px;
  }
}
.c-banner__link {
  display: inline-block;
}
@media print, screen and (width<769px) {
  .c-banner__image {
    width: 192px;
  }
}
.c-bottom-line-heading {
  font-size: 22px !important;
  font-weight: 800;
  border-bottom: 5px solid var(--color-gold);
  padding-bottom: 10px;
}
@media print, screen and (width>=769px) {
  .c-bottom-line-heading {
    padding-bottom: 9px;
  }
}
.c-disclaimer__item {
  margin-top: 40px;
}
@media print, screen and (width>=769px) {
  .c-disclaimer__item {
    margin-top: 60px;
  }
}
.c-disclaimer__image-box {
  margin-top: 16px;
}
@media print, screen and (width<769px) {
  .c-disclaimer__image-box {
    text-align: center;
  }
}
@media print, screen and (width>=769px) {
  .c-disclaimer__image-box {
    margin-top: 40px;
  }
}
@media print, screen and (width<769px) {
  .c-disclaimer__image {
    width: fit-content;
  }
}
.c-disclaimer__note {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6 !important;
  margin-top: 20px;
  font-feature-settings: normal;
}
@media print, screen and (width>=769px) {
  .c-disclaimer__note {
    font-size: 12px;
  }
}
.c-disclaimer__lower-item {
  margin-top: 18px;
}
.c-disclaimer__lower-item + .c-disclaimer__lower-item {
  margin-top: 40px;
}
.c-disclaimer__sub-heading {
  font-size: 20px !important;
  font-weight: 800;
}
.c-disclaimer__sub-sub-heading {
  font-size: 16px !important;
  font-weight: 800;
}
.c-disclaimer__text-box {
  margin-top: 20px;
}
.c-disclaimer__text-box + .c-disclaimer__text-box {
  margin-top: 35px;
}
@media print, screen and (width>=769px) {
  .c-disclaimer__text-box + .c-disclaimer__text-box {
    margin-top: 40px;
  }
}
@media print, screen and (width<769px) {
  .c-disclaimer__text-box--narrow {
    margin-top: 16px;
  }
}
.c-disclaimer__text-box--narrow + .c-disclaimer__text-box--narrow {
  margin-top: 32px;
}
.c-disclaimer__nisa-heading {
  font-size: 16px !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media print, screen and (width<769px) {
  .c-disclaimer__nisa-heading {
    line-height: 1.625;
  }
}
.c-disclaimer__list {
  margin-left: 16px;
}
.c-disclaimer__list-item {
  display: flex;
}
.c-disclaimer__list-item::before {
  content: "●";
  font-size: 16px;
}
.header {
  border-color: #ce8d00;
}
.header .header-nav {
  height: 47px;
}
@media print, screen and (width>=769px) {
  .header .header-nav {
    height: 73px;
  }
}
.c-lead__inner {
  margin-top: 32px;
}
@media print, screen and (width>=769px) {
  .c-lead__inner {
    margin-top: 42px;
  }
}
.c-lead__heading {
  font-size: 32px !important;
  font-weight: 900;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
@media print, screen and (width>=769px) {
  .c-lead__heading {
    font-size: 42px !important;
    line-height: 1.2;
    text-align: center;
  }
}
.c-lead__main-heading {
  display: inline-block;
  margin-top: 7px;
  letter-spacing: 0.015em;
}
@media print, screen and (width>=769px) {
  .c-lead__main-heading {
    margin-top: 16px;
  }
}
.c-lead__main-heading--gold {
  color: var(--color-gold);
  font-size: 36px !important;
  margin-top: 0;
}
@media print, screen and (width<769px) {
  .c-lead__main-heading--gold {
    display: inline-block;
  }
}
@media print, screen and (width>=769px) {
  .c-lead__main-heading--gold {
    font-size: 52px !important;
    letter-spacing: 0.025em;
  }
}
.c-lead__sub-heading {
  font-size: 16px;
  font-weight: 700;
}
@media print, screen and (width>=769px) {
  .c-lead__sub-heading {
    font-size: 22px;
    letter-spacing: 0.025em;
    text-align: center;
  }
}
.c-left-line-heading {
  font-size: 30px !important;
  font-weight: 800;
  line-height: 1.45;
  border-left: 15px solid var(--color-gold);
  padding-left: 12px;
}
@media print, screen and (width>=769px) {
  .c-left-line-heading {
    line-height: 1.7;
    padding-left: 11px;
  }
}
.c-mv__inner {
  background-image: url("https://sbisec.akamaized.net/sbisec/images/static/2025/gsplus_gold_gs_plus_gold_mv_bg_sp.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 26px 26px 11px 24px;
}
@media print, screen and (width<769px) {
  .c-mv__inner {
    margin-inline: -16px;
  }
}
@media print, screen and (width>=769px) {
  .c-mv__inner {
    background-image: url("https://sbisec.akamaized.net/sbisec/images/static/2025/gsplus_gold_gs_plus_gold_mv_bg_pc.png");
    padding: 30px 0 75px;
  }
}
.c-text {
  font-size: 16px;
  font-weight: 500;
}
.c-text--small {
  font-size: 10px;
}
@media print, screen and (width>=769px) {
  .c-text--small {
    font-size: 12px;
  }
}
.c-text--medium {
  font-size: 12px;
}
@media print, screen and (width>=769px) {
  .c-text--medium {
    font-size: 14px;
  }
}
@media print, screen and (width<769px) {
  .c-text--medium-sp {
    font-size: 12px;
  }
}
.c-text--red {
  color: var(--color-red);
}
.c-text--line {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-text--bold {
  font-weight: 800;
}
@media print, screen and (width>=769px) {
  .c-text--center {
    text-align: center;
  }
}
