@charset "UTF-8";

/* 目次 ////////////////////////////////////////////////////////////////////

−初期化・デフォルト
−見出し
−フォント・テキスト
−リンク
−フォーム関連
−テーブル設定
−共通設定
	：ヘッダー
	：コンテンツ
	：フッター
−ナビゲーション
	：グローバルナビゲーション
	：フッターナビゲーション
−各ページごとの設定

///////////////////////////////////////////////////////////////////////// */


/* -------------------------------------------------------------------------
▼ 初期化・デフォルト
------------------------------------------------------------------------- */


/* PC用CSS */

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}


/*Opera Fix*/

body:before {
    content: "";
    height: 100%;
    float: left;
    width: 0;
    margin-top: -32767px;
}

body {
    font-size: 13px;
    color: #3e3a39;
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    text-align: center;
    background: #fff;
}

body#popup {
    background: #01354A;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 13px;
}

p {
    margin: 0;
}

ul,
ol {
    list-style-type: none;
}

strong {
    font-weight: normal;
}

img {
    border: 0;
    vertical-align: bottom;
}

hr {
    display: none;
}

.header-text__tax {
    margin: 20px 0 0 60px;
    display: inline-block;
}


/* -------------------------------------------------------------------------
    ▼ 見出し
    ------------------------------------------------------------------------- */


/* -- 2階層目以降共通 ---------- */

h2#contentsTitle {
    font-size: 30px;
    font-weight: bold;
    color: #01354a;
}

h2#contentsTitle span {
    margin-right: 20px;
    font-weight: bold;
    /*    display: block;*/
}


/* -------------------------------------------------------------------------
    ▼ フォント・テキスト
    ------------------------------------------------------------------------- */

.large {
    font-size: 15px;
    font-weight: normal;
}

.normal {
    font-size: 13px;
    font-weight: normal;
}

.small {
    font-size: 11px;
    font-weight: normal;
}

.bold {
    font-weight: bold;
}

.caution {
    color: #CC3300;
}

.through {
    text-decoration: line-through;
}

.orange {
    color: #F86221;
}

.txt {
    line-height: 1.4;
}


/* -------------------------------------------------------------------------
    ▼ リンク
    ------------------------------------------------------------------------- */


/* -- 通常 ---------- */

a:link,
a:visited {
    color: #2B8DB3;
    text-decoration: none;
}

a:hover,
a:active {
    color: #57B4D7;
    text-decoration: none;
}


/* -- 白色 ---------- */

.link_white a:link,
.link_white a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

.link_white a:hover,
.link_white a:active {
    color: #57B4D7;
    text-decoration: none;
}


/* -- 画像 ---------- */

.img_border a:link,
.img_border a:visited {
    background-color: #919D9C;
    padding: 4px;
    display: block;
}

.img_border a:hover,
.img_border a:active {
    background-color: #3E474A;
    padding: 4px;
    display: block;
}

.arrow a {
    background: url(../images/common/arrow.gif) 0 4px no-repeat;
    padding-left: 10px;
}

.arrow_s a {
    background: url(../images/common/arrow.gif) 0 2px no-repeat;
    padding-left: 8px;
}


/* -------------------------------------------------------------------------
    ▼ フォーム関連
    ------------------------------------------------------------------------- */

form {
    margin: 0;
    padding: 0;
}

body.contactform #header h1 {
    float: left;
}

#headerBtn {
    display: block;
}

#headerBtn div p {
    position: absolute;
    right: 100px;
    top: 0px;
}

body.contactform .contact_tel {
    margin-top: 20px;
}

body.contactform .contact_tel p a img {
    margin-top: 10px;
    width: 170px;
}

body.contactform .contact_tel p a {
    margin-right: 10px;
}

h2.contactH2 {
    font-weight: bold;
    font-size: 16px;
    border-bottom: 3px solid #01354a;
    color: #01354a;
    margin-bottom: 20px;
    text-align: center;
}

#formBtn {
    width: 610px;
    text-align: center;
}

#formBtn table {
    width: 100%;
}

#formBtn table td {
    width: 50%;
}

.opacity {
    filter: alpha(opacity=25);
    -moz-opacity: 0.25;
    opacity: 0.25;
    background: #FFFFFF;
}

#formBtn p {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

#contactSecure {
    width: 100px;
    height: 50px;
    float: right;
    margin: 15px auto;
}

#formThanks {
    background-color: #E2D9CF;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    margin-top: 30px;
}

#formThanks p {
    margin: 10px;
}

p.contact_txt {
    font-weight: bold;
    color: #01354a;
}

.tableContactWrap {
    background-color: #dcdddd;
    padding: 20px;
}

.tableContact {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.tableContact th {
    padding: 0 15px !important;
    text-align: left;
    margin-right: 10px;
    margin-top: 20px;
    width: 100%;
    display: block;
}

.tableContact td {
    padding: 7px 5px 5px 10px !important;
    width: 100%;
    display: block;
}

.tableContact td ul {}

.tableContact td ul li {
    margin-bottom: 10px;
}

.tableContact input {
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
    padding: 10px;
}

.tableContact input[name$="tel1_1"],
.tableContact input[name$="tel1_2"],
.tableContact input[name$="tel1_3"] {
    width: 31%;
}

.tableContact textarea {
    padding: 5px 10px;
}

body.contactform #footerArea {
    width: 610px;
}

body.contactform #footerArea .small {
    color: #fff;
}


/* -------------------------------------------------------------------------
    ▼ テーブル設定
    ------------------------------------------------------------------------- */

.tableBasic {
    /*        background-color: #A8AEAE;*/
    font-size: 13px;
    width: 100%;
}

.tableBasic th {
    background-color: #fff;
    padding: 15px !important;
    text-align: center;
    margin-right: 10px;
}

.tableBasic td {
    background-color: #fff;
    padding: 7px 5px 5px 10px !important;
}

.tableBasic tr:nth-child(odd) th,
.tableBasic tr:nth-child(odd) td {
    background: #EEF2F2;
}

.tableList {
    /*    background-color: #A8AEAE;*/
    font-size: 13px;
    width: 99%;
    zoom: 1;
}

.tableList th {
    background-color: #ced2d2;
    padding: 7px 5px 5px 5px;
    border-top: #01354a 1px solid;
    border-bottom: #01354a 1px solid;
    color: #01354a;
}

.tableList tr.tr1 td {
    text-align: left;
}

.tableList td {
    background-color: #FFFFFF;
    padding: 10px 2px;
    text-align: center;
}

.tableList tr {
    border-bottom: #01354a 1px dotted;
}

.tableList tr td {
    border-bottom: #01354a 1px dotted;
}

.tableList tr td {
    border-bottom: #01354a 1px dotted;
}

.tableList tr.campaign td {
    background-color: #fff;
    /*    color: #F86221;*/
}

.tableList tr.campaign td p {
    margin-bottom: 3px;
}

.tableList tr.campaign td p.bold {
    text-align: center;
    display: inline;
    color: #ea5514;
}


/* -------------------------------------------------------------------------
    ▼ ポップアップ設定
    ------------------------------------------------------------------------- */

#iconPopup {
    background: #FFFFFF;
    margin: 15px;
    padding: 15px;
    text-align: left;
}

#iconPopup h1 {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    background: url(/images/common/left_round.gif) left no-repeat;
    padding-left: 3px;
}

#iconPopup h1 span {
    padding: 5px 3px 4px 0px;
    display: block;
    background: url(/images/common/right_round.gif) right no-repeat #A1876B;
}

* html #iconPopup h1 span {
    padding: 6px 3px 5px 0px;
}

#iconPopup ul li {
    float: left;
    width: 50%;
    margin-bottom: 10px;
}

#iconPopup ul li img {
    vertical-align: middle;
    margin-right: 10px;
}

#iconPopup p {
    text-align: center;
}

#iconPopup p input {
    width: 100px;
    height: 34px;
}


/* -------------------------------------------------------------------------
    ▼ 共通設定
    ------------------------------------------------------------------------- */

#wrap {
    min-height: 100%;
    /*background: url(/images/common/bg.gif) center repeat-y #01354A;*/
}

body.contactform #wrap {
    min-height: 100%;
    background: #999999;
    overflow: hidden;
}

.b5 {
    margin-bottom: 5px;
}

.b10 {
    margin-bottom: 10px;
}

.t5 {
    margin-top: 5px !important;
}

.t10 {
    margin-top: 10px !important;
}

.t15 {
    margin-top: 15px;
}

.right {
    text-align: right;
}

.img_border01 {
    /*    background-color: #919D9C;
        padding: 1px;*/
}

.img_border01 img {
    /*    border: 1px solid #FFFFFF;*/
}

* html .img_border01 img {
    border: none;
}


/* -- clearfix ---------- */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-table;
}


/* \*/

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}


/* End hide from IE-mac */

.block {
    display: block;
}


/* ▽ ヘッダー
    ========================================================================= */

#headerSeo {
    text-align: left;
}

#headerSeo h1 {
    padding: 0px 5px 5px;
}

#header {
    width: 980px;
    margin: 5px auto 0;
    text-align: left;
}

body.contactform #header {
    width: 610px;
    margin: 0 auto 0;
    text-align: left;
    background: #fff;
    padding: 20px;
}

#header p.logo {
    float: left;
    width: 201px;
}

#headerBanner {
    float: left;
    width: 337px;
}

#headerRight {
    float: right;
}

#headerRight p#headerTelUdx {
    text-indent: -3000px;
    width: 391px;
    height: 48px;
    background: url(/images/common/head_udx.gif) no-repeat;
    float: right;
}


/*  2021 */

#headerRight p#headerTel {
    text-align: right;
}

#headerRight p#headerTel img.tel1 {
    margin-right: 15px;
}

p.toiawaseText {
    font-size: 16px;
    color: #01354a;
    text-align: right;
    font-weight: bold;
}

#headerRight ul {
    display: inline-block;
    margin-left: 80px;
}

#headerRight ul li {
    float: left;
    margin-right: 20px;
    margin-top: 6px;
    text-align: right;
}

#headerRight ul li:last-child {
    margin-right: 0px;
}

#headerRight ul li a {
    font-size: 12px;
    color: #3e3a39;
    text-align: right;
    font-weight: bold;
}

#headerRight ul li a:hover {
    opacity: 0.8;
}

.headerNaviArea {
    margin-top: 10px;
    zoom: 1;
    background: #01354a;
    width: 100%;
    height: 52px;
}

ul#headerNavi {
    margin: 0 auto;
    display: inline-block;
    padding: 8px 0;
}

li.headerNaviItem {
    float: left;
    position: relative;
    border-right: #fff 1px solid;
    width: 162px;
}

li.headerNaviItem a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 0;
    display: block;
}

li.lireserve {
    float: left;
    position: relative;
    padding: 0px!important;
}

li.liabout a {
    font-size: 13px;
    padding: 8px 0;
    font-feature-settings: "palt";
}

li.lireserve a {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.1;
    font-feature-settings: "palt";
    padding: 4px 0;
}

.headerNaviItem.homeItem {
    border-left: #fff 1px solid;
}

.headerNaviItem a:hover {
    opacity: 0.7;
}

#headerNaviSubMenu {
    float: none;
    position: absolute;
    z-index: 10;
}

.headerNaviSubMenuItem {
    width: 156.5px;
    height: 51px;
    border-bottom: solid 1px #777;
}

.headerNaviSubMenuItem:last-of-type {
    border-bottom: none;
}

#headerNaviSubMenu li a {
    display: block;
    width: 100%;
    background: #646c6e;
}

#headerNaviSubMenu li a:hover {
    background: #A1876B;
    opacity: 1;
}

#headerNavi img {
    width: 156.5px;
    height: 51px;
}

#headerNaviSubMenu img {
    width: 156.5px;
    height: 51px;
}

header {
    display: none;
}


/* ▽ メインコンテンツ
    ========================================================================= */

.main_one_colum {
    overflow: auto;
    width: 980px;
    margin: 20px auto 0;
    text-align: left;
}

#main {
    overflow: hidden;
    width: 980px;
    margin: 0px auto 0;
    text-align: left;
}

body.contactform #main {
    overflow: hidden;
    width: 610px;
    margin: 0px auto 0;
    text-align: left;
    background: #fff;
    padding: 0 20px 200px;
}

#mainLeft {
    float: left;
    width: 255px;
    margin-right: 30px;
    zoom: 1;
    margin-bottom: 60px;
    /*	margin-right:15px;*/
}

#mainLeft .box_gray01,
#mainLeft .box_ocher {
    padding: 0px 20px 20px;
}
#mainLeftList {
    float: left;
    width: 255px;
    margin-right: 30px;
    zoom: 1;
    margin-bottom: 60px;
    /*	margin-right:15px;*/
}

#mainLeftList .box_gray01,
#mainLeftList .box_ocher {
    padding: 0px 20px 20px;
}

h3.side_search_title img {
    position: relative;
    top: -10px;
    left: -40px;
}

h3.side_area_search_title img {
    position: relative;
    top: -10px;
    left: -42px;
    width: 230px;
}

#leftSearch ul li {
    float: left;
    width: 49%;
    margin-bottom: 8px;
}

#leftSearch p {
    margin-top: 10px;
}

#mainRight {
    float: left;
    width: 690px;
    zoom: 1;
}

.box_normal_bg {
    padding: 0px;
}

.box_normal {
    background-color: #EFF1F1;
}

.box_white {
    background-color: #fff;
}

.box_gray01_bg {
    background: url(../images/common/bg_box_gray01.gif);
    padding: 5px;
}

.box_gray01 {
    /*	border:1px solid #FFFFFF;*/
    background-color: #F7F9F9;
    padding: 13px 13px 10px;
}

.box_gray02_bg {
    background: url(../images/common/bg_box_gray02.gif);
    padding: 5px;
}

.box_gray02 {
    /*	border:1px solid #FFFFFF;*/
    background-color: #EEF0F0;
    padding: 13px 13px 10px;
}

.box_campaign_bg {
    background: url(../images/common/bg_box_orange.gif);
    padding: 5px;
}

.box_campaign {
    /*	border:1px solid #FFFFFF;*/
    background-color: #FFF9F7;
    padding: 13px 13px 10px;
}

.box_ocher_bg {
    background: url(../images/common/bg_box_ocher.gif);
    padding: 5px;
}

.box_ocher {
    /*	border:1px solid #FFFFFF;*/
    background-color: #f3f1e5;
    padding: 13px 13px 10px;
    margin-left: 20px;
    border-radius: 7px;
}

.definition_list dt.dt_title,
.definition_list th span {
    text-align: left;
    color: #3e3a39;
    display: block;
    font-weight: bold;
    border-left: 5px solid #12989a;
    padding-left: 10px;
}

.definition_list th {
    font-weight: bold;
    vertical-align: top;
    padding-top: 4px;
}

.definition_list td {
    padding: 5px 5px 2px;
}

.box_corner_gray02 {
    background-color: #eef1f1;
}

.box_corner_ocher dt,
.box_corner_ocher th span {
    background-color: none!important;
    color: #fff;
    padding-left: 15px;
}

.box_corner_gray01 dt,
.box_corner_gray01 th span {
    background-color: #3E474A;
}

.box_corner_gray02 dt,
.box_corner_gray02 th span {
    background-color: #919D9C;
}

.box_corner_campaign dt,
.box_corner_campaign th span {
    background-color: #F86221;
}

#pankuzu {
    margin: 10px 0 20px;
    padding-bottom: 10px;
}

#pankuzu li {
    float: left;
}

.border {
    border-top: 1px solid #A8AEAE;
    padding-top: 15px;
}

.no_margin {
    margin: auto 0px !important;
}

.relative {
    position: relative;
}

.center {
    text-align: center;
}

#history dt {
    width: 120px;
}

#history dd li {
    float: left;
    width: 180px;
    margin-right: 10px;
}

#history dd li p {
    margin-top: 3px;
}

#staticArea dt {
    text-align: left;
    font-weight: bold;
    font-size: 15px;
    padding-top: 6px;
    padding-bottom: 5px;
    clear: both;
}

#staticArea dd {
    line-height: 2em;
}

#staticArea .right,
.staticRight {
    float: right;
    margin-left: 10px;
    margin-bottom: 8px;
}

#staticArea .left {
    float: left;
    margin-right: 10px;
    margin-bottom: 8px;
}

#staticArea .under {
    color: #866F55;
    font-weight: bold;
    padding-bottom: 3px;
    border-bottom: 1px solid #A1876B;
    margin-top: 15px;
    margin-bottom: 10px;
    clear: both;
}

#staticArea ol {
    margin-top: 5px;
    margin-bottom: 50px;
}

#staticArea ol li {
    list-style-type: decimal;
    marker-offset: 5px;
    margin-left: 2em;
    margin-top: 3px;
    margin-bottom: 3px;
    line-height: 2em;
}

#staticArea ul.list {
    margin-top: 5px;
    margin-bottom: 5px;
}

#staticArea ul.list li {
    list-style-type: disc;
    marker-offset: 5px;
    margin-left: 2em;
    margin-top: 3px;
    margin-bottom: 3px;
    line-height: 2em;
}

#staticArea table.tableBasic {
    width: 400px;
}

#staticArea table.tableBasic th {
    width: 100px;
}


/* ▽ フッター
    ========================================================================= */

#footer {
    background: #01354a;
    height: 40px;
    width: 100%;
}

#footerArea {
    width: 980px;
    text-align: center;
    margin: 0 auto;
}

#footerArea ul {
    padding-top: 5px;
    display: inline-block;
}

#footerArea ul li {
    padding: 5px 15px;
    float: left;
    font-weight: bold;
    font-size: 12px;
}

#footerArea ul li a:link,
#footerArea ul li a:visited {
    text-decoration: none;
    color: #fff;
}

#footerArea ul li a:hover,
#footerArea ul li a:active {
    text-decoration: none;
    color: #999999;
}

.copyright {
    font-weight: bold;
    padding-top: 15px;
    font-size: 10px;
    padding-bottom: 15px;
}


/* -------------------------------------------------------------------------
    ▼ 各ページごとの設定
    ------------------------------------------------------------------------- */


/* ▽ トップページ
    ========================================================================= */

#topRecommend {
    padding: 30px 0;
    background-color: #e1e5e8;
    display: block;
    width: 100%;
}

.topRecommendWrap {
    margin: 0 auto;
    width: 980px;
    /*20210720*/
    height: 290px;
}

.topRecommendh2 {
    text-align-last: left;
    font-size: 22px;
    font-weight: bold;
    color: #01354a;
    margin-top: 30px;
}

.topRecommendh2 span {
    font-size: 12px;
}

#topRecommend ul {
    padding: 20px;
    margin: 0 10px;
}

#topRecommend ul li {
    float: left;
    width: 185px;
    height: 240px;
    /*20210721*/
    padding: 20px 10px;
    background: #fff;
    border-radius: 10px;
    margin-right: 40px;
    text-align: left;
}

* html #topRecommend ul li {
    width: 185px;
}

p.bukken_img {
    width: 100%;
    text-align: center;
}

p.bukken_img a img {
    width: 144px;
    height: 144px;
}

img.recommend_campaign {
    margin-top: 5px;
}

p.bukken_title {
    margin-top: 10px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #01354a;
    padding: 0 10px;
}

p.bukken_station {
    text-align: left;
    font-size: 14px;
    color: #231815;
    padding: 0 10px;
}


/*top_banner*/

.top_banner {
    margin: 90px auto;
}

.top_banner p {
    float: left;
    margin-right: 20px;
}

.top_banner p a:hover {
    opacity: 0.8;
}

.top_banner p:last-child {
    margin-right: 0px;
}


/*top_contact*/

.top_contact {
    width: 100%;
    background-image: url(../images/renual/bg_top_contact.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 50px;
}

.top_contactWrap {
    z-index: 99999;
    margin: 0 auto;
    width: 980px;
    height: 240px;
    padding: 120px 30px 0 30px;
}

.top_contactWrap p. {}

.top_contactWrap p.top_contact_tel {
    margin-top: 20px;
    margin-left: 10px;
}

.top_contactWrap p.top_contact_tel a {
    margin-right: 10px;
}


/*top_banner2*/

.top_banner2Area {
    width: 100%;
}

.top_banner2 {
    display: inline-block;
    margin: 0px auto 50px;
}

.top_banner2 p {
    float: left;
    margin-right: 20px;
}

.top_banner2 p a:hover {
    opacity: 0.8;
}

.top_banner2 p:last-child {
    margin-right: 0px;
}


/*
     * jquery.jcarousel.jsとセットで使用
     */

.jcarousel-skin-tango .jcarousel-container-horizontal {
    padding: 0px 5px;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width: 100%;
    height: 300px;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
    margin-right: 1px;
}

#topRecommend ul li p {
    float: left;
}

h2.topNewsH2 {
    font-size: 22px;
    font-weight: bold;
    color: #01354a;
    border-bottom: 3px solid #01354a;
    padding-bottom: 0px;
}

h2.topNewsH2 span {
    font-size: 12px;
}

#topNews {
    padding-top: 10px;
    padding-left: 20px;
}

#topNews.news-item {
    margin: 20px;
    padding-bottom: 100px;
    border-bottom: 1px #333;
}

#topVoice li {
    float: left;
    width: 218px;
    margin-right: 15px;
}

* html #topVoice li {
    width: 220px;
}

#topVoice li div {
    padding: 13px;
}

#topVoice li div h3 {
    font-size: 15px;
    font-weight: bold;
    background: url(/images/top_round.gif) top no-repeat;
    padding-top: 3px;
}

#topVoice li div h3 a {
    display: block;
    padding: 5px 6px 8px !important;
    background: url(/images/bottom_round.gif) bottom no-repeat #7B8484;
}


/*メインビジュアル*/

#fvArea {
    width: 980px;
}

.slide_left {
    float: left;
    width: 277px;
    height: 307px;
}

.fadein {
    float: right;
    width: 682px;
    height: 306px;
}

.fadein img {
    width: 682px;
    height: 306px;
    overflow: hidden;
}


/* ▽ エリアから検索する
    ========================================================================= */

#topSearchArea {
    width: 980px;
    margin-top: 10px;
    display: inline-block;
    background: url(../images/renual/area_serch.svg) no-repeat;
    padding-bottom: 50px;
}

ul.areaSearch {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 25px;
    margin-left: 150px;
}

ul.areaSearch li {
    margin-right: 10px;
}

ul.areaSearch li a {
    font-size: 15px;
    color: #3e3a39;
    font-weight: bold;
    text-decoration-line: underline;
    white-space: nowrap;
}

ul.areaSearch li a:hover {
    opacity: 0.8;
}

#topSearch {
    display: flex;
    margin-top: 0px;
    margin-left: 150px;
}

#topSearch p {
    margin-top: 20px;
    float: left;
    margin-right: 20px;
}

#topSearch p a {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: block;
}


/* 基本ボタン */

.button {
    display: inline-block;
    width: 240px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    outline: none;
}

#left_button {
    margin-top: 40px;
    font-size: 12px;
}

.button200 {
    width: 200px;
    margin-top: 10px;
}

.button::before,
.button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.button,
.button::before,
.button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.button {
    background-color: #12989a;
    color: #fff;
    border-radius: 5px;
}

.button:hover {
    background-color: #59b1eb;
    border-radius: 5px;
}

span.map_icon img {
    vertical-align: middle;
    width: 20px;
}


/* ▽ マップ検索
    ========================================================================= */

.mapSP {
    display: none;
}

ul.left_areaSearch {
    padding-left: 20px;
}

ul.left_areaSearch li {
    float: left;
    width: 49%;
    font-weight: bold;
    margin-bottom: 10px;
}

ul.left_areaSearch li a {
    font-size: 14px;
    color: #3e3a39;
    font-weight: bold;
    text-decoration-line: underline;
}

ul.left_areaSearch li a:hover {
    opacity: 0.8;
}

#left_banner {
    padding: 0px 20px 20px;
}

#left_banner p img {
    width: 235px;
    margin-top: 20px;
}

p.map_serch_t1 {
    font-weight: bold;
    font-size: 16px;
    color: #01354a;
    margin-bottom: 10px;
    text-align: center;
}

p.map_serch_t2 {
    font-size: 16px;
    text-align: center;
}

p.map_serch_t1 br,
p.map_serch_t2 br {
    display: none;
}

#mapArea {
    position: relative;
    display: block;
    float: none;
}

#mapArea p {
    position: absolute;
}

#mapArea p.asakusa {
    top: 98px;
    left: 550px;
}

#mapArea p.okachimachi {
    top: 148px;
    left: 462px;
}

#mapArea p.okachimachi2 {
    top: 165px;
    left: 461px;
}

#mapArea p.nakano {
    top: 162px;
    left: 17px;
}

#mapArea p.ikebukuro {
    top: 115px;
    left: 142px;
}

#mapArea p.shinjuku {
    top: 265px;
    left: 70px;
}

#mapArea p.nishishinjuku {
    top: 285px;
    left: 70px;
}

#mapArea p.suidobashi {
    top: 210px;
    left: 284px;
}

#mapArea p.akihabara {
    top: 203px;
    left: 480px;
}

#mapArea p.akiba {
    top: 220px;
    left: 390px;
}

#mapArea p.kinshicho {
    top: 215px;
    left: 584px;
}

#mapArea p.yoyogi {
    top: 283px;
    left: 63px;
}

#mapArea p.shibuya {
    top: 363px;
    left: 95px;
}

#mapArea p.kamata {
    top: 459px;
    left: 215px;
}

#mapArea p.kamatahigashi {
    top: 496px;
    left: 175px;
}

#mapArea p.tamachi {
    top: 453px;
    left: 286px;
}

#mapArea p.shinbashi {
    top: 450px;
    left: 360px;
}

#mapArea p.ginza01 {
    top: 469px;
    left: 360px;
}

#mapArea p.ginza02 {
    top: 487px;
    left: 360px;
}

#mapArea p.nihonbashi {
    top: 386px;
    left: 496px;
}


/*#mapArea p.tokyo{ top:440px; left:496px;}*/
#mapArea p.monzennakacho {
    top: 385px;
    left: 478px;
}

#mapArea p.toyocho {
    top: 385px;
    left: 545px;
}

#mapArea p.aoyama {
    top: 370px;
    left: 211px;
}

#mapArea p.kasumigaseki2 {
    top: 326px;
    left: 374px;
}

#mapArea p.kanda {
    top: 275px;
    left: 432px;
}

#mapArea p.shinagawa {
    top: 442px;
    left: 255px;
}

#mapArea p.suitengumae {
    top: 295px;
    left: 534px;
}

#mapArea p.matsudo {
    top: 40px;
    left: 455px;
}



/* ▽ 条件検索
    ========================================================================= */

#conditionArea {
    text-align: left;
    background: #ebe9e6;
    padding: 40px 100px;
    display: inline-block;
    width: 100%;
}

#conditionArea dt {
    margin: 0 auto 0;
    border-left: #12989a 5px solid;
    padding-left: 10px;
    font-weight: bold;
    font-size: 15px;
}

#conditionArea dd {
    margin: 15px auto 0;
}

#conditionArea .definition_listA {
    float: left;
    margin-right: 100px;
}

#conditionArea .definition_listB {
    float: left;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mr10 {
    margin-right: 10px;
}


/* ▽ 検索結果一覧
    ========================================================================= */

.recentlyh2 {
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    color: #01354a;
    margin-top: 30px;
}

#listCondition dl dt {
    margin: 15px 0;
    width: 100px;
}

#listCondition dl dt:first-child {
    margin-top: 0px;
    width: 100px;
}

#listCondition dl dd {
    margin-top: 5px;
}

#listCondition ul.clearfix li {
    float: left;
    width: 49%;
    font-weight: bold;
    margin-bottom: 10px;
}

#listCondition input {
    margin: 3px 3px 0 0;
}

#listHistory li {
    border-bottom: 1px solid #A8AEAE;
    padding: 10px 0;
    height: 160px;
}

#listHistory li p {
    width: 70px;
    float: left;
    margin: 0 5px 5px 0;
}

#listHistory li dt {
    padding-left: 0;
    padding-right: 0;
    width: 84px;
    margin-left: 75px;
    margin-bottom: 4px;
}

#listHistory li dt.dt1 {
    width: 50px;
    margin-left: 0;
    clear: both;
    float: left;
}

#listHistory li dd {
    margin-bottom: 5px;
}

#listHistory li dd.dd1 {
    float: left;
    width: 180px;
    margin-left: 5px;
    padding-top: 2px;
}

#listHistory li.no_history {
    border-bottom: 1px dotted #A8AEAE;
    padding: 20px 0;
    height: auto;
    text-align: center;
}

.count {
    /*        padding-bottom: 10px;*/
}

.count .result {
    float: left;
}

.count .result span {
    font-weight: bold;
    font-size: 20px;
}

.count .page {
    float: right;
    margin-top: 7px;
}

#listArea li {
    margin-top: 20px;
}

#listArea li:first-child {
    margin-top: 0px;
}

#listArea .box_normal {
    padding: 0px;
}

#listArea .box_normal h3 a:link,
#listArea .box_normal h3 a:visited {
    text-decoration: none;
    color: #FFF;
}

#listArea .box_normal h3 a:hover,
#listArea .box_normal h3 a:active {
    text-decoration: none;
    color: #DDD;
}

#listArea .chumoku {
    position: absolute;
    font-weight: bold;
    top: 5px;
    right: 7px;
    color: #FFFFFF;
    font-size: 15px;
    color: #FFE844;
}

#listArea h3 {
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px 20px 10px;
    background-color: #01354a;
    margin-bottom: 10px;
    position: relative;
    font-size: 17px;
}

#listArea p.img_border01 {
    width: 150px;
    margin: 10px;
    float: left;
    zoom: 1;
}

* html #listArea p.img_border01 {
    width: 200px;
    zoom: 1;
}

#listArea div.clearfix div {
    width: 500px;
    float: left;
    zoom: 1;
}

* html #listArea div.clearfix div {
    width: 500px;
    float: left;
    zoom: 1;
}

#listArea dt {
    width: 60px;
    background: #01354a;
    border-radius: 5px;
    height: 23px;
    color: #FFFFFF;
    text-align: center;
    padding-top: 5px;
    float: left;
    clear: both;
    margin-right: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

* html #listArea dt {
    height: 22px;
}

#listArea dd {
    float: left;
    width: 420px;
    padding-top: 3px;
    margin-bottom: 15px;
    zoom: 1;
}


/* 2021*/
h4.tableTitle {
    font-weight: bold;
    font-size: 14px;
    color: #01354a;
    margin: 40px 10px 10px;
}

#history_list {
    padding: 30px 0;
    background-color: #01354a;
    display: block;
    width: 100%;
}

.history_list_wrap {
    margin: 0 auto;
    width: 980px;
    height: 300px;
}

#history_list ul {
    padding: 20px;
    margin: 0 10px;
}

#history_list ul li {
    float: left;
    width: 185px;
    height: 260px;
    padding: 20px 10px;
    background: #fff;
    border-radius: 10px;
    margin-right: 40px;
    text-align: left;
}

* html #history_list ul li {
    width: 185px;
}


/* ▽ 物件詳細
    ========================================================================= */

.detail_one_colum {
    overflow: auto;
    width: 980px;
    margin: 0 auto 0;
    text-align: left;
}

#detailArea h2 {
    position: relative;
}

#detailArea h2 a {
    position: absolute;
    right: 0px;
    top: 3px;
}

* html #detailArea h2 a {
    right: 15px;
    top: 1px;
}

.detail_title_area {}

.detail_title {
    border-bottom: #01354a 3px solid;
    margin-bottom: 15px;
}

.detail_catch {
    font-size: 19px;
    font-weight: bold;
    color: #01354A;
    margin-bottom: 10px;
}

#detailImg {
    width: 420px;
    margin-right: 10px;
    float: left;
}

#detailImg .box_normal {
    padding: 13px;
}

.box_detail {
    padding: 20px;
    background-color: #ebe9e6;
}

#galleryTxt {
    margin-top: 5px;
}

* html #galleryTxt {
    margin-top: 0px;
    height: 50px;
    background: #FFFFFF;
    padding: 5px 10px 0;
    overflow: hidden;
    line-height: 1.2;
}

#detailImg .definition_list dt {
    width: 60px;
    line-height: 130px;
    padding: 0 !important;
    vertical-align: middle;
    clear: both;
    float: left;
    margin: 8px 0 0 0;
}

#detailImg .definition_list dt.photo_title {
    width: 50px;
    line-height: 130px;
    padding: 0 !important;
    vertical-align: middle;
    clear: both;
    float: left;
    margin: 8px 0 0 0;
    color: #fff;
    text-align: center;
}

#detailImg .definition_list dt.dt1 {
    line-height: 1.2;
    padding: 14px 0 !important;
}

#detailImg .definition_list dd {
    width: 60px;
    line-height: 60px;
    float: left;
    margin: 8px 0 0 8px;
}

#detailRight {
    width: 550px;
    float: left;
}

* html #detailRight {
    width: 505px;
}

#detailRight .definition_list {
    padding: 15px 15px 7px;
}

.detail_list {
    display: inline-block;
}

.detail_list dt {
    width: 15%;
    background: #7a6a56;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    padding: 5px;
    float: left;
    clear: both;
    margin-right: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.detail_list dt.dt_campaign {
    width: 15%;
    background: #ea5514;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    padding: 5px;
    float: left;
    clear: both;
    margin-right: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.detail_list dd {
    padding: 5px;
    margin-bottom: 15px;
    margin-left: 110px;
    font-size: 15px;
}

.detail_list dd.dd_campaign {
    color: #ea5514;
    font-weight: bold;
    font-size: 15px;
}

a.a_map {
    font-size: 11px;
    font-weight: normal;
    /* margin-left: 10px; */
    /* vertical-align: middle; */
    margin-top: 5px;
    display: inline-block;
}

a.a_map img:hover{
    opacity: 0.7;
}

.setsubi ul {}

.setsubi ul li {
    float: left;
    margin-right: 5px;
    margin-top: -15px;
}

.setsubi ul li.setsubi_link {
    float: left;
    margin-right: 0px;
    margin-top: 0px;
}

p.detail_contact_tel {
    margin-top: 15px;
}

p.detail_contact_tel br {
    display: none;
    margin-top: 15px;
}

p.detail_contact_tel span {
    font-size: 15px;
    color: #01354a;
    margin-right: 10px;
    font-weight: bold;
}

p.detail_contact_tel a img {
    width: 160px;
}

.detailRoom,
.madoriH4Title,
.detailMap {
    margin-top: 60px;
}

.detailRoomPC {
    width: 100%;
}

.detailRoomSP {
    display: none;
}

h4.detailH4Title {
    font-weight: bold;
    font-size: 19px;
    color: #01354a;
    margin: 20px 0;
}

.detailRoomText {
    padding: 20px 0 0 20px;
}

.detailRoomTable {
    /*    background-color: #A8AEAE;*/
    font-size: 13px;
    width: 99%;
    zoom: 1;
}

.detailRoomTable th {
    background-color: #ced2d2;
    padding: 7px 5px 5px 5px;
    border-top: #01354a 1px solid;
    border-bottom: #01354a 1px solid;
    color: #01354a;
}

.detailRoomTable tr.tr1 td {
    text-align: left;
}

.detailRoomTable td {
    background-color: #FFFFFF;
    padding: 10px 2px;
    text-align: center;
}

.detailRoomTable tr {
    border-bottom: #01354a 1px dotted;
}

.detailRoomTable tr td {
    border-bottom: #01354a 1px dotted;
}

.detailRoomTable tr td {
    border-bottom: #01354a 1px dotted;
}

.detailRoomTable tr.campaign td {
    background-color: #fff;
    /*    color: #F86221;*/
}

.detailRoomTable tr.campaign td p {
    margin-bottom: 3px;
}

.detailRoomTable tr.campaign td p.bold {
    text-align: center;
    display: inline;
    color: #ea5514;
}

.detailRoomTable tr.campaign td p.normal_bold {
    text-align: center;
    display: inline;
    color: #0c0c0c;
    font-weight: bold;
}

p.campaignOrange {
    background: #ea5514;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    padding: 5px;
    clear: both;
    margin-right: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

span.detailRoomTableSpan {
    display: none;
}

span.listRoomTableSpan {
    display: none;
}

h4.madoriH4Title {
    font-weight: bold;
    font-size: 19px;
    color: #01354a;
    margin: 20px 0;
    padding: 5px 0;
    text-align: left;
}

h4.mapH4Title {
    font-weight: bold;
    font-size: 19px;
    color: #01354a;
    margin: 20px 0;
    padding: 5px 0;
    text-align: left;
}


/* Map下*/

.detail_list tr {}

.detail_list th {
    width: 80px;
    background: #7a6a56;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    padding: 5px;
    float: left;
    clear: both;
    margin-right: 15px;
    font-weight: bold;
    margin-top: 10px;
}

.detail_list td {
    padding: 0 5px;
    padding-top: 10px;
    margin-left: 110px;
    font-size: 13px;
}

.detail_list td span.kinrin_text {
    padding-left: 10px;
}

.low_contact {
    margin: 100px 0;
    width: 100%;
}

.low_contact_wrap {
    margin: 0 auto;
    padding: 0 250px;
}

p.low_contact_tel {
    margin-top: 15px;
}

p.low_contact_tel br {
    display: none;
    margin-top: 15px;
}

p.low_contact_tel span {
    font-size: 15px;
    color: #01354a;
    margin-right: 10px;
    font-weight: bold;
}

p.low_contact_tel a img {
    width: 160px;
}


/* 20181205 */

#detailImg2018 {
    width: 405px;
    margin-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    background: #FFFFFF;
    float: left;
}

#detailImg2018 .box_normal {
    padding: 8px;
}

#detailRight2018 {
    width: 425px;
    margin-right: 15px;
    float: right;
}

#detailRight2018 dt {
    width: 90px;
}

#detailRight2018 .tableBasic td.campaign {
    background: url('../images/list/icon_campaign.gif') 4px 6px no-repeat #FFF3EE;
    padding-left: 24px !important;
}

#detailRight2018 .tableBasic a {
    white-space: nowrap;
}

#detailRight2018 dt a {
    position: absolute;
    top: 7px;
    left: 110px;
    display: block;
    width: 60px;
    text-align: left;
}

* html #detailRight2018 dt a {
    left: 100px;
}

#detailRight2018 ul.clearfix {
    width: 425px;
}

#detailRight2018 ul.clearfix li {
    float: left;
    margin-right: 5px;
}

#campaignYen {
    width: 100% !important;
    padding: 0 !important;
    text-align: right;
}

#campaignYen div {
    padding-top: 8px;
    background: url('../images/detail/bg_campaign.gif') 24px 0px no-repeat;
}

#campaignYen div img {
    margin-left: 3px !important;
}

#campaignYen div img#yen {
    margin-left: 8px !important;
}

#detailYen {
    text-align: right;
}

#detailYen div img {
    margin-left: 3px !important;
}

#detailArea .box_campaign {
    position: relative;
}

#detailArea .box_campaign p {
    position: absolute;
    right: 15px;
    top: 15px;
}

* html #detailArea .box_campaign p {
    right: 20px;
}

#detailArea .box_campaign table.ca {
    width: 500px;
}

#detailArea .box_campaign table th span {
    width: 75px;
}

#detailLeft {
    width: 425px;
    margin-right: 15px;
    float: left;
}

#detailLeft dt {
    width: 90px;
}

#detailLeft .tableBasic td.campaign {
    background: url('../images/list/icon_campaign.gif') 4px 6px no-repeat #FFF3EE;
    padding-left: 24px !important;
}

#detailLeft .tableBasic a {
    white-space: nowrap;
}

#detailLeft dt a {
    position: absolute;
    top: 7px;
    left: 110px;
    display: block;
    width: 60px;
    text-align: left;
}

* html #detailLeft dt a {
    left: 100px;
}

#detailLeft ul.clearfix {
    width: 425px;
}

#detailLeft ul.clearfix li {
    float: left;
    margin-right: 5px;
}

#detailMap {
    /*    width: 498px;
        float: left;*/
    width: 100%;
    clear: both;
}

* html #detailMap {
    /*    width: 500px;*/
    width: 100%;
}

#detailMap .box_normal {
    padding: 8px;
}

#detailMap div#map {
    width: 980px;
    height: 450px;
    background-color: #FFFFFF;
}

#detailMap table th span {
    width: 90px;
}

#detailMap table ul li p.arrow {
    margin-bottom: 3px;
}

#detailInquiryBtn {
    float: left;
    width: 430px;
    border-right: 1px solid #A8AEAE;
    padding-right: 9px;
    margin-right: 9px;
}

#detailInquiryTel {
    float: left;
    width: 449px;
}

#detailInquiryBtn dt,
#detailInquiryTel dt {
    width: 180px;
}


/* ▽ 活用事例
    ========================================================================= */

#voiceList li {
    float: left;
    width: 338px;
    margin-right: 10px;
    margin-bottom: 10px;
}

* html #voiceList li {
    width: 340px;
}

#voiceList li div {
    padding: 13px;
    height: 215px;
}

* html #voiceList li div {
    height: 241px;
}

#voiceList li div h3 {
    font-size: 15px;
    font-weight: bold;
    background: url('../images/voice/top_round.gif') top no-repeat;
    padding-top: 3px;
}

#voiceList li div h3 a {
    display: block;
    padding: 2px 5px 4px 5px;
    background: url('../images/voice/bottom_round.gif') bottom no-repeat #A1876B;
}

* html #voiceList li div h3 a {
    padding: 3px 5px 5px 5px;
}

#voiceList .img_border {
    width: 120px;
    float: left;
    margin-right: 10px;
    margin-bottom: 8px;
}

#voiceList .txt {
    line-height: 1.8;
}

#voiceArea li {
    margin-bottom: 15px;
}

#voiceArea li div.box_normal {
    padding: 13px;
}

#voiceArea li div h3 {
    font-size: 15px;
    font-weight: bold;
    background: url(/images/voice/top_round2.gif) top no-repeat;
    padding-top: 3px;
}

#voiceArea li div h3 a,
#voiceArea li div h3 span {
    display: block;
    color: #FFFFFF;
    padding: 2px 5px 4px 5px;
    background: url(/images/voice/bottom_round2.gif) bottom no-repeat #A1876B;
}

* html #voiceArea li div h3 a {
    padding: 3px 5px 5px 5px;
}

#voiceArea .txt {
    line-height: 1.8;
}

#voiceArea .img_border01 {
    width: 178px;
    float: right;
    margin-left: 10px;
}

* html #voiceArea .img_border01 {
    width: 180px;
}

#voiceDetail {
    background-color: #D2D7D7;
    padding: 10px;
    margin-top: 10px;
}

#voiceDetail p.img_border {
    width: 100px;
    margin-right: 10px;
    float: left;
}

#voiceDetail table {
    width: 529px;
    float: left;
}

#voiceDetail table th {
    width: 120px;
}


/* ▽ スタッフ紹介
    ========================================================================= */

#staffList {
    margin: 0 0 20px;
}

#staffList li {
    width: 90px;
    margin-right: 10px;
    margin-bottom: 10px;
    float: left;
}

#staffArea li {
    margin-bottom: 15px;
}

#staffArea li div.box_normal {
    padding: 13px;
}

#staffArea li div h3 {
    font-size: 15px;
    font-weight: bold;
    background: url('../images/voice/left_round.gif') left no-repeat;
    padding-left: 3px;
}

#staffArea li div h3 span {
    display: block;
    color: #FFFFFF;
    padding: 5px 6px 4px 3px;
    background: url(/images/voice/right_round.gif) right no-repeat #A1876B;
}

* html #staffArea li div h3 span {
    padding: 6px 6px 5px 3px;
}

#staffArea .txt {
    line-height: 1.6;
    width: 490px;
    float: left;
}

#staffArea p.img {
    width: 160px;
    float: right;
}

#staffArea li dl {
    width: 410px;
    float: left;
}


/* ▽ ハローオフィスの特徴
    ========================================================================= */

#aboutArea {
    margin: 20px 10px 0;
}

#aboutArea {
    width: 90%;
    margin: 0 auto;
}

#aboutArea li {
    width: 190px;
    float: left;
    font-size: 15px;
    line-height: 1.5;
    color: #FFFFFF;
    padding-top: 20px;
    text-align: center;
}

* html #aboutArea li {
    height: 200px;
}

p.about_title img {
    width: 85%;
}

#aboutArea li.li1 {
    margin-right: 20px;
}

#aboutArea li.li2 {
    margin-right: 20px;
}

#aboutArea li.li3 {}

.definition_list dt.about_title_text {
    text-align: center!important;
    color: #fff!important;
    margin-top: 20px;
    background-color: #5c6c6f;
}

.definition_list dt.about_title_text br {
    display: none;
}

.definition_list p.about_catch {
    text-align: center!important;
    font-weight: bold;
    color: #01354a;
    font-size: 16px;
    margin-bottom: 15px;
}

p.about_catch br {
    display: none;
}

span.about_catch_img {
    margin-right: 10px;
}

span.about_catch_img img {
    width: 54px;
}

.definition_list p.about_catch2 {
    text-align: left!important;
    font-weight: bold;
    color: #01354a;
    font-size: 13px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.about_message {
    margin-top: 40px;
}

.about_message p.about_catch {
    text-align: center!important;
    font-weight: bold;
    color: #01354a;
    font-size: 16px;
    margin-bottom: 15px;
}

.about_message p.about_message_text {
    background: #5c6c6f;
    border-radius: 10px;
    color: #fff;
    padding: 20px;
    letter-spacing: 2px;
    line-height: 20px;
}

.about_message_sign {
    text-align: right;
    margin-top: 10px;
}

.pc_img {}

.sp_img {
    display: none;
}

p.low_fv_img img {
    width: 100%;
}

p.low_catch {
    font-weight: bold;
    color: #01354a;
    font-size: 15px;
    padding-left: 30px;
}

p.low_text {
    font-weight: bold;
    color: #01354a;
    font-size: 13px;
}


/* ▽ ご契約の流れ
    ========================================================================= */

#flowList {
    /*    background-color: #E9ECED;*/
    padding: 0px 15px 0px 30px;
    margin: 15px auto 0;
    width: 100%;
    zoom: 1;
}

* html #flowList {
    width: 500px;
    padding: 15px;
}

#flowList li {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
}

#flowList li a {
    font-size: 14px;
    color: #3e3a39;
    text-decoration-line: underline;
    font-weight: bold;
}

span.red {
    color: #ff0000;
}

span.green {
    color: #12989a;
    margin-right: 5px;
}

#stepArea li {
    float: left;
}

#flowArea li {
    margin-bottom: 20px;
    text-align: center;
}

#flowArea li.last {
    padding-bottom: 20px;
    margin-bottom: 60px;
    background: none;
}

#flowArea li .box_normal {
    padding: 10px;
}

#flowArea h3 {
    margin-bottom: 10px;
}

#flowArea .left {
    margin-bottom: 0;
}

#flowArea .left img {
    border: 1px solid #FFFFFF;
}

#flowArea table {
    width: 666px;
    line-height: 1.4;
}

.account {
    background: #b3c5d1;
    padding: 5px 15px 4px;
    font-weight: bold;
    margin: 5px 0;
    color: #01354a;
    display: inline-block;
}

p.tegaru {
    font-weight: bold;
    margin: 5px 0;
    color: #01354a;
    padding-left: 1em;
    text-indent: -1em;
}

span.tegaruSpan {
    font-size: 11px;
}

p.normal {
    font-weight: normal;
    margin: 5px 0;
    color: #000;
    padding-left: 2em;
    text-indent: -1em;
}

#downloadList {
    padding: 0px 15px 0px 0px;
    margin: 15px auto 0;
    width: 100%;
    zoom: 1;
}

* html #downloadList {
    width: 500px;
    padding: 15px;
}

#downloadList li {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

#downloadList li a {
    font-size: 14px;
    color: #01354a;
    font-weight: bold;
    float: left;
}

#downloadList li a:hover {
    opacity: 0.7;
}

#downloadList li a span {
    vertical-align: middle;
    margin-left: 10px;
}

#downloadList li a span img {
    width: 80px;
}


/* ▽ 家賃・使用料の相場
    ========================================================================= */

#serviceTable01,
#serviceTable02 {
    width: 335px !important;
    float: left;
    font-size: 11px;
}

#serviceTable01 {
    margin-right: 10px;
}

#serviceTable01 th,
#serviceTable02 th {
    padding: 4px 5px 1px !important;
    text-align: center;
}

#serviceTable01 th.th1,
#serviceTable02 th.th1 {
    width: 25% !important;
}

#serviceTable01 th.th2,
#serviceTable02 th.th2 {
    width: 50% !important;
}

#serviceTable01 td,
#serviceTable02 td {
    padding: 4px 5px 1px !important;
}

#serviceTable01 td.row,
#serviceTable02 td.row {
    text-align: center;
    color: #003300;
    background-color: #DFFFDF;
}

#serviceTable01 td.mid,
#serviceTable02 td.mid {
    text-align: center;
    color: #336699;
    background-color: #E2ECF5;
}

#serviceTable01 td.hi,
#serviceTable02 td.hi {
    text-align: center;
    color: #CC3300;
    background-color: #FFE8DF;
}


/* ▽ よくある質問
    ========================================================================= */

#question {
    padding: 5px 10px 10px;
}

#question dt {
    width: 8%;
    float: left;
    clear: both;
    margin-right: 10px;
    margin-top: 5px;
    font-weight: bold;
}

#question dd {
    width: 70%;
    float: left;
    padding: 3px 0px 2px;
    margin-top: 5px;
}

.faq_list {
    border-top: 1px solid #A8AEAE;
    padding-top: 15px;
    margin-bottom: 15px;
    margin-top: -1px;
}

.faq_list dt {
    float: left;
    width: 50px;
    clear: both;
    margin-right: 10px;
    margin-top: 5px;
    padding-left: 0px;
    padding-right: 0px;
    font-weight: bold;
}

.faq_list dt.question {
    background-color: #A1876B;
}

.faq_list dt.answer {
    background-color: #3E474A;
}

.faq_list dd {
    width: 630px;
    float: left;
    padding: 3px 0px 2px;
    margin-top: 5px;
}

.faq_list dd ol li {
    list-style-type: decimal;
    marker-offset: 0px;
    margin-left: 1.8em;
    margin-bottom: 5px;
}

#accordion {
    margin-top: 40px;
}

.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    padding: 0.625em 0.625em 0.625em 2em;
    background-color: #e1e5e8;
    font-size: 1.25em;
    font-weight: normal;
    color: #3e3a39;
    cursor: pointer;
    margin-bottom: 10px;
    border-top: #3e3a39 1px solid;
    border-bottom: #3e3a39 1px solid;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    /*縦線に*/
    transform: rotate(90deg);
    background: #3e3a39;
    transition: all .3s ease-in-out;
    color: #3e3a39;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    /*横線*/
    width: 15px;
    height: 2px;
    background: #3e3a39;
    transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
}

.accordion-content {
    display: none;
    padding: 0em 0.625em 0.625em 2.6em;
}


/* CSS for CodePen */

.accordion-container {
    width: 100%;
    margin: 0 auto;
}

.faq_t_q {
    font-size: 30px;
    font-weight: bold;
    vertical-align: middle;
    margin-right: 10px;
    color: #01354a;
}

.open .faq_t_q {
    color: #01354a;
    margin-right: 10px;
}

.faq_t_q2 {
    font-size: 14px;
    line-height: 1.7em;
    vertical-align: middle;
}

.faq_t_a {
    font-size: 30px;
    font-weight: bold;
    vertical-align: middle;
    margin-right: 10px;
    color: #c30d23;
}

.faq_a_r {
    font-size: 14px;
    line-height: 1.2em;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    font-size: 14px;
    line-height: 1.7em;
    text-indent: -2.4em;
    padding-left: 2.4em;
}

.faq_a_r a {
    padding-left: 20px;
    color: #e6be44;
    font-weight: bold;
}

.faq_answer {
    padding-left: 0em;
    text-indent: -2em;
}

a.downloadLink {
    margin-top: 20px;
    font-size: 16px;
    color: #01354a;
    font-weight: bold;
    display: inline-block;
}

a.downloadLink:hover {
    opacity: 0.7;
}

a.downloadLink span {
    vertical-align: middle;
    margin-left: 10px;
}

a.downloadLink span img {
    width: 80px;
}


/* ▽ 会社概要
    ========================================================================= */

#companyOfficer dt {
    clear: both;
    float: left;
    width: 25%;
    margin-bottom: 5px;
}

#companyOfficer dd {
    float: left;
    width: 75%;
    margin-bottom: 5px;
}


/* ▽ プライバシー
    ========================================================================= */

.privacyList li {
    list-style-type: decimal;
    marker-offset: 5px;
    margin-left: 2.5em;
}

/* ===============================
   個別スタイル（ページ固有）
   =============================== */
.privacy-heading-margin {
    margin-top: 40px;
}

/* 20180904  PC ポリシー画像 */

img.pcShowPolicy {
    display: block;
}

img.spShowPolicy {
    display: none;
}

#policyArea dt {
    background-color: #5c6c6f;
    color: #fff;
    padding-left: 15px;
    text-align: left;
    padding: 5px 10px;
    font-weight: bold;
}

#policyArea dd {
    line-height: 2em;
    font-weight: bold;
    color: #01354a;
    padding: 15px 0 15px 10px;
}

#policyArea dd span {
    line-height: 2em;
    font-weight: normal;
    color: #000;
}

#policyArea ul.list li {
    list-style-type: disc;
    marker-offset: 5px;
    margin-left: 2em;
    margin-top: 3px;
    margin-bottom: 3px;
    line-height: 2em;
    color: #000;
}

h2.searchH2 br {
    display: none;
}

/* カウンターの初期化 */
ol.numbered-list {
  counter-reset: item;
  list-style: none;
  padding-left: 2em;
}

/* 上位 ol > li のみに番号を振る */
ol.numbered-list > li {
  counter-increment: item;
  position: relative;
  padding-left: 1.8em;
}

/* 番号の見た目を追加 */
ol.numbered-list > li::before {
  content: "(" counter(item) ")";
  position: absolute;
  left: 0;
}

/* ▽ サイトマップ
    ========================================================================= */

#sitemapArea {
    padding-top: 50px;
}

#sitemapArea li {
    margin-bottom: 7px;
}

#sitemapArea ul.list1 {
    width: 40%;
    float: left;
    margin-left: 50px;
}

#sitemapArea ul.list2 {
    width: 48%;
    float: left;
}

#sitemapArea ul.list1 li,
#sitemapArea ul.list2 li {
    margin-bottom: 20px;
}

#sitemapArea ul.list1 li a,
#sitemapArea ul.list2 li a {
    color: #3e3a39;
    font-weight: bold;
}

#sitemapArea h3 {
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 15px;
    color: #01354a;
}


/* 20180518 SEO H2タイトル変更 */

h2.searchH2 {
    font-weight: bold;
    font-size: 16px;
    border-bottom: 3px solid #01354a;
    color: #01354a;
    margin-bottom: 20px;
}


/* 20180529 h2 PC　スマホ */

h2.pcShowh2 {
    display: block;
}

h2.spShowh2 {
    display: none;
}

.showLefter {
    display: none;
}

table.w400 {
    width: 400px;
}

li.pcShow {
    display: block;
}

li.spShow {
    display: none;
}

p.pcShow {
    display: block;
}

p.spShow {
    display: none;
}

img.spShow {
    display: none;
}


/* 20181207 AS様リンク */

p.tankiLink {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

p.tankiLink a {
    text-decoration: none;
}


/* 20181205 レイアウト変更 */

#detailMap2018 {
    width: 498px;
    float: left;
    padding-top: 20px;
    background-color: #FFFFFF;
}

* html #detailMap2018 {
    width: 500px;
}

#detailMap2018 .box_normal {
    padding: 8px;
}

#detailMap2018 div#map {
    width: 480px;
    height: 400px;
    background-color: #FFFFFF;
}

#detailMap2018 table th span {
    width: 90px;
}

#detailMap2018 table ul li p.arrow {
    margin-bottom: 3px;
}

.ikebukuro-banner {
    margin-top: 24px;
    max-width: 690px;
    height: 133px;
    margin-bottom: 16.24px;
}

.ikebukuro-banner-image {
    background-position: center;
    background-size: cover;
    background-image: url('../images/banner/hello_office_ikebukuro-banner.png');
}

.top-page-banner-adjustment {
    text-align: center;
}

.top-page-banner-adjustment-child {
    display: inline;
    float: inherit !important;
}


/* メインビジュアル left */

.slide_left_pc {
    display: block;
    float: left;
}

.slide_left_pc img {
    width: 277px;
    height: 307px;
}

.slide_left_pc img:hover {
    opacity: 0.8;
}

.slide_left_sp {
    display: none;
}


/* 下層ページ */

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mtpc40 {
    margin-top: 40px;
}

.mb40 {
    margin-bottom: 40px;
}

ul.kodawariUl li {
    font-weight: bold;
    margin-bottom: 10px;
}


/* 速いボタン */

p.serch_button a {
    -webkit-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -moz-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -ms-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -o-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    display: block;
    margin-top: 20px;
    max-width: 100%;
    text-decoration: none;
    border-radius: 4px;
}

.detail_button a {
    -webkit-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -moz-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -ms-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -o-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    display: block;
    width: 90px!important;
    text-decoration: none;
    border-radius: 4px;
    float: right;
}

p.detail_area_button a {
    -webkit-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -moz-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -ms-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    -o-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
    display: block;
    margin-top: 30px;
    width: 100%;
    text-decoration: none;
    border-radius: 4px;
}

a.button {
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}

a.button:hover {
    color: rgba(255, 255, 255, 0.85);
}

.near_area {
    padding: 20px;
}

#listArea .near_area dl dt {
    background: #7a6a56!important;
}


/* レンタルオフィスのお役立ち情報 */

p.low_text {
    margin-top: 20px;
    margin-left: 30px;
}

#serviceList {
    background-color: #E9ECED;
    border-radius: 10px;
    border: 1px solid #3e3a39;
    padding: 20px 30px 5px;
    margin: 10px 30px 50px;
    zoom: 1;
}

#serviceList li {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}

#serviceList li a {
    font-size: 12px;
    color: #3e3a39;
    text-decoration-line: underline;
    font-weight: bold;
}

dl.service_dl {
    margin-top: 20px;
}

dl.service_dl dt {
    float: left;
    background: none;
}

dl.service_dl dt img {
    width: 150px;
}

dl.service_dl dd {
    margin-left: 180px;
    letter-spacing: 1px;
}

dl.service_dl dd.onedd {
    margin-left: 0;
    letter-spacing: 1px;
}

dl.service_dl dd.onedd table {
    margin-bottom: 50px;
}

.service_dl_title br {
    display: none;
}

dt.service_dl_title {
    text-align: center!important;
    border-bottom: 1px #000 solid;
    color: #5c6c6f;
    background: none;
    margin-top: 50px;
}

p.service_paging {
    padding-top: 100px;
    text-align: center;
}

.browser {
    background: #b3c5d1;
    padding: 5px 15px 4px;
    font-weight: bold;
    margin: 5px 0;
    color: #01354a;
    display: inline-block;
    width: 100%;
}


/* コラム一覧ページ */

#columnLeft {
    float: left;
    width: 690px;
    zoom: 1;
    margin-right: 30px;
    margin-bottom: 60px;
}

#columnRight {
    float: left;
    width: 255px;
    zoom: 1;
    /*	margin-right:15px;*/
}

div.columnArea {
    padding: 20px;
}

article.columnList {
    border: 1px #999999 solid;
    width: 47%;
    height: 420px;
    float: left;
    margin-right: 30px!important;
    margin-bottom: 30px;
    box-shadow: 2px 4px 0px 2px rgba(0, 0, 0, 0.3);
}

article.columnList:nth-child(2n) {
    margin-right: 0px!important;
}

article.columnList ul.tagsItemLink {
    padding: 10px 10px 20px;
    margin-bottom: 20px;
}

article.columnList ul.tagsItemLink li {
    border: 1px #5c6c6f solid;
    float: left;
    margin-right: 10px!important;
    padding: 5px 10px!important;
    border-radius: 3px;
}

article.columnList ul.tagsItemLink li a {
    font-size: 9px!important;
    color: #5c6c6f!important;
    display: block;
}

article.columnList ul.tagsItemLink li.mainTag {
    border: none;
    background: #5c6c6f!important;
}

article.columnList ul.tagsItemLink li.mainTag a {
    display: block;
    color: #fff!important;
}

article.columnList p.columnSubTitle {
    padding: 0 10px;
}

article.columnList p.columnSubTitle a {
    font-size: 14px!important;
    color: #01354a!important;
    font-weight: bold;
}

img.colmn_list_img {
    width: 100%;
    display: inline-block;
}

article.columnList p.columnListText {
    font-size: 11px!important;
    padding: 10px;
}

article.columnList p.text-right {
    padding: 10px;
    font-size: 10px;
}

#rightPickUp {
    background-color: #efefef;
    padding: 20px 13px 20px;
    border-radius: 7px;
    border: 1px #5c6c6f solid;
}

article.columnPickUp {}

article.columnPickUp ul.tagsItemLink {
    margin-top: 10px!important;
    margin-bottom: 20px!important;
}

article.columnPickUp ul.tagsItemLink li {
    border: 1px #5c6c6f solid;
    float: left;
    margin-right: 10px!important;
    padding: 5px 10px!important;
    border-radius: 3px;
}

article.columnPickUp ul.tagsItemLink li a {
    font-size: 9px!important;
    color: #5c6c6f!important;
    display: block;
}

article.columnPickUp ul.tagsItemLink li.mainTag {
    border: none;
    background: #5c6c6f!important;
}

article.columnPickUp ul.tagsItemLink li.mainTag a {
    display: block;
    color: #fff!important;
}

article.columnPickUp p.columnSubTitle {
    margin-top: 15px;
}

article.columnPickUp p.columnSubTitle a {
    font-size: 12px!important;
    color: #01354a!important;
    font-weight: bold;
}

article.columnPickUp img.colmn_list_img {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

article.columnPickUp p.columnListText {
    margin-top: 10px;
    font-size: 11px!important;
}

.columnDate {
    text-align: right;
    padding: 0 0 5px 0;
    margin-right: 10px;
    font-size: 9px;
}

article.columnPickUp p.text-right {
    padding: 10px;
}

#left_banner {
    width: 100%;
}

#left_banner p.office_award {
    text-align: center;
}

#left_banner p.office_award img {
    width: 50%!important;
}

p.columnPickUpTitle {
    text-align: center;
    font-size: 14px!important;
    color: #01354a!important;
    font-weight: bold;
    border-bottom: 2px solid #01354a;
}

p.columnPickUpTitle span {
    margin-right: 10px;
}

p.columnPickUpTitle span img {
    width: 15px;
    vertical-align: middle;
}


/* コラム記事ページ */

.columnMain {
    margin-top: 5px!important;
    margin-bottom: 20px!important;
    padding: 0 20px;
    width: 650px;
}

.columnMain ul.tagsItemLink {
    padding: 10px 10px 20px;
    margin-bottom: 20px;
    border-bottom: #231815 2px solid;
}

.columnMain ul.tagsItemLink li {
    border: 1px #5c6c6f solid;
    float: left;
    margin-right: 10px!important;
    padding: 5px 10px!important;
    border-radius: 3px;
}

.columnMain ul.tagsItemLink li a {
    font-size: 9px!important;
    color: #5c6c6f!important;
    display: block;
}

.columnMain ul.tagsItemLink li.mainTag {
    border: none;
    background: #5c6c6f!important;
}

.columnMain ul.tagsItemLink li.mainTag a {
    display: block;
    color: #fff!important;
}

.columnMain p.columnSubTitle {
    padding: 20px 0;
    font-size: 23px!important;
    color: #01354a!important;
    font-weight: bold;
}

img.colmn_list_img {
    width: 100%;
    display: inline-block;
}

.columnMain p.columnListText {
    font-size: 11px!important;
    padding: 10px;
}

.columnMain p.columnMainTextTitle {
    font-weight: bold;
    font-size: 16px!important;
    padding: 10px;
    color: #01354a;
    margin-top: 10px;
}

.columnMain p.columnMainText {
    font-size: 13px!important;
    padding: 0 10px;
    line-height: 1.6em;
    margin-top: 10px;
}

.columnMain p.columnMainTextSubTitle {
    font-weight: bold;
    font-size: 16px!important;
    padding: 10px 5px 5px 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #01354a;
    margin-top: 40px;
    color: #01354a;
}

.kanrenArea {
    margin-top: 40px;
}

.kanrenList {
    width: 100%;
    clear: both;
    margin-bottom: 60px;
}

h2.kanrenH2 {
    text-align: center!important;
    color: #fff!important;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #5c6c6f;
    padding: 5px;
}

.kanrenList p.kanrenImg {
    width: 190px;
    margin: 0 0 0 10px;
    float: left;
    zoom: 1;
}

.kanrenList p.kanrenImg img {
    width: 170px;
}

.kanrenList p.kanrenTitle {
    font-weight: bold;
    font-size: 14px!important;
    margin-bottom: 10px;
    color: #01354a;
}

.kanrenList p.kanrenTag span {
    margin-left: 30px;
}


/* 20210715 wordpressに合わせる */

.columnMain h3.columnTitleH3 {
    font-weight: bold!important;
    font-size: 16px!important;
    padding: 10px;
    color: #01354a;
    margin-top: 10px;
}

.columnMain p {
    font-size: 13px!important;
    padding: 0 10px;
    line-height: 1.6em;
    margin-top: 10px;
}

.columnMain h4.columnTitleH4 {
    font-weight: bold!important;
    font-size: 16px!important;
    padding: 10px 5px 5px 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #01354a;
    margin-top: 40px;
    color: #01354a;
}

.columnDetailContents .columnDetailLink {
    display: inline-block;
    margin: 10px 0;
    color: #01354a;
}

.columnDetailContents .columnDetailLink:hover {
    opacity: 0.8;
}

.columnLinkArrow::after {
    display: inline-block;
    content: '';
    background: url("/images/column/icon-arrow.png") no-repeat;
    width: 7px;
    height: 14px;
    background-size: contain;
    margin: -3px 0 -3px 8px;
}


/* 電話番号リンクをスマホのみ有効にする 20210716 */

@media (max-width: 640px) {
    a[href*="tel:"] {
        pointer-events: none!important;
        cursor: default!important;
        text-decoration: none!important;
    }
}


/* 大きいスマホ、iPad用CSS */

@media screen and (min-width:641px) and ( max-width:980px) {
    #wrap {
        width: 980px;
        padding: 0 20px;
    }
}


/* スライダー変更 20210720 */

.slider_2 {
    float: right;
    width: 682px;
    height: 306px;
}

.slider_2 li img {
    display: block;
}

/*Safari*/

_::-webkit-full-page-media,
_:future,
    :root .tableContact tr {
    display: block;
}

_::-webkit-full-page-media,
_:future,
    :root .detailRoomTable tr.campaign td {
        display: contents ;
}

_::-webkit-full-page-media,
_:future,
    :root .detailRoomTable td {
        display: contents ;
}

_::-webkit-full-page-media,
_:future,
    :root .detailRoomTable tr.campaign td p {
    margin-bottom: 28px;
    }

_::-webkit-full-page-media,
_:future,
    :root .detailRoomTable tr.normal td p {
    margin-bottom: 24px;
    }

    _::-webkit-full-page-media,
_:future,
    :root span.listRoomTableSpan {

    margin-bottom: 20px;

}


_::-webkit-full-page-media,
_:future,
    :root .detailRoomTable tr.normal td p.bold {
    margin-bottom: 24px;
    text-align: left;
    float: left;
    }

    _::-webkit-full-page-media,
_:future,
    :root #listArea.detailRoomTable tr.campaign td p.bold {
    text-align: left;
    margin-top: 30px!important;
    }

    _::-webkit-full-page-media,
_:future,
    :root .detailRoom .detailRoomTable tr.campaign td p.bold {
    text-align: left;
    float: left;
    margin-right: 10px;
    }


    _::-webkit-full-page-media,
    _:future,
    :root span.detailRoomTableSpan {
        margin-bottom: 20px;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .detailRoomTable p.detailP {
/*            margin-top: 24px;*/
    }


    _::-webkit-full-page-media,
    _:future,
    :root span.detailRoomTableSpan {
        width: 90px;
    }


    _::-webkit-full-page-media,
    _:future,
    :root .detail_button a{
        text-align: center;
        clear: both;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .detailRoomTable tr.campaign br {
        display: none;
    }
    
    _::-webkit-full-page-media,
    _:future,
    :root p.boldP{
        margin-bottom: 24px;
        text-decoration:line-through;
        float: left;
    }
    _::-webkit-full-page-media,
    _:future,
    :root p.tableP{
        margin-bottom: 24px;
        float: left;
    }


_::-webkit-full-page-media,
_:future,
    :root 
    .tableContact input[name$="tel1_1"], .tableContact input[name$="tel1_2"], .tableContact input[name$="tel1_3"] {
    width: 28%;
} 

/*
2024/04/01 add
空室情報表示部分
*/
.detail_one_colum .detailRoomTable .campaignOrange{display:inline-block;white-space:nowrap;}
.detail_one_colum .detailRoomTable tr.campaign td{text-align:center;}
.detail_one_colum .detailRoomTable .campaignOrange,
.detail_one_colum .detailRoomTable .button {margin:0 auto;float:none;}
.detail_one_colum .detailRoomTable td {border-right:1px dotted #AAA;}
.detail_one_colum .detailRoomTable td:nth-child(1) {border-right:none;}
.detail_one_colum .detailRoomTable .campaign td {border-right:1px dotted #AAA;}
.detail_one_colum .detailRoomTable tr td:last-child,
.detail_one_colum .detailRoomTable tr th:last-child{border-right:none!important;}
.detail_one_colum .detailRoomTable td .strike{text-decoration:line-through;}/*取消線*/

/*幅の調整*/
.detail_one_colum .detailRoomTable tr th:nth-child(1){width:auto;}
.detail_one_colum .detailRoomTable tr th:nth-child(2){width:12%;}
.detail_one_colum .detailRoomTable tr th:nth-child(3){width:8%;}
.detail_one_colum .detailRoomTable tr th:nth-child(4){width:15%;}
.detail_one_colum .detailRoomTable tr th:nth-child(5){width:auto;min-width:15%;}
.detail_one_colum .detailRoomTable tr th:nth-child(6){width:10%;}
.detail_one_colum .detailRoomTable tr th:nth-child(7){width:12%;}
.detail_one_colum .detailRoomTable tr th:nth-child(8){width:auto;min-width:12%;}

/*背景設定*/
.detail_one_colum .detailRoomTable tr td {background: #fff;}
.detail_one_colum .detailRoomTable tr:nth-child(odd) td {background: #ebe9e6;}
.detail_one_colum .detailRoomTable tr:hover td {background-color:#FFFFEE;}

/*ページ内スクロール : トップに戻るボタン*/
.re_top {
    display: none;
}
.pagetop {
    transition: none!important;
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {border-color: #12989a;}
}