@charset "UTF-8";
/* ContentHeader
--------------------------------------------------------------- */
.contentsHeader {
  margin: 15px 0;
  font-weight: bold;
  line-height: 1.35;
}
.contentsHeader.primary {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 1.869rem + 1.41vw, 3rem);
  line-height: 1.75;
}
.contentsHeader.secondary {
  font-size: 2rem;
}
.contentsHeader.tertiary {
  font-size: 1.8rem;
}
.contentsHeader.extra {
  font-size: 1.5rem;
}
.contentsHeader + * {
  margin-top: 0;
}
.contentsHeaderHasButton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}
.contentsHeaderHasButton > .contentsHeader {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contentsHeader.primary {
    line-height: 1.5;
  }
  .contentsHeaderHasButton {
    flex-direction: column;
    align-items: flex-start;
  }
  .contentsHeaderButton {
    align-self: flex-end;
  }
}

/* FrameItem
--------------------------------------------------------------- */
.frameItem {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  margin: 35px 0;
  padding: 25px 30px;
  box-sizing: border-box;
}
.frameItem > *:first-child {
  margin-top: 0;
}
.frameItem > *:last-child {
  margin-bottom: 0;
}
.viewContentsBlock .frameItem, .changeForm .frameItem {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 350px) {
  .frameItem {
    padding: 24px 16px;
  }
}

/* ColumnLayout
--------------------------------------------------------------- */
.columnLayout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 35px 45px;
  width: 100%;
  margin: 35px 0;
}
.contentsHeader + .columnLayout {
  margin-top: 0;
}
.columnLayout.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.columnLayout.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.columnLayout.col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}
.columnLayout.col5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.columnLayout > * {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .columnLayout.spCol1 {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .columnLayout.spCol2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .columnLayout.spCol3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .columnLayout.spCol4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .columnLayout.spCol5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .columnLayout.spGapMin {
    gap: 8px;
  }
}

/* UiButton
--------------------------------------------------------------- */
.uiButton {
  --uiButtonMinSize: 100%;
  display: inline-block;
  min-width: var(--uiButtonMinSize);
  padding: 16px 24px 17px;
  border: none;
  border-radius: 45px;
  box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.uiButton.primary {
  filter: drop-shadow(0px 15px 20px var(--app-primary-color-transparent20));
  box-shadow: 0px 15px 20px var(--app-primary-color-transparent20);
  background: var(--app-primary-color);
}
.uiButton.secondary {
  filter: drop-shadow(0px 15px 20px var(--app-secondary-color-transparent20));
  box-shadow: 0px 15px 20px var(--app-secondary-color-transparent20);
  background: var(--app-secondary-color);
}
.uiButton.tertiary {
  filter: drop-shadow(0px 15px 20px var(--app-tertiary-color-transparent20));
  box-shadow: 0px 15px 20px var(--app-tertiary-color-transparent20);
  background: var(--app-tertiary-color);
}
.uiButton.extra {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
  background: #fff;
  color: var(--app-primary-text-color);
}
.uiButton.minimum {
  --uiButtonMinSize: 120px;
  box-shadow: 0px 2px 5px rgba(58, 58, 58, 0.3);
  padding: 6px 24px 7px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.uiButton.small {
  --uiButtonMinSize: 120px;
}
.uiButton.medium {
  --uiButtonMinSize: 175px;
}
.uiButton.large {
  --uiButtonMinSize: 377px;
}
.uiButton.fullsize {
  --uiButtonMinSize: 100%;
}
.uiButton.disabled, .uiButton[disabled] {
  pointer-events: none;
  opacity: 0.15;
}
@media not screen and (max-width: 768px) {
  .uiButton:not(.disabled):not([disabled]):hover {
    transform: scale(1.02);
  }
  .uiButton.primary:not(.disabled):not([disabled]):hover {
    background: var(--app-primary-hover-color);
  }
  .uiButton.secondary:not(.disabled):not([disabled]):hover {
    background: var(--app-secondary-hover-color);
  }
  .uiButton.tertiary:not(.disabled):not([disabled]):hover {
    background: var(--app-tertiary-hover-color);
  }
}
@media screen and (max-width: 768px) {
  .uiButton.large {
    width: 100%;
    min-width: 0;
  }
  .uiButton.minimum {
    padding: 6px 16px 7px;
  }
  .uiButton.spFullSize {
    --uiButtonMinSize: 100%;
  }
}
@media screen and (max-width: 350px) {
  .uiButton {
    font-size: 1.6rem;
  }
}

/* TextLink
--------------------------------------------------------------- */
.textLink {
  display: inline-block;
  position: relative;
  padding-right: 50px;
  color: var(--app-primary-text-color);
  font-size: inherit;
  text-align: left;
  text-decoration: none;
}
.textLink::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 36px;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--app-primary-icon-color);
  border-right: 2px solid var(--app-primary-icon-color);
  -webkit-transform: rotate(45deg);
  transform: translate(-50%) rotate(45deg);
  transition: ease 0.4s;
}
@media print, not screen and (max-width: 768px) {
  .textLink:hover::after {
    right: 32px;
  }
}
.textLinkBlock {
  margin: 10px 0;
}
.textLinkBlock.left {
  text-align: left;
}
.textLinkBlock.right {
  text-align: right;
}

/* PopupAlert
--------------------------------------------------------------- */
@keyframes alertDisplayDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes alertHideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.popupAlert {
  position: absolute;
  top: 16px;
  width: 100%;
  border-top: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 85px 20px 20px;
  box-sizing: border-box;
  color: var(--app-strong-color);
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.42;
  animation-name: alertDisplayDown;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.popupAlert.hide {
  animation-name: alertHideUp;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.popupAlert.hide + .main {
  margin-top: 35px;
  transition: margin 0.5s 0.5s ease;
}
.popupAlert .alertStrong {
  font-weight: bold;
}
.popupAlert .roundBtn {
  display: block;
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  top: 50%;
  right: 32px;
  transform: translate(0, -50%) scale(1);
  background: url(../img/alert_btn.svg);
  -webkit-filter: opacity(50%);
  filter: opacity(50%);
  cursor: pointer;
  transition: ease 0.4s;
}
.popupAlert .roundBtn:hover {
  transform: translate(0, -50%) scale(1.2);
}
.popupAlert .alertLink {
  display: inline-block;
  position: relative;
  padding-right: 50px;
  color: var(--app-strong-color);
  font-size: 1.4rem;
  cursor: pointer;
}
@media not screen and (max-width: 768px) {
  .popupAlert .alertLink:hover::after {
    right: 20px;
  }
}
.popupAlert .alertLink::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 30px;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--app-strong-color);
  border-right: 2px solid var(--app-strong-color);
  -webkit-transform: rotate(45deg);
  transform: translate(-50%) rotate(45deg);
  transition: ease 0.4s;
}
@media screen and (max-width: 768px) {
  .popupAlert {
    width: 100%;
    padding: 15px 40px 15px 15px;
    font-size: 1.2rem;
    top: 65px;
  }
  .popupAlert .alertLink {
    font-size: 1.2rem;
  }
  .popupAlert .roundBtn {
    right: 10px;
  }
  .popupAlert.hide + .main {
    margin-top: 80px;
  }
}

/* FigureImage
--------------------------------------------------------------- */
.figureImage {
  text-align: center;
}
.figureImage .title {
  margin: 0 0 7px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
}
.figureImage .caption {
  margin: 3px 0 0;
}
/* CheckBox
--------------------------------------------------------------- */
.checkBox > input[type=checkbox] {
  width: 0;
  height: 0;
  border: none;
  opacity: 0;
}
.checkBox > span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding-left: 38px;
}
.checkBox > span::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 9px;
  width: 19px;
  height: 19px;
  border: 1px solid #D3D3D3;
  box-sizing: border-box;
  background: #F4F4F4;
  background-size: contain;
  pointer-events: none;
  transform: translate(0, -50%);
}
@supports (top: 0.5lh) {
  .checkBox > span::before {
    top: 0.5lh;
  }
}
.checkBox > input:checked + span::after {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 10.8px;
  width: 15.4px;
  height: 10.5px;
  background: url(../img/icon_check_bk.svg) no-repeat center center/contain;
  transform: translate(0, -35%);
}
@supports (top: 0.5lh) {
  .checkBox > input:checked + span::after {
    top: 0.5lh;
  }
}
.checkBox > input:focus-visible + span::before {
  outline: auto;
}
/* InputText
--------------------------------------------------------------- */
.inputText {
  padding: 12px 17px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  box-sizing: border-box;
  background: #f4f4f4;
  font-size: 1.4rem;
}
.inputText::placeholder {
  color: rgba(22, 20, 92, 0.3960784314);
  font-size: 14px;
}
.inputText:read-only {
  background: #f4f4f4;
  outline: none;
}
.inputText:disabled {
  background: #8f8f8f;
}
.inputText.isNotBlank {
  background: #fff;
}
.inputText:not(:read-only):focus-visible {
  outline: 2px solid #14145a;
}
.inputText.xshort {
  width: 145px;
}
.inputText.short {
  width: 200px;
}
.inputText.middle {
  width: 343px;
}
.inputText.long {
  width: 485px;
}
.inputText.minsize {
  width: 85px;
}
.inputText.fullsize {
  width: 100%;
}
.inputText.locked:read-only {
  padding-left: 38px;
  background: #e3e3e3 url(/common/img/icon_locked01.svg) no-repeat 13px center;
  color: #717171;
}
@media screen and (max-width: 768px) {
  .inputText {
    padding: 4px 8px;
    font-size: 1.6rem;
    line-height: 2.25;
  }
  .inputText.minsize {
    width: 56px;
  }
  .inputText.xshort, .inputText.short, .inputText.middle, .inputText.long {
    width: 100%;
  }
}

/* RadioButton
--------------------------------------------------------------- */
.radioButton {
  position: relative;
  vertical-align: baseline;
}
.radioButton > input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  opacity: 0;
}
.radioButton > .labelname {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  line-height: 1.5;
  cursor: pointer;
}
.radioButton > input:checked + .labelname:before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 0.75em;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: var(--app-primary-color);
  border-radius: 50%;
  pointer-events: none;
  background-size: contain;
}
@supports (top: 0.5lh) {
  .radioButton > input:checked + .labelname:before {
    top: 0.5lh;
  }
}
.radioButton span:after {
  content: "" !important;
  position: absolute;
  display: block;
  top: 10px;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid #D3D3D3;
  border-radius: 50%;
  box-sizing: border-box;
  background-size: contain;
  pointer-events: none;
}
@supports (top: 0.5lh) {
  .radioButton span:after {
    top: 0.5lh;
  }
}
.radioButton input:focus-visible + span::after {
  outline: auto;
}
/* SelectBox
--------------------------------------------------------------- */
.selectBox {
  position: relative;
}
.selectBox > * {
  box-sizing: border-box;
}
.selectBox.xshort {
  width: 145px;
}
.selectBox.short {
  width: 200px;
}
.selectBox.middle {
  width: 343px;
}
.selectBox.long {
  width: 485px;
}
.selectBox.minsize {
  width: 85px;
}
.selectBox.fullsize {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .selectBox.short, .selectBox.middle, .selectBox.long {
    width: 100%;
  }
}

.selectBoxDisplay {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 14px 28px 14px 19px;
  border: #D3D3D3 solid 1px;
  border-radius: 10px;
  background: #F4F4F4;
  line-height: 1;
  z-index: 2;
}
.selectBoxDisplay::after {
  content: "";
  position: absolute;
  right: 15px;
  top: -5px;
  bottom: 0;
  display: inline-block;
  border-right: #06009F solid 2px;
  border-bottom: #06009F solid 2px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  margin: auto;
}

.selectBoxOption {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 240px;
  border: #D3D3D3 solid 1px;
  border-radius: 10px;
  background: #F4F4F4;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
  scrollbar-width: thin;
  scrollbar-color: var(--app-primary-color) #e8e8e8;
}
.selectBoxOption::-webkit-scrollbar {
  width: 4px;
}
.selectBoxOption::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}
.selectBoxOption::-webkit-scrollbar-thumb {
  background-color: var(--app-primary-color);
}
.selectBoxOption > label {
  flex: 1 1 100%;
  display: block;
  padding: 6px 19px;
  line-height: 1;
  transition: 0.5s;
}
.selectBoxOption > label:first-child {
  padding: 14px 28px 14px 19px;
}
.selectBoxOption > label:last-child {
  padding: 6px 19px 12px;
}
.selectBoxOption > label:hover {
  background-color: var(--app-header-sub-button-color);
}
.selectBoxOption input[type=radio] {
  width: 0;
  height: 0;
  border: none;
  opacity: 0;
}

/* TooltipText
--------------------------------------------------------------- */
.tooltipText {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}
.tooltipTextIcon {
  display: flex;
  align-items: center;
  position: relative;
}
.tooltipTextIcon > i {
  font-size: 0;
}
.tooltipText:hover .tooltipTextIcon {
  z-index: 99999;
}
.tooltipTextBalloonBox {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 12px;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tooltipText:hover .tooltipTextBalloonBox {
  opacity: 1;
  visibility: visible;
}
.tooltipTextBalloon {
  position: relative;
  width: 169px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #f6f6f6;
  font-size: 1.2rem;
  text-align: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  cursor: auto;
}
.tooltipTextBalloon::before, .tooltipTextBalloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: solid transparent;
  pointer-events: none;
}
.tooltipTextBalloon::before {
  margin-left: -11px;
  border-color: rgba(194, 225, 245, 0);
  border-top-color: rgba(0, 0, 0, 0.1);
  border-width: 11px;
}
.tooltipTextBalloon::after {
  margin-left: -10px;
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #f6f6f6;
  border-width: 10px;
}
/* TextArea
--------------------------------------------------------------- */
.textArea {
  width: 100%;
  padding: 14px 19px;
  border: 1px solid #D3D3D3;
  border-radius: 10px;
  box-sizing: border-box;
  background: #F4F4F4;
  font-size: 1.4rem;
  resize: none;
}
.textArea::placeholder {
  color: rgba(22, 20, 92, 0.3960784314);
  font-size: 14px;
  letter-spacing: -0.1em;
}
.textArea:disabled {
  background: #8f8f8f;
}
.textArea.isNotBlank {
  background: #fff;
}
.textArea:not(:read-only):focus-visible {
  outline: 2px solid #14145a;
}
.textArea.short {
  max-width: 343px;
}
.textArea.middle {
  max-width: 485px;
}
.textArea.long {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .textArea {
    font-size: 1.6rem;
  }
}

/* CorporateNumberBox
--------------------------------------------------------------- */
.corporateNumberBox {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media print, not screen and (max-width: 768px) {
  .corporateNumberBox {
    grid-template-columns: 412px 57px auto;
  }
  .corporateNumberBox > .inputHasButton {
    grid-column: 1/2;
  }
  .corporateNumberBox > .whatIs {
    grid-column: 2/4;
  }
  .corporateNumberBox > .outputBox {
    grid-column: 1/3;
  }
}
.inputHasButton {
  position: relative;
}
.inputHasButton > input {
  width: 100%;
  padding-right: 140px;
}
.inputHasButton > .uiButton {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 128px;
  margin: -17px 0 0;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .inputHasButton {
    display: flex;
    flex-direction: column;
  }
  .inputHasButton > input {
    padding-right: 8px;
  }
  .inputHasButton > .uiButton {
    position: static;
    margin: 8px 0 0;
    align-self: flex-end;
  }
}
.outputBox {
  padding: 12px 17px;
  border: 1px solid #D3D3D3;
  border-radius: 10px;
  box-sizing: border-box;
  background: #FFF;
}
/* FlowList
--------------------------------------------------------------- */
.flowList {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 24px;
}
.flowListStep {
  position: relative;
  text-align: center;
}
.flowListStep::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 17px;
  border-color: transparent transparent transparent var(--app-primary-color);
  transform: translate(4px, -50%);
}
.flowListStep:last-child::after {
  content: none;
}
.flowListImage > .title {
  margin: 0 0 7px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
}
.flowListImage > .title > small {
  display: block;
  margin: 7px 0 0;
  font-size: 1.4rem;
  line-height: 1.42857;
}
.flowListCaption {
  margin: 6px 0 0;
  font-size: 1.4rem;
  line-height: 1.42857;
}
@media screen and (max-width: 768px) {
  .flowList {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .flowListStep {
    display: grid;
    grid-template-columns: 114px 1fr;
    align-items: center;
  }
  .flowListStep::after {
    top: 100%;
    left: 44px;
    transform: translate(0, 4px) rotate(90deg);
  }
}

/* TabContents
--------------------------------------------------------------- */
.tabList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.0509803922);
}
.tabListItem {
  position: relative;
  overflow: hidden;
}
.tabListButton {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 10px 15px;
  border: none;
  border-radius: 20px;
  background: none;
  color: var(--app-primary-text-color);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  transition: color 0.4s ease, background-color 0.4s ease;
  z-index: 1;
}
.tabListButton[aria-selected=true], .tabListButton.active {
  color: #fff;
  background: var(--app-primary-color);
}
.tabListContents[aria-hidden=true] {
  display: none;
}
@media screen and (max-width: 768px) {
  .tabList {
    grid-template-columns: 1fr;
  }
  .tabListButton {
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  .tabListButton[aria-selected=true] {
    background: var(--app-primary-color);
  }
  .tabListSlider {
    display: none;
  }
}

/* ContBox
--------------------------------------------------------------- */
.contBox {
  margin: 24px 0;
  padding: 17px 20px 20px;
  border: 1px solid rgba(22, 20, 92, 0.2509803922);
  border-radius: 11px;
  background: #fff;
}
.contBox > *:first-child {
  margin-top: 0;
}
.contBox > *:last-child {
  margin-bottom: 0;
}
/* FormLayout
--------------------------------------------------------------- */
.formLayout {
  table-layout: fixed;
  width: 100%;
}
.formLayout, .formLayout thead, .formLayout tbody, .formLayout tfoot, .formLayout caption, .formLayout tr, .formLayout th, .formLayout td {
  box-sizing: border-box;
  vertical-align: top;
}
.formLayout.alignTop, .formLayout.alignTop th, .formLayout.alignTop td, .formLayout .alignTop, .formLayout .alignTop th, .formLayout .alignTop td {
  vertical-align: top;
}
.formLayout.alignCenter, .formLayout.alignCenter th, .formLayout.alignCenter td, .formLayout .alignCenter, .formLayout .alignCenter th, .formLayout .alignCenter td {
  vertical-align: middle;
}
.formLayout.alignBottom, .formLayout.alignBottom th, .formLayout.alignBottom td, .formLayout .alignBottom, .formLayout .alignBottom th, .formLayout .alignBottom td {
  vertical-align: bottom;
}
.formLayout .fieldName {
  width: 148px;
  padding: 28px 12px 28px 0;
  line-height: 1.5;
}
.formLayout .fieldName.nowrap {
  white-space: nowrap;
}
.formLayout .fieldStatus {
  width: 50px;
  padding: 28px 9px;
}
.formLayout .fieldStatus::before {
  content: "";
  display: inline-block;
  min-width: 32px;
  padding: 0 4px 1px;
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  vertical-align: top;
}
.formLayout [data-input-status=optional] .fieldStatus::before {
  content: "任意";
  background: #8b89be;
}
.formLayout [data-input-status=required] .fieldStatus::before {
  content: "必須";
  background: #ff3100;
}
.formLayout [data-input-status=valid] .fieldStatus::before {
  content: "";
  height: 22.42px;
  background: #33bf5c url(../img/icon_check_wh.svg) no-repeat center/15px 10px;
}
.formLayout .fieldValue {
  padding: 17px 0;
  vertical-align: middle;
}
.formLayout .fieldValue > *:first-child {
  margin-top: 0;
}
.formLayout .fieldValue > *:last-child {
  margin-bottom: 0;
}
.formLayout .fieldValue .unit {
  white-space: nowrap;
}
.formLayout .fieldValue .checkList.vertical {
  margin-top: 10px;
}
.formLayout .hasDesc .fieldValue {
  padding-bottom: 0;
}
.formLayout .fieldDesc {
  padding-top: 8px;
  padding-bottom: 12px;
}
.formLayout .fieldDesc p {
  font-size: 1.4rem;
  line-height: 1.357;
}
.formLayout .unitDesc {
  max-width: 200px;
  margin: 0 0 8px;
  text-align: right;
  line-height: 1.357;
}
.formLayout .inputDesc {
  margin: 8px 0 0;
  line-height: 1.357;
}
.formLayout .inputArea {
  margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
  .formLayout, .formLayout thead, .formLayout tbody, .formLayout tr, .formLayout th, .formLayout td, .formLayout caption, .formLayout tfoot {
    display: block;
    width: 100%;
  }
  .formLayout tr {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
  .formLayout .hasDesc {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .formLayout td:not(.fieldStatus):empty {
    display: none;
  }
  .formLayout .fieldName {
    grid-column: 1/4;
    grid-row: 1/2;
    width: auto;
    padding: 0;
    font-size: 14px;
  }
  .formLayout .fieldDesc p {
    width: calc(100% - 29px);
    font-size: 1.2rem;
  }
  .formLayout .fieldStatus {
    grid-column: 1/2;
    grid-row: 2/3;
    padding: 10px 0;
  }
  .formLayout .fieldValue {
    grid-column: 2/4;
    grid-row: 2/3;
    padding: 0;
  }
  .formLayout .fieldValue .checkList {
    margin-top: 8px;
  }
  .formLayout .fieldValue > .checkBox {
    display: inline-block;
    margin-top: 8px;
  }
  .formLayout .unitDesc {
    width: calc(100% - 29px);
    max-width: none;
  }
  .formLayout .inputArea {
    width: 100%;
  }
  .formLayout .fieldValue.narrow .inputArea {
    width: calc(100% - 87px);
  }
  .formLayout .fieldValue.narrow .inputArea input {
    width: calc(100% - 34px);
  }
  .formLayout tr:not([data-input-status]) .fieldStatus:empty {
    display: none;
  }
}
.hasUnitInput {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .hasUnitInput {
    display: flex;
  }
}

/* UploadForm
--------------------------------------------------------------- */
.uploadForm .addRowButton {
  margin: 23px 0 44px;
}
.uploadForm .attensionMessage {
  text-align: center;
}
.uploadField {
  table-layout: fixed;
  width: 100%;
  margin: 48px 0 23px;
  box-sizing: border-box;
}
.uploadField td {
  padding: 12px 0;
  box-sizing: border-box;
  vertical-align: middle;
}
.uploadField .uploadFile {
  width: 162px;
  padding-right: 20px;
}
.uploadField .uploadInfo {
  width: 272px;
  padding-right: 20px;
}
@media not screen and (max-width: 768px) {
  .uploadField .uploadType {
    width: 358px;
    padding-right: 20px;
  }
  .uploadField .uploadFile {
    width: 162px;
    padding-right: 20px;
  }
  .uploadField .uploadInfo {
    width: 272px;
    padding-right: 20px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
}
@media screen and (max-width: 768px) {
  .uploadField {
    margin-top: 20px;
  }
  .uploadField, .uploadField thead, .uploadField tbody, .uploadField tfoot, .uploadField caption, .uploadField tr, .uploadField th, .uploadField td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .uploadField tr {
    padding: 16px 0;
    border-bottom: 1px solid #ccc;
  }
  .uploadField td {
    margin: 0 0 16px;
  }
  .uploadField .uploadInfo {
    margin: 0;
  }
  .uploadField .deleteRowButton {
    margin: 8px 0 0;
    text-align: right;
  }
}

/* CustomUiButton
--------------------------------------------------------------- */
.customUiButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 82px;
  padding: 4px 8px 6px;
  border: 2px solid var(--app-primary-color);
  border-radius: 35px;
  background: #fff;
  color: var(--app-primary-text-color);
  font-size: 1.4rem;
  line-height: 1.42857;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.customUiButton > i {
  display: inline-block;
  position: relative;
  width: 13px;
  height: 13px;
  margin: 0 0 0 8px;
  font-size: 0;
}
.customUiButton.delete > i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 3px;
  border-radius: 50px;
  background: var(--app-primary-color);
  transform: translate(-50%, -50%);
}
.customUiButton.add > i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 3px;
  border-radius: 50px;
  background: var(--app-primary-color);
  transform: translate(-50%, -50%) rotate(90deg);
}
.customUiButton.add > i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 3px;
  border-radius: 50px;
  background: var(--app-primary-color);
  transform: translate(-50%, -50%);
}
.customUiButton:focus-visible {
  outline: 1px solid;
}
.customUiButton:disabled {
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}
.customUiButton:hover {
  background: var(--app-primary-color);
  color: #fff;
}
.customUiButton:hover > i::before, .customUiButton:hover > i::after {
  background: #fff;
}
/* FileUploader
--------------------------------------------------------------- */
.fileUploader {
  display: inline-flex;
  gap: 20px;
}
.fileUploader, .fileUploader * {
  box-sizing: border-box;
}
.fileUploader p {
  margin: 0;
}
.fileUploader .uploadInfo {
  max-width: 252px;
}
.fileUploadButton {
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 142px;
  margin: 0;
  padding: 0;
  border-radius: 45px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
.fileUploadButton > input[type=file] {
  width: 0;
  height: 0;
  font-size: 0;
  opacity: 0;
}
.fileUploadButton > .label {
  display: inline-block;
  width: 100%;
  padding: 6px 8px 8px;
  border-radius: 22px;
  box-shadow: 0px 2px 5px rgba(22, 20, 92, 0.3019607843);
  box-sizing: border-box;
  background: var(--app-primary-color);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.42857;
  text-align: center;
  transition: all 0.2s;
}
.fileUploadButton:hover > .label {
  background: var(--app-primary-hover-color);
}
.fileUploadButton > input[type=file]:focus-visible + .label {
  outline: auto;
}

.uploadStatus > .icon {
  display: inline-block;
  width: 32px;
  height: 20px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.uploadStatus > .message {
  display: inline-block;
  margin: 0 0 0 8px;
  vertical-align: middle;
}

.uploadInfo {
  font-size: 1.4rem;
  line-height: 1.42857;
}
.uploadInfo[data-status=error] {
  color: var(--app-strong-color);
}
.uploadInfo p {
  margin: 0;
}
.uploadInfo .filename {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.uploadInfo .filename a {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  color: inherit;
  text-decoration: underline;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.uploadInfo .filename a:hover {
  text-decoration: none;
}
.uploadInfo .filename a[target=_blank] {
  position: relative;
  padding-right: 18px;
}
.uploadInfo .filename a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 12px;
  height: 12px;
  background: url(../img/icon_blank01.svg) no-repeat center/contain;
  font-size: 0;
}

[data-status=success] .uploadStatus > .icon {
  background-image: url(../img/icon_success01.svg);
}

[data-status=uploading] .uploadStatus > .icon {
  background-image: url(../img/icon_uploading01.gif);
}

[data-status=error] .uploadStatus > .icon {
  background-image: url(../img/icon_error01.svg);
}

/* ToggleForm
--------------------------------------------------------------- */
.toggleSwitchHeader {
  display: flex;
  align-items: center;
  gap: 40px;
}
.toggleSwitchHeader > .contentsHeader {
  margin: 0;
}
.toggleSwitchHeader > p {
  margin: 0;
}
.toggleSwitchHeader + [data-toggle-id] {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .toggleSwitchHeader {
    justify-content: space-between;
  }
}

/* PostCodeInput
--------------------------------------------------------------- */
.postCodeInput {
  display: flex;
  align-items: center;
  gap: 8px 28px;
}
.postCodeInput > input {
  width: 145px;
}
@media screen and (max-width: 768px) {
  .postCodeInput {
    flex-direction: column;
    align-items: flex-start;
  }
  .postCodeInput > input {
    width: 100%;
  }
  .postCodeInput > a {
    margin: 0;
  }
}

/* TelNumberInput
--------------------------------------------------------------- */
.telNumberInput {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .telNumberInput {
    gap: 4px;
    font-size: 1rem;
  }
}

/* AgreementsRecord
--------------------------------------------------------------- */
.agreementsRecord {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 681px;
}
.agreementsRecord > .agreeCheck {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.agreementsRecord .required {
  display: inline-block;
  min-width: 32px;
  padding: 0 4px 1px;
  border-radius: 4px;
  box-sizing: border-box;
  background: #ff3100;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .agreementsRecord {
    flex-direction: column;
    align-items: flex-start;
  }
  .agreementsRecord > .agreeCheck {
    align-self: flex-end;
  }
}

/* FormComplete
--------------------------------------------------------------- */
.formComplete {
  text-align: center;
}
.formComplete > .completeMark {
  margin: 100px auto;
}
.formComplete > .message {
  font-size: 2rem;
  line-height: 1.5;
}
.formComplete.identifyComplete > .formProgressBar {
  margin-bottom: 80px;
}
.formComplete.identifyComplete > .contentsHeader.primary {
  line-height: 1.46666;
}
.formComplete.identifyComplete > .completeMark {
  margin: 68px auto 78px;
}
.formComplete.identifyComplete > .buttonList {
  margin-top: 52px;
  margin-bottom: 0;
}
.formComplete.identifyComplete .uiButton {
  padding-right: 44px;
  padding-left: 44px;
}
@media print, not screen and (max-width: 768px) {
  .formComplete {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .formComplete.identifyComplete {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .formComplete:not(.identifyComplete) > .completeMark img {
    width: 88px;
  }
  .formComplete.identifyComplete > .completeMark > img {
    width: 136px;
  }
}
@media screen and (max-width: 768px) {
  .formComplete > .completeMark {
    margin: 64px auto 40px;
  }
  .formComplete > .completeMark > img {
    width: 88px;
  }
  .formComplete > .message {
    font-size: 1.4rem;
  }
}

/* IconLink
--------------------------------------------------------------- */
.iconLink {
  position: relative;
  color: var(--app-primary-text-color);
  text-decoration: underline;
}
.iconLink:hover {
  text-decoration: none;
}
.iconLink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  transform: translate(0, -50%);
}
.iconLink.document {
  padding-right: 20px;
}
.iconLink.document::before {
  width: 15px;
  height: 17px;
  background-image: url("../img/icon_document01.png");
}
.iconLink.documentLarge {
  padding-right: 40px;
}
.iconLink.documentLarge::before {
  width: 20px;
  height: 26px;
  background-image: url("../img/icon_document02.svg");
}
/* DiscList
--------------------------------------------------------------- */
.discList {
  margin: 24px 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.discList.nomargin {
  margin: 0;
}
.discList > li::before {
  content: "・";
}
/* noteList
--------------------------------------------------------------- */
.noteList {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.noteList > li::before {
  content: "※";
}
/* InnerTextLink
--------------------------------------------------------------- */
.innerTextLink {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: underline;
  text-indent: 0;
}
.innerTextLink:hover {
  text-decoration: none;
}
.innerTextLink[target=_blank] {
  margin: 0 16px 0 0;
}
.innerTextLink[target=_blank]::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -16px;
  width: 12px;
  height: 12px;
  background: url(../img/icon_blank01.svg) no-repeat center/contain;
}
/* NoteText
--------------------------------------------------------------- */
.noteText {
  padding: 0 0 0 1em;
  font-size: 1.2rem;
  text-indent: -1em;
}
.noteText.fsizeInherit {
  font-size: inherit;
}
.noteText::before {
  content: "※";
}
/* OrderedList
--------------------------------------------------------------- */
.indentList {
  margin: 20px 0;
  padding: 0 0 0 2em;
}
.indentList > li {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.indentList.horizontal {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.indentList.horizontal > li {
  margin: 0 1em 0 0;
}
@media screen and (max-width: 768px) {
  .indentList {
    padding-left: 1em;
  }
}

/* TextLinkList
--------------------------------------------------------------- */
.textLinkList {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  gap: 4px 10px;
}
.textLinkList.center {
  justify-content: center;
}
.textLinkList.largeGap {
  gap: 16px 52px;
}
/* PlusIcon01
--------------------------------------------------------------- */
.plusIcon01 {
  display: inline-block;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--app-primary-icon-color);
  font-size: 0;
}
.plusIcon01::before, .plusIcon01::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 4px;
  border-radius: 50px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.plusIcon01::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
/* FlexColumns
--------------------------------------------------------------- */
.flexColumns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 15px 30px;
}
.flexColumns.wrap {
  flex-wrap: wrap;
}
.flexColumns.left {
  justify-content: flex-start;
}
.flexColumns.jCenter {
  justify-content: center;
}
.flexColumns.right {
  justify-content: flex-end;
}
.flexColumns.between {
  justify-content: space-between;
}
.flexColumns.around {
  justify-content: space-around;
}
@media print, not screen and (max-width: 768px) {
  .flexColumns.top {
    align-items: flex-start;
  }
  .flexColumns.aCenter {
    align-items: center;
  }
  .flexColumns.bottom {
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .flexColumns {
    flex-direction: column;
    align-items: center;
  }
}

.flexColumnsItem.top {
  align-self: flex-start;
}
.flexColumnsItem.center {
  align-self: center;
}
.flexColumnsItem.bottom {
  align-self: flex-end;
}

.flexColumnsItemCaption {
  margin: 3px 0 0;
  text-align: center;
}

/* ErrorMessageSection
--------------------------------------------------------------- */
.errorMessageSection {
  margin-bottom: 46px;
}
.errorMessageSection a {
  text-decoration: underline;
}
.errorMessageSection a:hover {
  text-decoration: none;
}
.errorMessageSectionHeader {
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.35;
}
.errorMessageSectionHeader > .label {
  margin: 0 0 4px;
}
.errorMessageSectionHeader > .label > span {
  display: inline-block;
  padding: 0 6px 3px;
  border-radius: 4px;
  background: var(--app-strong-color);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.41666;
}
.errorMessageSectionHeader + * {
  margin-top: 0;
}
.errorMessageSectionDocumentName {
  margin: 22px 0;
  color: var(--app-strong-color);
  font-size: 1.8rem;
  line-height: 1.4444;
}
/* ScheduleTable
--------------------------------------------------------------- */
.scheduleTable {
  margin: 30px 0;
}
.scheduleTable table {
  width: 100%;
}
.scheduleTable th:first-child, .scheduleTable td:first-child {
  padding-left: 26px;
}
.scheduleTable thead th {
  background: var(--app-primary-color);
  color: #fff;
  padding: 15px 8px;
}
.scheduleTable thead th:first-child {
  border-top-left-radius: 20px;
}
.scheduleTable thead th:last-child {
  border-top-right-radius: 20px;
}
.scheduleTable td {
  height: 1lh;
  padding: 13px 8px;
  background: #f4f4f4;
  font-size: 1.8rem;
  font-weight: bold;
}
.scheduleTable td > span {
  margin-left: 4px;
  font-size: 1.2rem;
  font-weight: normal;
}
.scheduleTable tr:nth-child(2n+1) td {
  background: #fcfcfc;
}
.scheduleTable tr:last-child > td:first-child {
  border-bottom-left-radius: 20px;
}
.scheduleTable tr:last-child > td:last-child {
  border-bottom-right-radius: 20px;
}
.scheduleTableButton {
  display: none;
}
@media screen and (max-width: 768px) {
  .scheduleTable {
    position: relative;
  }
  .scheduleTableCont {
    display: grid;
    grid-template-columns: 31px 1fr 31px;
    margin-right: -40px;
    margin-left: -40px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .scheduleTableCont::-webkit-scrollbar {
    display: none;
  }
  .scheduleTableCont::before, .scheduleTableCont::after {
    content: "";
  }
  .scheduleTable table {
    width: 750px;
  }
  .scheduleTableButton {
    position: absolute;
    top: 50%;
    display: block;
    border: none;
    background: none;
  }
  .scheduleTableButton.right {
    right: 0;
  }
  .scheduleTableButton.left {
    left: 0;
  }
}

/* NotifyBox
--------------------------------------------------------------- */
.notifyBox {
  display: none;
  border: 4px solid var(--app-tertiary-color);
  border-radius: 10px;
  color: var(--app-tertiary-text-color);
  font-size: 20px;
  text-align: center;
  padding: 21px 0;
  margin-bottom: 35px;
}
/* EmphasisText
--------------------------------------------------------------- */
.emphasisText {
  color: var(--app-tertiary-text-color);
  font-weight: inherit;
}
/* ChangeForm
--------------------------------------------------------------- */
.changeForm {
  margin: 36px 0 49px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}
.changeFormHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.changeFormHeader > .title {
  position: relative;
  padding: 0 25px 0 0;
  color: var(--app-primary-text-color);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
}
.changeFormContents > *:first-child {
  margin-top: 38px;
}
.changeFormContents[aria-hidden=true] {
  display: none;
}
@media screen and (max-width: 768px) {
  .changeForm {
    padding: 16px;
  }
  .changeFormHeader {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .changeFormHeader > .title {
    align-self: flex-start;
  }
}

/* SimpleButton
--------------------------------------------------------------- */
.simpleButton {
  display: inline-block;
  min-width: 110px;
  padding: 13px 12px 12px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  background-color: #fff;
  color: #16145C;
  text-align: center;
}
.simpleButton:active, .simpleButton.active {
  background: #d3d3d3;
}
/* TopicCard
--------------------------------------------------------------- */
.topicCard {
  display: block;
  max-width: 480px;
  color: inherit;
  text-decoration: none;
}
.topicCardContents {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 20px;
  box-shadow: none;
  box-sizing: border-box;
  background: #fff;
  color: var(--app-primary-text-color);
  transition: ease 0.4s;
}
.topicCard:hover > .topicCardContents {
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.topicCardThumb {
  position: relative;
  text-align: center;
  order: 0;
}
.topicCardThumb img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.topicCardTag {
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 10px;
  max-width: 140px;
  padding: 5px 10px;
  border-radius: 17px;
  background-color: var(--app-primary-color-transparent50);
  color: #fff;
  font-size: 1.2rem;
  -webkit-backdrop-filter: blur(45px) brightness(50%) opacity(50%);
  backdrop-filter: blur(45px) brightness(50%) opacity(50%);
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.topicCardHeader {
  display: -webkit-box;
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  order: 1;
}
.topicCardText {
  display: -webkit-box;
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.428;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  order: 2;
}
.topicCardDate {
  color: var(--app-primary-color-transparent50);
  font-size: 1.6rem;
  font-weight: normal;
  order: 3;
}
@media screen and (max-width: 768px) {
  .topicCardTag {
    max-width: 90px;
  }
}

/* ButtonList
--------------------------------------------------------------- */
.buttonList {
  display: flex;
  margin: 70px 0 60px;
  gap: 30px;
  text-align: center;
}
.buttonList.horizontal {
  justify-content: center;
}
.buttonList.vertical {
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .buttonList {
    display: block;
    margin: 30px 0 40px;
  }
  .buttonList > li {
    margin: 0 0 25px;
  }
}

/* ToggleButton
--------------------------------------------------------------- */
.toggleButton {
  display: inline-block;
}
.toggleButton input[type=checkbox] {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  opacity: 0;
}
.toggleButton label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.0509803922);
  user-select: none;
}
.toggleButtonLabel {
  display: inline-block;
  padding: 2px 14px 3px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.42857;
  white-space: nowrap;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}
input[type=checkbox]:checked ~ label > .toggleButtonLabel.on, input[type=checkbox]:not(:checked) ~ label > .toggleButtonLabel.off {
  color: #fff;
  background: var(--app-primary-color);
}
.toggleButton input[type=checkbox]:focus-visible ~ label {
  outline: auto;
}
/* FormProgressBar
--------------------------------------------------------------- */
.formProgressBar {
  margin: 24px 0;
  text-align: center;
}
.formProgressBar > svg {
  max-width: 100%;
  height: auto;
}
.formProgressBarCaption, .formProgressBarCaptionComplete {
  fill: var(--app-primary-icon-color);
}
.formProgressBarFillLine {
  transition: stroke-dashoffset 0.2s ease;
  stroke: var(--app-primary-icon-color);
  stroke-dasharray: 363;
  stroke-dashoffset: 363;
}
.formProgressBarIcon path:not([fill="#fff"]), .formProgressBarIconComplete path:not([fill="#fff"]) {
  fill: var(--app-primary-icon-color);
}
.formProgressBarPointer {
  fill: #e8e8e8;
}
.formProgressBarIndicator {
  stroke: var(--app-primary-icon-color);
  transition: transform 0.2s ease;
}
.formProgressBarCheckMark {
  opacity: 0;
}
.formProgressBar[data-form-progress-current="1"] .formProgressBarFillLine {
  stroke-dashoffset: 363;
}
.formProgressBar[data-form-progress-current="0"] .formProgressBarIndicator {
  transform: translate(-42px, 68.398px);
}
.formProgressBar[data-form-progress-current="2"] .formProgressBarFillLine {
  stroke-dashoffset: 303;
}
.formProgressBar[data-form-progress-current="1"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="2"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="1"] .formProgressBarIndicator {
  transform: translate(18px, 68.398px);
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarFillLine {
  stroke-dashoffset: 243;
}
.formProgressBar[data-form-progress-current="2"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="2"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="2"] .formProgressBarIndicator {
  transform: translate(78px, 68.398px);
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarFillLine {
  stroke-dashoffset: 183;
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="3"] .formProgressBarIndicator {
  transform: translate(138px, 68.398px);
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarFillLine {
  stroke-dashoffset: 123;
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarPointer.pointer4 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarCheckMark.check4 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="4"] .formProgressBarIndicator {
  transform: translate(198px, 68.398px);
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarFillLine {
  stroke-dashoffset: 63;
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarPointer.pointer5 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarCheckMark.check5 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarPointer.pointer4 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarCheckMark.check4 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="5"] .formProgressBarIndicator {
  transform: translate(258px, 68.398px);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarFillLine {
  stroke-dashoffset: 3;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarPointer.pointer6 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarCheckMark.check6 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarPointer.pointer5 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarCheckMark.check5 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarPointer.pointer4 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarCheckMark.check4 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="6"] .formProgressBarIndicator {
  transform: translate(318px, 68.398px);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarFillLine {
  stroke-dashoffset: -57;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer7 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check7 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer6 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check6 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer5 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check5 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer4 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check4 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="7"] .formProgressBarIndicator {
  transform: translate(378px, 68.398px);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarFillLine {
  stroke-dashoffset: -117;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer8 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check8 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer7 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check7 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer6 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check6 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer5 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check5 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer4 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check4 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="8"] .formProgressBarIndicator {
  transform: translate(438px, 68.398px);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarFillLine {
  stroke-dashoffset: -177;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer9 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check9 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer8 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check8 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer7 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check7 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer6 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check6 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer5 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check5 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer4 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check4 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer3 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check3 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer2 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check2 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarPointer.pointer1 {
  fill: var(--app-primary-icon-color);
}
.formProgressBar[data-form-progress-current="10"] .formProgressBarCheckMark.check1 {
  opacity: 1;
}
.formProgressBar[data-form-progress-current="9"] .formProgressBarIndicator {
  transform: translate(498px, 68.398px);
}
/* SimulationResults
--------------------------------------------------------------- */
.simulationResults {
  display: flex;
  gap: 0 100px;
  margin: 30px 0;
  padding: 34px 45px;
  border: 1px solid rgba(22, 20, 92, 0.2509803922);
  border-radius: 20px;
  background: #fff;
}
.simulationResultsName {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.42857;
}
.simulationResultsData {
  display: flex;
  align-items: flex-end;
  gap: 0 8px;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
}
.simulationResultsData > small {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .simulationResults {
    flex-direction: column;
    gap: 24px 0;
    padding: 24px 16px;
  }
  .simulationResultsName {
    margin-bottom: 0;
  }
}

/* AppPagination
--------------------------------------------------------------- */
.appPaginationList {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.appPaginationItem {
  height: 33px;
  font-size: 1.8rem;
}
.appPaginationItem > a, .appPaginationItem > span {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.25;
  text-decoration: none;
}
.appPaginationItem > span {
  color: #888;
}
.appPaginationItem:first-of-type > a, .appPaginationItem:first-of-type > span {
  border-left: 1px solid #ccc;
  padding-left: 8px;
  background: url(/common/img/icon_first02.png) no-repeat;
  background-size: 100%;
  border-left: none;
  padding-left: 0;
}
.appPaginationItem:first-of-type > a:hover {
  background-image: url(/common/img/icon_first01_hover.png);
}
.appPaginationItem:last-of-type > a, .appPaginationItem:last-of-type > span {
  border-right: 1px solid #ccc;
  padding-right: 8px;
  background: url(/common/img/icon_last02.png) no-repeat;
  background-size: 100%;
  border-right: none;
  padding-right: 0;
}
.appPaginationItem:last-of-type > a:hover {
  background-image: url(/common/img/icon_last01_hover.png);
}
.appPaginationItem:nth-of-type(2) > a, .appPaginationItem:nth-of-type(2) > span {
  background: url(/common/img/icon_prev02.png) no-repeat;
  background-size: 100%;
}
.appPaginationItem:nth-of-type(2) > a:hover {
  background-image: url(/common/img/icon_prev01_hover.png);
}
.appPaginationItem:nth-child(3) > span {
  color: #16145c;
  font-size: 1.8rem;
  font-weight: bold;
}
.appPaginationItem:not(:nth-child(3)) > a, .appPaginationItem:not(:nth-child(3)) > span {
  width: 33px;
  height: 33px;
  font-size: 0;
  color: transparent;
  display: block;
  transition: all 0.2s;
}
.appPaginationItem:nth-last-of-type(2) > a, .appPaginationItem:nth-last-of-type(2) > span {
  background: url(/common/img/icon_next02.png) no-repeat;
  background-size: 100%;
}
.appPaginationItem:nth-last-of-type(2) > a:hover {
  background-image: url(/common/img/icon_next01_hover.png);
}
.appPaginationCurrent > span {
  color: #37a2ff;
}
.appPaginationCurrent [aria-current] {
  font-weight: bold;
}
/* CheckListWithIcon
--------------------------------------------------------------- */
/* CheckList
--------------------------------------------------------------- */
.checkList {
  display: flex;
  gap: 8px 34px;
  margin: 1.6rem 0;
}
.checkList.horizontal {
  flex-wrap: wrap;
}
.checkList.horizontal.center {
  justify-content: center;
}
.checkList.horizontal.right {
  justify-content: flex-end;
}
.checkList.vertical {
  flex-direction: column;
}
.checkList.vertical.center {
  align-items: center;
}
.checkList.vertical.right {
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .checkList.spVertical {
    flex-direction: column;
  }
  .checkList.spVertical.center {
    align-items: center;
  }
  .checkList.spVertical.right {
    align-items: flex-end;
  }
}

/* SaveButton
--------------------------------------------------------------- */
.saveButton {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
}
.saveButton > .uiButton.medium {
  padding-right: 16px;
  padding-left: 16px;
}
.saveButton > .uiButton.medium::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  background: url(/common/img/icon_savebtn.svg) no-repeat center/contain;
  vertical-align: middle;
}
/* FinancingBox
--------------------------------------------------------------- */
.financingBox {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 448px;
  height: fit-content;
  min-height: 516px;
  color: inherit;
  text-decoration: none;
}
.financingBoxContents {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--app-primary-text-color);
}
.financingBoxThumb {
  max-width: 178px;
  margin: 0 auto;
}
.financingBoxThumb img {
  width: 100%;
}
.financingBoxTag {
  position: absolute;
  width: auto;
  top: -6px;
  left: 20px;
}
.financingBoxCaption {
  position: absolute;
  top: 14px;
  left: 27px;
  font-size: 1.4rem;
  color: #fff;
}
.financingBoxBtnWrap {
  margin: 20px 0 0;
}
.financingBoxBtn {
  padding: 15px 20px;
}
.financingBoxHeader {
  margin: 20px 0 10px;
  font-size: 2rem;
  font-weight: bold;
}
.financingBoxText {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .financingBox {
    max-width: none;
    min-height: auto;
  }
}

/* AlignmentBox
--------------------------------------------------------------- */
.alignmentBox {
  display: grid;
  place-content: center;
  max-width: 448px;
  height: fit-content;
  min-height: 516px;
  color: inherit;
  text-decoration: none;
}
.alignmentBoxContents {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--app-primary-text-color);
}
.alignmentBoxThumb {
  max-width: 278px;
  margin: 0 auto;
}
.alignmentBoxThumb img {
  width: 100%;
}
.alignmentBoxHeader {
  font-size: 3rem;
  font-weight: bold;
}
.alignmentBoxHeader:first-child {
  margin: 0 0 30px;
}
.alignmentBoxHeader:not(:first-child) {
  margin: 25px 0 25px;
}
.alignmentBoxText {
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .alignmentBox {
    max-width: none;
    min-height: auto;
  }
}

/* CloudBox
--------------------------------------------------------------- */
.cloudBox {
  display: grid;
  place-content: center;
  max-width: 448px;
  height: fit-content;
  min-height: 516px;
  color: inherit;
  text-decoration: none;
}
.cloudBoxContents {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--app-primary-text-color);
}
.cloudBoxThumb {
  max-width: 230px;
  margin: 25px auto 0;
}
.cloudBoxThumb img {
  width: 100%;
}
.cloudBoxHeader {
  margin: 35px 0 10px;
  font-size: 2rem;
  font-weight: bold;
}
.cloudBoxText {
  font-size: 1.6rem;
  font-weight: normal;
}
.cloudBoxBtnWrap {
  margin: 0;
}
.cloudBoxBtn {
  margin-top: 20px;
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  .cloudBox {
    max-width: none;
    min-height: auto;
  }
}

/* YourStatus01
--------------------------------------------------------------- */
.yourStatus01 {
  display: block;
  max-width: 448px;
  color: inherit;
  text-decoration: none;
}
.yourStatus01Contents {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 60px;
  height: 100%;
  text-align: center;
  font-weight: bold;
  color: var(--app-primary-text-color);
}
.yourStatus01Header {
  text-align: left;
  align-self: start;
  font-size: 2rem;
  font-weight: bold;
}
.yourStatus01Text {
  display: grid;
  place-content: center;
  margin: 15px 0;
  font-size: 3rem;
}
.yourStatus01BtnWrap {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .yourStatus01 {
    max-width: none;
  }
  .yourStatus01Contents {
    gap: 30px;
  }
}

/* YourStatus03
--------------------------------------------------------------- */
.yourStatus03 {
  display: block;
  max-width: 448px;
  color: inherit;
  text-decoration: none;
}
.yourStatus03Contents {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  text-align: center;
  font-weight: bold;
  color: var(--app-primary-text-color);
}
.yourStatus03Header {
  text-align: left;
  align-self: start;
  font-size: 2rem;
  font-weight: bold;
}
.yourStatus03TextWrap {
  display: grid;
  place-content: center;
  margin: 15px 0;
  font-weight: normal;
}
.yourStatus03TextWrap > *:not(:first-child) {
  margin-top: 10px;
}
.yourStatus03BtnWrap {
  margin: 0;
}
.yourStatus03 .deadline {
  display: inline-block;
  margin-right: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .yourStatus03 {
    max-width: none;
  }
}

/* CautionMessage
--------------------------------------------------------------- */
.cautionMessage {
  position: relative;
  width: auto;
  margin: 0 auto;
  padding-left: 40px;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: var(--app-strong-color);
}
.cautionMessage:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 28px;
  background: url(/sfsites/c/resource/SB_Common_IMG/icon_cautionmessage01.png) center/cover no-repeat;
  transform: translate(0, -50%);
}
/* YourStatus02
--------------------------------------------------------------- */
.yourStatus02 {
  display: block;
  max-width: 448px;
  color: inherit;
  text-decoration: none;
}
.yourStatus02Contents {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 25px;
  height: 100%;
  text-align: center;
  font-weight: bold;
  color: var(--app-primary-text-color);
}
.yourStatus02Header {
  text-align: left;
  align-self: start;
  font-size: 2rem;
  font-weight: bold;
}
.yourStatus02TextWrap {
  display: grid;
  grid-template-columns: 1fr;
  place-content: center;
  margin: 15px 0;
  font-weight: normal;
}
.yourStatus02Body {
  position: relative;
  text-align: left;
  font-weight: bold;
}
.yourStatus02BodyDesc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.yourStatus02BodyPrice {
  padding-left: 25px;
  font-size: 3.5rem;
}
.yourStatus02BodyLimit {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.4rem;
  color: var(--app-primary-text-color);
  font-weight: normal;
  opacity: 0.5;
}
.yourStatus02BodyInterest {
  padding-right: 15px;
  text-align: right;
  font-size: 3.5rem;
}
.yourStatus02BodyInterest .Monetary {
  margin-right: 5px;
}
.yourStatus02 .Monetary {
  display: inline-block;
  font-size: 2rem;
}
.yourStatus02 .percent {
  font-size: 1.5rem;
}
.yourStatus02BtnWrap {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .yourStatus02 {
    max-width: none;
  }
  .yourStatus02BodyPrice {
    padding-left: 0px;
  }
  .yourStatus02BodyLimit {
    padding-left: 0px;
  }
  .yourStatus02BodyInterest {
    padding-right: 0;
    text-align: left;
  }
  .yourStatus02BodyTtl {
    margin-bottom: 15px;
  }
}

/* CustomerStatus01
--------------------------------------------------------------- */
.customerStatus01 {
  display: block;
  max-width: 448px;
  color: inherit;
  text-decoration: none;
}
.customerStatus01Contents {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr 1fr;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  color: var(--app-primary-text-color);
}
.customerStatus01Header {
  text-align: left;
  align-self: start;
  font-size: 2rem;
  font-weight: bold;
}
.customerStatus01TextWrap {
  display: grid;
  place-content: center;
  margin: 15px 0;
  font-weight: normal;
}
.customerStatus01TextWrap > *:not(:first-child) {
  margin-top: 10px;
}
.customerStatus01BtnWrap {
  margin: 0;
}
.customerStatus01 .deadline {
  display: inline-block;
  margin-right: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .customerStatus01 {
    max-width: none;
  }
}

/* ValidateError
--------------------------------------------------------------- */
.validateText .fieldValue,
.validateText .addressInputArea{
    position: relative;
}
.validateText .inputText,
.validateText .textArea,
.validateText .selectBoxDisplay {
  border: 2px solid #FF3100;
  background: #FFDDD5;
}
.validateText .validateTextBalloonBox {
  display: inline-block;
  position: absolute;
  bottom: calc(100% - 5px);
  left: 25px;
  right: -100%;
  z-index: 3;
}
.validateText .validateTextBalloonBox + .checkList {
  margin-top: 0;
}
.validateText .validateTextBalloon {
  position: relative;
  display: inline-block;
  max-width: 484px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #FF3100;
  opacity: 0.7;
  font-size: 1.2rem;
  color: #FFFFFF;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  cursor: auto;
}
.validateText .validateTextBalloon::before,
.validateText .validateTextBalloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 25px;
  width: 0;
  height: 0;
  border: solid transparent;
  pointer-events: none;
}
.validateText .validateTextBalloon::before {
  margin-left: -11px;
  border-color: rgba(255, 49, 0, 0);
  border-width: 11px;
}
.validateText .validateTextBalloon::after {
  margin-left: -10px;
  border-color: rgba(255, 49, 0, 0);
  border-top-color: #FF3100;
  border-width: 10px;
}
@media screen and (max-width: 768px) {
  .validateText .validateTextBalloonBox {
    bottom: calc(100% - 5px);
  }
  .validateText .validateTextBalloon {
    max-width: calc(50% - 15px);
  }
}

/* BorrowingBox
--------------------------------------------------------------- */
.borrowingBox {
  max-width: 448px;
  color: inherit;
  text-decoration: none;
}
.borrowingBox .data2Col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.borrowingBox .dataTxt {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}
.borrowingBox .dataStrongTxt {
  font-size: 3.5rem;
}
.borrowingBox .txt {
  opacity: 0.5;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .borrowingBox {
    max-width: none;
  }
}

/* AppPaginationGrey
--------------------------------------------------------------- */
.appPaginationGreyList {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.appPaginationGreyItem {
  height: 33px;
  font-size: 1.8rem;
}
.appPaginationGreyItem > a, .appPaginationGreyItem > span {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.25;
  text-decoration: none;
}
.appPaginationGreyItem > span {
  color: #888;
}
.appPaginationGreyItem:first-of-type > a, .appPaginationGreyItem:first-of-type > span {
  border-left: 1px solid #ccc;
  padding-left: 8px;
  background: url(/common/img/icon_first01.png) no-repeat;
  background-size: 100%;
  border-left: none;
  padding-left: 0;
}
.appPaginationGreyItem:first-of-type > a:hover {
  background-image: url(/common/img/icon_first01_hover.png);
}
.appPaginationGreyItem:last-of-type > a, .appPaginationGreyItem:last-of-type > span {
  border-right: 1px solid #ccc;
  padding-right: 8px;
  background: url(/common/img/icon_last01.png) no-repeat;
  background-size: 100%;
  border-right: none;
  padding-right: 0;
}
.appPaginationGreyItem:last-of-type > a:hover {
  background-image: url(/common/img/icon_last01_hover.png);
}
.appPaginationGreyItem:nth-of-type(2) > a, .appPaginationGreyItem:nth-of-type(2) > span {
  background: url(/common/img/icon_prev01.png) no-repeat;
  background-size: 100%;
}
.appPaginationGreyItem:nth-of-type(2) > a:hover {
  background-image: url(/common/img/icon_prev01_hover.png);
}
.appPaginationGreyItem:nth-child(3) > span {
  color: #16145c;
  font-size: 1.8rem;
  font-weight: bold;
}
.appPaginationGreyItem:not(:nth-child(3)) > a, .appPaginationGreyItem:not(:nth-child(3)) > span {
  width: 33px;
  height: 33px;
  font-size: 0;
  color: transparent;
  display: block;
  transition: all 0.2s;
}
.appPaginationGreyItem:nth-last-of-type(2) > a, .appPaginationGreyItem:nth-last-of-type(2) > span {
  background: url(/common/img/icon_next01.png) no-repeat;
  background-size: 100%;
}
.appPaginationGreyItem:nth-last-of-type(2) > a:hover {
  background-image: url(/common/img/icon_next01_hover.png);
}
.appPaginationGreyCurrent > span {
  color: #37a2ff;
}
.appPaginationGreyCurrent [aria-current] {
  font-weight: bold;
}
/* ChartBox
--------------------------------------------------------------- */
.chartBox {
  overflow: hidden;
  color: var(--app-secondary-text-color);
  max-width: 448px;
  height: fit-content;
  min-height: 516px;
}

.chartBox .swiper.swiperChart {
  height: 220px;
  padding-bottom: 100px;
  position: relative;
}

.chartBox .swiper.swiperChart.dummyimg {
  opacity: 0.5;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .chartBox {
    max-width: none;
    min-height: auto;
  }
  .chartBox .swiper.swiperChart {
    width: calc(100% - 40px);
    padding-bottom: 80px;
    height: auto;
  }
}
.chartBox .swiper.swiperChart .swiper-wrapper {
  width: 335px;
  height: 220px;
}

@media screen and (max-width: 768px) {
  .chartBox .swiper.swiperChart .swiper-wrapper {
    width: auto;
  }
}
.chartBox .swiper.swiperChart .swiper-wrapper .swiper-slide {
  text-align: center;
}

.chartBox .swiper.swiperChart .swiper-wrapper .swiper-slide img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .chartBox .swiper.swiperChart .swiper-wrapper .swiper-slide > img {
    display: block;
    width: 85%;
    max-width: 262px;
    height: auto;
    margin: 0 auto;
  }
}
.chartBox .swiper.swiperChart .swiper-pagination {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 10px;
}

.chartBox .swiper.swiperChart .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(20, 90, 92, 0.3);
  border-radius: 50%;
  cursor: pointer;
}

.chartBox .swiper.swiperChart .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--app-secondary-icon-color);
}

.chartBox .swiper.swiperChart .swiper-button-prev, .chartBox .swiper.swiperChart .swiper-button-next {
  display: flex;
  position: absolute;
  top: 38%;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 999;
}

.chartBox .swiper.swiperChart .swiper-button-prev.swiper-button-disabled, .chartBox .swiper.swiperChart .swiper-button-next.swiper-button-disabled {
  display: none;
}

.chartBox .swiper.swiperChart .swiper-button-prev::before, .chartBox .swiper.swiperChart .swiper-button-next::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--app-secondary-icon-color);
  border-left: 2px solid var(--app-secondary-icon-color);
}

.chartBox .swiper.swiperChart .swiper-button-prev {
  left: 20px;
  transition: ease 0.4s;
}

@media not screen and (max-width: 768px) {
  .chartBox .swiper.swiperChart .swiper-button-prev:hover {
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .chartBox .swiper.swiperChart .swiper-button-prev {
    left: 5px;
  }
}
.chartBox .swiper.swiperChart .swiper-button-prev::before {
  transform: rotate(-45deg);
}

.chartBox .swiper.swiperChart .swiper-button-next {
  right: 20px;
  transition: ease 0.4s;
}

@media not screen and (max-width: 768px) {
  .chartBox .swiper.swiperChart .swiper-button-next:hover {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .chartBox .swiper.swiperChart .swiper-button-next {
    right: 5px;
  }
}
.chartBox .swiper.swiperChart .swiper-button-next::before {
  transform: rotate(135deg);
}

.chartBox .swiper .adviceWrap {
  margin-top: 25px;
}

.chartBox .swiper .adviceWrap.dummy {
  opacity: 0.5;
}

.chartBox .swiper .adviceWrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  row-gap: 10px;
}

.chartBox .swiper .adviceWrap .adviceLogo {
  width: 66px;
}

.chartBox .swiper .adviceWrap .adviceLogo.dummy {
  background-color: var(--app-secondary-color-transparent50);
  text-align: center;
  display: inline-block;
  margin: auto 0;
}

.chartBox .swiper .adviceWrap .adviceTxt {
  width: calc(100% - 66px - 10px);
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.42;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.chartBoxBtn {
  margin: 15px 0 0;
}

@media screen and (max-width: 768px) {
  .buttonList.chartBoxBtn > li {
    margin-bottom: 0;
  }
}
/*animation
--------------------------------------------------------------- */
.animation .flowUpAnim {
  animation-name: flowUpAnim;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.animation .flowUpAnim.lag1 {
  animation-delay: 0.2s;
}
.animation .flowUpAnim.lag2 {
  animation-delay: 0.4s;
}
.animation .flowUpAnim.lag3 {
  animation-delay: 0.6s;
}
.animation .flowUpAnim.lag4 {
  animation-delay: 0.8s;
}
.animation .flowUpAnim.lag5 {
  animation-delay: 1s;
}
.animation .flowUpAnim.lag6 {
  animation-delay: 1.2s;
}
.animation .flowUpAnim.lag7 {
  animation-delay: 1.4s;
}
.animation .flowUpAnim.lag8 {
  animation-delay: 1.6s;
}
.animation .flowUpAnim.lag9 {
  animation-delay: 1.8s;
}
.animation .flowUpAnim.lag10 {
  animation-delay: 2s;
}
.animation .flowUpAnim.lag11 {
  animation-delay: 2.2s;
}
.animation .flowUpAnim.lag12 {
  animation-delay: 2.4s;
}
.animation .flowUpAnim.lag13 {
  animation-delay: 2.6s;
}
.animation .flowUpAnim.lag14 {
  animation-delay: 2.8s;
}
.animation .flowUpAnim.lag15 {
  animation-delay: 3s;
}
.animation .flowUpAnim.lag16 {
  animation-delay: 3.2s;
}
.animation .flowUpAnim.lag17 {
  animation-delay: 3.4s;
}
.animation .flowUpAnim.lag18 {
  animation-delay: 3.6s;
}
.animation .flowUpAnim.lag19 {
  animation-delay: 3.8s;
}
.animation .flowUpAnim.lag20 {
  animation-delay: 4s;
}
.animation .flowUpAnim.lag21 {
  animation-delay: 4.2s;
}
.animation .flowUpAnim.lag22 {
  animation-delay: 4.4s;
}
.animation .flowUpAnim.lag23 {
  animation-delay: 4.6s;
}
.animation .flowUpAnim.lag24 {
  animation-delay: 4.8s;
}
.animation .flowUpAnim.lag25 {
  animation-delay: 5s;
}
.animation .flowUpAnim.lag26 {
  animation-delay: 5.2s;
}
.animation .flowUpAnim.lag27 {
  animation-delay: 5.4s;
}
.animation .flowUpAnim.lag28 {
  animation-delay: 5.6s;
}
.animation .flowUpAnim.lag29 {
  animation-delay: 5.8s;
}
@keyframes flowUpAnim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation .flowDownAnim {
  animation-name: flowDownAnim;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
.animation .flowDownAnim.lag1 {
  animation-delay: 0.2s;
}
.animation .flowDownAnim.lag2 {
  animation-delay: 0.4s;
}
.animation .flowDownAnim.lag3 {
  animation-delay: 0.6s;
}
.animation .flowDownAnim.lag4 {
  animation-delay: 0.8s;
}
.animation .flowDownAnim.lag5 {
  animation-delay: 1s;
}
.animation .flowDownAnim.lag6 {
  animation-delay: 1.2s;
}
.animation .flowDownAnim.lag7 {
  animation-delay: 1.4s;
}
.animation .flowDownAnim.lag8 {
  animation-delay: 1.6s;
}
.animation .flowDownAnim.lag9 {
  animation-delay: 1.8s;
}
.animation .flowDownAnim.lag10 {
  animation-delay: 2s;
}
.animation .flowDownAnim.lag11 {
  animation-delay: 2.2s;
}
.animation .flowDownAnim.lag12 {
  animation-delay: 2.4s;
}
.animation .flowDownAnim.lag13 {
  animation-delay: 2.6s;
}
.animation .flowDownAnim.lag14 {
  animation-delay: 2.8s;
}
.animation .flowDownAnim.lag15 {
  animation-delay: 3s;
}
.animation .flowDownAnim.lag16 {
  animation-delay: 3.2s;
}
.animation .flowDownAnim.lag17 {
  animation-delay: 3.4s;
}
.animation .flowDownAnim.lag18 {
  animation-delay: 3.6s;
}
.animation .flowDownAnim.lag19 {
  animation-delay: 3.8s;
}
.animation .flowDownAnim.lag20 {
  animation-delay: 4s;
}
.animation .flowDownAnim.lag21 {
  animation-delay: 4.2s;
}
.animation .flowDownAnim.lag22 {
  animation-delay: 4.4s;
}
.animation .flowDownAnim.lag23 {
  animation-delay: 4.6s;
}
.animation .flowDownAnim.lag24 {
  animation-delay: 4.8s;
}
.animation .flowDownAnim.lag25 {
  animation-delay: 5s;
}
.animation .flowDownAnim.lag26 {
  animation-delay: 5.2s;
}
.animation .flowDownAnim.lag27 {
  animation-delay: 5.4s;
}
.animation .flowDownAnim.lag28 {
  animation-delay: 5.6s;
}
.animation .flowDownAnim.lag29 {
  animation-delay: 5.8s;
}
@keyframes flowDownAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.animation .overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: overlayanime 0.5s ease-in 0.3s both running;
  overflow: hidden;
}
@keyframes overlayanime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

/*color
--------------------------------------------------------------- */
.mainColorTransparent50 {
  color: var(--app-primary-color-transparent50);
}

.subColorTransparent50 {
  color: var(--app-secondary-color-transparent50);
}

/*skelton
--------------------------------------------------------------- */
.loadSkelton .skelton {
  display: block;
  width: 100%;
  height: 100%;
  background: #d9d9d9;
  position: relative;
  overflow: hidden;
  z-index: 999;
}
.loadSkelton .skelton::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  position: absolute;
  top: 0;
  left: 0;
  animation: skeleton-animation 1.2s linear infinite;
}
@keyframes skeleton-animation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
