:root {
    --primary: #2EA7FC;
    --primary-dk: #004575;
    --primary-lt: #1876ba;
    --secondary: #ED6D05;
    --secondary-dk: #ff4e00;
    --successful: #258635;
    --successful-dk: #218838;
    --white: #fff;
    --light: #f5f5f5;
    --gray: #d1d1d1;
    --dark: #595959;
    --black: #111;

    --highlight: #c52c29;
    --primary-title: var(--primary, #2EA7FC);

    --shadow: rgba(11 11 11 / 10%);
    --trans: all 250ms ease-in-out;

    --left: 230px;
    --right: 230px;

    --gap08: 8px;
    --gap10: 10px;
    --gap12: 12px;
    --gap14: 14px;
    --gap16: 16px;
    --gap18: 18px;
    --gap20: 20px;
    --gap24: 24px;

    --fontSize: 16px;
    --fontBody: "Noto Sans JP", sans-serif;
    --fontHeading: 700;
    --fontWeight: 500;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    width: 6px;
    border-radius: var(--gap10);
    background-color: #111;
}

::-webkit-scrollbar-track {
    background-color: #d1d1d1;
}

*,
:before,
:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: #999 #e1e1e1;
}

html,
body {
    font-family: var(--fontBody);
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

body {
    color: var(--black);
    font-size: var(--fontSize);
    font-weight: 400;
    line-height: 1.34567;
    scrollbar-color: #999 #d1d1d1;
    scrollbar-width: thin;
    overflow-x: hidden;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: var(--primary);
    text-decoration: none;
}

b,
strong,
th {
    font-weight: var(--fontWeight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-weight: 500; */
    /* margin-top: 0; */
    margin: 0;
    /* line-height: 1.1; */
    font-size: 100%;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.flex-b,
.flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-w {
    flex-wrap: wrap;
}

.flex-dc,
.column {
    flex-direction: column;
}

.flex-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
}

.flex-e {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-s {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-s {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.site-w {
    max-width: 1400px;
    width: 100%;
    padding-left: var(--gap16);
    padding-right: var(--gap16);
    margin: 0 auto;
}

.button,
[type=button] {
    display: block;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: var(--fontSize, 16px);
    font-family: var(--fontBody);
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
    outline: none;
    color: var(--dark);
    user-select: none;
}

.radio-input,
.checkbox-input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.input-type-radio {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: var(--gap16);
    border: 2px solid var(--gray);
    position: relative;
}

.input-type-checkbox {
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid var(--gray);
    position: relative;
    border-radius: 3px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label span {
    padding-left: var(--gap8);
    padding-right: var(--gap8);
}

.input-type-radio::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-radius: var(--gap8);
    opacity: 0;
}

.input-type-checkbox::after,
.input-type-checkbox::before {
    content: "";
    width: 2px;
    height: var(--gap10);
    display: block;
    background-color: var(--primary);
    position: absolute;
    opacity: 0;
}

.input-type-checkbox::after {
    transform: rotate(45deg);
    top: 3px;
    left: var(--gap8);
}

.input-type-checkbox::before {
    transform: rotate(-45deg);
    top: 7px;
    left: 4px;
    height: 5px;
}

.checkbox-input:checked~.input-type-checkbox {
    border-color: var(--primary);
}

.checkbox-input:checked~.input-type-checkbox::after,
.checkbox-input:checked~.input-type-checkbox::before {
    opacity: 1
}

.radio-input:checked~.input-type-radio {
    border-color: var(--primary);
}

.radio-input:checked~.input-type-radio::before {
    background-color: var(--primary);
    opacity: 1;
}

input[type="text"],
input[type="password"] {
    font-size: 16px;
    font-family: var(--fontBody);
}

.form-control {
    display: block;
    font-family: var(--fontBody);
    width: 100%;
    padding: 7px 10px;
    line-height: 1.2857143;
    background-color: var(--white);
    background-image: none;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: var(--gap16);
    transition: all ease-in-out .15s;
    background-clip: padding-box;
    min-height: 32px;
}

.form-control:focus {
    color: var(--dark);
    background-color: #fff;
    outline: 0;
    border: 1px solid var(--primary);
    text-indent: 6px;
}

.form-control::-webkit-input-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-control::placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-select {
    border: 1px solid var(--gray);
    border-radius: 4px;
    display: inline-block;
    font-size: var(--gap16);
    padding: var(--smallGrap, 8px) 10px;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
    background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%, calc(100% - var(--gap16, 16px));
    background-size: 5px 5px, 5px 5px, 1px calc(100% - var(--gap16, 16px));
    background-repeat: no-repeat;
}

.form-select:focus {
    background-image: linear-gradient(45deg, var(--primary-lt, #1876ba) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, var(--primary-lt, #1876ba) 50%);
    background-position: calc(100% - 14px) 50%, calc(100% - 19px) 50%;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    outline: 0;
    border-color: var(--primary-lt, #1876ba);
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

textarea {
    font-family: var(--fontBody);
    font-size: 16px;
    resize: none;
}

.label {
    display: block;
    width: 100%;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input {
    cursor: pointer;
    color-adjust: exact;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #d1d1d1;
    display: block;
    margin: 0;
    margin-top: .165em;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    height: 14px;
    width: 14px;
    min-width: 14px;
}

.form-check-input:checked,
.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 4px 0 rgba(12 96 156 / 10%);
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3E%3C/svg%3E")
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='1.5' fill='%23fff'/%3E%3C/svg%3E")
}

@media (max-width: 1194px) {
    ::-webkit-scrollbar {
        display: none
    }

    * {
        scrollbar-width: none;
    }
}


.table {
    --bs-table-color: #697a8d;
    --bs-table-bg: transparent;
    --bs-table-border-color: #d9dee3;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #697a8d;
    --bs-table-striped-bg: #f9fafb;
    --bs-table-active-color: #697a8d;
    --bs-table-active-bg: rgba(67, 89, 113, .1);
    --bs-table-hover-color: #697a8d;
    --bs-table-hover-bg: rgba(67, 89, 113, .06);
    border-color: var(--bs-table-border-color);
    color: var(--bs-table-color);
    margin-bottom: 1rem;
    vertical-align: middle;
    width: 100%;
    border-collapse: collapse;
}

.table>:not(caption)>*>* {
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    padding: 6px 10px;
    background-clip: padding-box;
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table-group-divider {
    border-top: 2px solid #d9dee3
}

.caption-top {
    caption-side: top
}


.table-bordered>:not(caption)>* {
    border-width: 1px 0
}

.table-bordered>:not(caption)>*>* {
    border-width: 0 1px
}

.table-borderless>:not(caption)>*>* {
    border-bottom-width: 0
}

.table-borderless>:not(:first-child) {
    border-top-width: 0
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
}

.table tr td {
    border-top: 1px solid var(--bs-table-border-color);
}

.table-bordered>:not(caption)>*>* {
    border: 1px solid var(--bs-table-border-color);
}


/* footer */

.site-footer {
    margin-top: 40px;
    padding-top: var(--gap20);
}

.footer-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #C8C8C8;
    padding: 38px;
}

.footer-wrapper {
    background-color: var(--primary);
    color: #fff;
    padding: var(--gap24);
}

.footer-bottom-content {
    --logo: calc(100px + (616 - 100) * ((100vw - 300px) / (1920 - 300)));
    width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: var(--logo) calc(100% - var(--logo) - var(--gap24));
    grid-gap: 44px;
    align-items: center;
}

.footer-content-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 57.92px;
}

.footer-content-desc {
    font-size: 16px;
    display: block;
    margin: var(--gap20) 0;
    padding: var(--gap20) 0;
}

.footer-content-action {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--gap24);
    white-space: nowrap;
}

.footer-content-action>* {
    padding: var(--gap12);
}

.footer-content-hotline {
    border: 2px solid #fff;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 32px auto;
    grid-column-gap: 10px;
    justify-content: center;
    align-items: center;
    line-height: 1;
    grid-row-gap: 5px;
}

.footer-content-hotline img {
    grid-row-start: span 2;
    width: 32px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-content-hotline small {
    font-size: 13px;
}

.footer-content-hotline span {
    font-size: 23px;
    font-weight: 700;
}


.footer-content-contact {
    border: 2px solid #fff;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: var(--primary);
    font-size: var(--gap18);
    font-weight: 700;
}

.footer-content-contact:hover {
    background-color: var(--primary-dk);
    border-color: var(--primary-dk);
    color: #fff;
}

.footer-menu-top {
    width: 96%;
    max-width: 1824px;
    margin: 0 auto;
    padding: var(--gap24) 0;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-menu-item+.footer-menu-item {
    margin-left: 40px;
    font-weight: 500;
}

.footer-menu-item-logo {
    margin-right: 30px;
    margin-bottom: 40px;
}

.footer-menu-item a {
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
}

.footer-menu-item a:hover {
    color: var(--primary);
}

.footer-menu-content p {
    margin: 0 0 6px;
    font-size: var(--gap12);
}

.footer-menu-content .header {
    /* 運営会社 */


    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    /* identical to box height */

    color: #828282;


}

.footer-menu-content span {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #000000;
    display: block;;
}

.footer-menu-content strong {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #000000;
    display: block;
}

.footer-copyright {
    padding: var(--gap10);
    color: var(--dark);
    /* © SWITCH株式会社 All Rights Reserved. */
    text-align: center;

    font-weight: 500;
    font-size: 12px;
    line-height: 17px;

    color: #707070;


}
