@charset "utf-8";

/**
 *
 *  店舗用地募集ページcss
 *
 */

/* --------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
--------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------
   sec-wrap
--------------------------------------------------------------------------- */

.kv {
  margin-bottom: 80px;
}

.lead_txt {
  margin: 20px 0 0;
}

.sec .tbl {
  line-height: 1.6;
}

.sec .tbl th,
.sec .tbl td {
  vertical-align: top;
}

/* @SP */
@media all and (max-width: 767px) {
  .kv {
    margin-bottom: 40px;
  }

  .sec-wrap {
    margin-bottom: 25px;
  }

  .sec .tbl {
    font-size: 9px;
  }

  .sec .tbl th,
  .sec .tbl td {
    vertical-align: middle;
  }
}

/* --------------------------------------------------------------------------
   sec01
--------------------------------------------------------------------------- */

/*  tbl
--------------------------------------------------------------------------- */
.sec01 .tbl td {
  padding: 14px 27px;
}

.sec01 .tbl .w01 {
  width: 303px;
}

.sec01 .tbl .w02 {
  width: 486px;
}

/* @SP */
@media all and (max-width: 767px) {
  .sec01 .tbl td {
    padding: 5px 10px;
  }

  .sec01 .tbl .w01 {
    width: 34%;
  }

  .sec01 .tbl .w02 {
    width: 66%;
  }
}

/*  sec-store-list
--------------------------------------------------------------------------- */
.sec-store-list {
  position: relative;
  font-size: 12px;
  color: #333;
}

.sec-store-list .img-pc {
  display: block;
}

.sec-store-list .img-sp {
  display: none;
}

.sec-store-list .link-txt {
  position: absolute;
  top: 481px;
  right: 51px;
  font-size: 11px;
}

.sec-store-list .link-txt a {
  color: #333;
}

.sec-store-list .list-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}

.sec-store-list .list-txt .list-txt-01 {
  margin-right: 35px;
}

.sec-store-list .list-txt .ico-red {
  font-size: 14px;
  color: #b81c22;
}

/* @SP */
@media all and (max-width: 767px) {
  @keyframes tabAnim {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .sec-store-list {
    position: relative;
    font-size: 12px;
    color: #333;
  }

  .sec-store-list .img-pc {
    display: none;
  }

  .sec-store-list .img-sp {
    display: block;
  }

  .sec-store-list .list-txt {
    display: block;
    max-width: 375px;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  .sec-store-list .list-txt .list-txt-01 {
    margin-right: 0;
  }

  .sec-store-list .list-txt .ico-red {
    font-size: 13px;
  }

  .tab_wrap {
    width: 100%;
    margin: 0 auto;
  }

  input[type='radio'] {
    display: none;
  }

  .tab_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 0;
    border-bottom: 3px solid #a9151a;
  }

  .tab_area label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    padding: 8px 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background: #b5b5b5;
    border-right: 1px solid #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }

  .tab_area label:last-child {
    border-right: none;
  }

  .panel_area {
    position: relative;
    background: #fff;
  }

  .panel_area .btn_detail {
    position: absolute;
    right: 20px;
    bottom: 12px;
    width: 68%;
  }

  .tab_panel {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    width: 100%;
    padding: 15px 5px 5px;
    background: #eeede9;
  }

  .tab_panel p {
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
  }

  #tab1:checked ~ .tab_area .tab1_label {
    /* color: #fff; */
    /* background: #a9151a; */

    font-weight: 700;
    color: #b81c22 !important;
    pointer-events: none;
    border-color: #b81c22;
  }

  #tab1:checked ~ .panel_area #panel1 {
    display: block;
    -ms-animation: tabAnim ease 0.6s forwards;
    animation: tabAnim ease 0.6s forwards;
  }

  #tab2:checked ~ .tab_area .tab2_label {
    /* color: #fff; */
    /* background: #a9151a; */

    font-weight: 700;
    color: #b81c22 !important;
    pointer-events: none;
    border-color: #b81c22;
  }

  #tab2:checked ~ .panel_area #panel2 {
    display: block;
    -ms-animation: tabAnim ease 0.6s forwards;
    animation: tabAnim ease 0.6s forwards;
  }

  #tab3:checked ~ .tab_area .tab3_label {
    /* color: #fff; */
    /* background: #a9151a; */

    font-weight: 700;
    color: #b81c22 !important;
    pointer-events: none;
    border-color: #b81c22;
  }

  #tab3:checked ~ .panel_area #panel3 {
    display: block;
    -ms-animation: tabAnim ease 0.6s forwards;
    animation: tabAnim ease 0.6s forwards;
  }

  .tab_wrap {
    max-width: 375px;
    margin: 0 auto;
  }

  .tab_label {
    display: inline-block;
  }
}

/*  sec-spot
--------------------------------------------------------------------------- */
.sec-spot {
  margin-bottom: 50px;
  font-size: 14px;
  color: #333;
}

.s-last {
  margin-bottom: 0;
}

.sec-spot .spot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sec-spot .spot .spot-l {
  width: 700px;
}

.sec-spot .spot .spot-l .ttl {
  margin-bottom: 25px;
}

.sec-spot .spot .spot-l .ttl-tag {
  width: 100%;
}

.sec-spot .spot .spot-l .ttl-tag li {
  display: inline-block;
  padding: 5px 8px;
  margin-right: 5px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #fff;
  background: #a9151a;
}

.sec-spot .spot .spot-r {
  width: 365px;
  margin-top: 72px;
}

.sec-spot .spot .spot-r-02 {
  margin-top: 87px;
}

.sec-spot .spot .spot-r img {
  margin-bottom: 5px;
}

.sec-spot .spot .spot-r p {
  text-align: right;
}

.sec-spot .spot .spot-r .btn_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 8px;
}

.sec-spot .spot .spot-r .btn_link p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 42px;
  text-align: center;
  border: 1px solid #a9151a;
}

.sec-spot .spot .spot-r .btn_link p a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 42px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #a9151a;
}

.sec-spot .spot .spot-r .btn_link p:hover a {
  color: #a9151a;
  background: #fff;
}

.sec-spot .spot .spot-r .btn_link p a span {
  padding-left: 25px;
  background: url(../images/store/ico_link.png) no-repeat left 50%;
  background-size: 17px;
}

.sec01 .sec-spot .tbl .w01 {
  position: relative;
  width: 191px;
  color: #fff;
  text-align: center;
  background: #000;
}

.sec01 .sec-spot .tbl .w01::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #fff;
}

.sec01 .sec-spot .tbl .w-last::before {
  display: none;
}

.sec01 .sec-spot .tbl .w02 {
  width: 598px;
}

.sec01 .tbl-title {
  padding-left: 10px;
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.23;
  border-left: 5px solid #a9151a;
}

.sec01 .tbl-dl {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}

.sec01 .tbl-dl dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sec01 .tbl-dl dl dt,
.sec01 .tbl-dl dl dd {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 14px 27px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.sec01 .tbl-dl dl dt {
  position: relative;
  width: 25%;
  color: #fff;
  text-align: center;
  background: #000;
}

.sec01 .tbl-dl dl dt::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #fff;
}

.sec01 .tbl-dl dl dt.w-last::before {
  display: none;
}

.sec01 .tbl-dl dl dd {
  width: 75%;
}

/* @SP */
@media all and (max-width: 767px) {
  .sec-spot {
    margin-bottom: 45px;
    font-size: 12px;
  }

  .sec-spot .spot {
    display: block;
    margin-bottom: 15px;
  }

  .sec-spot .spot .spot-l {
    width: 100%;
  }

  .sec-spot .spot .spot-l .ttl {
    margin-bottom: 5px;
  }

  .sec-spot .spot .spot-l .ttl img {
    width: auto;

    /* height: 15px; */
    margin-bottom: 20px;
  }

  .sec-spot .spot .spot-r {
    width: 100%;
    margin-top: 20px;
  }

  .sec-spot .spot .spot-r img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
  }

  .sec-spot .spot .spot-r p {
    text-align: right;
  }

  .sec-spot .spot .spot-r .btn_link {
    margin-top: 8px;
  }

  .sec-spot .spot .spot-r .btn_link p {
    width: 100%;
    height: 42px;
    border: 1px solid #a9151a;
  }

  .sec-spot .spot .spot-r .btn_link p a {
    width: 100%;
    background: #a9151a;
  }

  .sec-spot .spot .spot-r .btn_link p:hover a {
    color: #fff;
    background: #a9151a;
  }

  .sec-spot .spot .spot-r .btn_link p a span {
    padding-left: 25px;
    background: url(../images/store/ico_link.png) no-repeat left 50%;
    background-size: 17px;
  }

  .sec01 .sec-spot .tbl .w01 {
    position: relative;
    width: 191px;
    color: #fff;
    text-align: center;
    background: #000;
  }

  .sec01 .sec-spot .tbl .w01::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #fff;
  }

  .sec01 .sec-spot .tbl .w-last::before {
    display: none;
  }

  .sec01 .sec-spot .tbl .w02 {
    width: 598px;
  }

  .sec01 .tbl-title {
    padding-left: 8px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.53;
    border-left-width: 4px;
  }

  .sec01 .tbl-dl dl {
    display: block;
  }

  .sec01 .tbl-dl dl dt,
  .sec01 .tbl-dl dl dd {
    padding: 5px 10px;
  }

  .sec01 .tbl-dl dl dt {
    width: 100%;
    text-align: left;
  }

  .sec01 .tbl-dl dl dd {
    width: 100%;
  }

  .sec01 .tbl-dl dl dt::before {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   sec02
--------------------------------------------------------------------------- */

/*  tbl
--------------------------------------------------------------------------- */

.sec02 .tbl table{
	margin-bottom: 25px;
}
.sec02 .tbl th {
  padding: 15px 19px;
  text-align: left;
}

.sec02 .tbl td {
  padding: 10px 13px;
}

.sec02 .tbl td a {
  color: #a9151a;
}

.sec02 .tbl .w01 {
  width: 90px;
}

.sec02 .tbl .w02 {
  width: 142px;
}

.sec02 .tbl .w03 {
  width: 104px;
}

.sec02 .tbl .w04 {
  width: 68px;
  text-align: center;
}

.sec02 .tbl .w05 {
  width: 164px;
}

.sec02 .tbl .w06 {
  width: 228px;
}

.sec02_tbl_ttl{
	display: block;
	text-align: center;
	background: #a9151a;
	color: #fff;
	font-size: 18px;
	padding: 15px 0;
	margin-bottom: 1px;
}



/* @SP */
@media all and (max-width: 767px) {
  .sec02 .tbl th {
    padding: 6px 3px;
    text-align: center;
  }

  .sec02 .tbl td {
    padding: 2px 4px;
    text-align: center;
    word-break: break-all;
  }

  .sec02 .tbl .w01,
  .sec02 .tbl .w02,
  .sec02 .tbl .w03,
  .sec02 .tbl .w04,
  .sec02 .tbl .w05,
  .sec02 .tbl .w06 {
    width: 16%;
  }

  .sec02 .tbl .w07 {
    width: 32%;
  }

  .sec02 .tbl td .sp-block {
    display: block;
  }

.sec02_tbl_ttl{
	font-size: 15px;
	padding: 12px 0;
}
}

/*  sec-sub
--------------------------------------------------------------------------- */
.sec02 .sec-sub {
  padding-top: 20px;
  margin-top: 45px;
  font-size: 14px;
}

.sec02 .sec-sub-02 {
  padding: 30px 40px;
  margin-top: 45px;
  font-size: 14px;
  background: #f7f3ec;
}

.sec02 .sec-sub .inner {
  margin-top: 30px;
}

/* img-box */
.sec02 .sec-sub .img-box {
  margin-top: 29px;
}

.sec02 .sec-sub .img-box .img-col._left {
  margin-right: 42px;
}

.sec02 .sec-sub .img-box .img-col._right {
  margin-left: 42px;
}

@media all and (max-width: 767px) {
  .sec02 .sec-sub .img-box .img-col._right {
    float: none;
    margin-left: 0;
    margin: 20px 0 0;
  }
}

/* sub01 */
.sec02 .sub01.sec-sub {
  margin-top: 10px;
}

.sec02 .sub01.sec-sub .box {
  display: table;
  width: 100%;
}

.sec02 .sub01.sec-sub .box02 {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
}

.sec02 .sub01.sec-sub .box02 a + a {
  margin: 0 0 0 10px;
}

.c-commonButton--icon-pdf::before {
  width: 14px !important;
  height: 14px !important;
}

@media all and (max-width: 767px) {

  .sec02 .sub01.sec-sub .box02 {
    text-align: center;
  }
  .sec02 .sub01.sec-sub .box02 a + a {
    margin: 10px 0 0;
  }
}

.sec02 .sub01.sec-sub .box .cell {
  display: table-cell;
  vertical-align: middle;
}

.sec02 .sub01.sec-sub .cell.btn-pdf {
  width: 288px;
}

.sec02 .sub01.sec-sub .cell.btn-pdf02 {
  width: 365px;
}

.sec02 .sub01.sec-sub .cell.btn-pdf a span {
  padding-left: 25px;
  background: url(/shared/images/ico_pdf.png) no-repeat 0 50%;
  background-size: 14px 16px;
}

.sec02 .sub01.sec-sub .cell.btn-pdf a:hover {
  background: #fff;
}

.sec02 .sub01.sec-sub .cell.btn-pdf a:hover span {
  background-image: url(/shared/images/ico_pdf_on02.png);
}

/* sub02 */
.sec02 .sub02.sec-sub .flow img {
  width: 100%;
  height: auto;
}

/* sub03 */
.sec02 .sub03.sec-sub .detail {
  margin-top: 30px;
}

.sec02 .sub03.sec-sub .inner > .txt {
  margin-top: 17px;
}

/* @SP */
@media all and (max-width: 767px) {
  .sec-ttl.c_ttl-style01,
  .sub-ttl.c_ttl-style01 {
    font-size: 15px;
  }

  .sec02 .sec-sub {
    padding-top: 10px;
    margin-top: 20px;
    font-size: 11px;
  }

  .sec02 .sec-sub-02 {
    padding: 20px 10px;
    margin-top: 25px;
  }

  .sec02 .sec-sub .sub-ttl img {
    width: auto;
    height: 15px;
  }

  .sec02 .sec-sub .inner {
    margin-top: 10px;
  }

  /* img-box */
  .sec02 .sec-sub .img-box {
    margin-top: 0;
  }

  .sec02 .sec-sub .img-box .img-col._left img {
    width: 125px;
    height: 107px;
  }

  .sec02 .sec-sub .img-box .ttl {
    margin-top: 10px;
  }

  .sec02 .sec-sub .img-box .ttl img {
    width: 140px;
    height: auto;
  }

  .sec02 .sec-sub .img-box .img-col._left {
    margin-right: 9px;
  }

  /* sub01 */
  .sec02 .sub01.sec-sub .box .cell {
    display: block;
  }

  .sec02 .sub01.sec-sub .box .btn-pdf {
    width: 100%;
    margin: 10px auto 0;
  }

  .sec02 .sub01.sec-sub .box .btn-pdf a span {
    padding-left: 17px;
    background-position: 0 50%;
    background-size: 10px 11px;
  }

  /* sub03 */
  .sec02 .sub03.sec-sub .inner > .txt,
  .sec02 .sub03.sec-sub .txt {
    margin-top: 24px;
  }

  .sec02 .sub01.sec-sub .box02 {
    display: block;
  }
}

.inquiry {
  margin-bottom: 30px;
}

/* @SP */
@media all and (max-width: 767px) {
  .inquiry {
    margin-bottom: 15px;
  }
}

.slick-dots {
  top: inherit !important;
  bottom: 110px;
  transition: bottom 0.2s ease-out;
}

.slick-list.draggable[style*='580px'] + .slick-dots {
  top: inherit !important;
  bottom: 100px;
}

.slick-list.draggable[style*='608px'] + .slick-dots {
  top: inherit !important;
  bottom: 125px;
}

.slick-list.draggable[style*='656px'] + .slick-dots {
  top: inherit !important;
  bottom: 98px;
}

@media all and (max-width: 767px) {
  .slick-dots {
    top: inherit !important;
    bottom: -30px;
  }
}
