/*CONTENTS*/
.contents {
  padding: 24px;
}

/*INTRO*/
.intro_wrap {
  background: #f8f9fe;
  position: relative;
}

.intro_logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*MAIN*/
.use_status {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  font-size: 13px;
  line-height: 19px;
}
.use_status.active {
  animation: 5s Opac ease infinite;
}

.use_status .anchor a {
  padding-right: 20px;
  font-weight: 700;
  color: #ff673e;
  background: url(../images/main/orange_arr.svg) no-repeat center right;
  line-height: 19px;
}

.dashboard_wrap {
  /* 메인변경 2023-12-23
  margin-top: 16px;
  padding: 34px 16px 30px;
  border-radius: 5px;
  background: #fff;
  */

  margin-top: 16px;
  padding: 20px 16px 20px;
  border-radius: 5px;
  background: #fff;
}
.dashboard_wrap .dashboard_name {
  font-size: 25px;
  font-weight: bold;
}
.dashboard_wrap .dashboard_name span {
  opacity: 0;
}
.dashboard_wrap .dashboard_name span:nth-of-type(1) {
  animation: 0.2s name_up ease 1 forwards;
}
.dashboard_wrap .dashboard_name span:nth-of-type(2) {
  animation: 0.2s name_up ease 1 forwards;
  animation-delay: 0.2s;
}
.dashboard_wrap .dashboard_name span:nth-of-type(3) {
  animation: 0.2s name_up ease 1 forwards;
  animation-delay: 0.4s;
}
.dashboard_wrap .dashboard_name span:nth-of-type(4) {
  animation: 0.2s name_up ease 1 forwards;
  animation-delay: 0.6s;
}
.dashboard_wrap .dashboard_name span:nth-of-type(5) {
  animation: 0.2s name_up ease 1 forwards;
  animation-delay: 0.8s;
}
@keyframes name_up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dashboard_wrap .dashboard_type {
  /* 메인변경 2023-12-23
  margin-top: 24px;
  color: #0740e4;
  font-size: 13px;
  */

  margin-top: 12px;
  color: #0740e4;
  font-size: 13px;
}
.dashboard_wrap .dashboard_type span {
  position: relative;
}
.dashboard_wrap .dashboard_type span:first-of-type {
  margin-right: 14px;
}
.dashboard_wrap .dashboard_type span:first-of-type::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -9px;
  width: 1px;
  height: 10px;
  background: #0740e4;
}
.dashboard_wrap .dashboard_number_wrap {
  margin: 16px 0 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard_wrap .dashboard_number_wrap > * {
  height: 48px;
  background: #f8f8f8;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.dashboard_wrap .dashboard_number_wrap .num_1char {
  width: calc(20% - 8px);
  padding: 7px 12px;
}
.dashboard_wrap .dashboard_number_wrap .num_3char {
  width: calc(35% - 8px);
  padding: 7px 20px 7px 21px;
}
.dashboard_wrap .dashboard_number_wrap .num_4char {
  width: calc(45% - 6px);
  padding: 7px 7px 7px 8px;
}
.dashboard_wrap .dashboard_number_wrap .num_full {
  width: 100%;
  padding: 7px;
}

.component_wrap {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
}
.component_wrap .component {
  width: calc(33.3333333333% - 9px);
  height: 98px;
  padding: 16px;
  border-radius: 5px;
  box-shadow: 0 2px 17px 0 rgba(0, 0, 0, 0.07);
  background: #fff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}
.component_wrap .component:hover {
  box-shadow: none;
}
.component_wrap .component span {
  font-size: 11px;
  color: #a7a7a7;
  font-weight: normal;
  display: block;
}
.component_wrap .component.driver {
  background: url(../images/service/driver.svg) no-repeat calc(100% - 12px) 59px #fff;
}
.component_wrap .component.carrier {
  background: url(../images/service/carrier.svg) no-repeat calc(100% - 10px) 59px #fff;
}
.component_wrap .component.rent {
  background: url(../images/service/rent.svg) no-repeat calc(100% - 6px) 59px #fff;
}
.component_wrap .component.vip {
  background: url(../images/service/vip.png) no-repeat calc(100% - 10px) 47px #fff;
  background-size: 59px;
}
.component_wrap .component.vip2 {
  background: url(../images/service/vip2.png) no-repeat calc(100% - 6px) 59px #fff;
}
.component_wrap .component.daily {
  background: url(../images/service/daily.png) no-repeat calc(100% - 9px) 48px #fff;
  background-size: 43px;
}
.component_wrap .component.check {
  background: url(../images/service/check.png) no-repeat calc(100% - 8px) 47px #fff;
  background-size: 45px;
}
.component_wrap .component.echarge {
  background: url(../images/service/echarge.png) no-repeat calc(100% - 9px) 48px #fff;
  background-size: 43px;
}
.component_wrap .component.daeri {
  background: url(../images/service/daeri.png) no-repeat calc(100% - 5px) 47px #fff;
  background-size: 45px;
}
.component_wrap .component.empty {
  background-color: transparent;
  box-shadow: none;
}

.event_wrap {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event_wrap .event {
  width: calc(50% - 4px);
  height: 98px;
  padding: 16px;
  border-radius: 5px;
}
.event_wrap .event.evt1 {
  background: url(../images/main/bg_evt1.png) no-repeat right center #1131a8;
}
.event_wrap .event.evt2 {
  background: url(../images/main/bg_evt2.png) no-repeat right center #3166ff;
}
.event_wrap .event.evt3 {
  background: url(../images/main/bg_evt3.svg) no-repeat right bottom #716EF8;
}
.event_wrap .event.evt4 {
  background: url(../images/main/bg_evt4.svg) no-repeat right bottom #3166ff;
}
.event_wrap .event.evt5 {
  background: url(../images/main/bg_evt5.svg) no-repeat calc(100% - 8px) 40px #6C92FF;
}
.event_wrap .event.evt6 {
  background: url(../images/main/bg_evt6.svg) no-repeat calc(100% - 8px) 50px #8875FF;
}
.event_wrap .event.evt7 {
  background: url(../images/main/bg_evt7.svg) no-repeat right center #002FDC;
}
.event_wrap .event.evt8 {
  background: url(../images/main/bg_evt8.svg) no-repeat right center #A2D11A;
}
.event_wrap .event > a {
  display: block;
  width: 100%;
  height: 100%;
}
.event_wrap .event .title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.event_wrap .event .txt {
  font-size: 10px;
  color: #fff;
}

.rolling_wrap {
  position: relative;
}
.rolling_wrap .banner_wrap {
  width: 100%;
  height: 85px;
  margin-top: 16px;
  padding: 20px 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  background: url(../images/main/bg_banner_01.png) no-repeat right bottom #6C92FF;
}
.rolling_wrap .banner_wrap.homeservice {  
  background: url(../images/main/bg_banner_01.png) no-repeat right bottom #6C92FF;
}
.rolling_wrap .banner_wrap.banner240924 {  
  background: url(../banner/240924/banner.jpg) no-repeat right bottom #3B2228;
  background-size: contain;
}
.rolling_wrap .banner_wrap .type {
  font-size: 11px;
  color: #ff673e;
  line-height: 17px;
}
.rolling_wrap .banner_wrap .title {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #fff;
}
.rolling_wrap .banner_wrap .text {
  font-size: 10px;
  color: #fff;
}
.rolling_wrap .banner_wrap .anchor {
  margin-top: 7px;
  font-size: 13px;
  color: #0740e4;
  font-family: "Poppins", sans-serif;
  display: inline-block;
}

.main_notice_wrap {
  width: 100%;
  margin-top: 50px;
  padding: 17px 16px 10px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: #fff;
}
.main_notice_wrap .notice_title {
  font-size: 13px;
  color: #a7a7a7;
}
.main_notice_wrap ul {
  margin-top: 12px;
}
.main_notice_wrap ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(7, 64, 228, 0.03);
  background: url(../images/common/board_arr.svg) no-repeat right center;
}
.main_notice_wrap ul li .title {
  width: 90%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_notice_wrap ul li .title a {
  font-size: 13px;
  color: #000;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.main_notice_wrap ul li.new span {
  margin-left: 5px;
  padding: 2px 7px;
  background: #ff673e;
  font-size: 11px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  line-height: 1;
  display: inline-block;
}
.main_notice_wrap ul li:last-of-type {
  border-bottom: none;
}

.customer_wrap {
  margin: 40px 0;
  text-align: center;
}
.customer_wrap div {
  font-size: 13px;
}
.customer_wrap div.working {
  margin-top: 8px;
  font-size: 11px;
  color: #a7a7a7;
}

.login_wrap {
  padding: 80px 24px 40px;
  background: #fff;
}
.login_wrap .input_wrap .title {
  font-size: 13px;
  color: #a7a7a7;
}
.login_wrap .input_wrap .input_box {
  margin-top: 16px;
}
.login_wrap .input_wrap .login_btn_wrap {
  margin-top: 40px;
}
.login_wrap .input_wrap .btn_wrap {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login_wrap .input_wrap .btn_wrap .account_find {
  display: flex;
}
.login_wrap .input_wrap .btn_wrap .account_find .login_btn01 {
  margin-right: 30px;
}
.login_wrap .input_wrap .btn_wrap .account_find .login_btn01:first-child {
  position: relative;
}
.login_wrap .input_wrap .btn_wrap .account_find .login_btn01:first-child::before {
  content: "";
  width: 1px;
  height: 12px;
  background: #000;
  position: absolute;
  top: 5px;
  right: -15px;
}
.login_wrap .input_wrap .btn_wrap .login_btn01 {
  font-size: 13px;
  color: #000;
}

.social_login_wrap {
  margin-top: 16px;
  padding: 40px 24px 65px;
}
.social_login_wrap .title {
  font-size: 13px;
  color: #a7a7a7;
}
.social_login_wrap .btn_wrap button {
  width: 100%;
  margin-top: 16px;
  padding: 17.5px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.34px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_login_wrap .btn_wrap button.kakaotalk_login {
  background: #fbe34d;
}
.social_login_wrap .btn_wrap button.naver_login {
  background: #00bf18;
  color: #fff;
}
.social_login_wrap .btn_wrap button.apple_login {
  background: #fff;
  border: 1px solid #000;
}
.social_login_wrap .btn_wrap button span {
  margin-right: 10px;
  display: inline-block;
}
.social_login_wrap .btn_wrap button span img {
  vertical-align: bottom;
}

.join_wrap {
  margin-top: 56px;
  padding: 40px 24px;
  background: #fff;
}
.join_wrap .join_box {
  margin-top: 40px;
}
.join_wrap .join_box.mt16 {
  margin-top: 16px;
}
.join_wrap .join_box:first-of-type {
  margin-top: 0;
}
.join_wrap .join_box .title {
  font-size: 13px;
  color: #a7a7a7;
}
.join_wrap .join_box .title.mt16 {
  margin-top: 16px;
}
.join_wrap .join_box .title span {
  color: #ff673e;
}
.join_wrap .join_box .input_box {
  margin-top: 16px;
  position: relative;
}
.join_wrap .join_box .input_box.mt8 {
  margin-top: 8px;
}
.join_wrap .join_box .input_box.mt {
  margin-top: 24px;
}
.join_wrap .join_box .input_box .cert {
  padding: 6px;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 8px;
}
.join_wrap .timer {
  text-align: right;
  font-size: 13px;
  color: #ff673e;
}

.join_wrap_terms {
  margin-top: 16px;
  padding: 40px 24px 67px;
  background: #fff;
}
.join_wrap_terms .terms_wrap:first-of-type {
  margin-bottom: 16px;
}
.join_wrap_terms .terms_wrap .check_box,
.terms_wrap .check_box {
  width: 100%;
  margin-top: 0;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 13px;
}
.join_wrap_terms .terms_wrap .check_box .view_terms,
.terms_wrap .check_box .view_terms {
  width: 12px;
  height: 19px;
  margin-left: 8px;
  background: none;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.join_wrap_terms .join_btn_wrap {
  margin-top: 40px;
}
.join_wrap_terms .required {
  margin-top: 24px;
  font-size: 11px;
  color: #555;
}
.join_wrap_terms .required span {
  color: #ff673e;
}

.terms_view_wrap {
  width: 100%;
/*  height: 100%;*/
  padding: 40px 24px;
  font-size: 13px;
  background: #fff;
}
.terms_view_wrap h3 {
  margin-bottom: 10px;
}
.terms_view_wrap table th,
.terms_view_wrap table td {
  border: 1px solid #ddd;
  padding: 5px;
}

.terms_view_wrap table th {
  background-color: #eee;
  font-weight: bold;
}

.join_large_wrap {
  width: 100%;
  padding: 40px 0;
}
.join_large_wrap .join_large_title {
  width: 100%;
  margin-bottom: 40px;
  font-size: 30px;
  letter-spacing: -0.6px;
  font-weight: bold;
}
.join_large_wrap .join_large_box {
  padding: 24px;
  background: #f8f8f8;
  border-radius: 5px;
}
.join_large_wrap .join_large_box .join_large_txt {
  font-size: 13px;
}
.join_large_wrap .join_large_box .join_large_id {
  margin: 8px 0 20px;
  font-size: 17px;
  font-weight: bold;
  color: #83b100;
}
.join_large_wrap .join_large_box .join_large_date {
  font-size: 13px;
  color: #a7a7a7;
}
.join_large_wrap .text_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.join_large_wrap .text_wrap .number {
  font-size: 13px;
  color: #83b100;
}
.join_large_wrap .cert_box_wrap {
  width: 100%;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
}
.join_large_wrap .cert_box_wrap .cert_box {
  width: calc(25% - 14px);
  background-color: rgba(7, 64, 228, 0.1);
  border-radius: 5px;
}
.join_large_wrap .cert_box_wrap .cert_box input {
  width: 100%;
  padding: 23.5px 0;
  background: none;
  border: 0;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.map_wrap {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
}
.map_wrap .map_btn_wrap .btn_prev {
  width: 48px;
  height: 48px;
  position: fixed;
  top: 24px;
  left: 24px;
  background: url(../images/common/ico_prev.svg) no-repeat center center #fff;
  z-index: 2;
  border: 1px solid #ededed;
}
.map_wrap .map_btn_wrap .btn_location {
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 237px;
  right: 24px;
  background: url(../images/common/ico_location.svg) no-repeat center center #fff;
  z-index: 2;
  border: 1px solid #ededed;
  border-radius: 50%;
}
#layer_common_map_location .map_wrap .map_btn_wrap .btn_location {
  bottom: 254px;
}
.map_wrap .root_daum_roughmap, .map_wrap .root_daum_roughmap .wrap_map {
  width: 100% !important;
  height: 100% !important;
}
.map_wrap .root_daum_roughmap .wrap_controllers, .map_wrap .root_daum_roughmap .wrap_btn_zoom, .map_wrap .roughmap_maker_label {
  display: none !important;
}
.map_wrap .map_location_wrap {
  width: 100%;
  padding: 20px 24px 24px;
  background: url(../images/common/ico_dot_01.svg) no-repeat 29px 56px #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  animation: 0.2s slideUp ease 1;
}
.map_wrap .map_location_wrap.map_confirm {
  background: #fff;
}
.map_wrap .map_location_wrap.map_confirm .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
}
.map_wrap .map_location_wrap.map_confirm .text {
  margin-bottom: 32px;
  font-size: 13px;
  color: #a7a7a7;
}
.map_wrap .map_location_wrap .map_location_title {
  font-size: 11px;
  color: #a7a7a7;
  letter-spacing: -0.22px;
}
.map_wrap .map_location_wrap .departure {
  padding-left: 30px;
  background: url(../images/common/ico_departure.svg) no-repeat left top;
}
.map_wrap .map_location_wrap .arrival {
  margin-top: 24px;
  padding-left: 30px;
  background: url(../images/common/ico_arrival.svg) no-repeat left top;
}
.map_wrap .picker_01 {
  position: absolute;
  z-index: 5;
  top: 250px;
  left: 100px;
}
.map_wrap .picker_02 {
  position: absolute;
  z-index: 5;
  top: 250px;
  left: 150px;
}
.map_wrap .picker_02:nth-child(3) {
  top: 250px;
  left: 200px;
}
.map_wrap .picker_02:nth-child(4) {
  top: 250px;
  left: 250px;
}
.map_wrap .picker_03 {
  position: absolute;
  z-index: 5;
  top: 250px;
  left: 200px;
}
.map_wrap .picker_03:nth-child(4) {
  top: 250px;
  left: 250px;
}
.map_wrap .picker_04 {
  position: absolute;
  z-index: 5;
  top: 250px;
  left: 250px;
}

.map_detail_wrap .map_location_wrap {
  position: relative;
  width: 100%;
  padding: 20px 24px 24px;
  background: url(../images/common/ico_dot_02.svg) no-repeat 29px 56px;
}
.map_detail_wrap .map_location_wrap .icons.icon-address-change {
  position: absolute;
  top: 90px;
  left: 15px;
  display: block;
  background-color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  /* color: #0740e4; */
  font-size: 18px;
}
.map_detail_wrap .map_location_wrap.short {
  background: url(../images/common/ico_dot_01.svg) no-repeat 29px 56px #fff;
}
.map_detail_wrap .map_location_wrap.short02 {
  background: url(../images/common/ico_dot_03.svg) no-repeat 29px 51px #fff;
}
.map_detail_wrap .map_location_wrap .map_location_title {
  font-size: 11px;
  color: #a7a7a7;
  letter-spacing: -0.22px;
}
.map_detail_wrap .map_location_wrap .departure {
  padding-left: 30px;
  background: url(../images/common/ico_departure.svg) no-repeat left top;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box {
  width: 100%;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component {
  height: 32px;
  padding: 0;
  border-radius: 5px;
  border: solid 1px #d9d9d9;
  box-shadow: none;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  float: left;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.home,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.home {
  width: 22.7%;
  margin-right: 8px;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.home img,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.home img {
  margin-right: 8px;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.company,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.company {
  width: 25.534%;
  margin-right: 8px;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.company img,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.company img {
  margin-right: 8px;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.location,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.location {
  width: 11.35%;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.favorite,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.favorite {
  width: 27.66%;
  margin-left: 20px;
  background: none;
  border: 0;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.favorite img,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.favorite img {
  margin-right: 3px;
}
.map_detail_wrap .map_location_wrap .departure .component_detail_wrap .component_box .component.wide,
.map_detail_wrap .map_location_wrap .arrival .component_detail_wrap .component_box .component.wide {
  width: 32% !important;
}

.reservation_receipt_wrap .address-input-box .component_detail_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.reservation_receipt_wrap .address-input-box .component_detail_wrap .component_box {
  width: 100%;
}
.reservation_receipt_wrap .address-input-box .component_detail_wrap .component_box .component {
  height: 32px;
  padding: 0;
  border-radius: 5px;
  border: solid 1px #d9d9d9;
  box-shadow: none;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  float: left;
  width: 24%;
  margin-right: 1%;
}
.reservation_receipt_wrap .address-input-box .component_detail_wrap .component_box .component:nth-child(4) {
  width: 25%;
  margin-right: 0;
}
.reservation_receipt_wrap .address-input-box .component_detail_wrap .component_box .component img {
  margin-right: 8px;
}

.map_detail_wrap .map_location_wrap .arrival {
  margin-top: 24px;
  padding-left: 30px;
  background: url(../images/common/ico_arrival.svg) no-repeat left top;
}
.map_detail_wrap .map_list {
  width: 100%;
  margin-top: 16px;
  padding: 20px 24px;
  background: #fff;
}
.map_detail_wrap .map_list .title {
  font-size: 13px;
  color: #a7a7a7;
}
.map_detail_wrap .map_list ul {
  margin-top: 8px;
}
.map_detail_wrap .map_list ul .address_wrap {
  width: 100%;
  margin-bottom: 8px;
  padding: 15.5px 16px;
  border: 1px solid #ededed;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}
.map_detail_wrap .map_list ul .address_wrap .address strong {
  display: block;
}
.map_detail_wrap .map_list ul .address_wrap .choose {
  padding: 9.5px;
  font-weight: bold;
  background: none;
  border: 0;
}

.use_receipt_wrap .section_title {
  padding-left: 24px;
  font-size: 13px;
  color: #a7a7a7;
}

.use_receipt_wrap .use_receipt_box {
  width: 100%;
  padding: 20px 24px 24px;
  background: url(../images/common/ico_dot_03.svg) no-repeat 29px 53px;
}
.use_receipt_wrap.inner .use_receipt_box {
  padding: 0 0 24px 0;
  background: url(../images/common/ico_dot_03.svg) no-repeat 5px 33px;
}
.use_receipt_wrap .use_receipt_box .departure {
  padding-left: 30px;
  background: url(../images/common/ico_departure.svg) no-repeat left top;
}
.use_receipt_wrap .use_receipt_box .arrival {
  margin-top: 24px;
  padding-left: 30px;
  background: url(../images/common/ico_arrival.svg) no-repeat left top;
}
.use_receipt_wrap .use_receipt_box.use_rental_box {
  background: #fff;
}
.use_receipt_wrap .use_receipt_box .use_return_duration {
  margin-top: 24px;
}
.use_receipt_wrap .use_receipt_box .duration_text {
  margin-top: 16px;
  font-size: 11px;
  color: #0740e4;
}
.use_receipt_wrap .use_receipt_box .use_receipt_title {
  font-size: 11px;
  color: #a7a7a7;
  letter-spacing: -0.22px;
}
.use_receipt_wrap .use_receipt_box .use_confirm {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.use_receipt_wrap .use_receipt_box .use_confirm > div {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.3px;
}
.use_receipt_wrap .use_receipt_box .use_confirm .btn_modify {
  width: 18px;
  height: 18px;
  background: url(../images/common/ico_modify.svg) no-repeat center center;
  border: 0;
  cursor: pointer;
}

.summary_box .use_confirm {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary_box .use_confirm > div {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.3px;
}
.summary_box .use_confirm .btn_modify {
  width: 18px;
  height: 18px;
  background: url(../images/common/ico_modify.svg) no-repeat center center;
  border: 0;
  cursor: pointer;
}

.use_receipt_information {
  min-height: 100%;
  margin-top: 16px;
  padding: 24px;
  background: #fff;
}
.use_receipt_information.alone {
  min-height: auto;
  padding: 0 24p;
}
.use_receipt_information .use_receipt_box {
  margin-bottom: 24px;
}
.use_receipt_information .use_receipt_box:last-of-type {
  margin-bottom: 0;
}
.use_receipt_information .use_receipt_box .title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}
.reservation_receipt_wrap .use_receipt_box .car_information,
.use_receipt_information .use_receipt_box .car_information {
  width: 100%;
  padding: 16px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap,
.use_receipt_information .use_receipt_box .car_information .number_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap.fix > *,
.use_receipt_information .use_receipt_box .car_information .number_wrap.fix > * {
  color: #000;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap > *,
.use_receipt_information .use_receipt_box .car_information .number_wrap > * {
  height: 48px;
  background: #fff;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #ededed;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap.ipt input,
.use_receipt_information .use_receipt_box .car_information .number_wrap.ipt input {
  width: 100%;
  height: 48px;
  border: 1px solid #ededed;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap .num_1char,
.use_receipt_information .use_receipt_box .car_information .number_wrap .num_1char {
  width: calc(20% - 8px);
  padding: 7px 12px;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap .num_3char,
.use_receipt_information .use_receipt_box .car_information .number_wrap .num_3char {
  width: calc(35% - 8px);
  padding: 7px 20px 7px 21px;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap .num_4char,
.use_receipt_information .use_receipt_box .car_information .number_wrap .num_4char {
  width: calc(45% - 6px);
  padding: 7px 7px 7px 8px;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap.ipt .num_1char,
.use_receipt_information .use_receipt_box .car_information .number_wrap.ipt .num_1char {
  width: calc(20% - 8px);
  padding: 0px;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap.ipt .num_3char,
.use_receipt_information .use_receipt_box .car_information .number_wrap.ipt .num_3char {
  width: calc(35% - 8px);
  padding: 0px;
}
.reservation_receipt_wrap .use_receipt_box .car_information .number_wrap.ipt .num_4char,
.use_receipt_information .use_receipt_box .car_information .number_wrap.ipt .num_4char {
  width: calc(45% - 6px);
  padding: 0px;
}
.use_receipt_information .use_receipt_box .car_information.rental_car_information {
  padding: 23px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.use_receipt_information .use_receipt_box .car_information.rental_car_information .rental_car_type {
  font-size: 20px;
  font-weight: bold;
}
.use_receipt_information .use_receipt_box .car_information.rental_car_information .btn_modify {
  width: 18px;
  height: 18px;
  background: url(../images/common/ico_modify.svg) no-repeat center center;
  border: 0;
  cursor: pointer;
}
.use_receipt_information .use_receipt_box .car_information .car_type_wrap {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.use_receipt_information .use_receipt_box .car_information .car_type_wrap .car_type {
  color: #0740e4;
  font-size: 13px;
}
.use_receipt_information .use_receipt_box .car_information .car_type_wrap .car_type span {
  position: relative;
}
.use_receipt_information .use_receipt_box .car_information .car_type_wrap .car_type span:first-of-type {
  margin-right: 14px;
}
.use_receipt_information .use_receipt_box .car_information .car_type_wrap .car_type span:first-of-type::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -9px;
  width: 1px;
  height: 10px;
  background: #0740e4;
}
.use_receipt_information .use_receipt_box .car_information .car_type_wrap .btn_modify {
  width: 18px;
  height: 18px;
  background: url(../images/common/ico_modify.svg) no-repeat center center;
  border: 0;
  cursor: pointer;
}
.use_receipt_information .use_receipt_box textarea {
  width: 100%;
  height: 120px;
  margin-top: 8px;
  padding: 16px;
  font-size: 13px;
  color: #000;
  resize: none;
  border: 1px solid #ededed;
  border-radius: 5px;
}
.use_receipt_information .use_receipt_box textarea::placeholder {
  color: #a7a7a7;
}
.use_receipt_information .use_receipt_box .count {
  margin-top: 5px;
  text-align: right;
  font-size: 13px;
  color: #a7a7a7;
}
.use_receipt_information .use_receipt_box .count span {
  color: #0740e4;
}

.reservation_wrap {
  padding: 24px;
  background: #fff;
}
.reservation_wrap:last-of-type {
  margin-top: 16px;
}
.reservation_wrap .reservation_title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.4px;
}
.reservation_wrap .tip_box {
  height: 142px;
  margin: 16px 0 24px;
  padding: 24px;
  background: rgba(7, 64, 228, 0.03);
  font-size: 13px;
  overflow-y: scroll;
}

.reservation_tab ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reservation_tab ul li {
  width: 50%;
  text-align: center;
}
.reservation_tab ul li a,
.reservation_tab ul li button {
  padding: 13px 0;
  font-size: 15px;
  color: #a7a7a7;
  font-weight: 500;
}
.reservation_tab ul li button {
  width: 100%;
  border: 0;
  background: 0;
}
.reservation_tab ul li.on {
  background: #fff;
  border-top: 1px solid #000;
}
.reservation_tab ul li.on a,
.reservation_tab ul li.on button {
  color: #0740e4;
  font-weight: bold;
}

.reservation_choose_wrap {
  padding: 16px 24px 100px 24px;
  background: #fff;
}
.reservation_choose_wrap .text {
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: -0.22px;
}
.reservation_choose_wrap .reservation_choose_box {
  margin-bottom: 8px;
  padding: 16px;
  border: 1px solid #ededed;
  border-radius: 5px;
  position: relative;
}
.reservation_choose_wrap .reservation_choose_box:last-of-type {
  margin-bottom: 0;
}
.reservation_choose_wrap .reservation_choose_box.disabled {
  background: #f8f8f8;
}
.reservation_choose_wrap .reservation_choose_box.peaktime {
  border: 1px solid rgba(255, 103, 62, 0.3);
}
.reservation_choose_wrap .reservation_choose_box .peak,
.reservation_choose_wrap .reservation_choose_box.disabled .peak,
.reservation_choose_wrap .reservation_choose_box.choose .peak {
  display: inline-block;
}
.reservation_choose_wrap .reservation_choose_box .peak {
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: -0.22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  background: #ff673e;
  border-radius: 5px;
  position: absolute;
  /*
  top: 19px;
  right: 16px;
  */
  top: 5px;
  right: 5px;
}
.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents {
  width: 100%;
  display: flex;
  align-items: center;
}

/*
.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents .reservation_choose_inner {
  width: 50%;
}
*/
.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents .reservation_choose_inner {
  width: 30%;
}
.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents .reservation_choose_inner:first-of-type {
  width: 40%;
}

.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents .reservation_choose_inner .title {
/*  text-align: center;*/
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}
.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents .reservation_choose_inner .time {
/*  text-align: center;*/
  font-size: 15px;
  letter-spacing: -0.3px;
}
.reservation_choose_wrap .reservation_choose_box .reservation_choose_contents .reservation_choose_inner .price {
/*  text-align: center;*/
  font-size: 15px;
  letter-spacing: -0.3px;
  font-weight: bold;
}
.reservation_choose_wrap .reservation_choose_box button {
  margin-top: 16px;
}

.reservation_receipt_wrap {
  width: 100%;
  padding: 24px 24px 24px 24px;
  background: #fff;
}
.reservation_receipt_wrap.add_car {
  margin-top: 0;
  margin-bottom: 16px;
}
.reservation_receipt_wrap.add_car:last-of-type {
  margin-bottom: 0;
}
.reservation_receipt_wrap.add_car:nth-of-type(2) {
  padding-bottom: 24px;
}
.reservation_receipt_wrap .reservation_receipt_box {
  margin-bottom: 24px;
  position: relative;
}
.reservation_receipt_wrap .reservation_receipt_box:last-of-type {
/*  margin-bottom: 0;*/
}
.reservation_receipt_wrap .reservation_receipt_box .representative_title {
  width: 100%;
  padding: 10px 16px;
  background: #0740e4;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.reservation_receipt_wrap .reservation_receipt_box .title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}
.reservation_receipt_wrap .reservation_receipt_box .title span {
  color: #ff673e;
}
.reservation_receipt_wrap .reservation_receipt_box textarea {
    width: 100%;
    height: 120px;
    margin-top: 8px;
    padding: 16px;
    font-size: 13px;
    color: #000;
    resize: none;
    border: 1px solid #ededed;
    border-radius: 5px;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info {
  margin-bottom: 16px;
  padding: 16px;
  background: url(../images/common/ico_arr_right.svg) no-repeat calc(100% - 16px) center #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
  display: flex;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info:last-of-type {
  margin-bottom: 0;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info .car_image {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  overflow: hidden;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info .car_detail {
  margin-left: 16px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.4px;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info .car_detail .car_type {
  margin-top: 8px;
  font-size: 13px;
  color: #0740e4;
  font-weight: normal;
  letter-spacing: -0.26px;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info .car_detail .car_type span {
  display: block;
}
.reservation_receipt_wrap .reservation_receipt_box .car_info.none {
  padding: 46.5px 16px;
  font-size: 13px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: url(../images/common/ico_arr_right.svg) no-repeat calc(100% - 16px) center rgba(7, 64, 228, 0.03);
  cursor: pointer;
  display: block;
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_choose_wrap {
  margin-top: 20px;
  padding: 16px;
  border-radius: 5px;
  background: rgba(7, 64, 228, 0.03);
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_choose_wrap .title {
  font-size: 11px;
  color: #000;
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_choose_wrap .title span {
  color: #0740e4;
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_choose_wrap .reservation_payment_choose .input_box {
  margin: 17.5px 0;
  padding-left: 32px;
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_choose_wrap .reservation_payment_choose .input_box.np {
  padding-left: 0px;
}
.reservation_receipt_wrap .reservation_receipt_box .reservation_payment_choose_wrap .reservation_payment_choose .reservation_payment_choose_inner span {
  width: 100%;
  margin-top: 6px;
  padding-left: 32px;
  font-size: 13px;
  font-weight: bold;
  color: #0740e4;
}
.reservation_receipt_wrap .reservation_receipt_box .modify {
  padding: 6px;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 35px;
}

.btn_wrap.fixed {
  width: 100%;
  padding: 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.btn_wrap.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rent_date_wrap .reservation_date,
.reservation_date_wrap .reservation_date,
.reservation_info_wrap .reservation_info {
  padding: 24px;
  background: rgba(7, 64, 228, 0.03);
}
.rent_date_wrap .reservation_date .title,
.reservation_date_wrap .title,
.reservation_info_wrap .title {
  font-size: 20px;
  font-weight: bold;
}
.rent_date_wrap .reservation_date .sub_text,
.reservation_date_wrap .sub_text,
.reservation_info_wrap .sub_text {
  margin-top: 8px;
  font-size: 13px;
  color: #a7a7a7;
}
.reservation_date_wrap .reservation_choose .rent_date {
  padding: 0 24px 120px 24px;
}

.delivery_wrap .delivery_box {
  width: 100%;
  padding: 20px 24px 24px;
  background: url(../images/common/ico_dot_04.svg) no-repeat 29px 53px #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.delivery_wrap .delivery_box .departure {
  padding-left: 30px;
  background: url(../images/common/ico_departure.svg) no-repeat left top 2px;
}
.delivery_wrap .delivery_box .arrival {
  margin-top: 40px;
  padding-left: 30px;
  background: url(../images/common/ico_arrival.svg) no-repeat left top 2px;
}
.delivery_wrap .delivery_box .delivery_title {
  font-size: 13px;
  font-weight: bold;
}
.delivery_wrap .delivery_box .delivery_title .dep {
  color: #ff673e;
}
.delivery_wrap .delivery_box .delivery_title .arr {
  color: #83b100;
}
.delivery_wrap .delivery_box .delivery_inner {
  margin-top: 24px;
}
.delivery_wrap .delivery_box .delivery_inner .title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}

.reservation_payment_wrap {
  padding: 24px 0 40px;
  background: #fff;
}
.reservation_payment_wrap:last-of-type {
  margin-top: 16px;
  padding: 42px 24px 24px;
  background: transparent;
}
.reservation_payment_wrap .title {
  padding: 0 24px;
  font-size: 13px;
  color: #a7a7a7;
}
.reservation_payment_wrap .radio_box {
  margin-top: 16px;
  padding: 0 24px;
}
.reservation_payment_wrap .radio_box:last-of-type {
  margin-top: 32px;
}
.reservation_payment_wrap .reservation_payment_list {
  margin-top: 16px;
  overflow: hidden;
}
.reservation_payment_wrap .reservation_payment_list ul {
  width: 100%;
  padding-left: 56px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  float: left;
}
.reservation_payment_wrap .reservation_payment_list ul::-webkit-scrollbar {
  display: none;
}
.reservation_payment_wrap .reservation_payment_list ul li {
  width: 208px;
  margin-right: 16px;
  padding: 14.5px 16px;
  border: 1px solid #ededed;
  border-radius: 5px;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  position: relative;
}
.reservation_payment_wrap .reservation_payment_list ul li .account_title {
  font-size: 13px;
  color: #a7a7a7;
}
.reservation_payment_wrap .reservation_payment_list ul li .account_number {
  margin-top: 8px;
/*  font-size: 15px;*/
  font-size: 12px;
  font-weight: bold;
}
.reservation_payment_wrap .reservation_payment_list ul li .account_del {
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  font-size: 12px;
  color: #ff673e;
}
.reservation_payment_wrap .reservation_payment_list ul li.choose {
  color: #0740e4;
  border: 1px solid #0740e4;
  background: rgba(7, 64, 228, 0.03);
}
.reservation_payment_wrap .reservation_payment_list ul li.choose .account_title {
  color: #0740e4;
}
.reservation_payment_wrap .reservation_payment_list ul li.add {
  padding: 0;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}
.reservation_payment_wrap .reservation_payment_list ul li.add .account_add_title {
  width: 100%;
  padding: 29px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  border: 0;
  background: none;
}
.reservation_payment_wrap .btn_wrap {
  margin-top: 16px;
}
.reservation_payment_wrap .reservation_payment_inner {
  padding: 0 24px;
}
.reservation_payment_wrap .reservation_payment_inner .title {
  margin-bottom: 8px;
  padding: 0;
}
.reservation_payment_wrap .reservation_information_wrap .title {
  padding: 0;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list {
  margin-top: 24px;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list.line {
  padding-top: 24px;
  border-top: 1px dashed #a7a7a7;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list:last-of-type {
  padding-top: 24px;
  border-top: 1px dashed #a7a7a7;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list li {
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list li:last-of-type {
  margin-bottom: 23px;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list li .result {
  font-size: 15px;
  color: #0740e4;
  font-weight: bold;
}
.reservation_payment_wrap .reservation_information_wrap .reservation_information_list li .discount {
  color: #FF673E;
}
.reservation_payment_wrap .information_notice_text,
.reservation_payment_wrap .reservation_information_wrap .information_notice_text {
  margin-top: 32px;
  font-size: 11px;
  color: #0740e4;
  letter-spacing: -0.22px;
}

.state_tab {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.state_tab.mypage_tab select {
  width: calc(50% - 8px);
}

.state_wrap {
  padding: 24px;
  background: #fff;
}
.state_wrap .state_complete_wrap {
  padding: 16px;
  border-radius: 5px;
  cursor: pointer;
  border: solid 1px #ededed;
}
.state_wrap .state_complete_wrap.complete {
  border: solid 1px rgba(7, 64, 228, 0.1);
}
.state_wrap .state_complete_wrap.receipt {
  border: solid 1px rgba(7, 64, 228, 0.1);
}
.state_wrap .state_complete_wrap:first-of-type {
  margin-bottom: 16px;
}
.state_wrap .state_complete_wrap .state_complete_box {
  padding: 10.5px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}
.state_wrap .state_complete_wrap .state_complete_box.dark {
  background: #707070;
}
.state_wrap .state_complete_wrap .state_complete_box.grey {
  background: #a7a7a7;
}
.state_wrap .state_complete_wrap .state_complete_box.orange {
  background: #ff673e;
}
.state_wrap .state_complete_wrap .state_complete_box.blue {
  background: #0740e4;
}
.state_wrap .state_complete_wrap .state_complete_box.green {
  background: #83b100;
}
.state_wrap .state_complete_wrap .state_complete_list {
  margin-top: 14px;
}
.state_wrap .state_complete_wrap .state_complete_list > ul {
  padding: 0 16px;
}
.state_wrap .state_complete_wrap .state_complete_list li {
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.state_wrap .state_complete_wrap .state_complete_list li.info div {
  color: #a7a7a7;
  font-family: "Poppins", sans-serif;
}
.state_wrap .state_complete_wrap .state_complete_list li.info button {
  padding: 0 12px;
  font-size: 13px;
  color: #0740e4;
  background: url(../images/common/ico_arr_right_blue.svg) no-repeat center right;
  border: 0;
}
.state_wrap .state_complete_wrap .state_info_box {
  width: 100%;
  padding: 20px 24px 24px;
  background: url(../images/common/ico_dot_03.svg) no-repeat 29px 51px rgba(7, 64, 228, 0.03);
}
.state_wrap .state_complete_wrap .state_info_box .departure {
  padding-left: 30px;
  background: url(../images/common/ico_departure.svg) no-repeat left top;
}
.state_wrap .state_complete_wrap .state_info_box .arrival {
  margin-top: 24px;
  padding-left: 30px;
  background: url(../images/common/ico_arrival.svg) no-repeat left top;
}
.state_wrap .state_complete_wrap .state_info_box .state_info_title {
  font-size: 11px;
  color: #a7a7a7;
  letter-spacing: -0.22px;
}
.state_wrap .state_complete_wrap .state_info_box .state_info_confirm {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.state_wrap .state_complete_wrap .state_info_box .state_info_confirm > div {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.3px;
}

.state_summary_wrap {
  width: 100%;
  margin-top: 56px;
  padding: 24px 24px 24px 24px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  animation: 0.2s slideDown ease 1;
}
.state_summary_wrap.inactive {
  margin-top: 0;
  animation: none;
  position: relative;
}
.state_summary_wrap .state_summary_box {
  padding: 16px;
  border-radius: 5px;
  background: rgba(7, 64, 228, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.state_summary_wrap .state_summary_box .state_summary_inner {
  display: flex;
  align-items: center;
}
.state_summary_wrap .state_summary_box .state_summary_inner .number {
  font-size: 13px;
  color: #a7a7a7;
  font-family: "Poppins", sans-serif;
}
.state_summary_wrap .state_summary_box .state_summary_inner .service {
  margin-left: 10px;
  font-size: 13px;
}
.state_summary_wrap .state_summary_box .state_summary_inner .status {
  font-size: 13px;
  font-weight: bold;
  color: #0740e4;
}
.state_summary_wrap .use_receipt_box {
  width: 100%;
  padding: 24px 0;
  background: url(../images/common/ico_dot_03.svg) no-repeat 6px 51px #fff;
}
.state_summary_wrap .use_receipt_box .departure {
  padding-left: 30px;
  background: url(../images/common/ico_departure.svg) no-repeat left top;
}
.state_summary_wrap .use_receipt_box .arrival {
  margin-top: 24px;
  padding-left: 30px;
  background: url(../images/common/ico_arrival.svg) no-repeat left top;
}
.state_summary_wrap .use_receipt_box .use_receipt_title {
  font-size: 11px;
  color: #a7a7a7;
  letter-spacing: -0.22px;
}
.state_summary_wrap .use_receipt_box .use_confirm {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.state_summary_wrap .use_receipt_box .use_confirm > div {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.3px;
}
.state_summary_wrap .use_receipt_box .use_confirm .btn_photo {
  width: 24px;
  height: 24px;
  background: url(../images/common/ico_photo.svg) no-repeat center center;
  border: 0;
  cursor: pointer;
}
.state_summary_wrap .state_assign_box {
  width: 100%;
  margin: 24px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.state_summary_wrap .state_assign_box .title {
  font-size: 13px;
}
.state_summary_wrap .state_assign_box .assign_box {
  display: flex;
  align-items: center;
}
.state_summary_wrap .state_assign_box .assign_box .name {
  margin-right: 16px;
  font-size: 13px;
  font-weight: bold;
}
.state_summary_wrap .state_assign_box .assign_box a {
  padding: 12px 16px;
  border-radius: 50%;
  background: #0740e4;
  display: inline-block;
}

.caution_wrap {
  width: 100%;
  padding: 0 24px;
  position: fixed;
  bottom: 20px;
  left: 0;
  z-index: 5;
}
.caution_wrap .caution_box {
  padding: 16px;
  font-size: 13px;
  color: #fff;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
}

.use_state_wrap {
  padding: 24px 24px;
}
.use_state_wrap .title {
  font-size: 13px;
  color: #a7a7a7;
}
.use_state_wrap .use_state_box {
  margin-top: 24px;
}
.use_state_wrap .use_state_box .use_state_list {
  margin-top: 12px;
}
.use_state_wrap .use_state_box .use_state_list li {
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.use_state_wrap .use_state_box .use_state_list li:last-of-type {
  margin-bottom: 23px;
}
.state_summary_wrap .use_receipt_box .use_confirm button,
.use_state_wrap .use_state_box .use_state_list li button {
  padding: 0 12px;
  background: url(../images/common/ico_arr_right.svg) no-repeat center right #f8f9fe;
  border: 0;
}
.use_state_wrap .use_state_box .use_state_list li .number {
  font-size: 15px;
  color: #0740e4;
  font-weight: bold;
}
.use_state_wrap .use_state_box .use_state_list li .list_contents {
  width: 100%;
  margin-bottom: 10px;
  padding: 16px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #ededed;
}
.use_state_wrap .use_state_box .use_state_list li .list_contents div {
  width: 50%;
  margin-bottom: 16px;
}
.use_state_wrap .use_state_box .use_state_list li .list_contents div:nth-child(even) {
  text-align: right;
}
.use_state_wrap .use_state_box .use_state_list li .list_contents div:nth-child(3), .use_state_wrap .use_state_box .use_state_list li .list_contents div:nth-child(4) {
  margin-bottom: 0;
}
.use_state_wrap .use_state_box .use_state_list:last-of-type {
  padding-top: 24px;
  border-top: 1px dashed #a7a7a7;
}
.use_state_wrap .use_state_box .use_state_list:last-of-type li {
  margin-bottom: 16px;
}
.use_state_wrap .use_state_box .account_info {
  font-size: 11px;
  color: #a7a7a7;
  text-align: right;
}

.btn_cancel_wrap {
  padding: 24px;
}

.photo_wrap {
/*  margin-top: 60px;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}
.photo_wrap span {
  width: calc((100% - 4px) / 3);
  height: 120px;
  margin-bottom: 2px;
  cursor: pointer;
  flex-grow: 0;
}
.photo_wrap span img {
  width: 100%;
  height: 100%;
}

.delivery_contents {
  width: 100%;
  padding: 13.5px 16px;
  font-size: 13px;
  color: #000;
  background: #f8f8f8;
  border-radius: 5px;
}

.cancel_wrap .cancel_box {
  padding: 16px;
  background: #fff;
  border-radius: 5px;
}
.cancel_wrap .cancel_box .title {
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: bold;
  color: #a7a7a7;
}
.cancel_wrap .cancel_box .cancel_contents {
  font-size: 13px;
}

.cancel_info_wrap {
  width: 100%;
  padding: 24px;
}
.cancel_info_wrap .cancel_info_box .cancel_info_list li {
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cancel_info_wrap .cancel_info_box .cancel_info_list li:last-of-type {
  margin-bottom: 0;
}
.cancel_info_wrap .cancel_info_box .cancel_info_list li .price {
  font-weight: bold;
  color: #ff673e;
}
.cancel_info_wrap .btn_cancel_wrap {
  padding: 0;
}
.cancel_info_wrap .btn_cancel_wrap .check_box {
  margin-top: 24px;
  margin-bottom: 24px;
}

@keyframes slideDown {
  0% {
    margin-top: -400px;
  }
  100% {
    margin-top: 60px;
  }
}
@keyframes slideUp {
  0% {
    margin-bottom: -400px;
  }
  100% {
    margin-bottom: 0;
  }
}
@keyframes Opac {
  0% {
    background: rgba(7, 64, 228, 0.03);
  }
  20% {
    background: #f8f9fe;
  }
  40% {
    background: rgba(7, 64, 228, 0.03);
  }
  60% {
    background: #f8f9fe;
  }
  80% {
    background: rgba(7, 64, 228, 0.03);
  }
  100% {
    background: #f8f9fe;
  }
}
.mypage_index_wrap {
  padding: 40px 0 30px 0;
  background: #f8f9fe;
  position: relative;
}
.mypage_index_wrap .index_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mypage_index_wrap .index_box .profile_image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}
.mypage_index_wrap .index_box .profile_info {
  width: 100%;
  padding: 24px 0;
  text-align: center;
}
.mypage_index_wrap .index_box .profile_info .profile_name {
  padding: 0 24px 0 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.4px;
  border: 0;
  background: url(../images/common/ico_arr_right.svg) no-repeat center right;
}
.mypage_index_wrap .index_box .profile_info .profile_mail {
  margin-top: 4.5px;
  font-size: 11px;
  color: #a7a7a7;
}
.mypage_index_wrap .btn_photo_modify {
  margin: 16px auto 0;
  font-size: 13px;
  background: 0;
  border: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.mypage_index_wrap .swiper-pagination {
  bottom: 0 !important;
}

.profile_car_wrap .car_information {
  width: 100%;
  padding: 16px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}
.profile_car_wrap .car_information .number_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile_car_wrap .car_information .number_wrap > * {
  height: 48px;
  background: #fff;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.profile_car_wrap .car_information .number_wrap .num_1char {
  width: calc(20% - 8px);
  padding: 7px 12px;
}
.profile_car_wrap .car_information .number_wrap .num_3char {
  width: calc(35% - 8px);
  padding: 7px 20px 7px 21px;
}
.profile_car_wrap .car_information .number_wrap .num_4char {
  width: calc(45% - 6px);
  padding: 7px 7px 7px 8px;
}
.profile_car_wrap .car_information .number_wrap .num_full {
  width: 100%;
  padding: 7px 7px 7px 8px;
}
.profile_car_wrap .car_information .car_type_wrap {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile_car_wrap .car_information .car_type_wrap .car_type {
  color: #0740e4;
  font-size: 13px;
}
.profile_car_wrap .car_information .car_type_wrap .car_type span {
  position: relative;
}
.profile_car_wrap .car_information .car_type_wrap .car_type span:first-of-type {
  margin-right: 14px;
}
.profile_car_wrap .car_information .car_type_wrap .car_type span:first-of-type::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -9px;
  width: 1px;
  height: 10px;
  background: #0740e4;
}
.profile_car_wrap .car_information .car_type_wrap .btn_modify {
  width: 18px;
  height: 18px;
  background: url(../images/common/ico_modify.svg) no-repeat center center;
  border: 0;
  cursor: pointer;
}

.mypage_list_wrap {
  padding: 24px;
  background: #fff;
}
.mypage_list_wrap .title + ul {
  padding-top: 8px;
}
.mypage_list_wrap ul li {
  margin-bottom: 32px;
}
.mypage_list_wrap ul li a {
  font-size: 17px;
  color: #000;
  font-weight: bold;
  letter-spacing: -0.34px;
  background: url(../images/common/ico_arr_right.svg) no-repeat center right;
}
.mypage_list_wrap ul li:only-child {
  margin-bottom: 0;
}
.mypage_list_wrap .quit_btn_wrap {
  width: 100%;
  margin-top: 70px;
  padding: 24px;
  background: #fff;
}
.mypage_list_wrap .quit_btn_wrap a {
  font-size: 13px;
  color: #000;
  display: inline-block;
}

.setting_list_wrap {
  padding: 40px 24px;
  background: #fff;
}
.setting_list_wrap .title {
  font-size: 13px;
  color: #a7a7a7;
}
.setting_list_wrap .title + ul {
  padding-top: 8px;
}
.setting_list_wrap ul li {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.34px;
  flex-wrap: wrap;
}
.setting_list_wrap ul li .btn_arrow {
  width: 24px;
  height: 24px;
  background: url(../images/common/ico_arr_right.svg) no-repeat center center;
  border: 0;
}
.setting_list_wrap ul li:only-child {
  margin-bottom: 0;
}
.setting_list_wrap ul li:last-of-type {
  margin-bottom: 0;
}
.setting_list_wrap ul li .select_wrap {
  width: 100%;
  margin-top: 16px;
}
.setting_list_wrap ul li .select_wrap select:nth-of-type(2) {
  margin-top: 8px;
}
.setting_list_wrap ul li .select_wrap select option[selected] span {
  color: #0740e4;
}
.setting_list_wrap ul li .push_text {
  width: 100%;
  padding-top: 8px;
  font-size: 11px;
  color: #a7a7a7;
}

.mypage_information_wrap {
  padding: 40px 24px;
  background: #fff;
}
.mypage_information_wrap ul li {
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.mypage_information_wrap ul li .title {
  color: #a7a7a7;
}
.mypage_information_wrap ul li .phone_number {
  width: 100%;
  margin-top: 8px;
  padding: 14.5px 16px;
  border-radius: 5px;
  border: solid 1px #ededed;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mypage_information_wrap ul li .phone_number button {
  padding: 0 12px;
  border: 0;
  background: 0;
  font-size: 13px;
  font-weight: bold;
}

.quit_wrap {
  height: 60vh;
  padding: 24px;
  background: #fff;
}
.quit_wrap .quit_box .title {
  font-size: 13px;
  color: #a7a7a7;
}
.quit_wrap .quit_box .input_box {
  margin-top: 8px;
  position: relative;
}
.quit_wrap .quit_box .input_box textarea {
  width: 100%;
  height: 120px;
  margin-top: 8px;
  padding: 16px;
  font-size: 13px;
  color: #000;
  resize: none;
  border: 1px solid #ededed;
  border-radius: 5px;
}
.quit_wrap .quit_box .input_box .count {
  margin-top: 8px;
  text-align: right;
  font-size: 13px;
  color: #a7a7a7;
}
.quit_wrap .quit_box .input_box .count span {
  color: #0740e4;
}

.quit_wrap_terms {
  margin-top: 16px;
  padding: 40px 24px;
  background: #fff;
}
.quit_wrap_terms .terms_wrap:first-of-type {
  margin-bottom: 16px;
}
.quit_wrap_terms .terms_wrap .check_box {
  width: 100%;
  margin-top: 0;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 13px;
}
.quit_wrap_terms .terms_wrap .check_box .view_terms {
  width: 12px;
  height: 19px;
  margin-left: 8px;
  background: none;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quit_wrap_terms .quit_btn_wrap {
  margin-top: 40px;
}
.quit_wrap_terms .required {
  margin-top: 24px;
  font-size: 11px;
  color: #555;
}
.quit_wrap_terms .required span {
  color: #ff673e;
}

.password_warp {
  padding: 24px 24px 40px 24px;
  background: #fff;
}
.password_warp .title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}

.addcar_wrap {
  padding: 24px;
}
.addcar_wrap .index_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.addcar_wrap .index_box .profile_image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: url(../images/mypage/ico_photo.svg) no-repeat center center rgba(7, 64, 228, 0.03);
}
.addcar_wrap .index_box .profile_info {
  width: 100%;
  padding: 24px 0;
  text-align: center;
}
.addcar_wrap .index_box .profile_info .profile_name {
  padding: 0 24px 0 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.4px;
  border: 0;
  background: url(../images/common/ico_arr_right.svg) no-repeat center right;
}
.addcar_wrap .index_box .profile_info .profile_mail {
  margin-top: 4.5px;
  font-size: 11px;
  color: #a7a7a7;
}
.addcar_wrap .btn_photo {
  margin: 16px auto 0;
  font-size: 13px;
  background: 0;
  border: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.car_wrap {
  padding: 40px 24px;
  background: #fff;
}
.car_wrap .car_box .car_large_wrap {
  width: 100%;
  padding: 40px 0;
}
.car_wrap .car_box .car_large_wrap .car_large_title {
  width: 100%;
  margin-bottom: 40px;
  font-size: 30px;
  letter-spacing: -0.6px;
  font-weight: bold;
}
.car_wrap .car_box .car_large_wrap .car_information {
  width: 100%;
  padding: 16px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}
.car_wrap .car_box .car_large_wrap .car_information .number_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.car_wrap .car_box .car_large_wrap .car_information .number_wrap > * {
  height: 48px;
  background: #fff;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #000;
}
.car_wrap .car_box .car_large_wrap .car_information .number_wrap .num_1char {
  width: calc(20% - 8px);
  padding: 7px 12px;
}
.car_wrap .car_box .car_large_wrap .car_information .number_wrap .num_3char {
  width: calc(35% - 8px);
  padding: 7px 20px 7px 21px;
}
.car_wrap .car_box .car_large_wrap .car_information .number_wrap .num_4char {
  width: calc(45% - 6px);
  padding: 7px 7px 7px 8px;
}
.car_wrap .car_box .input_box {
  margin-top: 16px;
  position: relative;
}

.favorite_wrap {
  width: 100%;
  padding: 24px;
}
.favorite_wrap.location {
  background: rgba(7, 64, 228, 0.03);
}
.favorite_wrap .title {
  font-size: 13px;
  color: #a7a7a7;
}
.favorite_wrap .input_box {
  position: relative;
}
.favorite_wrap .input_box .btn_close {
  width: 24px;
  height: 24px;
  background: url(../images/common/ico_close_03.svg) no-repeat center center;
  border: 0;
  position: absolute;
  top: 12px;
  right: 12px;
}
.favorite_wrap .favorite_box {
  margin-bottom: 16px;
  position: relative;
}
.favorite_wrap .favorite_box:last-of-type {
  margin-bottom: 0;
}
.favorite_wrap .favorite_box .title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}
.favorite_wrap .favorite_box .favorite_info {
  padding: 16px;
  background: url(../images/common/ico_arr_right.svg) no-repeat calc(100% - 16px) center #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
  display: flex;
}
.favorite_wrap .favorite_box .favorite_info .favorite_image {
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.favorite_wrap .favorite_box .favorite_info .favorite_detail {
  margin-left: 16px;
  font-size: 15px;
  font-weight: bold;
}
.favorite_wrap .favorite_box .favorite_info .favorite_detail .favorite_address {
  margin-top: 8px;
  font-size: 13px;
  color: #a7a7a7;
  font-weight: normal;
  letter-spacing: -0.26px;
}
.favorite_wrap .favorite_box .favorite_info.none {
  padding: 46.5px 16px;
  font-size: 13px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: url(../images/common/ico_arr_right.svg) no-repeat calc(100% - 16px) center rgba(7, 64, 228, 0.03);
  cursor: pointer;
  display: block;
}
.favorite_wrap .favorite_box .modify {
  padding: 6px;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 35px;
}
.favorite_wrap ul {
  margin-top: 8px;
}
.favorite_wrap ul .address_wrap {
  width: 100%;
  margin-bottom: 8px;
  padding: 13.5px 16px;
  border: 1px solid #ededed;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}
.favorite_wrap ul .address_wrap .address strong {
  display: block;
}
.favorite_wrap ul .address_wrap .choose {
  padding: 0 9.5px;
  font-weight: bold;
  background: none;
  border: 0;
}
.favorite_wrap .checkbox_wrap {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.favorite_wrap .checkbox_wrap .check_box {
  width: 33.3333333333%;
}
.favorite_wrap .checkbox_wrap .check_box .login_label {
  margin-left: 8px;
}

.now_location_wrap {
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  animation: 0.2s slideUp ease 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.now_location_wrap .now_location {
  font-size: 13px;
}
.now_location_wrap .btn_now {
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: bold;
}

.account_wrap {
  width: 100%;
  padding: 24px 24px 40px;
  background: #fff;
}
.account_wrap .title {
  font-size: 13px;
  color: #a7a7a7;
}
.account_wrap .input_box {
  position: relative;
}
.account_wrap .input_box .btn_close {
  width: 24px;
  height: 24px;
  background: url(../images/common/ico_close_03.svg) no-repeat center center;
  border: 0;
  position: absolute;
  top: 12px;
  right: 12px;
}
.account_wrap .account_box {
  margin-bottom: 16px;
  position: relative;
}
.account_wrap .account_box:last-of-type {
  margin-bottom: 0;
}
.account_wrap .account_box .title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
}
.account_wrap .account_box .account_info {
  padding: 16px;
  background: url(../images/common/ico_arr_right.svg) no-repeat calc(100% - 16px) center #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
  display: flex;
}
.account_wrap .account_box .account_info .account_detail {
  font-size: 15px;
  font-weight: bold;
}
.account_wrap .account_box .account_info .account_detail .account_title {
  margin-bottom: 8px;
  font-size: 13px;
  color: #a7a7a7;
  font-weight: normal;
  letter-spacing: -0.26px;
}
.account_wrap .account_box .modify {
  padding: 6px;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 35px;
}

.add_account_wrap {
  padding: 40px 24px 24px 24px;
}
.add_account_wrap .add_account_box .input_box span {
  margin: 0 16px;
  display: inline-block;
}

.state_wrap {
  padding: 24px;
  background: #fff;
}
.state_wrap .state_complete_wrap {
  padding: 0;
  border-radius: 5px;
  cursor: pointer;
  border: solid 1px #ededed;
}
.state_wrap .state_complete_wrap.reservation_management .state_complete_list {
  margin-top: 0;
  padding: 0 16px;
}
.state_wrap .state_complete_wrap.reservation_management .state_complete_list.mypage_rm {
  padding: 16px;
}
.state_wrap .state_complete_wrap.reservation_management .state_complete_list.mypage_rm ul {
  padding: 0;
}
.state_wrap .state_complete_wrap.reservation_management .state_complete_list li .bold {
  font-size: 15px;
  font-weight: bold;
}
.state_wrap .state_complete_wrap.reservation_detail_wrap {
  padding: 0;
  border: 0;
}
.state_wrap .state_complete_wrap.reservation_detail_wrap:first-of-type {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #ededed;
}
.state_wrap .state_complete_wrap.reservation_detail_wrap .state_complete_list {
  margin-top: 0;
}
.state_wrap .state_complete_wrap.reservation_detail_wrap .state_complete_list li.detail {
  margin-bottom: 24px;
  color: #0740e4;
  font-weight: bold;
}
.state_wrap .state_complete_wrap.reservation_detail_wrap .state_complete_list li.title {
  margin-bottom: 24px;
  font-size: 13px;
  color: #a7a7a7;
}
.state_wrap .state_complete_wrap.reservation_detail_wrap .state_complete_list li .price {
  font-size: 15px;
  color: #0740e4;
  font-weight: bold;
}
.state_wrap .state_complete_wrap.coupon_management {
  margin-bottom: 16px;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list {
  margin-top: 0;
  padding: 16px;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list ul {
  padding: 0;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list li {
  margin-bottom: 13px;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list li button {
  padding: 0 12px;
  font-size: 13px;
  color: #83b100;
  background: url(../images/common/ico_arr_right_green.svg) no-repeat center right;
  border: 0;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list li.soon button {
  padding: 0 12px;
  font-size: 13px;
  color: #ff673e;
  background: url(../images/common/ico_arr_right_orange.svg) no-repeat center right;
  border: 0;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list li:last-of-type {
  margin-bottom: 0;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list li .bold {
  font-size: 15px;
  font-weight: bold;
  color: #000;
}
.state_wrap .state_complete_wrap.coupon_management .state_complete_list li .title {
  font-size: 13px;
  color: #a7a7a7;
}
.state_wrap .state_complete_wrap.disabled {
  background: #f8f8f8;
}
.state_wrap .state_complete_wrap.disabled .state_complete_list {
  margin-top: 0;
}
.state_wrap .state_complete_wrap.disabled .state_complete_list li button {
  padding: 0 12px;
  font-size: 13px;
  color: #000;
  background: url(../images/common/ico_arr_right.svg) no-repeat center right;
  border: 0;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap {
  padding: 0;
  border: 0;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .state_complete_list {
  margin-top: 0;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .state_complete_list ul {
  padding: 0;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .state_complete_list li.detail {
  margin-bottom: 24px;
  color: #0740e4;
  font-weight: bold;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .state_complete_list li.title {
  margin-bottom: 24px;
  font-size: 13px;
  color: #a7a7a7;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .state_complete_list li .price {
  font-size: 15px;
  color: #0740e4;
  font-weight: bold;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .coupon_box {
  margin-top: 40px;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .coupon_box .title {
  font-size: 13px;
  color: #a7a7a7;
}
.state_wrap .state_complete_wrap.coupon_detail_wrap .coupon_box .text {
  margin-top: 24px;
  font-size: 13px;
}

.coupon_management_wrap {
  padding: 24px;
}
.coupon_management_wrap .coupon_management_box {
  padding: 24px;
  background: #fff;
  border-radius: 5px;
}
.coupon_management_wrap .coupon_management_box:first-of-type {
  margin-bottom: 16px;
}
.coupon_management_wrap .coupon_management_box .d-day {
  text-align: center;
  font-size: 13px;
  color: #83b100;
}
.coupon_management_wrap .coupon_management_box .d-day.soon {
  color: #ff673e;
}
.coupon_management_wrap .coupon_management_box .title {
  margin-top: 16px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
.coupon_management_wrap .coupon_management_box .cancel_contents {
  font-size: 13px;
}

.faq_tab {
  padding: 20px 24px;
  overflow: hidden;
}
.faq_tab ul {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  float: left;
}
.faq_tab ul::-webkit-scrollbar {
  display: none;
}
.faq_tab ul li {
  margin-right: 40px;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}
.faq_tab ul li a {
  font-size: 13px;
  color: #a7a7a7;
}
.faq_tab ul li.on a {
  color: #0740e4;
  font-weight: bold;
}

.faq_list {
  padding: 0 24px;
  background: #fff;
}
.faq_list ul {
  padding-top: 10px;
  font-size: 13px;
}
.faq_list ul li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 64, 228, 0.03);
  background: url(../images/common/ico_arr_down02.svg) no-repeat top 22px right;
  cursor: pointer;
}
.faq_list ul li .text {
  margin-top: 19px;
  padding: 16px;
  background: #f8f8f8;
  overflow-y: scroll;
  border-radius: 5px;
  display: none;
}
.faq_list ul li.on {
  background: url(../images/common/ico_arr_up.svg) no-repeat top 22px right;
}
.board_tab {
  overflow: hidden;
}
.board_tab ul {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  float: left;
}
.board_tab ul::-webkit-scrollbar {
  display: none;
}
.board_tab ul li {
  width: 33.3333333333%;
  white-space: nowrap;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
}
.board_tab ul li a {
  padding: 13px 0;
  font-size: 15px;
  color: #a7a7a7;
  font-weight: 500;
}
.board_tab ul li.on {
  background: #fff;
  border-top: 1px solid #000;
}
.board_tab ul li.on a {
  color: #0740e4;
  font-weight: bold;
}

.board_list {
  padding: 0 24px;
  background: #fff;
}
.board_list ul {
  padding-top: 10px;
  font-size: 13px;
}
.board_list ul li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 64, 228, 0.03);
  background: url(../images/common/ico_arr_down02.svg) no-repeat top 22px right;
  cursor: pointer;
}
.board_list ul li.new .title {
  width: 90%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board_list ul li.new .title div {
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.board_list ul li .text {
  margin-top: 19px;
  padding: 16px;
  background: #f8f8f8;
  overflow-y: scroll;
  border-radius: 5px;
  display: none;
}
.board_list ul li.on {
  background: url(../images/common/ico_arr_up.svg) no-repeat top 22px right;
}
.notice_list {
  padding: 0 24px;
  background: #fff;
}
.notice_list ul {
  padding-top: 10px;
  font-size: 13px;
}
.notice_list ul li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(7, 64, 228, 0.03);
  background: url(../images/common/ico_arr_down02.svg) no-repeat top 22px right;
  cursor: pointer;
}
.notice_list ul li.new .title {
  width: 90%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice_list ul li.new .title div {
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.notice_list ul li.new .title span {
  margin-left: 5px;
  padding: 2px 7px;
  background: #ff673e;
  font-size: 11px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  line-height: 1;
  display: inline-block;
  position: relative;
  top: 0;
}
.notice_list ul li .text {
  margin-top: 19px;
  padding: 16px;
  background: #f8f8f8;
  overflow-y: scroll;
  border-radius: 5px;
  display: none;
}
.notice_list ul li.on {
  background: url(../images/common/ico_arr_up.svg) no-repeat top 22px right;
}
.notice_view {
  height: 100%;
  padding: 24px;
}
.notice_view > div {
  font-size: 13px;
}
.notice_view .subject {
  padding-bottom: 16px;
  font-weight: bold;
  border-bottom: 1px solid rgba(7, 64, 228, 0.03);
}
.notice_view .text {
  margin-top: 16px;
}
.notice_view .text img {
  width: 100% !important;
  height: auto !important;
}
.notice_view .box {
  width: 100%;
  height: 60vh;
  margin-top: 16px;
  padding: 16px;
  background-color: rgba(7, 64, 228, 0.03);
}

.message_wrap {
  height: 100%;
  padding: 24px;
  padding-bottom: 70px;
  overflow-y: scroll;
}
.message_wrap .push_box {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: #fff;
  cursor: pointer;
}
.message_wrap .push_box.none {
  background: none;
  border: dashed 1px rgba(7, 64, 228, 0.1);
}
.message_wrap .push_box.none .push_top .none {
  width: 80px;
  height: 16px;
  background: #fff;
}
.message_wrap .push_box.none .push_contents .none {
  width: 100%;
  height: 16px;
  background: #fff;
}
.message_wrap .push_box.none .push_contents .none.short {
  width: 100px;
  margin-top: 3px;
}
.message_wrap .push_box .push_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.message_wrap .push_box .push_top .title {
  font-size: 13px;
  font-weight: bold;
}
.message_wrap .push_box.noread .push_top .title {
  font-size: 13px;
  font-weight: normal;
  color: #FF673E;
}
.message_wrap .push_box .push_top .time {
  font-size: 13px;
  color: #a7a7a7;
}
.message_wrap .push_box .push_contents {
  margin-top: 16px;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.message_wrap .message_none {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: 13px;
  color: #a7a7a7;
}
.message_wrap .message_receive_box {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
}
.message_wrap .message_receive_box .message_receive {
  width: 240px;
  padding: 16px;
  background: #fff;
  font-size: 13px;
  border-radius: 5px;
}
.message_wrap .message_receive_box .time {
  margin-left: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #a7a7a7;
}
.message_wrap .message_send_box {
  margin: 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: right;
  flex-direction: row-reverse;
}
.message_wrap .message_send_box .message_send {
  width: 240px;
  padding: 16px;
  background: rgba(7, 64, 228, 0.03);
  font-size: 13px;
  border-radius: 5px;
}
.message_wrap .message_send_box .time {
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #a7a7a7;
}
.message_wrap .typing_box {
  width: 100%;
  padding: 12px 24px;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.message_wrap .typing_box .input_typing {
  width: 80%;
  border: 0;
}
.message_wrap .typing_box .btn_send {
  padding: 8px;
  background: none;
  border: 0;
  color: #0740e4;
  font-weight: bold;
  font-size: 13px;
}

.rent_wrap {
  padding: 24px;
  background: #fff;
}
.rent_wrap .rent_tab {
  display: flex;
  justify-content: right;
}
.rent_wrap .rent_tab ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rent_wrap .rent_tab ul li:last-of-type {
  margin-left: 24px;
}
.rent_wrap .rent_tab ul li.thumbnail {
  padding-left: 20px;
  background: url(../images/rent/ico_thumbnail.svg) no-repeat center left;
}
.rent_wrap .rent_tab ul li.thumbnail.on {
  background: url(../images/rent/ico_thumbnail_on.svg) no-repeat center left;
  color: #0740e4;
  font-weight: bold;
}
.rent_wrap .rent_tab ul li.list {
  padding-left: 20px;
  background: url(../images/rent/ico_list.svg) no-repeat center left;
}
.rent_wrap .rent_tab ul li.list.on {
  background: url(../images/rent/ico_list_on.svg) no-repeat center left;
  color: #0740e4;
  font-weight: bold;
}
.rent_wrap .rent_tab ul li {
  font-size: 13px;
  color: #a7a7a7;
}
.rent_wrap .thumbnail_wrap {
  width: 100%;
  margin-top: 24px;
}
.rent_wrap .thumbnail_wrap .thumbnail_box {
  position: relative;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid #ededed;
}
.rent_wrap .thumbnail_wrap .thumbnail_box:last-of-type {
  margin-bottom: 0;
}
.rent_wrap .thumbnail_wrap .thumbnail_box .images_box {
  border-radius: 5px;
  overflow: hidden;
}
.rent_wrap .thumbnail_wrap .thumbnail_box .info_box {
  margin-top: 16px;
  font-size: 13px;
}
.rent_wrap .thumbnail_wrap .thumbnail_box .info_box .car_type {
  font-weight: bold;
}
.rent_wrap .thumbnail_wrap .thumbnail_box .info_box .price {
  margin-top: 13px;
  font-size: 13px;
  color: #0740e4;
  font-weight: bold;
}
.rent_wrap .thumbnail_wrap .thumbnail_box.rent-closed::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.rent_wrap .thumbnail_wrap .thumbnail_box.rent-closed .info_box .price {
  color: #333;
}
.rent_wrap .thumbnail_wrap .thumbnail_box.rent-closed .info_box .price .is_closed {
  padding-left: 5px;
  color: #ff0000;
}
.rent_wrap .list_wrap {
  margin-top: 24px;
}
.rent_wrap .list_wrap .list_box {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid #ededed;
}
.rent_wrap .list_wrap .list_box:last-of-type {
  margin-bottom: 0;
}
.rent_wrap .list_wrap .list_box .images_box {
  margin-right: 16px;
  border-radius: 5px;
  overflow: hidden;
}
.rent_wrap .list_wrap .list_box .info_box {
  font-size: 13px;
}
.rent_wrap .list_wrap .list_box .info_box .car_type {
  color: #a7a7a7;
}
.rent_wrap .list_wrap .list_box .info_box .car_info {
  margin-top: 8px;
}
.rent_wrap .list_wrap .list_box .info_box .car_info span {
  font-weight: bold;
  display: block;
  letter-spacing: -0.4px;
}
.rent_wrap .list_wrap .list_box .info_box .price {
  margin-top: 16px;
  font-size: 13px;
  color: #0740e4;
  font-weight: bold;
}
.rent_wrap .list_wrap .list_box.rent-closed:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.rent_wrap .list_wrap .list_box.rent-closed .info_box .price {
  color: #333;
}
.rent_wrap .list_wrap .list_box.rent-closed .info_box .price .is_closed {
  padding-left: 5px;
  color: #ff0000;
}

.rent_date_wrap .rent_date {
  padding: 24px;
  position: relative;
  background: rgba(7, 64, 228, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.rent_date_wrap .rent_date.on {
  background: #fff;
}
.rent_date_wrap .rent_date .title {
  width: 100%;
  border: 0;
  font-size: 17px;
  font-weight: bold;
  background: url(../images/common/ico_arr_down.svg) no-repeat right center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rent_date_wrap .rent_date .title > div {
  width: 100px;
}
.rent_date_wrap .rent_date .title input[type=button] {
  margin-right: 16px;
  text-align: right;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: bold;
  color: #0740e4;
}
.rent_date_wrap .rent_date .title input[type=button]:focus {
  outline: none !important;
  border: 0;
}

.rent_time_wrap {
  padding-bottom: 100px;
}
.rent_time_wrap .rent_time {
  padding: 24px;
  position: relative;
  background: rgba(7, 64, 228, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.rent_time_wrap .rent_time.on {
  background: #fff;
  border-bottom: 0;
}
.rent_time_wrap .rent_time .title {
  width: 100%;
  border: 0;
  font-size: 17px;
  font-weight: bold;
  background: url(../images/common/ico_arr_down.svg) no-repeat right center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rent_time_wrap .rent_time .title > div {
  width: 100px;
}
.rent_time_wrap .rent_time .title input[type=text] {
  width: 62%;
  margin-right: 16px;
  border: 0;
  background: none;
  font-size: 13px;
  text-align: right;
  font-weight: bold;
  color: #0740e4;
  display: inline-block;
}
.rent_time_wrap .rent_time .title input[type=text]:focus {
  outline: none !important;
  border: 0;
}
.rent_time_wrap .rent_time .wrapper {
  display: none;
  margin-top: 48px;
}
.rent_time_wrap .rent_time .wrapper .time_title {
  margin-top: 20px;
  font-size: 13px;
}
.rent_time_wrap .rent_time .wrapper .time_title:first-of-type {
  margin-top: 0;
}
.rent_time_wrap .rent_time .wrapper .time_title span {
  color: #0740e4;
  font-weight: bold;
}
.rent_time_wrap .rent_time .wrapper .time {
  padding: 24px 0;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap {
  margin-top: 24px;
  overflow: hidden;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap:first-of-type {
  margin-top: 0;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap .title {
  padding: 0;
  font-size: 13px;
  color: #a7a7a7;
  background: none;
  border-bottom: 0;
  font-weight: normal;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.time_list {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  overflow-x: scroll;
  white-space: nowrap;
  float: left;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.time_list::-webkit-scrollbar {
  display: none;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.time_list li {
  width: 64px;
  height: 52px;
  margin-right: 8px;
  padding: 12.5px 0;
  font-size: 15px;
  color: #000;
  text-align: center;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.time_list li.active {
  border-color: #0740e4;
  color: #0740e4;
  font-weight: bold;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.time_list li:last-of-type {
  margin-right: 0;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.minutes_list {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  overflow-x: scroll;
  white-space: nowrap;
  float: left;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.minutes_list::-webkit-scrollbar {
  display: none;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.minutes_list li {
  width: 64px;
  margin-right: 8px;
  padding: 12.5px 0;
  font-size: 15px;
  color: #000;
  text-align: center;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.minutes_list li.active {
  border-color: #0740e4;
  color: #0740e4;
  font-weight: bold;
}
.rent_time_wrap .rent_time .wrapper .time .time_wrap ul.minutes_list li:last-of-type {
  margin-right: 0;
}

.promotion_wrap {
}

.modal_pop_wrap .modal_pop .modal_pop_contents .intro_title,
.terms_view_wrap .intro_title {
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 24px;
}

.modal_pop_wrap .modal_pop .modal_pop_contents .intro_sub_title,
.terms_view_wrap .intro_sub_title {
  font-size: 1.1em;
  font-weight: bold;
  color: #0740e4;
}

.modal_pop_wrap .modal_pop .modal_pop_contents .intro_desc,
.terms_view_wrap .intro_desc {
  margin-top: 12px;
  margin-bottom: 24px;
}

.modal_pop_wrap .modal_pop .modal_pop_contents .intro_desc .intro_desc_table,
.terms_view_wrap .intro_desc .intro_desc_table {
  width: 100%;
  margin: 5px 0;
}

.modal_pop_wrap .modal_pop .modal_pop_contents .intro_desc .intro_desc_table th,
.modal_pop_wrap .modal_pop .modal_pop_contents .intro_desc .intro_desc_table td,
.terms_view_wrap .intro_desc .intro_desc_table th,
.terms_view_wrap .intro_desc .intro_desc_table td {
  border: 1px solid #ddd;
  text-align: center;
}

.modal_pop_wrap .modal_pop .modal_pop_contents .intro_desc:last-of-type,
.terms_view_wrap .intro_desc:last-of-type {
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .rent_wrap .thumbnail_wrap {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
  }
  .rent_wrap .thumbnail_wrap .thumbnail_box {
    width: calc(16.6666666667% - 14px);
    margin-right: 16px;
  }
  .rent_wrap .thumbnail_wrap .thumbnail_box:nth-of-type(6n) {
    margin-right: 0;
  }
  .rent_wrap .thumbnail_wrap .thumbnail_box:last-of-type {
    margin-bottom: 16px;
  }
  .photo_wrap span {
    width: calc((100% - 10px) / 6);
  }
}
@media all and (min-width: 1024px) {
  .photo_wrap {
    justify-content: flex-start;
  }
  .photo_wrap span {
    width: 16.6666666667%;
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=style.css.map */
