@charset "utf-8";
/* Reset CSS */
* {
    box-sizing: border-box;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
}
html {
    font-size: 14px;
    scroll-behavior: smooth;
}
body {
    color: #111827;
    margin: 0;
    padding: 0;
    line-height: 32px;
}
body main {
    position: relative;
}
body.overlay main:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000003d;
}
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: #007AFF;
    text-decoration: none;
    transition: .3s all ease-out;
}
button,
a img,
a svg,
.copy,
.copy svg {
    transition: .3s all ease-out;
}
button,
.copy {
    cursor: pointer;
}
a:hover,
button:hover,
a:hover img,
a:hover svg,
.copy:hover,
.copy:hover svg {
    opacity: .6;
}
p {
    margin: 0;
    padding: 0;
}
h1,h2,h3 {
    margin: 0;
    padding: 0;
    font-weight: 900;
}
img {
    max-width: 100%;
    height: auto;
}
/* フォーム関連 CSS */
.form-item > span {
    font-size: 14px;
}
.form-item span.required {
    background: #007A39;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 2px;
}
.form-item span.read-only-label {
    background: #FF0000;
    color: #FFF;
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 3px;
    
}
.form-item input,
.form-item button,
.page-buttons button,
.form-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-item input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 4px;
    vertical-align: -5px;
    cursor: pointer;
}
.form-item input[type="checkbox"]:checked {
    background: #000;
}
.form-item input[type="checkbox"]:disabled {
    opacity: .3;
}
.form-item input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
}
.form-checkbox {
    display: flex;
    gap: 8px;
}
.form-checkbox label {
    cursor: pointer;
}
.form-text label {
    display: block;
    font-size: 14px;
}
.form-text input {
    width: 100%;
    padding: 10px 12px;
    margin-top: 8px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}
.form-text input::placeholder {
    color: #64748B;
}
.form-text input[type="date" i] {
    opacity: .6;
}
.form-text input[type="date" i]::-webkit-calendar-picker-indicator  {
    cursor: pointer;
}
.form-radio fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 48px;
    border: none;
    margin-top: 8px;
}
.form-radio fieldset label {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    font-size: 14px;
}
.form-radio fieldset label::before,
.form-radio fieldset label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}
.form-radio fieldset label::before {
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: solid #0F172A 1px;
}
.form-radio fieldset label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 8.5px;
    transform: translate(-50%, -50%);
    width: 17px;
    height: 17px;
    background-color: #0F172A;
    animation: anim-radio .3s linear;
}
@keyframes anim-radio {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #f2f2f233;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}
.form-item-disabled button {
    cursor: pointer;
    background: lightgray;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 6px;
    border: none;
}
.form-item-disabled button.submit {
    padding: 12px 32px;
}
.form-item-disabled button:hover {
    opacity: 1;
}
.form-item button {
    cursor: pointer;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 6px;
    border: none;
}
.form-item button.disabled {
    opacity: .6;
    cursor: not-allowed;
}
.form-item .address-search {
    gap: 10px
}
.form-item .address-search button {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-item button.submit {
    padding: 12px 32px;
}
.form-select label {
    position: relative;
    margin-top: 8px;
}

.form-select label::before,
.form-select label::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.form-select label::before {
    right: 0;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 3px 3px 0;
    content: '';
}

.form-select label:after {
    position: absolute;
    top: 50%;
    right: 1.4em;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #020617;
    border-right: 1px solid #020617;
    content: '';
}

.form-select label select {
    width: 100%;
    height: 2.8em;
    padding: .4em 3.6em .4em .8em;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    color: #64748B;
    font-size: 14px;
    cursor: pointer;
}
.form-select label select:focus {
    outline: 1px solid #2589d0;
}
/* Common Parts */
.pointer {
    cursor: pointer;
}

.inner {
    max-width: 1280px;
    margin: 0 auto;
}
/* 幅/高さパーツ */
.w-100per {
    width: 100%;
}
.w-90per {
    width: 90%;
}
.w-80per {
    width: 80%;
}
.w-75per {
    width: 75%;
}
.w-70per {
    width: 70%;
}
.w-60per {
    width: 60%;
}
.w-50per {
    width: 50%;
}
.w-40per {
    width: 40%;
}
.w-30per {
    width: 30%;
}
.w-25per {
    width: 25%;
}
.w-20per {
    width: 20%;
}
.w-15per {
    width: 15%;
}
.w-10per {
    width: 10%;
}
.w-9per {
    width: 9%;
}
.w-8per {
    width: 8%;
}
.w-7per {
    width: 7%;
}
.w-6per {
    width: 6%;
}
.w-5per {
    width: 5%;
}
.w-4per {
    width: 4%;
}
.w-3per {
    width: 3%;
}
.w-2per {
    width: 2%;
}
.w-1per {
    width: 1%;
}
.mw-1280 {
    max-width: 1280px;
}
.mw-1024 {
    max-width: 1024px;
}
.mw-768 {
    max-width: 768px;
}
.mw-402 {
    max-width: 402px;
}
.mw-340 {
    max-width: 340px;
}
.w-1280 {
    width: 1280px;
}
.w-1024 {
    width: 1024px;
}
.w-768 {
    width: 768px;
}
.w-402 {
    width: 402px;
}
.w-340 {
    width: 340px;
}
.w-auto {
    width: auto;
}
.h-60 {
    height: 60px;
}
.h-auto {
    height: auto;
}

.word-break {
    word-break: break-all;
}

/* 余白関連パーツ */
.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-56 {
    margin-bottom: 56px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mb-68 {
    margin-bottom: 68px;
}
.ml-auto {
    margin-left: auto;
}
.ml-16 {
    margin-left: 16px;
}
.mr-auto {
    margin-right: auto;
}

.pb-8 {
    padding-bottom: 8px;
}
.pb-16 {
    padding-bottom: 16px;
}
.pb-24 {
    padding-bottom: 24px;
}
.pb-32 {
    padding-bottom: 32px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-56 {
    padding-bottom: 56px;
}
.pb-65 {
    padding-bottom: 65px;
}
.pb-68 {
    padding-bottom: 68px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-32 {
    padding-top: 32px;
}

/* PC / スマホ 表示切替コード */
.pc-only {
    display: block!important;
}
.sp-only {
    display: none!important;
}

/* Font Parts */
.t-left {
    text-align: left;
}
.t-center {
    text-align: center;
}
.t-right {
    text-align: right;
}
.t-bold {
    font-weight: 900;
}
.t-medium {
    font-weight: 600;
}
.t-regular {
    font-weight: 400;
}
.t-size30 {
    font-size: 30px;
}
.t-size20 {
    font-size: 20px;
}
.t-size18 {
    font-size: 18px;
}
.t-size16 {
    font-size: 16px;
}
.t-size14 {
    font-size: 14px;
}
.t-size12 {
    font-size: 12px;
}

/* Color Parts */
.bg-white {
    background: #fff!important;
}
.bg-black {
    background: #000!important;
}
.bg-gray {
    background: #F8FAFC!important;
}
.bg-darkgray {
    background: #c0c0c0!important;
}
.bg-green {
    background: #007A39!important;
}
.bg-skyblue {
    background: #007AFF!important;
}
.bg-red {
    background: #ff464e!important;
}
.t-white {
    color: #fff;
}
.t-gray {
    color: #F8FAFC;
}
.t-dark-gray {
    color: #c0c0c0;
}
.t-green {
    color: #007A39;
}
.t-clear-green {
    color: #80BC9C;
}
.t-gray {
    color: #6B7280;
}
.t-skyblue {
    color: #007AFF;
}
.t-red {
    color: #ff464e;
}

/* Border Parts */
.hr-t {
    border-top: solid #ddd 1px;
}
.hr-b {
    border-bottom: solid #ddd 1px;
}
.hr-l {
    border-left: solid #ddd 1px;
}
.hr-r {
    border-right: solid #ddd 1px;
}
.hr-all {
    border: solid #ddd 1px;
}

/* display Parts */
.grid {
    display: grid;
}
.grid2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid5 {
    grid-template-columns: repeat(5, 1fr);
}
.block {
    display: block;
}
.flex,
.flex-res {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.sticky {
    position: sticky;
    top: 0;
    z-index: 1;
}
.a-start {
    align-items: start;
}
.a-center {
    align-items: center;
}
.a-end {
    align-items: end;
}
.j-start {
    justify-content: start;
}
.j-center {
    justify-content: center;
}
.j-end {
    justify-content: end;
}
.j-space-between {
    justify-content: space-between;
}
.gap4 {
    gap: 4px;
}
.gap8 {
    gap: 8px;
}
.gap10 {
    gap: 10px;
}
.gap16 {
    gap: 16px;
}
.gap20 {
    gap: 20px;
}
.gap30 {
    gap: 30px;
}
.gap100 {
    gap: 100px;
}
.gap200 {
    gap: 200px;
}

@media (max-width: 768px) {
    /****** PC と スマホ 表示変更用コード ******/
    .inner {
        max-width: 90%;
    }
    /* PC / スマホ 表示切替コード */
    .pc-only {
        display: none!important;
    }
    .sp-only {
        display: block!important;
    }
    .flex-res {
        display: block;
    }

    /* 幅/高さパーツ */
    .sp-w-100per {
        width: 100%;
    }
    .sp-w-75per {
        width: 75%;
    }
    .sp-w-50per {
        width: 50%;
    }
    .sp-w-25per {
        width: 25%;
    }
    .sp-w-15per {
        width: 15%;
    }
    .sp-w-10per {
        width: 10%;
    }
    .sp-w-9per {
        width: 9%;
    }
    .sp-w-8per {
        width: 8%;
    }
    .sp-w-7per {
        width: 7%;
    }
    .sp-w-6per {
        width: 6%;
    }
    .sp-w-5per {
        width: 5%;
    }
    .sp-w-4per {
        width: 4%;
    }
    .sp-w-3per {
        width: 3%;
    }
    .sp-w-2per {
        width: 2%;
    }
    .sp-w-1per {
        width: 1%;
    }
    .sp-mw-768 {
        max-width: 768px;
    }
    .sp-mw-402 {
        max-width: 402px;
    }
    .sp-mw-340 {
        max-width: 340px;
    }
    .sp-w-768 {
        width: 768px;
    }
    .sp-w-402 {
        width: 402px;
    }
    .sp-w-340 {
        width: 340px;
    }
    .sp-w-auto {
        width: auto;
    }
    .sp-h-60 {
        height: 60px;
    }
    .sp-h-auto {
        height: auto;
    }

    /* 余白関連パーツ */
    .sp-mb-8 {
        margin-bottom: 8px;
    }
    .sp-mb-16 {
        margin-bottom: 16px;
    }
    .sp-mb-20 {
        margin-bottom: 20px;
    }
    .sp-mb-24 {
        margin-bottom: 24px;
    }
    .sp-mb-32 {
        margin-bottom: 32px;
    }
    .sp-mb-40 {
        margin-bottom: 40px;
    }
    .sp-mb-56 {
        margin-bottom: 56px;
    }
    .sp-mb-65 {
        margin-bottom: 65px;
    }
    .sp-mb-68 {
        margin-bottom: 68px;
    }
    .sp-ml-auto {
        margin-left: auto;
    }
    .sp-mr-auto {
        margin-right: auto;
    }

    .sp-pb-8 {
        padding-bottom: 8px;
    }
    .sp-pb-16 {
        padding-bottom: 16px;
    }
    .sp-pb-24 {
        padding-bottom: 24px;
    }
    .sp-pb-32 {
        padding-bottom: 32px;
    }
    .sp-pb-40 {
        padding-bottom: 40px;
    }
    .sp-pb-56 {
        padding-bottom: 56px;
    }
    .sp-pb-65 {
        padding-bottom: 65px;
    }
    .sp-pb-68 {
        padding-bottom: 68px;
    }
    .sp-pb-100 {
        padding-bottom: 100px;
    }
    .sp-pt-32 {
        padding-top: 32px;
    }

    /* Font Parts */
    .sp-t-left {
        text-align: left;
    }
    .sp-t-center {
        text-align: center;
    }
    .sp-t-right {
        text-align: right;
    }
    .sp-t-bold {
        font-weight: 900;
    }
    .sp-t-medium {
        font-weight: 600;
    }
    .sp-t-regular {
        font-weight: 400;
    }
    .sp-t-size30 {
        font-size: 30px;
    }
    .sp-t-size20 {
        font-size: 20px;
    }
    .sp-t-size18 {
        font-size: 18px;
    }
    .sp-t-size16 {
        font-size: 16px;
    }
    .sp-t-size14 {
        font-size: 14px;
    }

    /* display Parts */
    .sp-flex-column {
        flex-direction: column;
    }
    .sp-flex-wrap {
        flex-wrap: wrap;
    }
    .sp-gap4 {
        gap: 4px;
    }
    .sp-gap8 {
        gap: 8px;
    }
    .sp-gap10 {
        gap: 10px;
    }
    .sp-gap16 {
        gap: 16px;
    }
    .sp-gap20 {
        gap: 20px;
    }
    .sp-gap30 {
        gap: 30px;
    }
    .sp-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-grid3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .sp-grid4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .sp-grid5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* SDD ADD CSS */
.form-item-disabled button {
    cursor: pointer;
    background: lightgray;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 6px;
    border: none;
}
.form-item-disabled button.submit {
    padding: 12px 32px;
}
.form-item-disabled button:hover {
    opacity: 1;
}

.text-tooltip {
    border-bottom: dotted 1px #333;
    position: relative;
}

.tooltip-content {
    opacity: 0;
    visibility: hidden;
    white-space: normal;
    width: 200px;
    border-radius: 5px;
    background-color: #555;
    color: #fff;
    padding: 5px 10px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .6s ease-in-out;
    z-index: 99;
}
.tooltip-content:before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% - 9px);
    border: 9px solid transparent;
    border-top: 9px solid #555;
}

.text-tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

input[type="checkbox"]:disabled {
    background-color: lightgray;
    border-color: gray;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* タブレット用 (必要に応じて) */
@media (min-width: 769px) and (max-width: 1100px) {
}

/* Sample Page */
@media (max-width: 768px) {
}
/* タブレット用 (必要に応じて) */
@media (min-width: 769px) and (max-width: 1100px) {
}

.border {
    border: solid 1px #ddd;
}
.no-border {
    border: none;
}
.b-top {
    border-top: solid 1px #ddd;
}
.b-bottom {
    border-bottom: solid 1px #ddd;
}
.b-left {
    border-left: solid 1px #ddd;
}
.b-right {
    border-right: solid 1px #ddd;
}
.b-red {
    border-color: #ff464e;
}

.lh-8 {
    line-height: 8px;
}
.lh-16 {
    line-height: 16px;
}
.lh-24 {
    line-height: 24px;
}
.lh-32 {
    line-height: 32px;
}
.lh-40 {
    line-height: 40px;
}
.lh-56 {
    line-height: 56px;
}
