@charset "UTF-8";



/* ボックス、送信ステップ
---------------------------------------------------------*/
.com_form {
	background: #fff;
	padding-left: 4%;
	padding-right: 4%;
	position: relative;
}
.com_form::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 10vw;
	max-height: 60px;
	left: 0;
	top: 100%;
	background: url("../images/common/shadow2@2x.png") no-repeat left center;
	background-size: 100% 100%;
}
.com_form .form_step {
    justify-content: center;
    align-items: flex-start;
	text-align: center;
	font-size: 105%;
	letter-spacing: .15em;
	line-height: 1.2em;
}
.com_form .form_step li {
	width: 31%;
	max-width: 6.5em;
	margin-right: 3.5%;
}
.com_form .form_step li:last-child {
	margin-right: 0;
}
.com_form .form_step li .ft_cin {
	font-size: 90%;
	letter-spacing: .1em;
	line-height: 1.2em;
	width: 100%;
	aspect-ratio: 1 / 1;
	box-sizing: border-box;
	border-radius: 50%;
	border: solid 1px #a79564;
	background: #fff;
	position: relative;
	z-index: 1;
	margin-bottom: .5em;
}
.com_form .form_step li .ft_cin::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 50%;
	height: 1px;
	background: #a79564;
	left: 100%;
	top: 50%;
}
.com_form .form_step li:last-child .ft_cin::before {
	display: none;
}
.com_form .form_step li.active .ft_cin {
	background: #a79564;
	color: #fff;
}
.com_form .form_step li .ft_cin p {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.com_form .form_step li .ft_cin span {
	display: block;
	font-size: 250%;
	letter-spacing: .04em;
	line-height: 1.0em;
	margin-top: .1em;
}

.com_form .form-wrp {
	width: 100%;
	max-width: 1060px;
	margin-left: auto;
	margin-right: auto;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .form_step {
	font-size: 95%;
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
.com_form .form_step {
	font-size: 90%;
}
.com_form .form_step li .ft_cin {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
}



/*テーブル
---------------------------------------------------------*/
.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 17px;   /*16px以下にしない：iPhoneで入力時に拡大されるため*/ 
	letter-spacing: .1em;
    line-height: 1.8em;
}
.com_form .tbl_form {
	width: 100%;
	border-top: solid 1px #cccccc;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	box-sizing: border-box;
	text-align: left;
	border-bottom: solid 1px #cccccc;
	padding: 3.0em 0;
}
.com_form .tbl_form th {
	width: 30%;
	vertical-align: top;
	font-weight: normal;
}
.com_form .tbl_form td {
	width: 70%;
	vertical-align: middle;
	padding-left: 5%;
}
.com_form .tbl_form th div {
	position: relative;
	padding-right: 5em;
}
.com_form .tbl_form th .required,
.com_form .tbl_form th .option {
	display: inline-block;
	background: #c1472d;
	color: #fff;
	font-size: 90%;
	letter-spacing: normal;
	line-height: 1.0em;
	text-align: center;
	min-width: 3.2em;
	padding: .4em .2em;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.com_form .tbl_form th .option {
	background: #cccccc;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 16px;    /*16px以下にしない：iPhoneで入力時に拡大されるため*/ 
	letter-spacing: .05em;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	padding-top: 2.0em;
	padding-bottom: 2.0em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 16px;	/*16px以下にしない：iPhoneで入力時に拡大されるため*/  
	letter-spacing: normal;
    line-height: 1.8em;
}
.com_form .tbl_form tr,
.com_form .tbl_form th,
.com_form .tbl_form td {
	display: block;
	width: 100% !important;
	box-sizing: border-box;
	overflow: hidden;
}
.com_form .tbl_form th {
	padding: 1.0em 0 0;
	border-bottom: none;
}
.com_form .tbl_form td {
	padding: 1.0em 0 1.5em;
}
.com_form .tbl_form th div {
	padding-left: 0;
	padding-right: 0;
}
.com_form .tbl_form th .required,
.com_form .tbl_form th .option {
	position: static;
	vertical-align: middle;
	margin-right: 1.0em;
	transform: translateY(-.2em);
}
}



/*入力項目デザイン
-----------------------------------------------------------------------------*/
.com_form .wpcf7-list-item {
	margin: 0;
}

/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form input[type="tel"],
.com_form input[type="email"],
.com_form input[type=date],
.com_form textarea,
.com_form select {
	width: 100%;
	max-width: 100%;
	padding: .5em 1.0em;
	box-sizing: border-box;
	background: #eeeeee;
	outline: none;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
}
/*プレースホルダ*/
::placeholder{
	color: #aaaaaa;
}

/****************/
/* ラジオボタン */
/****************/
.com_form .radio-wrp {
	margin-left: -1.5em;
}
.com_form .radio-wrp label {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	margin-left: 1.5em;
}
.com_form .radio-wrp label::before,
.com_form .radio-wrp label::after {
	content: "";
	border-radius: 50%;
}
.com_form .radio-wrp label::before {
	width: 1.5em;
	height: 1.5em;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	background-color: #fff;
	margin-right: .5em
}
.com_form .radio-wrp label::after {
	width: .7em;
	height: .7em;
	background-color: #fff;
	position: absolute;
	left: .4em;
	top: 50%;
	transform: translateY(-50%);
}
.com_form .radio-wrp label:has(:checked)::after {
	background-color: #a79564;
}
.com_form .radio-wrp input {
	display: none;
}

/****************/
/* チェックボックス */
/****************/
.com_form .checkbox-wrp label,
.com_form .accept-wrp label {
	display: flex;
    align-items: flex-start;
	position: relative;
	cursor: pointer;
}
.com_form .checkbox-wrp {
	margin-left: -1.5em;
}
.com_form .checkbox-wrp label {
	margin-left: 1.5em;
}
/*同意*/
.com_form .accept-wrp {
	text-align: center;
}
.com_form .accept-wrp label {
    justify-content: center;
	text-align: left;
}
.com_form .checkbox-wrp label::before,
.com_form .checkbox-wrp label::after,
.com_form .accept-wrp label::before,
.com_form .accept-wrp label::after {
	content: "";
}
.com_form .checkbox-wrp label::before,
.com_form .accept-wrp label::before {
	width: 1.5em;
	height: 1.5em;
	border: 1px solid #cccccc;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: .2em;
	margin-right: .8em;
	transform: translateY(.1em);
}
.com_form .checkbox-wrp label::after,
.com_form .accept-wrp label::after {
	width: .6em;
	height: 1.2em;
	border-right: solid 4px #a79564;
	border-bottom: solid 4px #a79564;
	transform: rotate(45deg);
	position: absolute;
	left: .5em;
	top: -.2em;
	opacity: 0;
}
.com_form .checkbox-wrp label:has(:checked)::after,
.com_form .accept-wrp label:has(:checked)::after {
	opacity: 1;
}
.com_form .checkbox-wrp input,
.com_form .accept-wrp input {
	display: none;
}

/****************/
/*ファイル選択ボタン*/
/****************/
.form-wrp .form-file {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.form-wrp .form-file .btn {
	margin-right: 1.0em;
	width: 16em;
	white-space: nowrap;
	text-align: center;
	color: #fff;
	letter-spacing: .1em;
	line-height: 1.0em;
	padding: .8em 0;
	background: #a59344;
	cursor: pointer;
}
.form-wrp .form-file .btn span {
	display: inline-block;
	vertical-align: middle;
}
.form-wrp .form-file .btn span.icon {
	width: 1.5em;
	height: 1.5em;
	background: url("../images/common/icon_file@2x.png") no-repeat left center;
	background-size: contain;
	margin-right: .5em;
}
.form-wrp .form-file input[type=file] {
	display: none;
}

/******************/
/* コンボボックス */
/******************/
.com_form .select_box {
	position: relative;
}
.com_form .select_box::before {
	position: absolute;
	z-index: 2;
	content: "";
	display: block;
    width: 5px;
    height: 5px;
	border: solid 1px #756159;
	border-left: none;
	border-bottom: none;
    top: 0;
	bottom: 0;
    right: 1.0em;
	transform: rotate(135deg);
	margin: auto;
    pointer-events: none;
}

/******************/
/* 日付入力 */
/******************/
.com_form input[type=date] {
	width: 14em;
	height: 2.8em;
    position: relative;
    cursor: pointer;
}
.com_form input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;	/*入力欄のどこをクリックしてもカレンダーが表示されるように*/
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(0,0,0,0);
}
.com_form input[type=date]::after {
    content: "";
    background: url("../images/common/icon data@2x.png") repeat center center;
	background-size: contain;
    width: 1.4em;
    height: 1.4em;
    position: absolute;
    top: 50%;
    right: 1.0em;
    transform: translateY(-50%);
}

/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"], 
.com_form input[type="reset"] {
	-webkit-appearance: none;
	font-size: 115%;
	width: 100%;
	height: 3.2em;
	border: none;
	border-radius: 3.2em;
	cursor: pointer;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400!important;
	font-style: normal;
	letter-spacing: 0.05em;
	color: #fff;
	background-color: #c6c6c6;
	text-align: center;
	opacity: 1.0;
	transition: opacity 1.0s;
}
.com_form input[type="submit"] {
	background-color: #A79564;
	background-image: url("../images/common/arrow1@2x.png");
	background-repeat: no-repeat;
	background-position: right 5% center;
	background-size: 2.5em auto;
}
.com_form input[type="submit"]:hover, 
.com_form input[type="button"]:hover, 
.com_form input[type="reset"]:hover {
	opacity: 0.6;
}

/**********/
/* チェックを入れて送信 */
/**********/ 
/* 送信ボタン - 押せないとき */
.com_form input[type="submit"][disabled] {
	opacity: 0.3 !important;
	cursor: default;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form input[type="tel"],
.com_form input[type="email"],
.com_form textarea,
.com_form select {
	padding: .3em .5em .3em;
}
	
/*ファイル選択ボタン*/
.form-wrp .form-file .file-sheet-txt {
	display: block;
}

/****************/
/* チェックボックス：同意 */
/****************/
.com_form .accept-wrp label {
}
}



/*入力項目レイアウト
---------------------------------------------------------*/
.com_form .tbl_form .value-wrp {
	position: relative;
}
.com_form .tbl_form .wpcf7-not-valid-tip {
	position: absolute;
	font-size: 80%;
	letter-spacing: normal;
	line-height: 1.2em;
	white-space: nowrap;
	padding-top: .2em;
}

.com_form .tbl_form .value-wrp {
	position: relative;
}

.com_form .tbl_form .txt_mailcheck {
	line-height: 1.6em;
	margin: 1.5em 0 1.0em;
}
.com_form .tbl_form .sub_txt_l {
	display: inline-block;
	vertical-align: middle;
	margin-right: .6em;
}
.com_form .tbl_form .sub_txt_r {
	display: inline-block;
	vertical-align: middle;
	margin-left: .6em;
}
.com_form .tbl_form .sub_txt_t {
	margin-bottom: 1.5em;
}
.com_form .tbl_form .sub_txt_b {
	margin-top: 1.5em;
}
.com_form .tbl_form .txt_sub {
	font-size: 85%;
	line-height: 1.6em;
}

/*テキストボックス*/
.com_form .tbl_form .text_s input[type="text"],
.com_form .tbl_form .text_s input[type="tel"],
.com_form .tbl_form .text_s input[type="email"],
.com_form .tbl_form .text_s .select_box {
	max-width: 15em;
}
.com_form .tbl_form .text_m input[type="text"],
.com_form .tbl_form .text_m input[type="tel"],
.com_form .tbl_form .text_m input[type="email"],
.com_form .tbl_form .text_m .select_box {
	max-width: 20em;
}
.com_form .tbl_form .text_l input[type="text"],
.com_form .tbl_form .text_l input[type="tel"],
.com_form .tbl_form .text_l input[type="email"],
.com_form .tbl_form .text_l .select_box {
	width: 100%;	
}

/*生年月日*/
.com_form .tbl_form .form-birth {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
	margin-left: -1.0em;
}
.com_form .tbl_form .form-birth li {
	margin-left: 1.0em;
}
.com_form .tbl_form .form-birth li input {
	width: 4.0em;
}
.com_form .tbl_form .form-birth li:first-child input {
	width: 6.0em;
}

/*予約日時*/
.com_form .tbl_form .date_flex {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
	margin-left: -1.0em;
}
.com_form .tbl_form .date_flex > div {
	margin-left: 1.0em;
}
.com_form .tbl_form .date_flex .select_box {
	width: 10em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .tbl_form .sub_txt_l {
	margin-right: .5em;
}
.com_form .tbl_form .sub_txt_r {
	margin-left: .5em;
}
.com_form .tbl_form .sub_txt_t {
	margin-bottom: 1.0em;
}
.com_form .tbl_form .sub_txt_b {
	margin-top: 1.0em;
}
.com_form .tbl_form .txt_sub {
	letter-spacing: normal;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .tbl_form .sub_txt_l {
	margin-right: .2em;
}
.com_form .tbl_form .sub_txt_r {
	margin-left: .2em;
}
.com_form .tbl_form .sub_txt_t {
	margin-bottom: 1.0em;
}
.com_form .tbl_form .sub_txt_b {
	margin-top: 1.0em;
}
.com_form .tbl_form .txt_sub {
	letter-spacing: normal;
}

/*生年月日*/
.com_form .tbl_form .form-birth {
	margin-left: -.5em;
}
.com_form .tbl_form .form-birth li {
	margin-left: .5em;
}
.com_form .tbl_form .form-birth li input {
	width: 3.0em;
}
.com_form .tbl_form .form-birth li:first-child input {
	width: 5.0em;
}

/*予約日時*/
.com_form .tbl_form .date_flex {
	display: block;
}
.com_form .tbl_form .date_flex .select_box {
	width: 14em;
	margin-top: 1.0em;
}
}



/* ボタンレイアウト
--------------------------------------------------------------------*/
.com_form .submit_box {
	margin-top: 60px;
	text-align: center;
}
.com_form .submit_box .btn_list {
	margin-top: 80px;
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	text-align: center;
}
.com_form .submit_box .btn_list input {
	margin: 0 1%;
	width: 15em !important;
}
.com_form .submit_box .btn_list span {
	display: none;
}
/* 同意ボタン */
.com_form .accept-wrp {
	margin-top: 50px;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .submit_box {
	margin-top: 5%;
	letter-spacing: .05em;
}
.com_form .submit_box .btn_list {
	margin-top: 4%;
}
/* 同意ボタン */
.com_form .accept-wrp {
	margin-top: 4%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .submit_box {
	margin-top: 8%;
	text-align: left;
	letter-spacing: normal;
	line-height: 1.8em;
}
.com_form .submit_box .btn_list {
	margin-top: 8%;
	display: block;
}
.com_form .submit_box .btn_list input {
	width: 15em !important;
	margin: 3% auto 0 !important;
}
/* 同意ボタン */
.com_form .accept-wrp {
	margin-top: 8%;
	font-size: 110%;
}
}



/* ドメイン設定
-----------------------------------------------------------------------*/
.com_form .mobile_attention {
	margin-top: 2.0em;
	color: #756159;
	font-size: 80%;
	letter-spacing: .1em;
	line-height: 1.6em;
	border: solid 1px #756159;
	padding: .5em 0;
	border-radius: 1.5em;
}
.com_form .mobile_attention .open_btn {
	text-align: center;
}
.com_form .mobile_attention .open_btn .icon_open {
	border: solid 1px #756159;
	border-radius: 50%;
	margin-left: 1.0em;
}
.com_form .mobile_attention .open_btn .icon_open::before,
.com_form .mobile_attention .open_btn .icon_open::after {
	height: 1px;
}
.com_form .mobile_attention .open_box {
	padding: 1.5em 5%;
}
.com_form .mobile_attention ul {
	margin-top: 1.0em;
}
.com_form .mobile_attention li {
	margin-top: 5px;
	padding-left: 15px;
	float: left;
	margin-right: 20px;
	position: relative;
	line-height: 1.2em;
}
.com_form .mobile_attention li::before {
	position: absolute;
	left: 0;
	top: 55%;
    transform: translateY(-50%) rotate(45deg);
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-top: 1px solid #756159;
	border-right: 1px solid #756159;
}
.com_form .mobile_attention a {
	text-decoration: underline;
}
.com_form .mobile_attention a:hover {
	text-decoration: none;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .mobile_attention {
	font-size: 85%;
	letter-spacing: .05em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .mobile_attention {
	font-size: 90%;
	letter-spacing: .05em;
}
}



/* エクスプレスチケット
---------------------------------------------------------*/
.li_simple li {
	padding-left: 1.0em;
	position: relative;
}
.li_simple li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}
.txt_kome {
	padding-left: 1.2em;
	position: relative;
}
.txt_kome::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
.li_kome li {
	padding-left: 2.5em;
	position: relative;
}
.li_kome li::before {
	content: "※1：";
	position: absolute;
	left: 0;
	top: 0;
}
.li_kome li:nth-child(2)::before {content: "※2：";}
.li_kome li:nth-child(3)::before {content: "※3：";}
.li_kome li:nth-child(4)::before {content: "※4：";}
.li_kome li:nth-child(5)::before {content: "※5：";}

.com_express_ticket {
	font-size: 1.1rem;
	letter-spacing: 0.18em;
	line-height: 2;
	background: #f1f0ee;
	padding: 40px 4%;
}
.com_express_ticket .ticket_lead {
	text-align: center;
	font-size: min(145%,2.7vw);
	letter-spacing: .1em;
	line-height: 1.4em;
	margin-bottom: .8em;
}
.com_express_ticket .ticket_lead span {
	display: inline-block;
	position: relative;
}
.com_express_ticket .ticket_lead span::before,
.com_express_ticket .ticket_lead span::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 1.5em;
	background: #756159;
	top: 0;
}
.com_express_ticket .ticket_lead span::before {
	left: -1.2em;
	transform: rotate(-30deg);
}
.com_express_ticket .ticket_lead span::after {
	right: -1.2em;
	transform: rotate(30deg);
}
.com_express_ticket .ticket_img dt {
	margin-bottom: 1.8em;
}
.com_express_ticket .bg_white {
	background: #fff;
	padding: 1.2em 1.8em;
	border-radius: 1.0em;
	font-weight: bold;
	margin: 1.0em 0 2.0em;
}
.com_express_ticket .flow_style dt {
	font-weight: bold;
	line-height: 1.4em;
	padding-left: 1.0em;
	border-left: 3px solid #a79564;
	margin-bottom: 1.0em;
}
.com_express_ticket .flow_style .flow_list {
	border-top: solid 1px #cccccc;
}
.com_express_ticket .flow_style .flow_list li {
	border-bottom: solid 1px #cccccc;
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 1.2em 0;
}
.com_express_ticket .flow_style .flow_list li::before {
	content: "01";
	display: block;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400!important;
	font-style: normal;
	text-align: center;
	color: #a79564;
	font-size: 205%;
	letter-spacing: .2em;
	line-height: 1.0em;
	width: 90px;
}
.com_express_ticket .flow_style .flow_list li:nth-child(2)::before {content: "02";}
.com_express_ticket .flow_style .flow_list li:nth-child(3)::before {content: "03";}
.com_express_ticket .flow_style .flow_list li:nth-child(4)::before {content: "04";}
.com_express_ticket .flow_style .flow_list li:nth-child(5)::before {content: "05";}
.com_express_ticket .flow_style .flow_list li p {
	width: calc(100% - 90px);
}
.com_express_ticket .flow_style .flow_list + ul {
	margin-top: 1.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_express_ticket {
	font-size: 1.0rem;
	letter-spacing: 0.1em;
	line-height: 1.8;
	padding: 6% 4%;
}
.com_express_ticket .ticket_img dt {
	margin-bottom: 1.2em;
}
.com_express_ticket .flow_style .flow_list li::before {
	font-size: 180%;
	letter-spacing: .1em;
	width: 70px;
}
.com_express_ticket .flow_style .flow_list li p {
	width: calc(100% - 70px);
}
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
.com_express_ticket {
	font-size: 3.6vw;
	letter-spacing: .05em;
	line-height: 1.8;
	padding: 8% 4%;
}
.com_express_ticket .ticket_lead {
	font-size: 120%;
	letter-spacing: .05em;
	margin-bottom: .5em;
}
.com_express_ticket .ticket_img dt {
	margin-bottom: 1.0em;
}
.com_express_ticket .bg_white {
	padding: 1.0em 1.5em;
}
.com_express_ticket .flow_style .flow_list li {
	padding: 1.0em 0;
}
.com_express_ticket .flow_style .flow_list li::before {
	font-size: 180%;
	letter-spacing: .1em;
	width: 13vw;
}
.com_express_ticket .flow_style .flow_list li p {
	width: calc(100% - 13vw);
}
}



/* 
---------------------------------------------------------*/

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
}