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

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

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

/* ---------------------------------------------------------
	CSS Document excerpt
#excerpt {
	margin-bottom: 40px;
	text-align: left;
	font-size: 18px;
	font-size: 110%;
}
--------------------------------------------------------- */

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

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

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

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

#search__checkbox {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    box-sizing: border-box;
}

#search__checkbox input {
    display: none;
}

#search__checkbox label {
    display: flex;
    align-items: center;
    position: relative;
    padding: 17px 10px 17px 44px;
    width: calc((100% - 36px) / 4);
    box-sizing: border-box;
    border: 1px solid #b7b7b7;
    border-radius: 20px;
    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: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #b7b7b7;
    content: "";
    box-sizing: border-box;
}

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

#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: 24px;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 8px;
    height: 16px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    content: "";
    box-sizing: border-box;
}

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

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

#search__title {
}

#search__select {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

#search__select p {
    font-size: 14px;
}
#search__select-wrap {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    width: calc(50% - 10px);
}

#search__select-box {
    margin-top: 20px;
    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: 20px;
    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: 20px;
    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: 20px 100px;
    background: #01abbf;
    color: #fff;
    border-radius: 40px;
    border: none;
    cursor: pointer;
}

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

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

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

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

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

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

#searchAllButton {
    display: block;
    padding: 20px 100px;
    background: #01abbf;
    color: #fff;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 18px;
    text-decoration: none;
}
#searchAllButton:hover {
    display: block;
    padding: 20px 100px;
    background: #419ff7;
    color: #fff;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 18px;
    text-decoration: none;
}

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

#about {
    margin-bottom: 70px;
    text-align: left;
}

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

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

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

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

#about ol,
#about ul,
#about p {
    margin-bottom: 20px;
}

#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 p.logo {
    width: 300px;
}

#about table {
    width: 100%;
}

#about th {
    border: solid 1px #b7b7b7;
    background: #f3f3f3;
    text-align: center;
    font-weight: normal;
    line-height: 1.3;
}

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

#about a.tel {
    background: #fff;
    text-decoration: none;
    color: #4c4948;
}

body.black #about a.tel {
    background: #000;
    color: #fff;
}
