「社員寮ドーミーのご案内」、「契約と費用のご案内」、「ドーミー物件情報」
それぞれのデジタルパンフレット「法人契約専用」を閲覧いただけます。
/* ===================================
基本設定
=================================== */
html{ overflow-y:scroll; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
font-weight: normal;
font-style: normal;
}
li { list-style: none; }
/* ===================================
共通
=================================== */
/* フォント */
body {
font-family: Verdana, Roboto, 'Droid Sans', Meiryo, 'MS Pゴシック', 'Hiragino Kaku Gothic ProN', sans-serif;
}
select,input,button,textarea {
font-family: Verdana, Roboto, 'Droid Sans', Meiryo, 'MS Pゴシック', 'Hiragino Kaku Gothic ProN', sans-serif;
}
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body {
text-align:center; /* フォームエリアを中央に表示 */
position:relative;
}
body:before {
content: "";
display: block;
width: 100%;
height: 500px;
background: rgba(244,244,244,1);
background: -moz-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(244,244,244,1)), color-stop(100%, rgba(255,255,255,1)));
background: -webkit-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
background: -o-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
background: -ms-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#ffffff', GradientType=0 );
position: absolute;
top: 70px;
left: 0;
z-index: -1;
}
/* フォームエリア全体の設定 */
div.container {
width:1024px; /* 画面の横幅 */
font-size:14px; /* フォントの初期サイズ */
color:#333; /* フォントの初期カラー */
margin:0 auto; /* 画面の中央に表示 */
text-align:left; /* 左寄せ */
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
width:auto; /* 画面の横幅 */
margin:0 auto; /* 中央に表示 */
background:#f4f4f4;
padding:20px;
}
/* 設問の表 */
table.items {
border-collapse: collapse;
border-spacing: 0;
}
/* 設問の行 */
tr.item { border-bottom:10px solid #f4f4f4} /* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
width:230px; /* 実際の設問名の文字の長さに合わせて調整してください */
padding:4px 0 4px 5px;
color:#224;
font-size:14px;
font-weight:bold;
vertical-align:top; /* ラベルの配置 セルの上部に表示したい場合は top */
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
width:360px; /* 入力コントロールの幅に合わせて調整してください */
padding:3px 3px 0 10px;
font-size:14px;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
font-size:12px;
padding-left:10px;
color:DarkSlateGray;
}
/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
padding-right:5px;
font-size:85%;
font-weight:bold;
color:DarkSlateGray;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size:110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width:auto;
margin:auto; /* 中央に表示、上下に10pxの余白 */
padding:20px 0 50px ; /* ボタンとの上下の隙間のサイズ */
text-align:center; /* 中央にボタンを表示 */
background: #f4f4f4;
}
/* 入力エラーメッセージのデザイン */
div.message {
padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */
margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */
font-size:14px;
font-weight:bold;
color:OrangeRed;
background:LightYellow;
}
/* 公開終了メッセージのデザイン */
div.finished-message {
padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */
margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */
font-size:14px;
font-weight:bold;
color:Crimson;
background:MistyRose;
}
/* ===================================
入力コントロールのデザイン
=================================== */
/* 確認/送信/戻る/登録ボタン */
input[type=button] {
font-size:18px;
background:#f07651;; /* ボタンの色 */
padding:15px 50px; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */
margin:0px 10px 0px 10px; /* 確認画面に表示される2つのボタンの左右の余白サイズ */
border:none; /* ボタンに枠線をつけたい場合は、ここを設定してください */
color:white; /* 文字の色 */
font-weight:bold;
}
input[type=button]:hover { cursor: pointer; }
/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
input[type="text"]:focus { background-color:LightYellow; } /* テキストボックス */
select:focus { background-color:LightYellow; } /* プルダウン */
textarea:focus { background-color:LightYellow; } /* テキストエリア */
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
float:right;
margin-right:4px;
font-size:60%;
font-weight:bold;
color:#d10000;
}
span.required:after {
/* ここを編集することで表示されるマークを変更できます */
content:"*";
}
/* 必須項目についての説明文 */
p.required_msg {
text-align:right;
margin-right:4px;
font-size:80%;
font-weight:bold;
color:#d10000;
margin-bottom:5px;
}
p.required_msg:after {
/* ここを編集することで表示されるマークを変更できます */
content:"*必須入力";
}
/* メールアドレスの再入力メッセージ */
p.label_mail {
margin:5px 0 1px 0;
font-size:85%;
font-weight:bold;
color:DarkSlateGray;
}
p.label_mail:after {
/* ここを編集することで表示されるメッセージを変更できます */
content:"確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and ( max-width:767px ) {
/* フォームエリア全体の設定 */
div.container {
width: 100%;
}
/* 設問エリア全体の設定 */
div.wrapper {
width: auto;
padding: 20px 10px;
}
/* 設問の表 */
table.items {
width: 100%;
}
/*設問名のセルのデザイン */
td.label {
float: left;
width: 95%;
height: auto;
padding-top:10px;
padding-bottom:10px;
font-size: 22px;
padding-left: 0px;
}
/* 必須項目のマーク */
span.required {
float:initial;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
float: left;
width: 95%; /* 入力コントロールの幅に合わせて調整してください */
padding-bottom: 0px;
padding-left: 0px;
font-size: 16px;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
float: left;
width: 95%;
padding: 10px 2px 10px 2px;
font-size: 16px;
}
/* 設問の入力例/テキストボックス */
input[type="text"]{
font-size: 120%;
width: 95% !important;
}
/* 設問の入力例/テキストエリア */
textarea {
width: 95%;
font-size: 120%;
height: 100px;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: auto;
}
}
header {
width: 100%;
height: 70px;
background: #fff;
top: 0;
left: 0;
transition: all .3s;
position: fixed;
border-bottom: solid 1px #eee;
z-index: 200;
transform: translate3d(0, 0, 0);
position: absolute;
}
.common-head h1 {
width: 154px;
height: 70px;
display: block;
position: relative;
z-index: 5;
overflow:hidden;
}
.common-head h1 a {
display: block;
height: 69px;
background: #0287c5;
padding: 16px;
}
.common-head h1 a:hover {
background: #40a8d9;
}
.common-head h1 span {
display: none;
}
header.common-head img.top-head-only {
display: none;
}
header.common-head img.common-head-only {
display: inline-block;
}
#wrapper {
padding:70px 0;
}
/*-----------------------------------------------------------------------------
single-ttl
------------------------------------------------------------------------------*/
.single-ttl-wrap {
width: 100%;
padding: 60px 0 40px;
text-align: center;
position: relative;
z-index: 1;
}
.scrum-ttl {
font-size: 24px;
font-weight:bold;
color: #0287c5;
line-height:1.2em;
display: inline-block;
padding: 0.5em 2em;
border: solid 2px #0287c5;
}
@media screen and (max-width: 767px) {
.single-ttl-wrap {
padding: 30px 0 30px;
}
.scrum-ttl {
font-size: 20px;
font-size: 2.0rem;
}
}
.mid {
font-size: 16px;
}
.mB_20 {
margin-bottom: 20px !important;
}
.center {
text-align: center !important;
}
.static-wrap {
background:#fff;
padding: 60px;
}
input[type="text"] ,input[type="email"] {
padding:8px 5px;
}
#item_0 input,
#item_4 input,
#item_7 input{
width:calc(100% - 10px) !important;
}
#item_5 input,
#item_6 input,
#item_9 input{
width:calc(70% - 10px) !important;
}
#item_1 textarea{
padding:8px 5px;
height:20px;
width:calc(100% - 10px) !important;
}
#item_11 textarea{
padding:8px 5px;
height:80px;
width:calc(100% - 10px) !important;
}
#item_8 input,
#item_10 input,
#item_12 input{
margin:5px 5px 5px 0;
}
#item_2 input,
#item_3 input{
width:130px;
}
footer {
width: 100%;
position: absolute;
bottom:0;
left:0;
margin-top: 30px;
}
.footer-copy {
width: 100%;
text-align: center;
padding: 30px 0;
border-top: solid 1px #ccc;
}
.privacy_policy {
background: #f4f4f4;
margin: 0;
padding: 30px;
}
.form-wrap {
display: table;
width: 100%;
margin-bottom: 40px;
padding: 60px 40px;
}
.form-thx {
font-size: 50px;
padding-top: 60px;
margin-bottom: 40px;
text-align: center;
}
#frm_formthanks .wrapper {
display:none;
}
@media screen and ( max-width:767px ) {
.scrum-ttl {
font-size: 4.8vw;
}
.static-wrap {
background: transparent;
padding: 20px 10px;
}
.mid {
font-size: 14px;
}
#item_5 input,
#item_6 input,
#item_9 input{
width:calc(100% - 10px) !important;
}
#item_2 input,
#item_3 input{
width:calc(100% - 40px) !important;
}
#item_2 input:last-child,
#item_3 input:last-child{
margin-top:10px;
}
span.label_name {
font-size: 16px;
}
.privacy_policy {
padding:0 10px 30px;
}
.form-wrap {
margin-bottom: 18vw;
padding: 10vw 4vw;
width: auto;
}
}
/*-----------------------------------------------------------------------------
プライバシーポリシー改修
------------------------------------------------------------------------------*/
#privacy_policy {
/* display:none; */
}
#privacy_policy a {
color: #00f;
text-decoration: underline;
}
.agree {
text-align:center;
line-height:1.8em;
margin:20px 0 0;
}
.ppttl {
text-align:center;
margin:0 0 20px;
}
div.lfpp .scrum-ttl {
font-size: 16px;
color: #0287c5;
display: inline-block;
padding: 0.3em 2em;
border: solid 2px #0287c5;
}
div.lfpp {
margin:40px 0 0;
width:auto;
height:200px;
padding:20px;
overflow:hidden;
font-size:12px;
line-height:1.5em;
border:1px solid #ccc;
overflow-y: scroll;
}
div.lfpp h2.pp-ttl {
font-size:14px;
font-weight:bold;
margin:0 0 10px;
}
div.lfpp .mid {
font-size: 12px;
margin:0 0 10px;
}
div.lfpp section.block h2.border-ttl {
font-size:14px;
font-weight:bold;
border-bottom: solid 1px #0287c5;
margin:0 0 15px;
padding:0 0 5px;
}
div.lfpp .def-ttl {
margin-bottom: 5px;
font-weight: 700;
}
div.lfpp .def-ttl:before {
content: "■";
color: #0287c5;
display: inline-block;
margin-right: 3px;
}
div.lfpp .gray-box {
background-color: #f4f4f4;
padding: 2% 2%;
}
div.lfpp .def-text {
padding-left: 15px;
}
div.lfpp .text-elem {
margin-bottom: 20px;
}
div.lfpp .privacy-info.right {
text-align:right;
}
/*-----------------------------------------------------------------------------
breadcrumb
------------------------------------------------------------------------------*/
.breadcrumb {
position: absolute;
top: 80px;
left: 20px;
z-index: 2;
}
.breadcrumb li {
display: inline-block;
font-size: 12px;
font-size: 85.71428%;
margin-right: 5px;
}
.breadcrumb li:last-child {
margin-right: 0;
}
.breadcrumb li:after {
content: ">";
font-size: 10px;
font-size: 0.625rem;
display: inline-block;
margin-left: 7px;
}
.breadcrumb li a {
color: #222;
font-weight: normal;
}
.breadcrumb li a:hover {
text-decoration: underline;
}
.breadcrumb li:last-child:after {
content: none;
}
@media screen and (max-width: 767px) {
.breadcrumb {
display: none
}
}
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。