@charset "UTF-8";
/* ＝=＝=＝=＝=＝=＝=＝=＝=＝=＝
        費用のしくみSTART
＝=＝=＝=＝=＝=＝=＝=＝=＝=＝ */
#search .wave {
    background-image: url(../img/wave.jpg);
    background-repeat: repeat-y;
    background-size: contain;
}
/* ＝＝＝＝＝＝＝＝
　　　PC START
＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝見出し＝＝＝ */
#search .h2{
    margin: 100px 0 40px 0;
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
}
#search .h2line{
    display: block;
    width: 822px;
    margin: 0 auto 100px;
}
#search .title03{
    transform: rotate(0.05deg);
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 80px;
}
#search .bigmap{
    margin-bottom: 150px;
}

/* ＝＝＝住所検索＝＝＝ */
#search .checkwrap01 {
    background-color: #ffffff;
    border: 1px solid var(--main);
    border-radius: 10px;
    padding: 60px 70px 50px;
    margin-bottom: 150px;
}
.check_in{
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
}
#search .searchbtn01 {
    font-size: 1.1em;
    color: #ffffff;
    background-color: var(--main);
    border-radius: 10px;
    width: 160px;
    margin: 40px auto 0;
    padding: 16px;
    text-align: center;
}
/* ＝郵便番号＝ */
.form-control01{
    border-radius: 6px;
    padding: 10px 20px;
    width: 76px;
    font-size: 1.1em;
    color: #666;
  }
 /* ＝プルダウン＝ */
.cp_ipselect02 {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  .cp_ipselect02 select {
    width: 100%;
    padding: 10px 60px 10px 20px;
    color: #666666;
    font-size: 1.1em;
    cursor: pointer;
    text-overflow: ellipsis;/*テキストがオーバーしたら'...'で省略*/
    z-index: 1;
    /* 標準のスタイルを無効にする */
    border: none;
    appearance: none;
    outline: none;
    background: transparent;
  }
  /*プルダウンの三角と枠を設定*/
  .cp_ipselect02::before {
    position: absolute;
    right: 15px;
    content: '';
    width: 16px;
    height: 8px;
    background: #666666;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .cp_ipselect02:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 45px;
    content: '';
    border-left: 1px solid #bbbbbb;
  }
  /* ＝市区町村＝ */
  .form-control02{
    border-radius: 6px;
    width: 434px;
    padding: 10px 20px;
    font-size: 1.1em;
    color: #666;
  }


/* ＝＝＝チェックボックス＝＝＝ */
#search .checkwrap{
    background-color: #ffffff;
    border: 1px solid var(--main);
    border-radius: 10px;
    padding: 40px 70px;
    margin-bottom: 80px;
}
#search .check_item{
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 1行に3つの列を作成 */
    gap: 10px; /* チェックボックス間の余白を設定 */
}
#search .checkwrap label {
    display: block; /* ラベルをブロック要素として表示 */
    transform: rotate(0.05deg);
    font-size: 1.1em;
    margin-bottom: 10px;
}
#search .line_d{
    border-bottom: 4px dotted var(--main);
    margin: 20px 0 30px;
}
#search .all{
    margin: 20px 0 30px;
}
#search .etc_btn {
    display: block; /* ラベルをブロック要素として表示 */
    transform: rotate(0.05deg);
    font-size: 1.1em;
    margin: 5px;
}


/* チェックボックス03 */
#search input[type=checkbox] {
    display: none;
}
#search .checkbox03 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 0 5px 30px;
    position: relative;
    width: auto;
}
#search .checkbox03::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
#search .checkbox03::after {
    border-right: 6px solid var(--main);
    border-bottom: 3px solid var(--main);
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
#search input[type=checkbox]:checked + .checkbox03::before {
    border-color: #666;
}
#search input[type=checkbox]:checked + .checkbox03::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}

#search .searchbtn{
    font-size: 1.1em;
    color: #ffffff;
    background-color: var(--main);
    border-radius: 10px;
    width: 160px;
    margin: 80px auto 30px;
    padding: 16px;
    text-align: center;
}

/* =================================
【事前の準備】のタブレット・スマホ
==================================== */
@media screen and (max-width: 767px){
    #search .wave {
        padding-bottom: 80px;
    }
/* =========パンくずリスト========= */
.pankuzu{
    font-size: 1em;
    transform: rotate(0.05deg);
    margin-top: 20px;
}
/* =========見出し========= */
#search .h2line{display: none;}
#search .h2{
    margin: 60px 0 30px 0;
    font-size: 1.8em;
}
#search .h2line_sp{
    width: 70%;
    margin: 0 auto 80px;
}

#search .title03{
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
}
#search .bigmap{
    margin-bottom: 110px;
}
#search .title03 span{
    font-size: 0.8em;
}

/* =========住所検索========= */
#search .checkwrap01 {
    border-radius: 10px;
    padding: 40px 50px 50px;
    margin-bottom: 110px;
}
.check_in{
    display: block;
}
/* ==郵便番号== */
.form-control01{
    font-size: 1em;
  }
  .code{
    margin-bottom: 10px;
  }
/* ==プルダウン== */
.cp_ipselect02{
    width: 240px;
    margin-bottom: 10px;
  }
  .cp_ipselect02 select {
    font-size: 1em;
  }
  /* ==市区町村== */
  .form-control02{
    border-radius: 6px;
    width: 100%;
    padding: 10px 20px;
    font-size: 1em;
  }
  .address-level{
    width: 93%;
  }

/* =========チェックボックス========= */
#search .check_item{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr); /* 1行に3つの列を作成 */
    gap: 10px; /* チェックボックス間の余白を設定 */
}
#search .checkwrap label {
    font-size: 1em;
}
#search .checkwrap {
    padding: 20px 40px;
    margin-bottom: 20px;
}
#search .etc_btn {
    display: block; /* ラベルをブロック要素として表示 */
    transform: rotate(0.05deg);
    font-size: 1em;
    margin: 0 0 10px;
}
}/* 767END */


@media screen and (max-width: 550px){
/* ------見出し------ */
#search .h2{
    margin: 50px 0 30px 0;
    font-size: 1.3em;
}
#search .h2line_sp{
    width: 90%;
    margin: 0 auto 60px;
}
#search .title03{
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
}
#search .title03 span{
    font-size: 0.8em;
}
#search .checkwrap label {
    font-size: 0.9em;
}
#search .check_item{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr); /* 1行に3つの列を作成 */
    gap: 6px; /* チェックボックス間の余白を設定 */
}
#search .checkwrap {
    padding: 10px 20px;
    margin-bottom: 20px;
}
#search .searchbtn {
    margin: 50px auto 30px;
}
#search .bigmap {
    margin-bottom: 70px;
}
/* ------住所検索------ */
#search .checkwrap01 {
    border-radius: 10px;
    padding: 30px 20px 40px;
    margin-bottom: 70px;
}
#search .etc_btn {
    display: block; /* ラベルをブロック要素として表示 */
    transform: rotate(0.05deg);
    font-size: 0.9em;
    margin: 0 0 10px;
}
  /* --市区町村-- */
  .address-level{
    width: 86%;
  }

}/* 550END */