/* Color Palette */
:root {
  --color-container-bg: #fff;

    --color-background: #F2FBFE;
    --color-table-header-bg: #0D57A7;
    --color-table-header2-bg: #F3F7FB;;
    --color-table-bg: #fff;
    --color-table-header-text: #fff;
    --color-border: #CFDDED;
    --color-text: #000;
    --color-card-bg: #fff;

    --button-bg: #fff;
    --button-text: #000;
    --button-border: #6E9ACA;
    --button-hover-bg: #E7EEF6;
    --button-hover-text: #000;
    --button-hover-border: #0D57A7;
}

/* Global Styles */
body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-background);
    font-family: 'Noto Sans JP', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.text_caption {
    margin-top: 32px;
    font-size: 13px;
}

.text_caption_l {
    font-size: 14px;
    font-weight: 500;
}

.text_caption_m {
    font-size: 13px;
}



/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 28px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Headline */
h2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 40px;
}

h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
}

/* Footer */
.footer {
    width: 1120px;
    margin: 0 auto;
    padding: 28px 0;
}

.footer p {
    font-size: 10px;
    font-weight: 400;
    text-align: right;
}

/* Main Content */
.main_content {
    margin: 48px auto 32px;
    width: 1120px;
}

/* Card Content */
.card_content {
  width: 1040px;
  padding: 48px 40px;
  border-radius: 16px;
  background-color: var(--color-card-bg);
}




/* List */
ul,
ol {
    padding: 8px 0 0 24px;
}

ul li,
ol li {
    padding: 4px 0 4px 12px;
}

ul, ul ul, ul ul ul {
  list-style-type: disc;
}

ol.RoundBrackets li {
  position: relative;
  list-style-type: none;
}

ol.RoundBrackets  li:before {
  position: absolute;
  right: calc(100% + 0.5rem);
  content: "(" counter(list-item) ")";
}

ol.RoundBrackets ul li {
  list-style-type: disc;
  position: static;
}

ol.RoundBrackets ul li::before {
  content: none;
}


.lower-latin {
    list-style-type: lower-latin;
    padding-left: 28px;
}

/* Table */
.table_st {
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  width: 100%;
  margin: 16px 0px;
}

.table_st th,
td {
  border: 1px solid var(--color-border);
  padding: 12px;
  text-align: left;

}

.table_st th {
  width: 25%;
  background-color: var(--color-table-header2-bg);
}

.cell_disable{
  color:#999;
  background-color: #f5f5f5;
}

.th_2 {
  width: 40%;
}

.th_4 {
  width: 25% !important;
}

.th_5 {
  width: 20% !important;
}


/* Pricing Table */
.table_2 {
    margin-top: 32px;
}

.table_shadow {
    outline: 1px solid var(--color-border);
    outline-offset: -1px;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Header */
.table-header {
    background: var(--color-table-header-bg);
    color: var(--color-table-header-text);
    font-weight: 700;
}

.table-header th {
    padding: 18px 32px;
    border-right: 1px solid var(--color-border);
}

.table-header th:last-child {
    border-right: none;
}

/* Table Row */
.table-row {
    background: var(--color-table-bg);
    border-top: 1px solid var(--color-border);
}

.table-row td {
    padding: 32px;
    border-right: 1px solid var(--color-border);
}

.table-row td:last-child {
    border-right: none;
}

/* Specific Cell Widths */
.td_200 {
    width: 136px;
}

.td_400 {
    width: 336px;
}

/* Text Alignment */
.text_L {
    text-align: left;
}

.text_R {
    text-align: right;
}

.text_C{
  text-align: center !important;
}

/* Inquiry Section */
.card_inquiry {
    margin: 64px auto 48px;
    padding: 32px 40px 40px;
    width: 1040px;
    border-radius: 16px;
    background-color: #fff;
    text-align: center;
}

.body_L {
    font-size: 16px;
    font-weight: 700;
    margin: 48px 0 40px;
}

.button_inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    width: 280px;
    background-color: var(--button-bg);
    color: var(--button-text);
    font-size: 16px;
    font-weight: 700;
    border: 1px solid var(--button-border);
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button_inquiry:hover {
    background-color: var(--button-hover-bg);
    border-color: var(--button-hover-border);
    color: var(--button-hover-text);
}

.button_inquiry .label {
    text-align: center;
    flex-grow: 1;
}

.button_inquiry .icon {
    width: 20px;
    height: 20px;
    margin-left: 6px;
    transition: transform 0.3s ease, filter 0.3s ease, content 0.3s ease;
    transform: scale(1);
}

.button_inquiry:hover .icon {
    content: url("./img/Icon_ArrowCircle_Hover.svg");
}
