@charset "UTF-8";
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/* 基本設定
====================================== */
body {
  font-size: small;
  width: 100%;
  letter-spacing: 1.65;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* header
==================================== */
header {
  width: 100%;
  height: 120px;
  background: url("../shared/header_bg.png") no-repeat -180px;
  background-size: auto 120px;
}

.header_bg_wrap{
  width: 100%;
  height: 60px;
  background: #e6e4d7;
}

.header_in {
  text-align: center;
  padding: 28px 0 0 50px;
  margin: 0;
  display: flex;
  justify-content: left;
  align-items: center;
}

.header_in h1 {
  margin: 0 20px 0 0;
}

.header_in .header_text {
  margin: 0 30px 0 0;
}

.header_in .header_text.for_survey {
    color: #A61D22;
    font-size: 25px;
    font-weight: bold;
}

.header_in .tel_icon {
  display: none;
  width: 56.5px;
  margin: 0;
}

.header_in .tel_icon img{
  width: 100%;
  height: auto;
}


/* main（全般にかかる）
==================================== */
main {
  width: 100%;
}

.main_inner {
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  max-width: 700px;
}

.main_inner .user_name{
  display: flex;
  text-align: left;
  margin: 0 0 20px 0;
  font-size: 1.3em;
  font-weight: bold;
  background: #ffedef;
  padding: 5px 8px 3px 8px;
  border-radius: 5px;
}

.main_inner .user_name .btn_logout {
  font-size: 0.8em;
  padding: 0 0.5em;
  width: auto;
  margin: 0 0 0 auto;
  background-color: darkgray;
}
.main_inner .user_name .btn_logout:hover {
  background-color: gray;
}

.main_inner .admin_menu_list{}

.main_inner .admin_menu_list ul{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.main_inner .admin_menu_list ul li{
  margin: 0 10px 10px 0;
}

.main_inner .admin_menu_list ul li a{
  display: inline-block;
  width: 145px;
  height: 33px;
  line-height: 32px;
  padding: 0 7px;
  cursor: pointer;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #a71d22;
  color: #a71d22;
  text-decoration: none;
  font-size: 1.1em;
}

.main_inner .admin_menu_list ul li.long a{
  width: auto;
  padding: 0 12px;
}

.main_inner .admin_menu_list ul li.active a{
  color: #fff;
  background: #a71d22;
}

.main_inner .admin_menu_list ul li a:hover{
  color: #fff;
  background: #a71d22;
  transition: .5s all ease;
}

.main_inner .select_house{
  border-bottom: 2px solid #cccccc;
  margin-bottom: 18px;
}

.main_inner .select_house dl{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main_inner .select_house dl dt{
  font-size: 1.2rem;
  padding: 0 0 0 5px;
}

.main_inner .select_house dl dd{
  margin-left: 50px;
  font-size: 1.5rem;
  font-weight: bold;
}

.kengaku_plans{
  border-bottom: 2px solid #cccccc;
  margin-bottom: 18px;
}

.kengaku_plans dl{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.kengaku_plans dl dt{
  font-size: 1.2rem;
  padding: 0 0 0 5px;
}

.kengaku_plans dl dd{
  margin-left: 50px;
  font-size: 1.5rem;
}

.main_inner .required {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-left: 5px;
  text-align: left;
  color: #222222;
}

.main_inner .admin_required{
  margin: 0 10px 10px 10px;
  text-align: left;
  font-size: 1.05em;
  line-height: 1.8em;
}

.main_inner .fin_text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-left: 5px;
  text-align: left;
  color: #222222;
}

.fin_link_btn a{
  display: block;
  width: 230px;
  margin: 20px auto 0 auto;
  text-align: center;
  padding: 8px 10px;
  font-size: 1rem;
  background: #a61d22;
  border-radius: 22px;
  transition: all 0.3s;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.search_area{
  margin: 0 0 30px 0;
}

.search_area .search_title {
  text-align: left;
}
.search_area .search_title h3{
  font-size: 1.2em;
  font-weight: bold;
  padding: 2px 10px;
  border-bottom: 1px dotted #4c79c9;
  margin: 0 0 15px 0;
}

.search_area .search_box{
  padding: 10px 15px;
  border: 2px solid #4c79c9;
  display: inline-block;
}

.search_area .search_box.line1{
  padding: 10px 15px;
}

.search_area .search_box dl{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 5px 0;
}

.search_area .search_box dl dt{
  min-width: 50px;
  margin: 0 10px 0 0;
  background: #e0f2ff;
  padding: 2px 10px;
}

.search_area .search_box dl dd{
  margin: 0 25px 0 0;
  padding: 2px 0;
}

.search_area .search_box .search_shukei dl{
  margin: 0 0 5px 0;
  align-items: flex-start;
}

.search_area .search_box .search_shukei dl dt{
  min-width: 50px;
  width: 111px;
  margin: 0 10px 0 0;
  background: #e0f2ff;
  padding: 2px 10px;
}

.search_area .search_box .search_shukei dl dd{
  padding: 2px 0;
  margin: 0;
  text-align: left;
}

.search_area .search_box .search_shukei dl dd .search_shukei_sub{
  margin-bottom: 5px;
}

.search_area .search_box .search_shukei dl dd .search_shukei_sub label input[type="radio"]{
  margin: 0 5px 0 0;
}

.search_area .search_box .search_shukei dl dd .search_shukei_sub .search_shukei_sub_select{
  margin: 5px 0 0 30px;
}

.search_area .search_box dl dd select{
  width: auto;
  padding: 0.4em 2.5em 0.4em 0.8em;
}

.search_area .search_box dl dd .search_shukei_sub select{
  padding: 0.4em 2em 0.4em 0.7em;
}

.search_area .search_box dl dd.yoyaku{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.search_area .search_box dl dd.yoyaku .yoyaku_year{
  margin: 0 10px 0 0;
}

.search_area .search_box .search_box_wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.search_area .search_box .search_box_wrapper dl{
  margin: 0;
}

.search_area .search_box .search_btn{}

.search_area .search_box .search_btn input[type="submit"] {
  width: 70px;
  margin-right: 10px;
  display: block;
  text-align: center;
  border-radius: 4px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  border: 1px solid #ccc;
  cursor: pointer;
  background: rgba(64, 103, 206, 1);
  background: -moz-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(64, 103, 206, 1)), color-stop(100%, rgba(30, 61, 182, 1)));
  background: -webkit-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: -o-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: -ms-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: linear-gradient(to bottom, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1572be', endColorstr='#0d48a2', GradientType=0);
}

.search_area .search_box .search_btn input[type="submit"]:hover{
  background: rgba(30,61,182,1);
  background: -moz-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(30,61,182,1)), color-stop(100%, rgba(64,103,206,1)));
  background: -webkit-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: -o-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: -ms-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: linear-gradient(to bottom, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d48a2', endColorstr='#1572be', GradientType=0 );
}

.search_area .search_box .search_btn input[type="button"] {
  width: 85px;
  margin-right: 10px;
  display: block;
  text-align: center;
  border-radius: 4px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  border: 1px solid #ccc;
  cursor: pointer;
  background: rgba(64, 103, 206, 1);
  background: -moz-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(64, 103, 206, 1)), color-stop(100%, rgba(30, 61, 182, 1)));
  background: -webkit-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: -o-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: -ms-linear-gradient(top, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  background: linear-gradient(to bottom, rgba(64, 103, 206, 1) 0%, rgba(30, 61, 182, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1572be', endColorstr='#0d48a2', GradientType=0);
}

.search_area .search_box .search_btn input[type="button"]:hover{
  background: rgba(30,61,182,1);
  background: -moz-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(30,61,182,1)), color-stop(100%, rgba(64,103,206,1)));
  background: -webkit-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: -o-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: -ms-linear-gradient(top, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  background: linear-gradient(to bottom, rgba(30,61,182,1) 0%, rgba(64,103,206,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d48a2', endColorstr='#1572be', GradientType=0 );
}

.survey_table{
  display: inline-block;
}

.survey_table .total_count{
  text-align: left;
  margin: 0 auto;
}

.survey_table .total_count span{
  font-size: 1.3em;
  font-weight: bold;
}

.survey_table table{
  font-size: 1.05em;
  margin: 0 auto;
}

.survey_table table th{
  background: #328c95;
  border: 1px solid #328c95;
  text-align: center;
  color: #fff;
  padding: 5px;
  font-size: 1.05em;
}

.survey_table table td{
  padding: 5px;
  border: 1px solid #625e5c;
}

.survey_table table td a{
    color:#00416b;
}

.survey_table table th.th_link{
  width: 80px;
}
.survey_table table th.th_code{
  width: 80px;
}
.survey_table table th.th_date{
  width: 140px;
}
.survey_table table th.th_name{
  width: 100px;
}
.survey_table table th.th_kana{
  width: 160px;
}
.survey_table table th.th_gift{
  width: 80px;
}

.survey_table table th {
  border-right: 1px solid #ffffff;
}
.survey_table table th:last-child{
  border-right: 1px solid #328c95;
}

.survey_table table tr td.td_name{
  text-align: left;
}
.survey_table table tr td.td_kana{
  text-align: left;
}

.count_table{
  display: inline-block;
}

.count_table .total_count{
  text-align: left;
  margin: 0 auto;
}

.count_table .total_count span{
  font-size: 1.3em;
  font-weight: bold;
}

.count_table table{
  font-size: 1.05em;
  margin: 0 auto;
}

.count_table table th{
  background: #328c95;
  border: 1px solid #328c95;
  text-align: center;
  color: #fff;
  padding: 5px;
  font-size: 1.05em;
}

.count_table table td{
  padding: 5px;
  border: 1px solid #625e5c;
}

.count_table table th.th_maker_date{
  width: 140px;
  border-right: 1px solid #ffffff;
}

.count_table table th.th_maker_name{
  width: 200px;
  border-right: 1px solid #ffffff;
}

.count_table table th.th_maker_count{
  width: 60px;
  border-right: 1px solid #ffffff;
}

.count_table table th.th_maker_total{
  width: 80px;
}

.count_table table th:last-child{
  border-right: 1px solid #328c95;
}

.count_table table tr td.td_maker_name{
  text-align: left;
}

.count_table table tr td.td_maker_count{
  text-align: right;
}

.count_table table tr td.td_maker_total{
  text-align: right;
}


.calendar_pager{
  margin-bottom: 5px;
}

.calendar_pager .calendar_pager_wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendar_pager .calendar_pager_wrapper .cp_select{
  margin: 0 40px;
}

.calendar_pager .calendar_pager_wrapper .cp_prev button,
.calendar_pager .calendar_pager_wrapper .cp_next button{
  border: 1px solid #cccccc;
  background: none;
  color: #2141b8;
  padding: 3px 5px;
  cursor: pointer;
}

.calendar_pager .calendar_pager_wrapper .cp_prev button:hover,
.calendar_pager .calendar_pager_wrapper .cp_next button:hover{
  font-weight: bold;
  border: 1px solid #2141b8;
}

.calendar_pager .calendar_pager_wrapper dl{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}

.calendar_pager .calendar_pager_wrapper dl dt{
  min-width: 50px;
  margin: 0 10px 0 0;
  background: #e0f2ff;
  padding: 2px 10px;
}

.calendar_pager .calendar_pager_wrapper dl dd{
  margin: 0;
  padding: 2px 0;
}

.calendar_pager .calendar_pager_wrapper dl dd select{
  width: auto;
  padding: 0.4em 2.5em 0.4em 0.8em;
}

.calendar_pager .calendar_pager_wrapper dl dd.yoyaku{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.calendar_pager .calendar_pager_wrapper dl dd.yoyaku .yoyaku_year{
  margin: 0 10px 0 0;
}

input.btn,
button.btn{
  display: block;
  width: 230px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 10px;
  font-size: 1.1rem;
  background-color: #e46b39;
  border-radius: 22px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input.btn:hover,
button.btn:hover{
  background-color: #e15a23;
}

.cancel_btn{
  text-align: right;
  margin-top: 10px;
}

.cancel_btn button{
  margin: 0;
  text-align: center;
  padding: 4px 15px;
  font-size: 1rem;
  background-color: #e46b39;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.cancel_btn button:hover{
  background-color: #e15a23;
}

input.btn_back,
button.btn_back{
  margin-top: 0.8rem;
  padding: 0.5rem;
  background-color: darkgray;
}

input.btn_back:hover,
button.btn_back:hover{
  background-color: gray;
}

.model_house_btn input.btn,
.model_house_btn button.btn{
  background-color: #af3539;
}

.model_house_btn input.btn:hover,
.model_house_btn input.button:hover{
  background-color: #a61e22;
}

/* ハウスメーカーと時間帯
=========================================== */
form {
  width: 100%;
}

form .form_inner {
  margin: 0 auto;
  width: 100%;
}

form .form_inner select {
  width: 100%;
  margin: 0 auto;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  border-color: #e2b8ba;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

form .form_inner select:hover, form .form_inner select:focus {
  border-color: #a71d22;
}

form .form_inner select::after {
  font-family: FontAwesome;
  content: "¥f107";
  width: 1.6rem;
  height: 1.6rem;
}

.table_container {
  margin: 0 auto;
  width: 100%;
}

.table_container .pager{
  margin: 0 0 10px 0;
}

.table_container .pager ul{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.table_container .pager ul li{
  margin: 0 10px 0 0;
}

.table_container .pager ul li .page_button{
  background: #ffffff;
  border: 1px solid #80060a;
  color: #80060a;
  cursor: pointer;
}

.table_container .pager ul li .page_button:disabled{
  opacity: 0.7;
  cursor: unset;
}

.table_container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  table-layout: fixed;
}

.table_container table thead tr th {
  text-align: center;
  color: #fff;
  background-color: #328c95;
  font-size: 1.1rem;
  border: 1px solid #328c95;
  padding: 0.3rem 0;
}

.table_container table thead tr th:nth-of-type(1) {
  width: 75%;
  position: relative;
}

.table_container table thead tr th:nth-of-type(1) span{
  display: block;
  border-right: 1px solid #70afb8;
  margin: 0 -1px 0 0;
}

.table_container table thead tr th:nth-of-type(2) {
  width: 25%;
}

.table_container table tbody tr:nth-of-type(2n) td {
  background-color: #fff8ec;
}

.table_container table tbody tr td {
  font-size: 1rem;
  padding: 0.4rem;
}

.table_container table tbody tr td:first-child{
  text-align: left;
  border-left:1px solid #625e5c;
  border-right:1px solid #b3b2b6;
}

.table_container table.times_table tbody tr td:nth-child(2){
  border-right:1px solid #b3b2b6;
}

.table_container table tbody tr td:last-child{
  border-right:1px solid #625e5c;
}

.table_container table tbody tr:last-child td{
  border-bottom:1px solid #625e5c;
}

.table_container table tbody tr td .fc_red{
  color: #a61e22;
  font-weight: bold;
}

.table_container table tbody tr td.selected {
  background: #ffff93;
  font-weight: bold;
}

.table_container table tbody tr td .selected_text{
  color: #ff0000;
}

.table_container table tbody tr td .cnl {
  font-size: 1.1rem;
  padding: 0 0.2rem;
  margin-left: 0.8rem;
}

.table_container table tbody tr td .status_mark{
  display: inline-block;
  width: 20px;
}

.table_container table tbody tr td .rsv {
  font-size: 1rem;
  background-color: #af3539;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100px;
  padding: 0;
  border-radius: 13px;
  cursor: pointer;
}

.table_container table tbody tr td .rsv:hover {
  background-color: #a61e22;
}

.table_container table tbody tr td .cancel_reserve{
  font-size: 1rem;
  background-color: darkgray;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100px;
  padding: 0;
  border-radius: 13px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.table_container table tbody tr td .batsu {
  background-color: #7d7d7d;
  color: #c9c9c9;
  cursor: unset;
}

.table_container table tbody tr td .batsu:hover {
  background-color: #7d7d7d;
}

.table_container table.model_table{
  width: 450px;
  margin: 0 auto;
  table-layout: unset;
}

.table_container table.model_table thead tr th:nth-of-type(1){
  width: 60%;
}

.table_container table.model_table thead tr th:nth-of-type(2){
  width: 40%;
}

.table_container table.times_table{
  width: 400px;
  margin: 0 auto;
  table-layout: unset;
}

.table_container table.times_table thead tr th:nth-of-type(1){
  width: 50%;
}

.table_container table.times_table thead tr th:nth-of-type(2){
  width: 50%;
}

.table_container table.times_table tbody tr td:first-child{
  text-align: center;
}

.table_container table.times_table tbody tr td:last-child{
  white-space: nowrap;
}


.main_inner .annotation {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-left: 5px;
  text-align: left;
  color: #222222;
}

.main_inner .annotation span{
  display: inline-block;
}


.btn_box input:nth-of-type(1) {
  /*margin-bottom: 2rem;*/
}

/* 時間帯
=========================================== */
tr th:nth-of-type(1) {
  width: 50%;
}

tr th:nth-of-type(2) {
  width: 20%;
}

tr th:nth-of-type(3) {
  width: 30%;
}

/* 見学予定日
=========================================== */
.date_err_text {
  font-weight: bold;
  color: #c40026;
  font-size: 1.3em;
  border: 1px solid;
  padding: 10px 0;
  margin-bottom: 30px;
}

.date_calendar_box{
  width: 490px;
  margin: 0 auto 40px auto;
}

.calender_month{
  font-size: 1.5rem;
}

.date_calendar_box table{
  width: 100%;
}

.date_calendar_box table th{
  border: 1px solid #ccc;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  width: 58px;
  background: #eeeeee;
}

.date_calendar_box table th.sun{
  color: #ff0000;
  background: #ffedef;
}

.date_calendar_box table th.sat{
  color: #0000ee;
  background: #e0f2ff;
}

.date_calendar_box table td{
  border: 1px solid #ccc;
  padding: 5px;
  width: 58px;
  height: 50px;
  line-height: 40px;
  vertical-align: top;
  text-align: center;
  font-size: 1.3em;
  cursor: pointer;
}

.date_calendar_box table td:hover{
  background: #fff7d3;
}

.date_calendar_box table td.empty{
  background: none;
  cursor: unset;
}

.date_calendar_box table td.disabled-book {
  background-color: lightgray;
}

.date_calendar_box table td .detail{
  font-size: 0.85em;
}

.date_calendar_box table td:first-child .date{
  color: #ff0000;
}

.date_calendar_box table td:nth-child(7) .date{
  color: #0000ee;
}

.date_calendar_box table td .schedule_detail{
  text-align: right;
}

.date_intro_msg{
  display: flex;
  justify-content: center;
  margin-top: 1em;
  margin-bottom: 2.5em;
  padding: 0 1em 0.5em;
  border-bottom: 2px solid #a61d22;
}

  .date_intro_msg p{
    color: #a61d22;
    font-size: 1.5em;
    text-align: center;
    font-weight: 700;
    line-height: 1.6;
  }

.date_calendar_bottom_msg{
  background: #a61d22;
  color: #fff;
  text-align: center;
    margin: 3em 0;
  padding: 0.5em 0;
}

  .date_calendar_bottom_msg p{
    font-size: 1.1em;
    font-weight: 500;
  }

    .date_calendar_bottom_msg p::before{
      content: "※";
    }

/* 選択したハウスメーカー一覧
=========================================== */
.content_box {
  text-align: left;
  margin-bottom: 1.5rem;
  width: 100%;
  font-size: 1.1rem;
}

.content_box h2{
  margin: 0 5px 3px 5px;
  font-weight: bold;
}

.content_box .content_title{
  text-align: center;
  background-color: #328c95;
  padding: 0.2rem 0;
  color: #ffffff;
}

.content_box .content_box_inner{
  padding: 0.8rem 0.5rem 0 0.5rem;
  border: 2px solid #787878;
  border-top: none;
}

.content_box .content_item {
  margin-top: 1rem;
}

.content_box .content_item:nth-of-type(1) {
  margin-top: 0;
}

.content_box .content_item dl{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.content_box .content_item dl dt{
  padding: 0 0 0 8px;
}

.content_box .content_item dl dd{
  margin: 0 0 0 20px;
}

.content_box .content_item .reserve_title{
  padding: 0 0 0 8px;
  margin: 20px 0 3px 0;
}

.content_box .content_item ul li {
  border-top: 1px dotted #999999;
  padding: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.content_box .content_item ul li .cnl_time{
  display: inline-block;
  white-space: nowrap;
}

.content_box .content_item ul li .cnl_time .number_box{
  display: inline-block;
  width: 27px;
  background: #e46b39;
  text-align: center;
  color: #ffffff;
}

.content_box .content_item ul li .cnl_detail{
  display: inline-block;
  margin-left: 10px;
}

.content_box .content_item ul li .cnl_button{
  margin-left: auto;
  display: inline-block;
  white-space: nowrap;
}

.content_box .content_item ul li input[type="submit"]{
  cursor: pointer;
}

.content_box .content_item ul li .cnl {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  color: #222222;
  border: 1px solid #ccc;
  background: #ebebeb;
  text-align: center;
  line-height: 25px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  text-decoration: none;
  padding: 0 20px;
  cursor: pointer;
}

.content_box .content_item ul li .cnl:hover{
  background: #e46b39;
  border: 1px solid #e46b39;
  color: #ffffff;
}

.content_box .content_item ul li .cnl:nth-of-type(1) {
  display: inline-block;
  margin-right: 0.5rem;
}

.content_box + input.btn,
.content_box + button.btn{
  margin-bottom: 3rem;
}

.addreg {
  font-size: 1.1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.addreg p{
  font-size: 1rem;
}

.addreg.add_border{
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cccccc;
}

.addreg h2{
  margin: 0 5px 3px 5px;
  font-weight: bold;
}

.addreg p {
  margin: 0 10px 1.5rem 10px;
}

/* お客様情報入力
=========================================== */
.info {
  font-weight: bold;
  text-align: left;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.text_box {
  text-align: left;
}

.text_box:not(:last-child) {
  margin-bottom: 1rem;
}

.text_box{
  font-size: 1rem;
}

.text_box .privacy_box{
  padding: 10px;
  border: 2px solid #a61e22;
  width: 450px;
  margin: 0 auto;
}

.text_box .privacy_box .privacy_box_agree{
  text-align: center;
}

.text_box h2{
  font-weight: bold;
  border-bottom: 1px dotted #a71d22;
  margin: 0 0 20px 0;
  padding: 3px 5px;
  text-align: center;
  font-size: 1.1em;
}

.text_box dl{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.text_box dl dt{
  font-size: 1em;
  font-weight: bold;
  background: #f7e9e9;
  padding: 3px 10px;
  border-radius: 10px;
  width: 20%;
  white-space: nowrap;
}

.text_box dl dd{
  margin: 0 10px;
  width: 72%;
}

.text_box .date_yoyaku_list{}

.text_box .date_yoyaku_list ul{}

.text_box .date_yoyaku_list ul li{
  padding: 5px;
  border-bottom: 1px solid #ccc;
}

.text_box .date_yoyaku_list ul li a{
  color: #222222;
  text-decoration: none;
}

.text_box .date_yoyaku_list ul li a:hover{
  text-decoration: underline;
}


.dm_link{
  display: block;
  margin: 0.5em 0;
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}

.text_box label {
  font-size: 1.1rem;
  cursor: pointer;
}

.text_box .checkbox + label{
  font-size: 1.1rem;
  margin: 10px 0;
}

.text_box .checkbox + label::before{
  left: 0.5em;
}

.text_box .checkbox + label::after{
  left: 0.5em;
}

.text_box label .fc_red{
  color: #a61e22;
}

.text_box .text {
  width: 100%;
  border: 1px solid #e2b8ba;
  border-radius: 5px;
  padding: 0.2em 0.5em;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.text_box .text:hover, .text_box .text:focus {
  border-color: #a71d22;
}

.text_box .text_box_inner{
  display: flex;
  justify-content: flex-start;
}

.text_box .text_box_inner .text{
  width: 160px;
}

.text_box .search_address {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  color: #222222;
  border: 1px solid #ccc;
  background: #ebebeb;
  text-align: center;
  line-height: 25px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  text-decoration: none;
  padding: 0 20px;
  cursor: pointer;
  margin-left: 10px;
}

.caution {
  font-size: 1rem;
  text-align: left;
}

.form_inner .btn_box {
  margin: 2rem 0 1.5rem;
}

.btn_box input.btn,
.btn_box button.btn{
  margin-bottom: 15px;
}

/* 入力確認画面
=========================================== */
.info_box {
  width: 100%;
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.info_box li {
  width: 100%;
}

.info_box li:not(:last-child) {
  margin-bottom: 1rem;
}

.info_box li dl {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.info_box li dl dt {
  font-size: 1.1rem;
  padding: 3px 8px 2px 8px;
  background: #f7e9e9;
  border-radius: 5px;
  width: 23%;
}

.info_box li dl dd {
  font-size: 1.1rem;
  margin: 0.2rem 8px;
  width: 70%;
}

.info_box .caution {
  margin-top: 2rem;
}
/*# sourceMappingURL=base.css.map */

/* カレンダー体裁
=========================================== */
.calendar_box{
  width: 490px;
  margin: 0 auto;
}

#model_calendar{
  width: 630px;
}

.calendar_box .total_count{
  text-align: left;
  width: 490px;
  margin: 0 auto 5px auto;
}

.calendar_box .total_count span{
  font-size: 1.3em;
  font-weight: bold;
}

.calendar_box table{
  width: 100%;
}

.calendar_box table th{
  border: 1px solid #ccc;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  width: 58px;
  background: #eeeeee;
}

#model_calendar table th{
  width: 78px;
}

.calendar_box table th.sun{
  color: #ff0000;
  background: #ffedef;
}

.calendar_box table th.sat{
  color: #0000ee;
  background: #e0f2ff;
}

.calendar_box table td{
  border: 1px solid #ccc;
  padding: 5px;
  width: 58px;
  height: 50px;
  vertical-align: top;
  text-align: left;
}

.calendar_box table td .detail{
  font-size: 0.85em;
}

#model_config .calendar_box table td:hover{
  cursor: pointer;
  background: #ffffe2;
}

.calendar_box table td:first-child .date{
  color: #ff0000;
}

.calendar_box table td:nth-child(7) .date{
  color: #0000ee;
}

.calendar_box table td .schedule_detail{
  text-align: right;
}

.sp_view{
  display: none;
}

/*20260108追加*/
.reservation_banner img{
  max-width: 100%;
  height: auto;
}



/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
  header{
    width: 100%;
    height: 21.6vw;
    background: url(../shared/header_bg.png) no-repeat center;
    background-size: auto 21.6vw;
  }

  .header_bg_wrap{
    background: none;
  }

  .header_in{
    padding: 0 0 0 3%;
  }

  .header_in img{
    width: 100%;
    height: auto;
  }

  .header_in h1{
    width: 39%;
    margin: 2% 4% 0 0;
  }

  .header_in .header_text{
    width: 32%;
    margin: 0 7% 0 0;
  }

  .header_in .tel_icon{
    width: 11%;
    display: block;
  }

  .main_inner{
    padding: 10px 0 30px 0;
  }

  .kengaku_plans dl dt{
    white-space: nowrap;
  }

  .kengaku_plans dl dd{
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .main_inner .required{
    font-size: 0.9rem;
  }

  .main_inner .fin_text{
    font-size: 1rem;
  }

  .main_inner .annotation{
    font-size: 0.9rem;
  }

  .table_container table{
    margin-bottom: 1.5rem;
  }

  .table_container table thead tr th:nth-of-type(1){
    width: 55%;
  }

  .table_container table thead tr th:nth-of-type(2) {
    width: 45%;
  }

  .table_container table.model_table{
    width: 100%;
    margin: 0 auto;
  }

  .table_container table.model_table thead tr th:nth-of-type(1){
    width: 55%;
  }

  .table_container table.model_table thead tr th:nth-of-type(2){
    width: 45%;
  }

  .table_container table.times_table{
    width: 100%;
    margin: 0 auto;
  }

  .table_container table.times_table thead tr th:nth-of-type(1){
    width: 50%;
  }

  .table_container table.times_table thead tr th:nth-of-type(2){
    width: 50%;
  }

  .table_container table tbody tr td .rsv{
    width: 25vw;
  }

  .content_box .content_box_inner{
    font-size: 1rem;
  }

  .main_inner .select_house dl dt{
    white-space: nowrap;
    text-align: left;
  }

  .main_inner .select_house dl dd{
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .sp_view{
    display: block;
  }

  .content_box .content_item ul li{
    display: block;
  }

  .content_box .content_item ul li .cnl_button{
    display: block;
    text-align: right;
    margin: 5px 0 0 0;
  }

  .content_box .content_title{
    padding: 0.1rem 0;
  }

  .addreg p{
    font-size: 0.9rem;
  }

  .text_box .privacy_box{
    width: 95%;
  }

  .text_box label{
    font-size: 1rem;
  }

  .text_box .text_box_inner .text{
    width: 45vw;
  }

  .text_box .search_address {
    display: inline-block;
    font-size: 1rem;
    font-weight: normal;
    color: #222222;
    border: 1px solid #ccc;
    background: #ebebeb;
    text-align: center;
    line-height: 25px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-decoration: none;
    padding: 0 5vw;
    cursor: pointer;
    margin-left: 3vw;
  }

  input.btn, button.btn{
    padding: 4px 10px;
  }

  .info_box li:not(:last-child){
    margin-bottom: 0.5rem;
  }

  .info_box li dl{
    display: flex;
    justify-content: flex-start;
  }

  .info_box li dl dt{
    width: 27vw;
    white-space: nowrap;
    font-size: 1rem;
  }

  .info_box li dl dd{
    width: 72vw;
    margin: 1vw 0 0 3vw;
    word-break: break-all;
    font-size: 1rem;
  }

  .info_box li.sp_long{
    margin-top: 1rem;
  }

  .info_box li.sp_long dl{
    display: block;
  }

  .info_box li.sp_long dl dt{
    width: auto;
    white-space: nowrap;
  }

  .info_box li.sp_long dl dd{
    width: auto;
    margin: 2vw 0 0 3vw;
  }

  .caution{
    font-size: 1rem;
  }

  /* 見学予定日
=========================================== */
  .date_calendar_box{
    width: 100%;
  }

  .date_calendar_box table th{
    border: 1px solid #ccc;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    width: calc(100% / 7);
    background: #eeeeee;
  }


  .date_calendar_box table td{
    border: 1px solid #ccc;
    padding: 5px;
    width: calc(100% / 7);
    height: 45px;
    line-height: 35px;
    vertical-align: top;
    text-align: center;
    font-size: 1.3em;
    cursor: pointer;
  }

  .date_intro_msg{
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin-bottom: 1.5em;
  }

    .date_intro_msg p{
      font-size: 1.15em;
    }

  .date_calendar_bottom_msg{
        margin: 3em 0;
    padding: 0.5em 0.8em;
    text-align: left;
  }

    .date_calendar_bottom_msg p{
      position: relative;
      padding-left: 1.3em;
    }

        .date_calendar_bottom_msg p::before{
          position: absolute;
          top: 0;
          left: 0;
        }
}

/*ロボット認証*/
div.g-recaptcha {
  width: 304px;
  margin: 0 auto 20px auto;
}

/*画像認証*/
#captcha_box{
  width:500px;
  margin:20px auto 40px auto;
  overflow:hidden;
  padding:10px;
  border:1px dotted #c40026;
}

#captcha_box h4{
  text-align:center;
  margin-bottom:8px;
  color:#c40026;
  padding:5px 0;
  background:#ffedf4;
  font-weight:bold;
}

.captcha_img{
  width:215px;
  float:left;
  text-align:center;
}


.captcha_input{
  width:250px;
  float:right;
  padding-top:10px;
}
.captcha_input p {
  margin-bottom: 10px;
}

.captcha_input input[type="text"]{
  border:1px solid #aaa;
  width:200px;
  font-size:1.1em;
  padding:2px;
}

.captcha_err_msg{
  color:#c40026;
  padding:5px;
}


