@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/* ----------------------------------------------------------------
  Original Reset
----------------------------------------------------------------- */
ul {
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

input[type=radio], input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  color: #000;
  text-decoration: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
}

fieldset {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

em, strong {
  font-style: normal;
  font-weight: normal;
}

/* ----------------------------------------------------------------
  Variable
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
  Layout
----------------------------------------------------------------- */
:root {
  font-size: 62.5%;
}

html {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", "MS UI Gothic", sans-serif;
  scroll-behavior: smooth;
}
html.is-fixed {
  overflow: hidden;
}
html.is-fixed body {
  position: fixed;
}

body {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  background: #000;
  color: #333;
  font-size: 1.6rem;
}

.allContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  min-width: 100%;
  min-height: 50vh;
  min-height: 100dvh;
  background: #fff;
}

.container {
  padding: 40px 16px 64px;
  flex-grow: 1;
}

.contents {
  padding: 20px 0;
}
.contents:not(.contents--bg):first-child {
  padding-top: 40px;
}
.contents:not(.contents--bg):last-child {
  padding-bottom: 0;
}
form > .contents:not(.contents--bg):first-child {
  padding-top: 0;
}
.contents > .contents {
  padding-top: 24px;
  padding-bottom: 24px;
}
.contents > .contents + .contents {
  padding-top: 0;
}
.contents--bg {
  padding: 20px;
  background: #F5F6F6;
  border-radius: 8px;
  color: #666;
}
.contents--bg + .contents--bg {
  margin-top: 40px;
}
.contents--bg + .contents:not(.contents--bg) {
  padding-top: 40px;
}
.inlineNote + .contents:not(.contents--bg) {
  padding-top: 0;
}
.inlineNote:not(.disNon) + .contents {
  margin-top: 40px;
}

.heading + .contents:not(.contents--bg) {
  padding-top: 0;
}

@media (min-width: 767.5px) {
  .allContainer {
    min-width: 1320px;
    margin: 0 auto;
    min-height: 90vh;
    min-height: 90dvh;
  }
  .container {
    max-width: 1096px;
    min-width: 1096px;
    margin: 0 auto;
    padding: 48px 0 80px;
  }
  .contents {
    padding: 24px 0;
  }
  .contents:not(.contents--bg):first-child {
    padding-top: 48px;
  }
  .contents > .contents {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .contents--bg {
    padding: 24px;
  }
  .contents--bg + .contents--bg {
    margin-top: 48px;
  }
  .contents--bg + .contents:not(.contents--bg) {
    padding-top: 48px;
  }
  .inlineNote:not(.disNon) + .contents {
    margin-top: 48px;
  }
  .heading + .contents:not(.contents--bg) {
    padding-top: 0;
  }
}
/* header
----------------------------------------------------------------- */
.header {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #D5D5D5;
}

.header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

.header__logo {
  display: inline-block;
  padding: 12px 0;
  height: auto;
}
.header__logo--jal {
  width: 220px;
  max-width: 60%;
}
.header__logo--oneworld {
  display: inline-block;
  width: 20px;
  margin-left: 20px;
}
.header__logo img {
  width: 100%;
}
.header__logo:focus-visible {
  outline: 2px solid #666;
  border-radius: 2px;
}

.header__itemL {
  width: 100%;
  padding: 6px 16px 3px;
}

.header__itemR {
  width: 100%;
  border-top: 1px solid #D5D5D5;
  padding: 12px 16px;
}

.header__functionButton {
  position: absolute;
  top: 6px;
  right: 16px;
}

@media (max-width: 767.5px) {
  .header__itemR:not(:has(.stepper)) {
    padding: 0;
  }
}
@media (min-width: 767.5px) {
  .header__inner {
    flex-direction: row;
    width: 1320px;
    max-width: 1320px;
    padding: 0 20px;
  }
  .header__logo {
    display: inline-block;
    padding: 12px 0;
  }
  .header__logo--jal {
    width: 353px;
  }
  .header__logo--oneworld {
    display: inline-block;
    width: 26px;
    margin-left: 32px;
  }
  .header__itemL {
    display: flex;
    align-items: center;
  }
  .header__itemR {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 16px;
    border-top: none;
  }
  .header__functionButton {
    position: static;
    margin-left: 32px;
  }
}
/* footer
----------------------------------------------------------------- */
.footer {
  background: #000;
}

.footer__inner {
  padding: 16px;
}

.footer__copyright {
  color: #fff;
}

.footer__pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  outline-offset: -2px;
  transition: 0.2s, opacity;
  box-shadow: 0 0 8px 0 rgba(42, 52, 75, 0.04), 0 4px 8px -2px rgba(42, 52, 75, 0.08);
  z-index: 10;
}
.footer__pagetop img {
  width: 100%;
  height: auto;
}
.footer__pagetop:hover {
  opacity: 0.8;
}
.footer__pagetop:focus-visible {
  outline: 2px solid #fff;
}
.footer__pagetop:focus-visible::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: 2px solid #2A344B;
  border-radius: 50%;
  z-index: -1;
}

@media (min-width: 767.5px) {
  .footer__inner {
    max-width: 1096px;
    margin: 0 auto;
  }
}
/* ----------------------------------------------------------------
  Block
----------------------------------------------------------------- */
.imgWrap img {
  width: 100%;
  height: auto;
}
.imgWrap--border img {
  border: 1px solid #868686;
}

.imgWrap__caption {
  margin-top: 4px;
  font-size: 1.2rem;
}

.col4PC > *,
.col3PC > *,
.col2PC > * {
  margin-top: 6px;
}
.col4PC > *:first-child,
.col3PC > *:first-child,
.col2PC > *:first-child {
  margin-top: 0;
}

.flexPC > * {
  margin-top: 6px;
}
.flexPC > *:first-child {
  margin-top: 0;
}

@media (min-width: 767.5px) {
  .imgWrap__caption {
    margin-top: 8px;
  }
  .col2PC {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .col2PC > * {
    margin-top: 0 !important;
  }
  .col3PC {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .col3PC > * {
    margin-top: 0 !important;
  }
  .col4PC {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 6px;
  }
  .col4PC > * {
    margin-top: 0 !important;
  }
  .flexPC {
    display: flex;
    flex-wrap: wrap;
  }
  .flexPC > * {
    margin-top: 0 !important;
    margin-right: 16px;
  }
}
/* accordion
----------------------------------------------------------------- */
.accordion {
  border: 1px solid #D5D5D5;
  border-radius: 4px;
}
.accordion:not(:first-child) {
  margin-top: 16px;
}
.accordion.is-active .accordion__btn::after {
  transform: rotate(-90deg);
}
.accordion.is-active .accordion__panel {
  display: block;
}

.accordion__btn {
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  transition: 0.2s, opacity;
}
.accordion__btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 44px;
  margin: auto;
  background: url(../img/icon_hevron.svg) no-repeat center;
  background-size: 24px;
  transform: rotate(90deg);
}
.accordion__btn:hover {
  background: #f5f5f5;
}
.accordion__btn:focus-visible {
  background: #f5f5f5;
  outline: 2px solid #666;
  border-radius: 4px;
}

.accordion__title {
  display: block;
  padding: 16px;
  margin-right: 44px;
  font-weight: bold;
}

.accordion__panel {
  display: none;
  padding: 16px;
  border-top: 1px solid #D5D5D5;
}

/* tab
----------------------------------------------------------------- */
.tabListWrap {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}
.tabListWrap:first-child {
  margin-top: 0;
}
.tabListWrap:last-child {
  margin-bottom: 0;
}
form > .tabListWrap:first-child {
  margin-top: 32px;
}
.label + .tabListWrap {
  margin-top: 12px;
}
.label + .text + .tabListWrap {
  margin-top: 12px;
}

.tablistBtnCal {
  position: relative;
  max-width: calc(100vw - 32px);
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  box-shadow: 0 0 8px 0 rgba(42, 52, 75, 0.04), 0 4px 8px -2px rgba(42, 52, 75, 0.08);
  visibility: visible;
  overflow: hidden;
}
.tablistBtnCal--bottom {
  margin-top: 24px;
}

.tablistBtnCal__arrows .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  top: 0;
  bottom: 0;
  background: #fff;
  transition: 0.1s;
}
.tablistBtnCal__arrows .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.tablistBtnCal__arrows .splide__arrow--prev {
  position: absolute;
  left: 0;
  transform: scale(-1, 1);
  z-index: 1;
}
.tablistBtnCal__arrows .splide__arrow--next {
  position: absolute;
  right: 0;
  z-index: 1;
}

.tabList {
  display: flex;
}

.tabList__tab {
  position: relative;
  width: auto !important;
  min-width: 50%;
  height: 66px;
  padding: 14px 32px 13px;
  font-weight: 600;
  background: #fff;
  border-right: 1px solid #E8E8E8;
  color: #666666;
  line-height: 1;
  transition: 0.2s, opacity;
}
.tabList__tab.is-current {
  background: #2A344B;
  color: #fff;
  pointer-events: none;
}
.tabList__tab.is-current:focus-visible {
  outline-color: #fff;
}
.tabList__tab:not(.is-current):hover {
  background: #f5f5f5;
}
.tabList__tab:focus-visible {
  outline: 2px solid #2A344B;
  outline-offset: -2px;
  border-radius: 4px;
}
.tabList__tab:last-child {
  border-right: none;
}

.tabPanel {
  display: none;
  padding: 24px 0 0;
}
.tabPanel.is-active {
  display: block;
}

@media (min-width: 767.5px) {
  .tablistBtnCal--bottom {
    margin-top: 40px;
  }
  .label + .tabListWrap {
    margin-top: 16px;
  }
  .tabListWrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  form > .tabListWrap:first-child {
    margin-top: 40px;
  }
  .tabList {
    overflow: visible;
  }
  .tabList:has(> :nth-child(2):last-child) .tabList__tab {
    min-width: 50%;
  }
  .tabList:has(> :nth-child(3):last-child) .tabList__tab {
    min-width: 33.3333333333%;
  }
  .tabList:has(> :nth-child(4):last-child) .tabList__tab {
    min-width: 25%;
  }
  .tabList__tab {
    min-width: 20%;
    line-height: 1;
    font-size: 1.8rem;
  }
  .tabList__tab:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  .tabList__tab:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .tabList__tab.is-active {
    cursor: auto;
  }
  .tabList__tab.is-active::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    margin: 0 auto;
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #2A344B;
    transform: translate(-50%, 0);
  }
  .tabPanel {
    padding: 32px 0 0;
  }
}
/* subTab
----------------------------------------------------------------- */
.subTabListWrap:not(:first-child) {
  margin-top: 24px;
}

.subTablistBtnCal {
  position: relative;
  visibility: visible;
  overflow: hidden;
}

.subTablistBtnCal__arrows .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  background: #fff;
  bottom: 4px;
  transition: 0.1s;
}
.subTablistBtnCal__arrows .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.subTablistBtnCal__arrows .splide__arrow--prev {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(-1, 1);
  z-index: 1;
}
.subTablistBtnCal__arrows .splide__arrow--next {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.subTabList {
  width: 100%;
  line-height: 1.2;
}

.subTabList__tab {
  height: 46px;
  padding: 14px 32px 13px;
  border-bottom: 4px solid #B7C1CD;
  color: #666666;
  transition: 0.2s, opacity;
  line-height: 1;
  white-space: nowrap;
}
.subTabList__tab.is-current {
  border-color: #2A344B;
  font-weight: 600;
  color: #2A344B;
  cursor: auto;
}
.subTabList__tab:not(.is-current):hover {
  color: #a3a3a3;
  border-color: #d4dae1;
}
.subTabList__tab:focus-visible {
  outline: 2px solid #2A344B;
  outline-offset: -2px;
  border-radius: 4px;
}

.subTabPanel {
  display: none;
  padding: 20px 0;
}
.subTabPanel.is-active {
  display: block;
}

@media (min-width: 767.5px) {
  .subTabList:has(> :nth-child(2):last-child) .subTabList__tab {
    min-width: 50%;
  }
  .subTabList:has(> :nth-child(3):last-child) .subTabList__tab {
    min-width: 33.3333333333%;
  }
  .subTabList:has(> :nth-child(4):last-child) .subTabList__tab {
    min-width: 25%;
  }
  .subTabList:has(> :nth-child(5):last-child) .subTabList__tab {
    min-width: 20%;
  }
  .subTabList__tab {
    min-width: 20%;
    font-size: 1.6rem;
  }
  .subTabPanel {
    padding: 24px 0;
  }
}
/* stepper
----------------------------------------------------------------- */
.stepperText,
.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.stepperText--3 .stepper__item::after,
.stepper--3 .stepper__item::after {
  width: calc(33.3333333333vw + 11px);
}
.stepperText--4 .stepper__item::after,
.stepper--4 .stepper__item::after {
  width: calc(25vw + 11px);
}

.stepper {
  z-index: 1;
}

.stepperText {
  z-index: 0;
}

.stepper__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  height: 40px;
  background-image: url(../img/icon_step.svg);
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
}
.stepper__item:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  right: 32px;
  margin: auto;
  height: 2px;
  max-height: 2px;
  background: #B7C1CD;
  z-index: -1;
}
.stepper__item.is-current {
  background-image: url(../img/icon_step_current.svg);
  background-size: 28px;
}
.stepper__item.is-current::after {
  background: #2A344B;
}
.stepper__item.is-done {
  background-image: url(../img/icon_step_done.svg);
  background-size: 28px;
}
.stepper__item.is-done::after {
  background: #2A344B;
}

.stepper__item__text {
  display: flex;
  justify-content: center;
  align-items: end;
  position: absolute;
  top: 0;
  bottom: -28px;
  width: fit-content;
  padding: 0 20px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s;
}
.stepper__item__text::before {
  content: "";
  position: absolute;
  bottom: -11px;
  width: 100%;
  height: 32px;
  padding: 0 12px;
  background: #333;
  border-radius: 8px;
  opacity: 0.8;
  z-index: -1;
}
.stepper__item__text::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 11.5px;
  bottom: 21px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #333;
  opacity: 0.8;
  z-index: -1;
}

.stepperText__item {
  display: none;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
}
.stepperText__item.is-current {
  display: block;
}

@media (min-width: 767.5px) {
  .stepperText--3 .stepper__item:not(:first-child),
  .stepper--3 .stepper__item:not(:first-child) {
    margin-left: 116px;
  }
  .stepperText--3 .stepper__item::after,
  .stepper--3 .stepper__item::after {
    width: 220px;
  }
  .stepperText--4 .stepper__item:not(:first-child),
  .stepper--4 .stepper__item:not(:first-child) {
    margin-left: 44px;
  }
  .stepperText--4 .stepper__item::after,
  .stepper--4 .stepper__item::after {
    width: 145px;
  }
  .stepper__item {
    width: 100px;
  }
  .stepper__item:not(:first-child)::after {
    right: 50px;
  }
  .stepper__item.is-current {
    background-size: 32px;
  }
  .stepper__item.is-done {
    background-size: 32px;
  }
  .stepper__item:hover .stepper__item__text {
    visibility: visible;
    opacity: 1;
  }
  .stepper__item__text {
    bottom: -50px;
  }
  .stepperText__item {
    display: inline-block;
    width: 100px;
    margin-top: calc(4px - 0.2em);
    margin-bottom: -0.2em;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
/* inlineNote
----------------------------------------------------------------- */
.inlineNote {
  position: relative;
  margin-top: 32px;
  padding: 14px 16px 16px 20px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #D5D5D5;
  font-size: 1.4rem;
  overflow: hidden;
}
.inlineNote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.inlineNote--attention::before {
  background: #CC0000;
}
.inlineNote--attention .inlineNote__title::before {
  background: url(../img/icon_attention.svg);
}
.inlineNote--information::before {
  background: #2A344B;
}
.inlineNote--information .inlineNote__title::before {
  background: url(../img/icon_information.svg);
}
.heading--LG + form > .inlineNote, .heading--LG + .inlineNote {
  margin-top: -8px;
}

.inlineNote__title {
  display: flex;
  margin-bottom: 14px;
}
.inlineNote__title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background-size: contain;
}

.inlineNote__title__text {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 32px;
  vertical-align: sub;
}

@media (min-width: 767.5px) {
  .inlineNote {
    margin-top: 40px;
  }
  .inlineNote__title__text {
    font-size: 2rem;
  }
  .inlineNote__text {
    padding-left: 36px;
    padding-right: 30px;
  }
}
/* table
----------------------------------------------------------------- */
.tableWrap--scroll {
  overflow-x: auto;
}

.table {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  text-align: left;
  background: #FFF;
  font-size: 1.4rem;
  overflow: hidden;
}
.table--fixed {
  width: fit-content;
}
.table--fixed .th {
  width: 164px;
  min-width: 164px;
}
.table--fixed .td {
  width: 164px;
  min-width: 164px;
  border-right: 1px solid #D5D5D5;
}
.table + .table {
  margin-top: 24px;
}
.table .dt, .table .dd, .table .list {
  word-break: break-word;
}

tbody {
  display: block;
  width: 100%;
}

.thead {
  display: block;
  width: 100%;
  border-bottom: 1px solid #D5D5D5;
}

.tr {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #D5D5D5;
}
.tr:last-child {
  border-bottom: none;
}
.tr > *:last-child {
  border-right: none;
}

.th {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 11px 16px 12px;
  background: #F5F6F6;
  border-right: 1px solid #D5D5D5;
}

.td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 11px 16px 12px;
}

@media (max-width: 767.5px) {
  .table--th120SP .th {
    min-width: 120px;
  }
  .table--th120SP .td {
    width: 100%;
  }
}
@media (min-width: 767.5px) {
  .table--fixed {
    width: 100%;
  }
  .table--fixed .tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .table--fixed .th,
  .table--fixed .td {
    width: auto;
  }
  .table + .table {
    margin-top: 32px;
  }
  .th {
    width: 344px;
    min-width: 344px;
  }
  .td {
    width: auto;
  }
}
.accordion .th {
  width: 120px;
  min-width: 120px;
}
.accordion .td {
  width: calc(100% - 120px);
  min-width: calc(100% - 120px);
}

/* ----------------------------------------------------------------
  Element
----------------------------------------------------------------- */
.hr {
  margin: 20px 0;
  border: 0;
  border-bottom: 1px solid #D5D5D5;
}
.hr:first-child {
  margin-top: 0;
}
.hr:last-child {
  margin-bottom: 0;
}
.hr--dashed {
  border-style: dashed;
}
.formList + .hr {
  margin-top: 24px;
}
.contents + .hr {
  margin-top: 24px;
  margin-bottom: 16px;
}
.hr + .contents {
  padding-top: 0;
}
.contents + .hr--dashed {
  margin-top: 4px;
  margin-bottom: 4px;
}

@media (min-width: 767.5px) {
  .hr {
    margin: 24px 0;
  }
  .contents + .hr {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .contents + .hr--dashed {
    margin-top: 4px;
    margin-bottom: 4px;
  }
}
/* img
----------------------------------------------------------------- */
.aspect16-9 {
  aspect-ratio: 16/9;
}

/* text
----------------------------------------------------------------- */
.text--em {
  font-size: 1.6rem;
  font-weight: bold;
}
.text--note {
  position: relative;
  padding-left: 1em;
}
.text--note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.text--star {
  position: relative;
  padding-left: 0.5em;
}
.text--star::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}

.cautionText {
  color: #CC0000;
}
.cautionText--em {
  font-size: 1.6rem;
  font-weight: bold;
}
.cautionText--note {
  position: relative;
  padding-left: 18px;
}
.cautionText--note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 4px;
}
.cautionText--star {
  position: relative;
  padding-left: 0.5em;
}
.cautionText--star::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}

.subText {
  color: #333;
}

.textBtn,
.textLink {
  display: inline-block;
  position: relative;
  padding-right: 22px;
  text-align: left;
  color: #4C559B;
  font-weight: 700;
  line-height: 1.5;
}
.textBtn:hover,
.textLink:hover {
  text-decoration: underline;
}
.textBtn:focus-visible,
.textLink:focus-visible {
  outline: 2px solid #4C559B;
  border-radius: 2px;
}
.textBtn--noIcon,
.textLink--noIcon {
  padding-right: 0;
}
.textBtn--inner,
.textLink--inner {
  text-decoration: underline;
}
.textBtn--inner:hover,
.textLink--inner:hover {
  text-decoration: none;
}

.textBtn__icon,
.textLink__icon {
  display: inline-block;
  margin: auto;
  margin-left: 2px;
  vertical-align: sub;
}

.text + .textLink {
  margin-top: 12px;
}

.helptext {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
  color: #666;
}
.is-error .helptext {
  display: none;
}

.errorText {
  display: none;
  color: #A30000;
  font-size: 1.2rem;
}
.errorText:not(:first-child) {
  margin-top: 4px;
}
.formCheck + .errorText {
  margin-top: 0;
}
.is-error .errorText {
  display: block;
}

*:has(> wbr) {
  word-break: keep-all;
}

@media (min-width: 767.5px) {
  [class*="--LG"] {
    font-size: 3.2rem;
  }
  [class*="--MD"] {
    font-size: 2.8rem;
  }
  [class*="--SM"] {
    font-size: 2.4rem;
  }
  [class*="--XS"] {
    font-size: 2rem;
  }
  [class*="--XL"] {
    font-size: 1.8rem;
  }
  [class*="--14-18"] {
    font-size: 1.8rem;
  }
}
/* list
----------------------------------------------------------------- */
.list {
  margin-top: 16px;
}
.list:first-child {
  margin-top: 0;
}
.table .list .list__item {
  margin-top: 0;
}
.list--gapSm > .list__item {
  margin-top: 4px;
}
.list--gapSm:not(:first-child) {
  margin-top: 8px;
}
.list--gapNone > .list__item {
  margin-top: 0;
}

.list__item {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
}
.list__item:first-child {
  margin-top: 0;
}
.list__item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 4px;
}
.list__item .textLinkWrap:not(:first-child),
.list__item .textLink:not(:first-child) {
  margin-top: 4px;
}

@media (min-width: 767.5px) {
  .list {
    margin-top: 24px;
  }
  .list--gapSm:not(:first-child) {
    margin-top: 12px;
  }
  .list__item .textLinkWrap:not(:first-child),
  .list__item .textLink:not(:first-child) {
    margin-top: 4px;
  }
}
/* dl
----------------------------------------------------------------- */
.dl > div {
  display: flex;
  flex-wrap: wrap;
}
.dl--lineBreak .dt {
  margin-bottom: 10px;
}
.dl--indent {
  display: grid;
  grid-template-columns: min-content auto;
}
.dl--indent .dt {
  width: max-content;
}
.dl--indent .dd {
  width: auto;
}

.dt::after {
  content: "：";
}

/* heading
----------------------------------------------------------------- */
.heading {
  color: #000;
  font-weight: 600;
  line-height: 1.3;
}
.heading--LG {
  font-size: 2.4rem;
}
.heading--LG:not(:first-child) {
  margin-top: 40px;
}
.heading--LG:not(:last-child) {
  margin-bottom: 40px;
}
.heading--MD {
  font-size: 2rem;
}
.heading--MD:not(:first-child) {
  margin-top: 40px;
}
.heading--MD:not(:last-child) {
  margin-bottom: 24px;
}
.heading--SM {
  font-size: 1.8rem;
}
.heading--SM:not(:first-child) {
  margin-top: 24px;
}
.heading--SM:not(:last-child) {
  margin-bottom: 20px;
}
.heading--XS {
  font-size: 1.6rem;
}
.heading--XS:not(:first-child) {
  margin-top: 20px;
}
.heading--XS:not(:last-child) {
  margin-bottom: 16px;
}
.heading--XXS {
  font-size: 1.4rem;
}
.heading--XXS:not(:first-child) {
  margin-top: 24px;
}
.heading--XXS:not(:last-child) {
  margin-bottom: 16px;
}
.heading--item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formList__line > .heading {
  margin-bottom: 0;
}

.contents--bg__title {
  margin-bottom: 20px;
}

.contents--bg__titleS {
  margin-bottom: 16px;
}

.heading:has(.labelIcon) .labelIcon {
  margin-left: 0;
}
.heading:has(.labelIcon) .heading__text {
  margin-right: 8px;
}

.heading__text {
  vertical-align: middle;
}

@media (min-width: 767.5px) {
  .heading--LG {
    font-size: 3.2rem;
  }
  .heading--LG:not(:last-child) {
    margin-bottom: 48px;
  }
  .heading--MD {
    font-size: 2.8rem;
  }
  .heading--MD:not(:last-child) {
    margin-bottom: 32px;
  }
  .heading--SM {
    font-size: 2.4rem;
  }
  .heading--SM:not(:first-child) {
    margin-top: 32px;
  }
  .heading--SM:not(:last-child) {
    margin-bottom: 24px;
  }
  .heading--XS {
    font-size: 2rem;
  }
  .heading--XS:not(:first-child) {
    margin-top: 24px;
  }
  .heading--XS:not(:last-child) {
    margin-bottom: 24px;
  }
  .heading--XXS {
    font-size: 1.8rem;
  }
  .contents--bg__title {
    margin-bottom: 24px;
  }
  .contents--bg__titleS {
    margin-bottom: 20px;
  }
}
/* button
----------------------------------------------------------------- */
.button {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #CC0000;
  background: #fff;
  overflow: hidden;
  line-height: 1.5;
  transition: 0.2s background-color;
}
.button:not([disabled]):hover {
  border: 1px solid #d53232;
}
.button:not([disabled]):hover .button__inner {
  background: #d53232;
}
.button:focus-visible {
  outline: 2px solid #d53232;
  outline-offset: 2px;
}
.button:focus-visible .button__inner {
  background: #d53232;
}
.button:active .button__inner {
  box-shadow: 3px 4px 4px 0 #A30000 inset;
}
.button--secondary {
  border: 1px solid #d53232;
  background: none;
}
.button--secondary .button__inner {
  background: none;
}
.button--secondary .button__text {
  color: #CC0000;
}
.button--secondary:not([disabled]):hover {
  border: 1px solid #d53232;
  background: #fff;
}
.button--secondary:not([disabled]):hover .button__inner {
  background: rgba(204, 0, 0, 0.1);
}
.button--secondary:not([disabled]):hover .button__text {
  color: #d53232;
}
.button--secondary:focus-visible {
  outline-color: #d53232;
}
.button--secondary:focus-visible .button__inner {
  background: #fff;
}
.button--secondary:active {
  border: 1px solid #A30000;
}
.button--secondary:active .button__inner {
  box-shadow: none;
}
.button--secondary:active .button__text {
  color: #A30000;
}
.button--tertiary {
  border: 1px solid #B7C1CD;
  background: none;
}
.button--tertiary .button__inner {
  background: none;
}
.button--tertiary .button__text {
  color: #2A344B;
}
.button--tertiary:not([disabled]):hover {
  border: 1px solid #B7C1CD;
}
.button--tertiary:not([disabled]):hover .button__inner {
  background: rgba(0, 0, 0, 0.1);
}
.button--tertiary:not([disabled]):hover .button__text::before {
  opacity: 0.6;
}
.button--tertiary:focus-visible {
  outline-color: #2A344B;
}
.button--tertiary:focus-visible .button__inner {
  background: none;
}
.button--tertiary:active {
  border: 1px solid #B7C1CD;
}
.button--tertiary:active .button__inner {
  box-shadow: none;
}
.button--tertiary:active .button__text {
  color: #4C559B;
}
.button--S .button__inner {
  min-height: 32px;
  padding: 5px 16px 6px;
}
.button--S .button__text {
  font-size: 1.4rem;
}
.button--M .button__inner {
  min-height: 46px;
  padding: 11px 16px 12px;
}
.button--M .button__text {
  font-size: 1.6rem;
}
.button--L {
  min-width: 186px;
  width: 100%;
}
.button--L .button__inner {
  min-height: 54px;
  padding: 11px 16px 12px;
}
.button--L .button__text {
  font-size: 1.8rem;
}
.button[disabled] {
  cursor: auto;
}
.button.is-loading .button__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/icon_spinner.svg);
  background-size: contain;
}
.button.is-loading .button__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.button.is-checked .button__text::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: url(../img/icon_check.svg);
  background-size: contain;
  vertical-align: middle;
  transition: 0.2s;
}

.button__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #CC0000;
  transition: 0.2s background-color;
}

.button__text {
  font-weight: 600;
  color: #fff;
  transition: 0.2s;
}

.button__icon {
  margin-bottom: -1.5px;
}
.button__icon:first-child {
  padding-right: 8px;
}
.button__icon:last-child {
  padding-right: 8px;
}

@media (min-width: 767.5px) {
  .button {
    max-width: 344px;
  }
  .button__inner {
    padding: 14px 0 15px;
  }
  .button__text {
    font-size: 1.8rem;
  }
}
/* formUpload
----------------------------------------------------------------- */
.formUpload {
  width: 100%;
  padding: 20px;
  background: #F5F6F6;
  text-align: center;
}
.formUpload .text {
  font-size: 1.2rem;
}

.formUpload__btn {
  margin-top: 8px;
}

.formUploadImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 767.5px) {
  .formUpload__btn {
    margin-top: 12px;
  }
  .formUploadImg {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
  }
}
/* buttonLayout
----------------------------------------------------------------- */
.buttonLayout {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
}
.buttonLayout--pageBottom {
  margin-top: 40px;
}
.buttonLayout .buttonWrap + .buttonWrap {
  margin-top: 0;
}

.buttonWrap__text {
  text-align: center;
}
.buttonWrap__text:not(:last-child) {
  margin-bottom: 16px;
}
.buttonWrap__text:not(:first-child) {
  font-size: 1.6rem;
  margin-top: 8px;
}

.buttonWrap {
  line-height: 1;
}
.buttonWrap--center {
  width: 100%;
  text-align: center;
}
.buttonWrap--left .button {
  width: 100%;
}
.buttonWrap + .buttonWrap {
  margin-top: 24px;
}

@media (min-width: 767.5px) {
  .buttonLayout {
    grid-template-columns: 1fr 344px 1fr;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
  }
  .buttonLayout--pageBottom {
    margin-top: 48px;
  }
  .buttonLayout--type2 {
    grid-template-columns: 1fr auto auto;
    gap: 32px;
  }
  .buttonLayout--type2 .buttonWrap--right .button {
    width: 250px;
  }
  .buttonLayout--type2 .buttonWrap--right2 .button {
    width: 124px;
  }
  .buttonLayout .buttonWrap__text {
    margin-top: 20px;
  }
  .buttonLayout .buttonWrap {
    grid-row: 1/2;
  }
  .buttonLayout .buttonWrap--center {
    grid-column: 2/3;
  }
  .buttonLayout .buttonWrap--left {
    grid-column: 1/2;
  }
  .buttonLayout .buttonWrap--left .button {
    width: auto;
    min-width: 156px;
  }
  .buttonLayout .buttonWrap--right {
    grid-column: 3/4;
  }
  .buttonWrap__text {
    margin-top: 12px;
  }
}
/* functionButton
----------------------------------------------------------------- */
.functionButton {
  display: flex;
  align-items: center;
  height: 44px;
}
.functionButton--logout {
  width: 44px;
}
.functionButton:hover .functionButton__text {
  text-decoration: underline;
}
.functionButton:focus-visible {
  outline: 2px solid #666;
  border-radius: 2px;
}

.functionButton__icon {
  display: block;
  width: 20px;
  height: auto;
  margin: 0 auto;
}

.functionButton__text {
  margin-left: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 767.5px) {
  .functionButton--logout .functionButton__text {
    display: contents;
    width: 0;
    height: 0;
    font-size: 0;
    opacity: 0;
  }
}
@media (min-width: 767.5px) {
  .functionButton--logout {
    width: 55px;
    height: auto;
    flex-direction: column;
  }
  .functionButton--logout .functionButton__text {
    margin-left: 0;
  }
  .functionButton--logout .functionButton__icon {
    width: 32px;
    height: 44px;
  }
}
/* reqIndicator
----------------------------------------------------------------- */
.reqIndicator {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.reqIndicator__icon {
  color: #C00;
}

@media (min-width: 767.5px) {
  .reqIndicator {
    margin-bottom: 24px;
  }
}
/* label
----------------------------------------------------------------- */
.label {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.label--MD {
  font-size: 1.6rem;
}
.label--MD:not(:first-child) {
  margin-top: 16px;
}

legend.label,
label.label {
  line-height: 1;
}

.requiredIcon {
  margin-left: 4px;
  color: #CC0000;
}

.lageLabel {
  padding: 4px 6px 5px;
  border: 1px solid #666;
  border-radius: 4px;
  color: #666;
  font-size: 1.6rem;
  word-break: keep-all;
  line-height: 1;
}
.lageLabel + .text {
  margin-left: 12px;
}

@media (min-width: 767.5px) {
  .label--MD:not(:first-child) {
    margin-top: 24px;
  }
  .lageLabel {
    padding: 3px 8px 6px;
    font-size: 2.4rem;
  }
}
/* display
----------------------------------------------------------------- */
.display--MD {
  font-size: 2.8rem;
}

@media (min-width: 767.5px) {
  .display--MD {
    font-size: 3.6rem;
  }
}
/* form
----------------------------------------------------------------- */
.formWrap {
  width: 100%;
  text-align: left;
}
.formWrap--consent {
  margin-top: 24px;
}
.formWrap--date {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 0 8px;
  align-items: center;
}
.formWrap--date .formSelect {
  width: auto;
}
.formWrap--date .formSelect::before {
  height: 20px;
  background-size: 20px;
}
.formWrap--date__text {
  display: inline-block;
  vertical-align: middle;
}
.formWrap--date .helptext,
.formWrap--date .errorText {
  grid-column: 1/7;
}
.formWrap--unit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
}
.formWrap--unit .label {
  grid-column: 1/4;
}
.formWrap--unit__text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.formWrap--unit .errorText {
  grid-column: 1/3;
}
.formWrap--address .button {
  margin-top: 24px;
}
.formWrap--center {
  margin: 0 auto;
}
.formWrap + .formWrap {
  margin-top: 24px;
}

@media (min-width: 767.5px) {
  .formWrap {
    width: fit-content;
  }
  .formWrap--consent {
    width: 100%;
    margin: 36px auto 0;
    text-align: center;
  }
  .formWrap--date {
    display: grid;
    grid-template-columns: 148px 90px 90px;
  }
  .formWrap--date .errorText {
    grid-column: 1/7;
  }
  .formWrap--unit {
    width: 342px;
    max-width: 342px;
  }
  .formWrap--col {
    display: flex;
    flex-direction: column;
  }
  .formWrap--address {
    display: grid;
    grid-template-columns: 342px auto;
    gap: 0 32px;
  }
  .formWrap--address .label {
    grid-column: 1/4;
  }
  .formWrap--address .button {
    margin-top: 0;
  }
  .formWrap--address .errorText {
    grid-column: 1/4;
  }
  .formWrap--address .errorText {
    grid-column: 1/3;
  }
  .formWrap + .formWrap {
    margin-top: 32px;
  }
  .loginContents__col > .formWrap {
    max-width: 344px;
  }
  .loginContents__col .formWrap + .formWrap {
    margin-top: 20px;
  }
  .formWrap__textSpacePC {
    display: block;
    height: 1.4em;
  }
}
/* formList
----------------------------------------------------------------- */
.formList:not(:first-child) {
  margin-top: 16px;
}

.formList__line {
  width: 100%;
  margin-top: 16px;
}
.formList__line:first-child {
  margin-top: 0;
}
.formList__line--set .formList__item {
  margin-top: 20px;
}
.formList__line--setRow > .label {
  margin-bottom: 0;
}
.formList__line--setRow > .buttonWrap {
  margin-top: 8px;
}
.formList__line--setRow .formList__item {
  margin-top: 12px;
}
.formList__line--setRow .formList__item + .formList__item {
  margin-top: 16px;
}

.formList__item {
  margin-top: 16px;
}
.formList__item:first-child {
  margin-top: 0;
}

.formCheckList:not(:first-child),
.formRadioList:not(:first-child) {
  margin-top: 8px;
}
.label + .formCheckList:not(:first-child),
.label + .formRadioList:not(:first-child) {
  margin-top: 0;
}

.formCheckList__item,
.formRadioList__item {
  margin-top: 4px;
  line-height: 1;
}
.formCheckList__item:first-child,
.formRadioList__item:first-child {
  margin-top: 0;
}

@media (min-width: 767.5px) {
  .formList {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .formList:not(:first-child) {
    margin-top: 24px;
  }
  .formList__line {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
  }
  .formList__line:not(:first-child) {
    margin-top: 0;
  }
  .formList__line--set {
    gap: 24px 32px;
  }
  .formList__line--set .formList__item {
    margin-top: 0;
  }
  .formList__line--set + .formList__line--set {
    margin-top: -8px;
  }
  .formList__line--setRow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 16px;
  }
  .formList__line--setRow > .label {
    grid-column: 1/4;
    margin: 0;
  }
  .formList__line--setRow > .buttonWrap {
    grid-column: 1/4;
    margin-top: -8px;
  }
  .formList__line--setRow .formList__item {
    margin-top: 0;
  }
  .formList__line--setRow .formList__item + .formList__item {
    margin-top: 0;
  }
  .formList__item {
    margin-top: 0;
  }
  .formCheckList:not(:first-child),
  .formRadioList:not(:first-child) {
    margin-top: 8px;
  }
  .formCheckList--flexPC,
  .formRadioList--flexPC {
    display: flex;
    flex-wrap: wrap;
  }
  .formCheckList--flexPC .formRadioList__item:not(:last-child),
  .formRadioList--flexPC .formRadioList__item:not(:last-child) {
    margin-right: 32px;
  }
}
/* formPanelList
----------------------------------------------------------------- */
.formPanelList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.text + .formPanelList {
  margin-top: 24px;
}
.formPanelList .formCheck__partsWrap {
  padding-right: 0;
  padding-top: 4px;
  padding-bottom: 4px;
}

.formPanelList__img {
  display: inline-block;
  margin-bottom: 4px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

@media (min-width: 767.5px) {
  .formPanelList {
    grid-template-columns: repeat(6, minmax(calc(16.6666666667% - 160px), 1fr));
    gap: 4px 32px;
  }
  .text + .formPanelList {
    margin-top: 24px;
  }
}
/* formDetailInputlList
----------------------------------------------------------------- */
.formDetailInput {
  display: flex;
  flex-direction: column;
}

.formDetailInputlList {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}

.formDetailInputlList__item {
  padding-left: 36px;
}
.formDetailInputlList__item .formCheck {
  margin-left: -36px;
}
.formDetailInputlList__item .formTextarea {
  margin-top: 8px;
}

.formDetailInput__img {
  margin-top: 8px;
}

@media (min-width: 767.5px) {
  .formDetailInput {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
  }
  .formDetailInputlListWrap {
    grid-column: 1/5;
    width: calc(100% + 32px);
  }
  .formDetailInput__img {
    grid-column: 6/13;
    margin-top: 0;
  }
}
/* select
----------------------------------------------------------------- */
.formSelect {
  position: relative;
  width: 100%;
  border: 1px solid #999999;
  border-radius: 8px;
  font-size: 1.6rem;
  color: #333;
  background: #fff;
  overflow: hidden;
}
.formSelect:has(> :disabled) {
  border-color: #D5D5D5;
}
.formSelect:has(> select:focus-visible) {
  outline: 2px solid #666;
  outline-offset: -1px;
}
.formSelect > select {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 9px 36px 11px 16px;
  border-radius: 8px;
  z-index: 1;
  cursor: pointer;
}
.formSelect > select:disabled {
  color: #999;
  background-color: #D5D5D5;
  cursor: auto;
}
.formSelect > select:focus-visible {
  outline: none;
}
.formSelect.is-noSelect {
  color: #666;
}
.formSelect::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 24px;
  height: 24px;
  margin: auto 0;
  background: url(../img/icon_hevron.svg) no-repeat center;
  background-size: 24px;
  transform: rotate(90deg);
}
.formSelect option {
  color: #333;
}
.text + .formSelect {
  margin-top: 8px;
}
.dl + .formSelect {
  margin-top: 8px;
}

.is-error .formSelect {
  border: 1px solid #CC0000;
}
.is-error .formSelect:has(> select:focus-visible) {
  outline-color: #CC0000;
}

@media (min-width: 767.5px) {
  .formSelect {
    width: 344px;
    max-width: 344px;
  }
}
/* formText
----------------------------------------------------------------- */
.formText {
  position: relative;
  width: 100%;
  max-height: 48px;
  padding: 11px 16px 13px 16px;
  border: 1px solid #999999;
  border-radius: 8px;
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  background: #fff;
  overflow: hidden;
}
.formText:focus {
  color: #000;
}
.formText:focus ~ .helptext {
  display: block;
}
.formText:focus ~ .errorText {
  display: none;
}
.formText::placeholder {
  color: #666;
}
.formText:focus-visible {
  outline: 2px solid #666;
  outline-offset: -1px;
}
.formText:read-only {
  background: #F5F6F6;
  border-color: #F5F6F6;
  color: #333;
  cursor: auto;
}
.formText:disabled {
  background: #D5D5D5;
  border-color: #D5D5D5;
  cursor: auto;
}
.formText:disabled::placeholder {
  color: #999;
}
.text + .formText {
  margin-top: 8px;
}
.dl + .formText {
  margin-top: 8px;
}

.is-error .formText:not(:disabled) {
  border: 1px solid #CC0000;
}
.is-error .formText:focus-visible {
  outline-color: #CC0000;
}

@media (min-width: 767.5px) {
  .formText {
    width: 344px;
    max-width: 344px;
  }
  .formText--L {
    width: 720px;
    max-width: 720px;
  }
  .formWrap--unit > .formText {
    width: 100%;
    max-width: none;
  }
}
/* formTextarea
----------------------------------------------------------------- */
.formTextarea {
  position: relative;
  width: 100%;
  padding: 16px;
  border: 1px solid #999999;
  border-radius: 8px;
  font-size: 1.6rem;
  color: #333;
  background: #fff;
  overflow: hidden;
}
.formTextarea:focus {
  color: #000;
}
.formTextarea::placeholder {
  color: #666;
}
.formTextarea:read-only {
  background: #F5F6F6;
  border-color: #D5D5D5;
  color: #333;
  cursor: auto;
}
.formTextarea:disabled {
  background: #D5D5D5;
  border-color: #D5D5D5;
  color: #999;
}
.formTextarea:focus-visible {
  outline: 2px solid #666;
  outline-offset: -1px;
}
.text + .formTextarea {
  margin-top: 8px;
}

.is-error .formTextarea {
  border: 1px solid #CC0000;
}
.is-error .formTextarea:focus-visible {
  outline-color: #CC0000;
}

@media (min-width: 767.5px) {
  .formTextarea {
    max-width: 720px;
  }
}
/* formCheck
----------------------------------------------------------------- */
.formCheck {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.formCheck:hover .formCheck__parts {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgcng9IjQiIHJ5PSI0IiBmaWxsPSIjZTZlNmU2IiAvPjwvc3ZnPg==") no-repeat center;
}
.formCheck--item {
  flex-wrap: wrap;
}

.formCheck__partsWrap {
  display: flex;
  align-items: flex-start;
  width: fit-content;
  padding: 4px 0;
}

.formCheck__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.formCheck__input:checked ~ span .formCheck__parts::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 18px;
  height: 18px;
  border: 0;
  background: url(../img/icon_checked.svg);
  background-size: contain;
}
.formCheck__input:disabled ~ .formCheck__partsWrap .formCheck__text {
  color: #999;
}
.formCheck__input:disabled ~ .formCheck__partsWrap .formCheck__parts {
  background: none;
}
.formCheck__input:disabled ~ .formCheck__partsWrap .formCheck__parts::before {
  background: #D5D5D5;
  border-color: #D5D5D5;
}
.formCheck__input:focus-visible ~ .formCheck__partsWrap .formCheck__parts {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNCA4QzQgNS43OTA4NiA1Ljc5MDg2IDQgOCA0SDI0QzI2LjIwOTEgNCAyOCA1Ljc5MDg2IDI4IDhWMjRDMjggMjYuMjA5MSAyNi4yMDkxIDI4IDI0IDI4SDhDNS43OTA4NiAyOCA0IDI2LjIwOTEgNCAyNFY4WiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC4xIi8+PHBhdGggZD0iTTggNFY1SDI0VjRWM0g4VjRaTTI4IDhIMjdWMjRIMjhIMjlWOEgyOFpNMjQgMjhWMjdIOFYyOFYyOUgyNFYyOFpNNCAyNEg1VjhINEgzVjI0SDRaTTggMjhWMjdDNi4zNDMxNSAyNyA1IDI1LjY1NjkgNSAyNEg0SDNDMyAyNi43NjE0IDUuMjM4NTggMjkgOCAyOVYyOFpNMjggMjRIMjdDMjcgMjUuNjU2OSAyNS42NTY5IDI3IDI0IDI3VjI4VjI5QzI2Ljc2MTQgMjkgMjkgMjYuNzYxNCAyOSAyNEgyOFpNMjQgNFY1QzI1LjY1NjkgNSAyNyA2LjM0MzE1IDI3IDhIMjhIMjlDMjkgNS4yMzg1OCAyNi43NjE0IDMgMjQgM1Y0Wk04IDRWM0M1LjIzODU4IDMgMyA1LjIzODU4IDMgOEg0SDVDNSA2LjM0MzE1IDYuMzQzMTUgNSA4IDVWNFoiIGZpbGw9IiM2NjY2NjYiLz48L3N2Zz4=) no-repeat center;
}

.formCheck__parts {
  position: relative;
  display: inline-block;
  min-width: 32px;
  min-height: 32px;
  border-radius: 4px;
}
.formCheck__parts::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid #999;
  background-color: #fff;
}

.formCheck__text {
  display: inline-block;
  margin-top: 3px;
  margin-left: 4px;
  color: #333;
  line-height: 1.5;
}

.is-error .formCheck__parts::before {
  border-color: #A30000;
}
.is-error .formCheck:hover .formCheck__parts {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgcng9IjQiIHJ5PSI0IiBmaWxsPSIjZTlkYWRhIiAvPjwvc3ZnPg==");
}
.is-error .formCheck__input:checked ~ span .formCheck__parts::after {
  background: url(../img/icon_checked_error.svg);
}
.is-error .formCheck__input:focus-visible ~ .formCheck__partsWrap .formCheck__parts {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNCA4QzQgNS43OTA4NiA1Ljc5MDg2IDQgOCA0SDI0QzI2LjIwOTEgNCAyOCA1Ljc5MDg2IDI4IDhWMjRDMjggMjYuMjA5MSAyNi4yMDkxIDI4IDI0IDI4SDhDNS43OTA4NiAyOCA0IDI2LjIwOTEgNCAyNFY4WiIgZmlsbD0iI0EzMDAwMCIgZmlsbC1vcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNOCA0VjVIMjRWNFYzSDhWNFpNMjggOEgyN1YyNEgyOEgyOVY4SDI4Wk0yNCAyOFYyN0g4VjI4VjI5SDI0VjI4Wk00IDI0SDVWOEg0SDNWMjRINFpNOCAyOFYyN0M2LjM0MzE1IDI3IDUgMjUuNjU2OSA1IDI0SDRIM0MzIDI2Ljc2MTQgNS4yMzg1OCAyOSA4IDI5VjI4Wk0yOCAyNEgyN0MyNyAyNS42NTY5IDI1LjY1NjkgMjcgMjQgMjdWMjhWMjlDMjYuNzYxNCAyOSAyOSAyNi43NjE0IDI5IDI0SDI4Wk0yNCA0VjVDMjUuNjU2OSA1IDI3IDYuMzQzMTUgMjcgOEgyOEgyOUMyOSA1LjIzODU4IDI2Ljc2MTQgMyAyNCAzVjRaTTggNFYzQzUuMjM4NTggMyAzIDUuMjM4NTggMyA4SDRINUM1IDYuMzQzMTUgNi4zNDMxNSA1IDggNVY0WiIgZmlsbD0iI0EzMDAwMCIvPjwvc3ZnPg==) no-repeat center;
}

/* formRadio
----------------------------------------------------------------- */
.formRadio {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.formRadio:hover .formRadio__parts {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxjaXJjbGUgY3g9IjE0IiBjeT0iMTQiIHI9IjE0IiBmaWxsPSIjZTZlNmU2IiAvPjwvc3ZnPg==) no-repeat center;
}
.formRadio--item {
  flex-wrap: wrap;
}

.formRadio__partsWrap {
  display: flex;
  align-items: flex-start;
  width: fit-content;
  padding: 4px 0;
}

.formRadio__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.formRadio__input:checked ~ span .formRadio__parts::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 20px;
  height: 20px;
  border: 0;
  background: url(../img/icon_radio.svg);
  background-size: contain;
  opacity: 1;
}
.formRadio__input:disabled ~ .formRadio__partsWrap .formRadio__text {
  color: #999;
}
.formRadio__input:disabled ~ .formRadio__partsWrap .formRadio__parts {
  background: none;
}
.formRadio__input:disabled ~ .formRadio__partsWrap .formRadio__parts::before {
  background: #D5D5D5;
  border-color: #D5D5D5;
}
.formRadio__input:focus-visible ~ .formRadio__partsWrap .formRadio__parts {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxNiIgY3k9IjE2IiByPSIxMyIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC4xIiBzdHJva2U9IiM2NjY2NjYiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==) no-repeat center;
}

.formRadio__parts {
  position: relative;
  display: inline-block;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50px;
}
.formRadio__parts::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  border: 2px solid #999;
  background-color: #fff;
}

.formRadio__text {
  display: inline-block;
  margin-top: 3px;
  margin-left: 4px;
  line-height: 1.5;
  color: #333;
  word-break: break-word;
}

.is-error .formRadio__parts::before {
  border-color: #A30000;
}
.is-error .formRadio:hover .formRadio__parts {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxjaXJjbGUgY3g9IjE0IiBjeT0iMTQiIHI9IjE0IiBmaWxsPSIjZTlkYWRhIiAvPjwvc3ZnPg==");
}
.is-error .formRadio__input:checked ~ span .formRadio__parts::after {
  background: url(../img/icon_radio_error.svg);
}
.is-error .formRadio__input:focus-visible ~ .formRadio__partsWrap .formRadio__parts {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxNiIgY3k9IjE2IiByPSIxMyIgZmlsbD0iI0EzMDAwMCIgZmlsbC1vcGFjaXR5PSIwLjEiIHN0cm9rZT0iI0EzMDAwMCIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+) no-repeat center;
}

/* formFileButton
----------------------------------------------------------------- */
.inputFileButton {
  position: relative;
}
.inputFileButton:has(input:focus-visible) {
  outline: 2px solid #2A344B;
  outline-offset: 2px;
}
.inputFileButton:has(input:focus-visible) .button__inner {
  background: none;
}

.inputFileButton__input {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0;
  opacity: 0;
}

.inputFileButton__label {
  cursor: pointer;
}

/* linkPanel
----------------------------------------------------------------- */
.linkPanel__item {
  position: relative;
  border-bottom: 1px solid #D5D5D5;
}
.linkPanel__item > a {
  display: flex;
  align-items: start;
  padding: 16px 0;
  padding-right: 40px;
  font-weight: bold;
  font-size: 1.8rem;
  transition: 0.2s;
}
.linkPanel__item > a::before {
  content: "";
  display: block;
  width: 20vw;
  min-width: 20vw;
  height: 20vw;
  min-height: 20vw;
  margin-right: 16px;
  background-size: contain;
}
.linkPanel__item > a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/icon_hevron.svg);
  background-size: contain;
}
.linkPanel__item > a:hover {
  background: #F5F6F6;
}
.linkPanel__item.requestcheck > a::before {
  background-image: url(../img/icon_panel_requestcheck.svg);
}
.linkPanel__item.altselect > a::before {
  background-image: url(../img/icon_panel_altselect.svg);
}
.linkPanel__item.altcheck > a::before {
  background-image: url(../img/icon_panel_altcheck.svg);
}
.linkPanel__item.repaircheck > a::before {
  background-image: url(../img/icon_panel_repaircheck.svg);
}
.linkPanel__item.baggagereport_cust > a::before {
  background-image: url(../img/icon_panel_baggagereport_cust.svg);
}
.linkPanel__item.baggageclaim > a::before {
  background-image: url(../img/icon_panel_baggageclaim.svg);
}

@media (min-width: 767.5px) {
  .linkPanel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }
  .linkPanel__item > a {
    padding-right: 60px;
    font-size: 2rem;
  }
  .linkPanel__item > a::before {
    width: 120px;
    min-width: 120px;
    height: 120px;
    min-height: 120px;
  }
  .linkPanel__item > a::after {
    right: 10px;
  }
}
/* modal
----------------------------------------------------------------- */
.modal {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
}
.modal--popup .modalPanel {
  height: auto;
}
.modal--popup .modalPanel__bottom {
  box-shadow: none;
}
.modal--popup .buttonWrap--modalBottom {
  margin-top: 0;
}
.modal--popup .buttonWrap--modalBottom .button {
  max-width: 344px;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modalPanel__hdg {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  padding: 16px 12px;
  font-weight: 600;
  text-align: center;
  background: #fff;
  z-index: 10;
}

.modal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modalPanel {
  position: relative;
  display: inline-block;
  width: 532px;
  height: 80%;
  height: 90dvh;
  max-width: 1000px;
  background: #F5F6F6;
  border-radius: 16px;
  overflow: hidden;
}

.modalPanel__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modalPanel__content {
  padding: 16px;
}

.modalPanel__content__box {
  padding: 16px 0;
}

.modalPanel__bottom {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: auto;
  padding: 24px 16px;
  background: #fff;
  box-shadow: 0px -1px 2px rgba(0, 0, 0, 0.16);
}

.buttonWrap--modalBottom {
  margin-top: 32px;
  text-align: center;
}
.buttonWrap--modalBottom .button {
  width: 100%;
}

@media (min-width: 767.5px) {
  .modalPanel {
    max-height: 680px;
  }
  .modalPanel__content__box {
    padding: 20px 0;
  }
}
/* modal scroll bar
----------------------------------------------------------------- */
.modal ::-webkit-scrollbar {
  width: 6px; /* 幅を細めに */
  height: 6px;
  background: transparent;
}
.modal ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  border: 1.5px solid transparent;
  background-clip: content-box;
}
.modal ::-webkit-scrollbar-track {
  background: transparent;
}
.modal .scrollable {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* loginContents
----------------------------------------------------------------- */
.loginContents {
  margin-top: 32px;
  margin-bottom: 32px;
}
.loginContents--simple {
  margin-top: 24px;
  margin-bottom: 24px;
}
.loginContents:last-child {
  margin-bottom: 0;
}

.loginContents__title {
  margin-bottom: 16px;
}

.loginContents__text {
  margin-top: 24px;
}

.loginContents__button {
  margin-top: 40px;
}

.loginContents__col {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}
.loginContents__col:first-child {
  padding-top: 0;
  border-bottom: 1px solid #D5D5D5;
}
.loginContents__col:last-child {
  padding-bottom: 0;
}
.loginContents__col:first-child:last-child {
  border-bottom: none;
  border-right: none;
}
.loginContents__col:first-child:last-child::after {
  content: none;
}

@media (min-width: 767.5px) {
  .loginContents {
    margin-top: 48px;
    margin-bottom: 40px;
    padding: 20px;
    background: #F5F6F6;
  }
  .loginContents--simple {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 0;
    background: none;
  }
  .loginContents--simple .loginContents__inner {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
  .loginContents--simple .formWrap {
    width: min-content;
  }
  .loginContents__title {
    margin-bottom: 20px;
  }
  .loginContents__title + .loginContents__button {
    margin-top: auto;
  }
  .loginContents__text {
    margin-top: 24px;
  }
  .loginContents__button {
    margin-top: 40px;
  }
  .loginContents__button:not(.buttonWrap__text) {
    min-height: 90px;
  }
  .loginContents__inner {
    display: flex;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
  }
  .loginContents__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 100%;
    padding: 48px 40px;
    text-align: center;
  }
  .loginContents__col:first-child {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .loginContents__col:first-child::after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% + 16px);
    top: -8px;
    right: 0;
    border-right: 1px solid #D5D5D5;
  }
  .loginContents__col:last-child {
    padding-top: 0;
    padding-bottom: 0;
  }
  .loginContents__col:first-child:last-child .loginContents__button {
    margin-top: 48px;
    min-height: auto;
  }
}
/* alternative
----------------------------------------------------------------- */
.text + .alternative, .textLink + .alternative {
  margin-top: 40px;
}
.formList + .alternative {
  margin-top: 32px;
}

@media (max-width: 767.5px) {
  .alternative__col:last-child {
    margin-top: 16px;
  }
}
@media (min-width: 767.5px) {
  .alternative {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
  }
  p + .alternative {
    margin-top: 50px;
  }
  .alternative__col:first-child {
    grid-column: 1/5;
  }
  .alternative__col:last-child {
    grid-column: 5/13;
  }
}
/* tiketImgtWrap
----------------------------------------------------------------- */
.tiketImgtWrap {
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}
.tiketImgtWrap img {
  width: 100%;
  height: auto;
}
.tiketImgtWrap--baggage1 {
  width: 64.53vw;
  min-width: 242px;
}
.tiketImgtWrap--baggage2 {
  width: 32vw;
  min-width: 120px;
}

@media (min-width: 767.5px) {
  .tiketImgtWrap {
    margin-top: 16px;
  }
  .tiketImgtWrap img {
    width: 100%;
    height: auto;
  }
  .tiketImgtWrap--baggage1 {
    width: 360px;
    min-width: 360px;
  }
  .tiketImgtWrap--baggage2 {
    width: 180px;
    min-width: 180px;
  }
}
/* ----------------------------------------------------------------
  Utility
----------------------------------------------------------------- */
.u-flex {
  display: flex !important;
}

.u-flex--top {
  align-items: flex-start !important;
}

.u-flex--btween {
  justify-content: space-between;
}

/* display
----------------------------------------------------------------- */
.u-disBlo {
  display: block !important;
}

.u-disInBlo {
  display: inline-block !important;
}

.disNon {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

.u-pdb0 {
  padding-bottom: 0 !important;
}

.u-pdl0 {
  padding-bottom: 0 !important;
}

.u-pdr0 {
  padding-bottom: 0 !important;
}

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

.u-mgb0 {
  margin-bottom: 0 !important;
}

.u-mgl0 {
  margin-bottom: 0 !important;
}

.u-mgr0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

.u-mgt10 {
  margin-top: 10px !important;
}

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

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

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

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

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

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

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

@media (min-width: 767.5px) {
  .u-neg-mgt12PC {
    margin-top: -12px !important;
  }
  .u-mgt48PC {
    margin-top: 48px !important;
  }
  .u-mgt8-12 {
    margin-top: 12px !important;
  }
  .u-mgt12-16 {
    margin-top: 16px !important;
  }
  .u-mgt16-20 {
    margin-top: 20px !important;
  }
  .u-mgt20-24 {
    margin-top: 24px !important;
  }
  .u-mgt24-32 {
    margin-top: 32px !important;
  }
  .u-mgt32-40 {
    margin-top: 40px !important;
  }
  .u-mgt40-48 {
    margin-top: 48px !important;
  }
}
/* color
----------------------------------------------------------------- */
.u-textColor-primary-default {
  color: #CC0000 !important;
}

/* font weight
----------------------------------------------------------------- */
.u-fs12 {
  font-size: 1.2rem !important;
}

/* font weight
----------------------------------------------------------------- */
.u-fwB {
  font-weight: bold !important;
}

.u-fwN {
  font-weight: normal !important;
}

/* tecxt align
----------------------------------------------------------------- */
.u-alL {
  text-align: left !important;
}

.u-alC {
  text-align: center !important;
}

.u-alR {
  text-align: right !important;
}

.u-w100 {
  width: 100% !important;
  max-width: none !important;
}

@media (min-width: 767.5px) {
  .u-alC-pc {
    text-align: center !important;
  }
}
.u-textColor-subtle {
  color: #666 !important;
}
