@charset "UTF-8";
@import "/include/css/common.sp.css";

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#contents #visual {
    background-image: url(../images/visual.jpg);
}

/* ---------------------------------------------------------
	CSS Document excerpt
#excerpt {
	margin: 0 15px 40px;
	text-align: left;
}
--------------------------------------------------------- */

/* ---------------------------------------------------------
	CSS Document search
--------------------------------------------------------- */
#search {
    margin-bottom: 30px;
    padding: 20px;
    background: #ebf8fa;
    position: relative;
}

#search::before {
    content: "";
    width: 100%;
    height: 5px;
    background: #01abbf;
    position: absolute;
    bottom: -5px;
    left: 0;
}

#search__check {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    width: 100%;
}

#search__check p {
    font-size: 14px;
}

#search__checkbox {
    margin-top: 5px;
    display: block;
    box-sizing: border-box;
}

#search__checkbox input {
    display: none;
}

#search__checkbox label {
    margin-top: 10px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 14px 6px 14px 35px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #b7b7b7;
    border-radius: 10px;
    background-color: #fff;
    font-size: 13px;
    cursor: pointer;
}

#search__checkbox label span {
    font-size: 10px;
}

#search__checkbox label:has(:checked) {
    border: 1px solid #01abbf;
    color: #01abbf;
}

#search__checkbox label::before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #b7b7b7;
    content: "";
    box-sizing: border-box;
}

#search__checkbox label.multiline {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#search__checkbox label .label-text {
    display: block;
    font-size: 13px;
    text-align: left;
}

#search__checkbox label .label-text span {
    font-size: 10px;
}

#search__checkbox label::after {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    box-sizing: border-box;
}

#search__checkbox label:has(:checked)::before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #01abbf;
    content: "";
    box-sizing: border-box;
}

#search__checkbox label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    box-sizing: border-box;
}

#search__title {
}

#search__select {
    display: block;
}

#search__select p {
    font-size: 14px;
}
#search__select-wrap {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    width: 100%;
}

#search__select-box {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
}

#search__select-box::after {
    position: absolute;
    right: 20px;
    width: 15px;
    height: 10px;
    background-color: #01abbf;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    pointer-events: none;
}

#search__select-box select {
    appearance: none;
    -webkit-appearance: none;
    min-width: 100%;
    height: 4em;
    padding: 0.8em calc(0.8em + 30px) 0.8em 0.8em;
    border: 1px solid #b7b7b7;
    border-radius: 10px;
    background-color: #fff;
    font-size: 1em;
    box-shadow: none;
    cursor: pointer;
}

#search__select-box select:focus {
    outline: none;
}

#search__button {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin: 0 auto;
}

#search__button-text {
    text-align: right;
    font-size: 14px;
}
#search__button span {
    color: red;
    font-size: 16px;
}
#searchButton {
    display: inline-block;
    padding: 15px 80px;
    background: #01abbf;
    color: #fff;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

#searchButton:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}

#clearButton {
    display: inline-block;
    padding: 15px 30px;
    background: #01abbf;
    color: #fff;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

#clearButton:disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}

#search__down {
    margin-top: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;
    gap: 0; /* 間隔を調整 */
}

#search__down-chevron {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-bottom: 8px solid #ccc;
    border-right: 8px solid #ccc;
    transform: rotate(45deg); /* 45度傾けて下向きに */
}

#search__down-chevron02 {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-bottom: 8px solid #b7b7b7;
    border-right: 8px solid #b7b7b7;
    transform: rotate(45deg); /* 45度傾けて下向きに */
}
#searchAllButton {
    display: block;
    padding: 15px 80px;
    background: #01abbf;
    color: #fff;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    text-decoration: none;
}

/* ---------------------------------------------------------
	CSS Document about
--------------------------------------------------------- */

#about {
    margin: 0 15px 40px;
    text-align: left;
}

#about h4 {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
    padding: 0 10px;
    border-radius: 3px;
    background: #929292;
    font-weight: normal;
    font-size: 15px;
    color: #fff;
}

#about h4.url {
    background: #f54a72;
}

#about h5 {
    font-weight: normal;
    font-size: 18px;
    color: #01abbf;
}

#about .section {
    margin-bottom: 40px;
}

#about ol:not(:last-child),
#about ul:not(:last-child),
#about p:not(:last-child) {
    margin-bottom: 15px;
}

#about em {
    display: inline-block;
    vertical-align: top;
    font-size: 80%;
}

#about ul li {
    margin-left: 20px;
    list-style: disc;
}

#about ol li {
    margin-left: 20px;
    list-style: decimal;
}

#about p.right {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #b7b7b7;
}

#about table {
    width: 100%;
}

#about th {
    padding: 5px 0;
    border: solid 1px #b7b7b7;
    background: #f3f3f3;
    text-align: center;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
}

#about td {
    padding: 5px;
    border: solid 1px #b7b7b7;
    text-align: center;
    font-weight: normal;
    line-height: 1.3;
}

#about .w40 {
    width: 40%;
}
