@charset "utf-8";
 
/*-----------------------------------------------
    formパーツ
-----------------------------------------------*/
/* セレクトボックス */
select{
    -webkit-appearance: none;
    appearance: none;
    border: solid 0.1rem var(--borderColorLightGrey);
    background: url(../img/common/selectArrow.png) #fff right 1.4rem center / 0.6rem no-repeat;
    border-radius: 0.3rem;
    min-width: 19rem;
    height: 4.6rem;
    padding: 0 1rem;
    cursor: pointer;
    font-size: var(--pcFontSize15);
    letter-spacing: var(--pcLetterSpacing15_50);
}
@media only screen and (max-width:1215px){
    select{
        background-position: right 0.5rem center;
    }
}

/* テキストボックス */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"]{
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

/* ラジオボタン */
.labelRadio input[type="radio"],
.labelRadio .txtRadio::before{
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
}
.labelRadio input[type="radio"]{
    visibility: hidden;
    position: absolute;
    margin: 0;
}
.labelRadio{
    position: relative;
    font-size: var(--pcFontSize15);
    display: inline-block;
    cursor: pointer;
    min-height: 2.2rem;
}
.labelRadio .txtRadio{
    display: inline-flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 3rem;
    padding-top: 0.4rem;
    position: relative;
}
.labelRadio .txtRadio::before{
    content: "";
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #fff;
    margin-right: 0.8rem;
    border: 1px solid #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.labelRadio input[type="radio"]:checked + .txtRadio::after{
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 2;
}

/* チェックボックス */
.labelCheck input[type="checkbox"],
.labelCheck .txtCheck::before{
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
}
.labelCheck input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
    margin: 0;
}
.labelCheck{
    position: relative;
    font-size: var(--pcFontSize15);
    letter-spacing: var(--pcLetterSpacing15_50);
    line-height: var(--pcLineHeight15_23);
    display: inline-block;
    cursor: pointer;
    min-height: 2.2rem;
}
.labelCheck .txtCheck{
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 3rem;
    padding-top: 0.2rem;
    position: relative;
}
.labelCheck .txtCheck::before{
    content: "";
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    background: #fff;
    margin-right: 0.8rem;
    border: 0.1rem solid var(--textColor);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.labelCheck.isNoTxt .txtCheck::before{
    margin-right: 0;
}

.labelCheck input[type="checkbox"]:checked + .txtCheck::before{
    border: none;
    background: url(../img/common/iconCheckbox.png) var(--greenColor) center center / 1.2rem auto no-repeat;
}
.labelCheck.isYellow input[type="checkbox"]:checked + .txtCheck::before{
    border: 0.1rem solid var(--textColor);
    background: url(../img/common/iconCheckboxBlack.png) var(--yellowColor) center center / 1.2rem auto no-repeat;
}

/* secCheckList */
.secCheckList .cityList {
    margin: 2rem 0 1rem;
}

.secCheckList .cityItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:  var(--bgColor);
    padding: 2rem 3rem;
    position: relative;
    cursor: pointer;
}

.secCheckList .cityItem::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.5rem solid transparent;
    border-left: 0.5rem solid transparent;
    border-bottom: 1rem solid var(--textColor);
    border-top: 0;
    position: absolute;
    top: 2.8rem;
    right: 3rem;
}

.secCheckList .cityItem::after {
    content: "";
    background-image: repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.secCheckList .cityItem.isClose::before {
    transform: scale(1, -1);
}

.secCheckList .cityLabel {
    font-size: var(--pcFontSize15);
    cursor: pointer;
}

.secCheckList .areaList {
    display: none;
}

.secCheckList .areaItemList {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 1rem;
}

.secCheckList .areaItem {
    display: flex;
    align-items: center;
    padding: 0.9rem 2rem;
    margin: 2rem 0 0.6rem;
    width: calc((100% - 2px) / 3);
    border-right: 1px solid #dad9d6;

    flex-direction: column;
    align-items: flex-start;
}

.secCheckList .areaItem:nth-child(3n) {
    border-right: none;
}

.secCheckList .areaCount {
    margin-left: 1.5rem;
}

.secCheckList .areaName {
    max-width: 56%;
    line-height: 1.3;
}

.secCheckList .cityCount {
    line-height: 1.3;
    padding-left: 0.5rem;
}


@media only screen and (max-width:1215px) {
    .secCheckList .cityItem {
        padding: 1.2rem;
        position: relative;
        margin-bottom: 1rem;
    }
    .secCheckList .cityList {
        margin: 2rem 0 0 ;
    }
    .secCheckList .cityList:first-child{
        margin: 0 ;
    }
    .secCheckList .cityItem::before {
        border-right: 0.3rem solid transparent;
        border-left: 0.3rem solid transparent;
        border-bottom: 0.6rem solid var(--textColor);
        top: 2rem;
        right: 1.5rem;
    }
    .labelCheck {
        font-size: var(--spFontSize13);
        letter-spacing: 0;
    }
    .labelCheck .txtCheck::before {
        content: "";
        width: 1.8rem;
        height: 1.8rem;
        border-radius: 0.3rem;
        background: #fff;
        margin-right: 0.8rem;
    }
    .secCheckList .areaItemList {
        display: block;
        padding-left: 0;
    }
    .secCheckList .areaItem {
        padding: 0;
        margin: 0.6rem 0 0.6rem;
        width: 100%;
        border-bottom: 1px solid #dad9d6;
        border-right: none;
        align-items: flex-start;
    }
    .secCheckList .areaItem .lineLabel {
        padding: 0.5rem 1.5rem;
    }
}

/* 沿線ページのCSSここから */
.secCheckList .areaItem .stationList {
    display: none;
    background: #f8f8f8;
    padding: 2rem;
    width: 40rem;
}
.secCheckList .areaItem .stationItemList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media only screen and (max-width:1215px) {
    .secCheckList .areaItem .stationList {
        padding: 1.2rem;
        width: 100%;
    }
    .secCheckList .areaItem .lineLabel {
        padding: 0.5rem 1.2rem;
        width: 100%;
    }
    .secCheckList .areaItem .stationItemList {
        gap: 0.5rem;
    }
}
/* ここまで */

/* secSearchConditions */
.secSearchConditions {
    margin: 20px auto;
    position: relative;
    margin-top: 3rem;
    padding-bottom: 6rem;
}

.secSearchConditions::after {
    content: "";
    background-image: repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.secSearchConditions .txtNum {
    font-size: var(--pcFontSize20);
    font-weight: bold;
    letter-spacing: var(--pcLetterSpacing20_50);
    padding-top: 1rem;
}

.secSearchConditions .numBig {
    font-size: var(--pcFontSize36);
    vertical-align: -0.1rem;
    margin-right: 0.3rem
}

.secSearchConditions .boxBtn {
    position: absolute;
    top: 0;
    right: 3rem;
    display: flex;
    gap: 0 1rem;
    align-items: center;
}

.secSearchConditions .txtMember {
    font-size: var(--pcFontSize13);
}

.secSearchConditions .boxTit {
    display: flex;
    padding: 0 3rem;
}

.secSearchConditions .imgIcon {
    margin: 1rem 1rem 3rem 0;
}

.secSearchConditions .conditionItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:  var(--bgColor);
    padding: 2rem 3rem;
    position: relative;
}

.secSearchConditions .conditionItem::after {
    content: "";
    background-image: repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 4px);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.secSearchConditions .conditionTit {
    font-size: var(--pcFontSize15);
    font-weight: bold;
}

.secSearchConditions .secConditionkList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.secSearchConditions .conditionList {
    width: 100%;
}

.secSearchConditions .conditionList.harf {
    width: calc((100% - 2rem) / 2);
}

/* selectボックス */
.secSearchConditions .dropdownWrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2rem 3rem 1rem;
}

.secSearchConditions .w200 {
    width: 200px;
}

/* チェックボックス */
.secSearchConditions .checkItemList {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 1rem;
}

.secSearchConditions .checkItem {
    display: flex;
    align-items: center;
    padding: 0.9rem 2rem;
    margin: 2rem 0 0.6rem;
    width: calc((100% - 2px) / 3);
    border-right: 1px solid #dad9d6;
}

.secSearchConditions .checkItem:nth-child(3n),
.secSearchConditions .checkItem:last-child {
    border-right: none;
}

.secSearchConditions .checkItem:nth-child(n+4) {
    margin-top: 0;
}
/* ラジオの中にチェックボックスが入っているとき */
.secSearchConditions .innerRadio{
    margin-top: 0;
    width: calc((100% - 3px) / 4);
}

/* 4分割の時　クラスにisFour付ける */
.secSearchConditions .isFour .checkItem {
    width: calc((100% - 3px) / 4);
}
.secSearchConditions .isFour .checkItem:nth-child(3n) {
    border-right: 1px solid #dad9d6;
}
.secSearchConditions .isFour .checkItem:nth-child(n+4) {
    margin: 2rem 0 0.6rem;
}
.secSearchConditions .isFour .checkItem:nth-child(n+5) {
    margin-top: 0;
}

.secSearchConditions .isFour .checkItem:nth-child(4n),
.secSearchConditions .isFour .checkItem:last-child {
    border-right: none;
}

/* ラジオボックス */
.secSearchConditions .radioItemList {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 1rem;
}

.secSearchConditions .radioItem {
    display: flex;
    align-items: center;
    padding: 0.9rem 2rem;
    margin: 2rem 0 0.6rem;
    width: calc((100% - 3px) / 4);
    border-right: 1px solid #dad9d6;
}

.secSearchConditions .radioItem:nth-child(n+5) {
    margin-top: 0;
}

.secSearchConditions .radioItem:nth-child(4n),
.secSearchConditions .radioItem:last-child {
    border-right: none;
}

/* 3分割の時　クラスにisThree付ける */
.secSearchConditions .isThree .radioItem {
    width: calc((100% - 2px) / 3);
}

.secSearchConditions .isThree .radioItem:nth-child(3n),
.secSearchConditions .isThree .radioItem:last-child {
    border-right: none;
}

/* 検索ボタン */
.secSearchConditions .boxResult {
    width: 480px;
    margin: 3rem auto 0;
}

.secSearchConditions .isSearchFixedResult {
    padding-left: 4rem;
}

.secSearchConditions .isSearchFixedResult::before {
    left: calc(50% - 6rem);
    top: -0.4rem;
}

@media only screen and (max-width:1215px) {
    .secSearchConditions {
        margin: 20px auto;
        margin-top: 3rem;
        padding-bottom: 3rem;
    }
    .secSearchConditions .txtNum {
        font-size: var(--spFontSize16);
        letter-spacing: 0;
        padding-top: 0;
    }
    .secSearchConditions .boxTit {
        padding: 0;
        align-items: flex-end;
        margin: 2rem 0;
    }
    .secSearchConditions .imgIcon {
        margin: 0 0.8rem 0 0;
        width: 15px;
    }
    .secSearchConditions .conditionTit {
        font-size: var(--spFontSize13);
    }
    .secSearchConditions .conditionItem {
        padding: 1.5rem;
    }
    .secSearchConditions .dropdownWrapper {
        gap: 0.6rem;
        padding: 1.5rem;
    }
    select {
        -webkit-appearance: none;
        appearance: none;      
        border-radius: 0.3rem;
        min-width: auto;
        height: 4rem;
        padding: 0 0.9rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
    }
    .secSearchConditions .w200 {
        width: 46.035%;
    }
    .secSearchConditions .conditionList.harf {
        width: 100%;
    }
    .secSearchConditions .secConditionkList {
        gap: 0rem;
    }
    .secSearchConditions .conditionItem::after {
        background-image: 
        repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px), 
        repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px), 
        repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px), 
        repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px);
    }
    .secSearchConditions .checkItemList {
        padding-left: 0;
        gap: 4.34%;
        padding: 1rem 0 1.5rem;
    }
    .secSearchConditions .checkItem {
        padding: 0.9rem 0 0.9rem 1.5rem;
        margin: 0;
        width: 47.83%;
        border-bottom: 1px solid #dad9d6;
        border-right: none;
    }
    .labelCheck input[type="checkbox"], .labelCheck .txtCheck::before {
        width: 1.8rem;
        height: 1.8rem;
        cursor: pointer;
    }
    .labelRadio {
        font-size: var(--spFontSize13);
    }
    .secSearchConditions .radioItemList {
        padding-left: 0;
        gap: 4.34%;
        padding: 1rem 0 1.5rem;
    }
    .secSearchConditions .radioItem {
        padding: 0.9rem 1.5rem;
        margin: 0;
        width: 47.83%;
        border-bottom: 1px solid #dad9d6;
        border-right: none;
    }
    .labelRadio input[type="radio"], .labelRadio .txtRadio::before {
        width: 1.8rem;
        height: 1.8rem;
        cursor: pointer;
    }
    .secSearchConditions .isFour .checkItem:nth-child(3n) {
        border-right: none;
    }
    .secSearchConditions .isFour .checkItem:nth-child(n+4) {
        margin: 0;
    }
    .secSearchConditions .checkItem:only-child{
        width: 100%;
    }
    .secSearchConditions .isThree .radioItem {
        width: 47.83%;
    }
    .secSearchConditions .isFour .checkItem {
        width: 47.83%;
    }
    .secSearchConditions .ws100 {
        width: 100% !important; 
    }
    .labelCheck .txtCheck .itemName{
        margin-top: 0.4rem;
    }
    .secSearchConditions .boxResult {
        width: 88.41%;
        margin: 2rem auto 0;
    }
    .secSearchConditions::after {
        background-image: 
        repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px), 
        repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px), 
        repeating-linear-gradient(90deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px), 
        repeating-linear-gradient(180deg, var(--borderColorGrey), var(--borderColorGrey) 1px, transparent 1px, transparent 2px);
    }
}