お問い合わせの種類 PDF製品 評価版のお申し込み(30日間)
価格のお問い合わせ
資料請求
その他
お問い合わせ内容をお選び下さい
会社名 例)株式会社◯◯
氏名 山田 花子
メールアドレス

電話番号
ご質問等
/* =================================== 基本設定 =================================== */ 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 { background:White; /* 背景色 */ text-align:center; /* フォームエリアを中央に表示 */ } /* フォームエリア全体の設定 */ div.container { width:960px; /* 画面の横幅 */ border:Gainsboro 2px solid; border-top:none; /* 外枠のラインの色と太さ */ font-size:14px; /* フォントの初期サイズ */ color:#333; /* フォントの初期カラー */ margin:0 auto; /* 画面の中央に表示 */ text-align:left; /* 左寄せ */ } /* =================================== 設問エリアのレイアウト =================================== */ /* 設問エリア全体の設定 */ div.wrapper { width:940px; /* 画面の横幅 */ margin:0 auto; /* 中央に表示 */ background:white; } /* 設問の表 */ table.items { border:Gainsboro 1px solid; } /* 設問の行 */ tr.item { } /* 必要であれば行のデザインを設定することができます */ /*設問名のセルのデザイン */ td.label { width:150px; /* 実際の設問名の文字の長さに合わせて調整してください */ padding:4px 0 4px 5px; color:#224; font-size:13px; font-weight:bold; vertical-align:middle; /* ラベルの配置 セルの上部に表示したい場合は top */ background:GhostWhite; } /* 設問の入力セルおよび表示セルのデザイン */ td.value { width:400px; /* 入力コントロールの幅に合わせて調整してください */ padding:3px 3px 0 3px; border-bottom:GhostWhite 1px solid; /* 設問と設問の間の下線 */ background:White; } /* 設問の入力例/説明セルのデザイン */ td.comment { font-size:12px; padding-left:10px; color:DarkSlateGray; border-bottom:GhostWhite 1px solid; background:White; } /* 入力セルの「氏」「名」の文字のデザイン */ span.label_name { padding-right:5px; font-size:85%; font-weight:bold; color:DarkSlateGray; } /* 入力確認画面、完了画面の入力された文字のデザイン */ p.value { font-size:110%; } /* ボタンの表示エリアの設定 */ div.button_area { width:940px; margin:10px auto 10px auto; /* 中央に表示、上下に10pxの余白 */ background:GhostWhite; padding:10px 0 10px 0; /* ボタンとの上下の隙間のサイズ */ text-align:center; /* 中央にボタンを表示 */ } /* 入力エラーメッセージのデザイン */ 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:SteelBlue; /* ボタンの色 */ padding:5px 10px 2px 10px; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */ 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:OrangeRed; } span.required:after { /* ここを編集することで表示されるマークを変更できます */ content:"※必須"; } /* 必須項目についての説明文 */ p.required_msg { text-align:right; margin-right:4px; font-size:80%; font-weight:bold; color:OrangeRed; } 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:479px ) { /* フォームエリア全体の設定 */ div.container { width: 100%; } /* 設問エリア全体の設定 */ div.wrapper { width: 100%; } /* 設問の表 */ table.items { width: 100%; } /*設問名のセルのデザイン */ td.label { float: left; width: 95%; height: 25px; padding-top:10px; } /* 必須項目のマーク */ span.required { float:initial; } /* 設問の入力セルおよび表示セルのデザイン */ td.value { float: left; width: 95%; /* 入力コントロールの幅に合わせて調整してください */ padding-bottom: 0px; } /* 設問の入力例/説明セルのデザイン */ td.comment { float: left; width: 95%; padding: 0px 2px 10px 2px; } /* 設問の入力例/テキストボックス */ input[type="text"]{ font-size: 120%; width: 95% !important; } /* 設問の入力例/テキストエリア */ textarea { width: 95%; height: 100px; } /* ボタンの表示エリアの設定 */ div.button_area { width: 95%; } } /*イーストコーポレートサイトヘッダーフッター*/ .pageTop .container{max-width:100%}.pageTop .container .row{display:block;margin:0px}.pageTop .container .row .col-2,.pageTop .container .row .col-12,.pageTop .container .row .col-7,.pageTop .container .row .col-3{flex:none;position:static;padding:0px}@media screen and (max-width: 767px){.pageTop .container .row .col-2,.pageTop .container .row .col-12,.pageTop .container .row .col-7,.pageTop .container .row .col-3{max-width:none}}.pageTop .container .row .topSection{padding:80px 0}@media screen and (max-width: 767px){.pageTop .container .row .topSection{padding:10vw 0}}.pageTop .container .row .topSection.product{background:#F7FAFC}.pageTop .container .row .content *,.pageTop .container .row .rich-text *{max-width:none}.pageTop .mainBlock{position:relative;height:620px}@media screen and (max-width: 767px){.pageTop .mainBlock{height:114.05836vw}}.pageTop .mainBlock .field-img{position:relative}@media screen and (min-width: 1920px){.pageTop .mainBlock .field-img img{width:100%}}@media screen and (max-width: 767px){.pageTop .mainBlock .field-img img{width:360vw;margin-left:-90vw}}.pageTop .mainBlock .field-content{font-family:'Raleway', sans-serif;position:absolute;left:0px;right:0px;top:0px;font-size:3.4rem;width:920px;text-align:left !important;margin:0 auto;padding:240px 0 200px 0;line-height:1.8;color:#FFF}@media screen and (max-width: 767px){.pageTop .mainBlock .field-content{padding:38vw 0 32vw 5vw;font-size:2.0rem;width:100%}}.pageTop .newsBlock{position:relative !important;overflow:visible}@media screen and (max-width: 767px){.pageTop .newsBlock{display:none}}.pageTop .newsBlock .component-content{width:920px;margin:-28px auto 0;position:relative}.pageTop .newsBlock .component-content>div{height:56px;padding:0 25px;box-sizing:border-box;display:flex;align-items:center;background:#F8F9FA;box-shadow:0px 2px 5px rgba(0,0,0,0.16);font-size:1.4rem}.pageTop .newsBlock .component-content>div img{display:inline-block;margin:0 10px}.pageTop .newsBlock .component-content a{display:flex;height:56px;width:100px;color:#FFF;font-size:1.4rem;justify-content:center;background:#1588f7;align-items:center;box-sizing:border-box;position:absolute;right:0px;top:0px}.pageTop .newsBlock .component-content a:hover{opacity:.8}.pageTop .slkSld{width:945px;margin:0 auto;padding-bottom:30px;padding-top:50px}@media screen and (max-width: 767px){.pageTop .slkSld{padding:8vw 0 0 0;width:100%}}.pageTop .slkSld a{display:block;padding-bottom:10px;color:#4A4B4E;text-align:left;text-decoration:none;margin:0 15px}.pageTop .slkSld a>div{height:300px;text-align:left;background:#FFF;box-shadow:0px 3px 6px rgba(0,0,0,0.12)}@media screen and (max-width: 767px){.pageTop .slkSld a>div{height:auto}}.pageTop .slkSld a img{width:100%}.pageTop .slkSld a .field-title{padding:20px 20px .8em 20px;color:#000;font-size:1.6rem;text-align:left !important}.pageTop .slkSld a .field-content{padding:0px 20px 20px 20px;text-align:left !important}.pageTop .companyBlock{background-color:#F7FAFC}@media screen and (max-width: 767px){.pageTop .companyBlock{background-size:200%}}@media screen and (max-width: 767px) and (max-width: 767px){.pageTop .companyBlock{height:190vw}}@media screen and (max-width: 767px){.pageTop .companyBlock .component-content>div>img{width:1000px}}.pageTop .companyBlock .field-recruit-link-title-jp,.pageTop .companyBlock .field-company-link-title-jp{line-height:1.2;text-align:center;font-size:1.6rem;color:#1588f7;padding-top:40px}@media screen and (max-width: 767px){.pageTop .companyBlock .field-recruit-link-title-jp,.pageTop .companyBlock .field-company-link-title-jp{padding-top:7vw}}.pageTop .companyBlock .field-recruit-link-title-en,.pageTop .companyBlock .field-company-link-title-en{text-align:center;font-family:'Raleway', sans-serif;font-size:3.8rem;color:#1588f7;padding-bottom:40px}@media screen and (max-width: 767px){.pageTop .companyBlock .field-recruit-link-title-en,.pageTop .companyBlock .field-company-link-title-en{padding-bottom:5vw}}@media screen and (max-width: 767px){.pageTop .companyBlock .field-recruit-link-title-en,.pageTop .companyBlock .field-company-link-title-en{font-size:3rem}}.pageTop .companyBlock .component-content>div{display:flex;justify-content:center;flex-wrap:wrap}@media screen and (max-width: 767px){.pageTop .companyBlock .component-content>div{display:block}}.pageTop .companyBlock .component-content>div a{top:-100px;position:relative;display:block;width:440px;background:#FFF;box-shadow:0 3px 6px rgba(0,0,0,0.16);margin:0 20px}@media screen and (max-width: 767px){.pageTop .companyBlock .component-content>div a{width:90%;margin:7vw auto 0 auto;top:-30vw}}.pageTop .companyBlock .component-content>div a h2{padding:3em 0}@media screen and (max-width: 767px){.pageTop .companyBlock .component-content>div a h2{padding:2em 0}}.pageTop .companyBlock .component-content>div a img{width:100%}.pageTop .partnerBlock{padding-bottom:0px}.pageTop .partnerBlock ul{display:flex;justify-content:space-between;flex-wrap:wrap;width:920px;margin:0 auto;padding-top:50px}@media screen and (max-width: 767px){.pageTop .partnerBlock ul{padding-top:5vw;width:90%;justify-content:flex-start}}.pageTop .partnerBlock ul li{display:flex;align-items:center;justify-content:center}@media screen and (max-width: 767px){.pageTop .partnerBlock ul li{width:33.3%;margin:0px !important}.pageTop .partnerBlock ul li img{max-width:100% !important}} *:focus{outline:none}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0;font-size:100%}fieldset,img{border:0;vertical-align:top}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:inherit}li{list-style:none}img{max-width:100%;height:auto}caption,th{text-align:left}h1,h2,h3,h4,h5,h6,small{font-size:100%;font-weight:inherit}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}br{letter-spacing:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}main{display:block}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input[type="text"],input[type="email"],input[type="number"],textarea,select{*font-size:100%;-moz-appearance:none;-webkit-appearance:none;appearance:none}.content{color:#3C3D40}html{color:#3C3D40;font-size:10px;letter-spacing:0}@media screen and (max-width: 767px){html{font-size:2.65252vw}}body{color:#3C3D40;margin:0;padding:0;font:10px/1.4 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ï¼­ï¼³ Pゴシック", "MS PGothic", "sans-serif";font-size:1.4rem}@media screen and (max-width: 767px){body{-webkit-text-size-adjust:100%}}*:first-child+html body{font-size:87%}hr{border:none}a{color:inherit;text-decoration:none;cursor:pointer}a:hover{text-decoration:none}.clearfix:after{content:".";display:block;clear:both;height:0;visibility:hidden}.clearfix{min-height:1px}* html .clearfix{height:1px}.clear{clear:both}.none{margin:0;padding:0;border:none}.page-list .item{padding:0px;border:0px;overflow:visible}.items .item .item{margin-bottom:0px;padding-bottom:0px}.slick-slider{position:relative;display:block;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}@font-face{font-family:'slick';font-weight:normal;font-style:normal}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;margin-top:-10px\9;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;color:transparent;border:none;outline:none;background:transparent}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{color:transparent;outline:none;background:transparent}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:'slick';font-size:20px;line-height:1;opacity:.75;color:white;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir='rtl'] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:''}[dir='rtl'] .slick-prev:before{content:''}.slick-next{right:-25px}[dir='rtl'] .slick-next{right:auto;left:-25px}.slick-next:before{content:''}[dir='rtl'] .slick-next:before{content:''}.slick-slider{margin-bottom:30px}.slick-dots{display:block;position:absolute;bottom:-45px;width:100%;padding:0;list-style:none;font-size:0;text-align:center}.slick-dots li{display:inline-block;position:relative;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:none;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent}.slick-dots li button:hover,.slick-dots li button:focus{outline:none}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{font-family:'slick';font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:black}#wrapper{width:100%;overflow:hidden;margin:0 auto}@media screen and (max-width: 767px){#wrapper{min-width:100%}}.l-cont{max-width:920px;width:100%;margin:0 auto}header ::-webkit-scrollbar{width:1px}header ::-webkit-scrollbar-track{border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,0)}header ::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0);border-radius:10px;box-shadow:0 0 0 1px rgba(255,255,255,0)}#header{background:rgba(3,128,248,0.85);position:fixed;top:0px;z-index:10}#header.container{max-width:none}@media screen and (max-width: 767px){#header{position:fixed}#header.on{height:100%;background:rgba(3,128,248,0.92);overflow-y:auto}}#header .row{display:block;margin:0px}#header .row .col-2,#header .row .col-12,#header .row .col-10,#header .row .col-7,#header .row .col-3{flex:none;position:static;padding:0px}@media screen and (max-width: 767px){#header .row .col-2,#header .row .col-12,#header .row .col-10,#header .row .col-7,#header .row .col-3{max-width:none}}#header .row .navigation.navigation-main .rel-level1>ul{border-bottom:0px;border-top:0px}#header .row .navigation.navigation-main .rel-level1,#header .row .navigation.navigation-main.navigation-main-horizontal .rel-level2{float:none}#header .row .navigation.navigation-main.navigation-main-horizontal .rel-level2 a{color:#0380F8}@media screen and (max-width: 767px){#header .row .navigation.navigation-main.navigation-main-horizontal .rel-level2 a{color:#FFF}}#header .row .navigation.navigation-main .rel-level1>.navigation-title>a{border:0px}#header .row .navigation li>.navigation-title>a{color:#FFF}#header .row .navigation.navigation-main .rel-level1.submenu>.navigation-title a:after{display:none}@media screen and (max-width: 767px){#header .row .navigation.navigation-main .rel-level1.submenu>.navigation-title a:after{display:inline-block}}#header .row .navigation.navigation-main.navigation-main-horizontal .rel-level2{border:0px;flex-grow:0;flex-basis:auto;text-align:center}#header .row .navigation.navigation-main .component-content>nav{position:static}#header .column-splitter{display:flex;justify-content:space-between;align-items:center;max-width:1600px;width:90%;margin:0 auto;height:80px;flex-wrap:nowrap}@media screen and (max-width: 767px){#header .column-splitter{display:block;width:100%;height:13.2vw}}#header .column-splitter .headLogo{width:132px}@media screen and (max-width: 767px){#header .column-splitter .headLogo{padding-top:3vw;width:24vw;box-sizing:border-box;margin-left:5vw}}#header .column-splitter .headLogo img{width:100%}@media screen and (max-width: 767px){#header .column-splitter .sp-toggle{height:3vw;width:13.2626vw;overflow:hidden}#header .column-splitter .sp-toggle:before{content:"";position:absolute;right:0px;top:0px;display:flex;width:13.2626vw;height:13.2626vw;background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/menu.svg");background-repeat:no-repeat;background-position:center;background-size:6vw}}#header .column-splitter .sp-toggle.on{height:auto;width:auto}#header .column-splitter .sp-toggle.on:before{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/close.svg");background-size:5vw}#header .column-splitter .headNav{margin-left:auto}@media screen and (max-width: 767px){#header .column-splitter .headNav{margin:0px}}@media screen and (min-width: 768px){#header .column-splitter .headNav .level1.active>.navigation-title{position:relative}#header .column-splitter .headNav .level1.active>.navigation-title:after{content:"";background:#FFF;height:5px;width:65%;position:absolute;bottom:11px;left:0;right:0;margin:auto}}@media screen and (max-width: 767px){#header .column-splitter .headNav nav{visibility:hidden;position:static;top:13.2626vw;width:100%;opacity:0;transition:.3s;overflow-y:auto;padding-bottom:5vw;box-sizing:border-box}#header .column-splitter .headNav nav.on{opacity:1;visibility:visible}}#header .column-splitter .headNav nav .fa-angle-double-right{display:none}#header .column-splitter .headNav nav ul{display:flex;justify-content:center}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul{display:block;width:100%;box-sizing:border-box;padding-left:5vw;padding-top:10vw}#header .column-splitter .headNav nav ul.sxaWrappedList{padding-top:0px}}#header .column-splitter .headNav nav ul li{color:#FFF;font-size:1.6rem;height:80px;display:flex;align-items:center}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul li{height:auto;display:block;border-bottom:1px solid #FFF;padding:0px}}#header .column-splitter .headNav nav ul li a{height:80px;padding:0 40px;display:flex;align-items:center;font-size:1.6rem}@media screen and (max-width: 1480px){#header .column-splitter .headNav nav ul li a{padding:0 20px}}@media screen and (max-width: 1200px){#header .column-splitter .headNav nav ul li a{padding:0 10px}}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul li a{height:auto;display:block;padding:5vw 0 5vw 3vw}}@media screen and (min-width: 768px){#header .column-splitter .headNav nav ul li:hover{background-color:rgba(255,255,255,0.1)}}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul li.submenu{position:relative}}@media screen and (min-width: 768px){#header .column-splitter .headNav nav ul li.submenu:hover{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/menu_bg.svg");background-repeat:no-repeat;background-position:bottom center}#header .column-splitter .headNav nav ul li.submenu:hover ul{top:80px;opacity:1}}#header .column-splitter .headNav nav ul li.submenu ul{position:absolute;transition-property:opacity;transition-duration:.3s;background:rgba(255,255,255,0.85);left:0px;top:-100px;opacity:0;width:100%;padding-top:0px;padding-left:0px}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul li.submenu ul{position:static;display:none !important}#header .column-splitter .headNav nav ul li.submenu ul li{border-bottom:0px;border-top:1px solid #FFF}#header .column-splitter .headNav nav ul li.submenu ul.on{display:flex !important;flex-direction:column;background:rgba(255,255,255,0.12);opacity:1;border:0px}#header .column-splitter .headNav nav ul li.submenu ul.on a{text-align:left;border-top:1px solid #FFF}}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul li.submenu>.field-title a:after{content:"";width:2.12202vw;height:3.18302vw;display:inline-block;position:absolute;right:4vw;top:8.5vw;background:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/arrow-r.svg") no-repeat center;background-size:contain}}@media screen and (max-width: 767px){#header .column-splitter .headNav nav ul li.submenu.on a:after{top:7vw;transform:rotate(90deg)}}#header .column-splitter .search{margin-left:20px;border:1px solid #FFF;border-radius:4px;overflow:hidden;background:#FFF;position:relative;display:flex;align-items:center;height:30px;width:240px;box-sizing:border-box;padding:.1em .3em;font-size:1.4rem}@media screen and (max-width: 767px){#header .column-splitter .search{display:none}}#header .column-splitter .search .search-box input{width:100%;border:0px;box-shadow:0px 0px 0px}#header .column-splitter .search .search-box button{position:absolute;right:0px;top:0px;padding:0px !important;display:flex;align-items:center;justify-content:center;height:28px !important;width:28px !important;cursor:pointer;background-color:#1588f7 !important;background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/search.svg") !important;background-repeat:no-repeat !important;background-position:center !important;color:rgba(0,0,0,0)}#header .column-splitter .search .search-box button:hover{opacity:.8}.content a,.rich-text a{text-decoration:none;color:#1588f7}main{line-height:1.6;padding-bottom:100px}@media screen and (max-width: 767px){main{padding-bottom:20vw}}main a{text-decoration:none}main a img{transition:.3s}main a:hover img{opacity:.7}.l-contentBody{max-width:920px;width:100%;margin:0 auto}.privacy-warning{position:fixed;bottom:0px;left:0px;background:rgba(0,0,0,0.8);padding:20px;box-sizing:border-box;width:100%;color:#FFF;display:none;justify-content:flex-start;align-items:center;z-index:10}.privacy-warning .close{position:absolute;right:10px;top:10px;font-size:20px}.privacy-warning .info{display:inline-block;text-align:left}.privacy-warning .submit{background:#1588f7;display:inline-block;padding:.5em 1em;border-radius:3px;display:inline-block;margin-left:20px}.privacy-warning .submit a{background-color:transparent;border:0px;color:#FFF}footer{background:#1588f7;text-align:center;color:#FFF;padding:30px 0}footer .component .field-link a{padding:0px !important;width:auto;font-weight:normal;box-shadow:0px 3px 4px rgba(0,0,0,0);background-color:transparent;word-break:keep-all}footer .link-list>.component-content li a{color:#FFF;word-break:keep-all}footer .link-list>.component-content li a:before{display:none}footer h3{display:none}footer ul{display:flex;justify-content:center;padding:5px}@media screen and (max-width: 767px){footer ul{display:inherit;margin-bottom:15px;margin-left:20px}}footer ul li{margin-right:10px}@media screen and (max-width: 767px){footer ul li{margin-right:10px;margin-bottom:5px}}footer ul li:last-of-type a:after{content:""}footer ul li a{color:#FFF}footer ul li a:after{content:"|";margin-left:10px}@media screen and (max-width: 767px){footer ul li a:after{content:"";margin-left:10px}}@media screen and (max-width: 767px){footer{padding:9vw}}footer a{color:#FFF}footer nav{font-size:1.4rem}@media screen and (max-width: 767px){footer nav{display:none}}footer nav ul{padding-bottom:.8em;display:flex;justify-content:center}footer nav ul li{padding-right:1em;margin-right:1em;border-right:1px solid #FFF}footer .logo{width:93px;margin:0 auto;padding:40px 0 20px 0}@media screen and (max-width: 767px){footer .logo{padding:0 0 4vw 0}}footer p{font-size:1rem;color:#fff;padding-top:10px}.component .field-title{text-align:left}.component .tabs-heading{display:flex;justify-content:space-between;border-right:2px solid #1588f7;width:100%;box-sizing:border-box}@media screen and (max-width: 767px){.component .tabs-heading.fix{position:fixed;left:0px;top:13.2vw;z-index:2;box-shadow:0 3px 6px rgba(0,0,0,0.16)}}@media screen and (max-width: 767px){.component .tabs-heading{border:0px;background:#F7FAFC}}.component .tabs-heading li{float:none;width:33.3%;font-size:1.8rem;text-align:center;border:0px;background:#FFF;color:#1588f7;border-left:2px solid #1588f7}@media screen and (max-width: 767px){.component .tabs-heading li{display:flex;align-items:center;height:18vw;justify-content:center}}@media screen and (max-width: 767px){.component .tabs-heading li>div{padding:0px}}@media screen and (max-width: 767px){.component .tabs-heading li{border:0px;background:#F7FAFC}.component .tabs-heading li .component.content{margin:0px}}.component .tabs-heading li .field-heading{color:#1588f7;padding:3px}@media screen and (max-width: 767px){.component .tabs-heading li .field-heading{padding:1em 0;font-size:1.4rem}}.component .tabs-heading li:hover{font-weight:bold}.component .tabs-heading li:hover .field-heading{display:inline-block}@media screen and (max-width: 767px){.component .tabs-heading li:hover .field-heading{display:block}}.component .tabs-heading li.active{font-weight:bold}@media screen and (max-width: 767px){.component .tabs-heading li.active{border-bottom:5px solid #1588f7}}.component .tabs-heading li.active .field-heading{display:inline-block}@media screen and (min-width: 768px){.component .tabs-heading li.active .field-heading{border-bottom:5px solid #1588f7}}@media screen and (max-width: 767px){.component .tabs-heading li.active .field-heading{display:block}}.component .tabs .col-12{padding:0px}@media screen and (max-width: 767px){.component .tabs{padding:0px}}.component .tabs .tabs-container{border:0px;padding-top:60px}@media screen and (max-width: 767px){.component .tabs .tabs-container{width:90%;margin:0 auto;padding-top:13.2626vw}}.component .tabs .tabs-container .tab{padding:0px}.component .tabs .tabs-container .tab .item{overflow:visible}.component .field-link a,.component .form-button{display:inline-block;background:#FFF;color:#1588f7;width:100%;font-size:2.2rem;max-width:420px;border:2px solid #1588f7;padding:.8em 1.5em !important;font-weight:bold;box-shadow:0px 3px 4px rgba(0,0,0,0.16);border-radius:5px}.component .field-link a:hover,.component .form-button:hover{opacity:.8}@media screen and (max-width: 767px){.component .field-link a,.component .form-button{font-size:1.4rem}}.component .c-table{width:100%;border:0px}@media screen and (max-width: 767px){.component .c-table{display:block;width:95vw;margin-right:-5vw;position:relative;overflow-x:scroll}.component .c-table:after{content:"â–¼";display:flex;align-items:center;justify-content:center;width:38px;color:#FFF;height:38px;transform:rotate(-90deg);position:absolute;background-color:rgba(0,0,0,0.6);box-shadow:0 3px 6px rgba(0,0,0,0.16);top:0;bottom:0;margin:auto;right:10px;transition:.3s}.component .c-table.scrolling:after{opacity:0}}.component .c-table td,.component .c-table th{border-top:0px;border-right:4px solid #FFF;border-bottom:4px solid #FFF;padding:20px;text-align:center;vertical-align:middle}@media screen and (max-width: 767px){.component .c-table td,.component .c-table th{width:100%}}@media screen and (max-width: 767px){.component .c-tableA thead{width:200vw;display:table}}.component .c-tableA thead th{background:#1588f7;font-size:1.6rem;color:#FFF;font-weight:bold}@media screen and (max-width: 767px){.component .c-tableA thead th{width:100%}}@media screen and (max-width: 767px){.component .c-tableA tbody{width:200vw;display:table}}.component .c-tableA tbody th{background:#E1E3EB;width:200px}@media screen and (max-width: 767px){.component .c-tableA tbody th{width:50vw;position:static;left:0}}.component .c-tableA tbody td{background:#F9F9F9}@media screen and (max-width: 767px){.component .c-tableA tbody td{width:50vw}}@media screen and (max-width: 767px){.component .c-tableB thead{width:200vw;display:table}}.component .c-tableB thead th{background:#1588f7;font-size:1.6rem;color:#FFF;font-weight:bold}@media screen and (max-width: 767px){.component .c-tableB thead th{width:50vw;position:static;left:0}}.component .c-tableB thead td{background:#74B9FB;text-align:center;color:#FFF;font-weight:bold}@media screen and (max-width: 767px){.component .c-tableB thead td{width:50vw}}.component .c-tableB thead td.headText{background:#1588f7}@media screen and (max-width: 767px){.component .c-tableB thead td.headText{width:auto}}@media screen and (max-width: 767px){.component .c-tableB tbody{width:200vw;display:table}}.component .c-tableB tbody th{background:#E1E3EB;width:200px}@media screen and (max-width: 767px){.component .c-tableB tbody th{width:50vw;position:static;left:0}}.component .c-tableB tbody td{background:#F9F9F9;margin-left:4px}@media screen and (max-width: 767px){.component .c-tableB tbody td{width:50vw}}.component .c-tableC{width:100%}@media screen and (max-width: 767px){.component .c-tableC{width:auto}}@media screen and (max-width: 767px){.component .c-tableC tbody{width:200vw;display:table}}.component .c-tableC tbody tr:nth-child(even) td{background:#E1E3EB}.component .c-tableC tbody td{background:#F9F9F9}@media screen and (max-width: 767px){.component .c-tableC tbody td{width:50vw}}.component .c-tableD{width:100%}.component .c-tableD td,.component .c-tableD th{border:1px solid #1588f7}@media screen and (max-width: 767px){.component .c-tableD{width:auto}}@media screen and (max-width: 767px){.component .c-tableD tbody{width:200vw;display:table}}@media screen and (max-width: 767px){.component .c-tableD tbody td{width:50vw}}.component .field-table-title{text-align:left !important;color:#1588f7;font-size:2.2rem;font-weight:bold;border-bottom:1px solid #1588f7;padding-bottom:.8em;margin-bottom:1.5em}.c-content{width:920px;margin:0 auto;max-width:none;flex:none}@media screen and (max-width: 767px){.c-content{width:90% !important}}.page-list a{color:#1588f7;text-decoration:none;border-bottom:0px}.c-textBox0 .component-content{padding-top:40px;padding-bottom:150px}@media screen and (max-width: 767px){.c-textBox0 .component-content{padding-top:0;padding-bottom:23.87268vw}}.c-tableBoxA,.c-textBox0,.c-textBoxA{max-width:920px;width:100%;margin:0 auto}.c-tableBoxA .field-title a,.c-textBox0 .field-title a,.c-textBoxA .field-title a{margin-bottom:0px;padding-bottom:0px;border-bottom:0px;color:#1588f7}.c-tableBoxA .item,.c-textBox0 .item,.c-textBoxA .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-tableBoxA .item,.c-textBox0 .item,.c-textBoxA .item{padding-bottom:15.91512vw}}.c-tableBoxA .field-title,.c-textBox0 .field-title,.c-textBoxA .field-title{border-bottom:1px dotted #1588f7;font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;margin-bottom:1.5em}@media screen and (max-width: 767px){.c-tableBoxA .field-title,.c-textBox0 .field-title,.c-textBoxA .field-title{font-size:2.4rem}}.c-tableBoxA .field-description,.c-textBox0 .field-description,.c-textBoxA .field-description{font-size:1.4rem;line-height:1.8}.c-tableBoxA .field-description p,.c-textBox0 .field-description p,.c-textBoxA .field-description p{padding-bottom:1em}.c-textBoxB .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-textBoxB .item{padding-bottom:15.91512vw}}.c-textBoxB .item>div>div{border:1px solid #1588f7;padding:50px 60px;margin-bottom:30px}@media screen and (max-width: 767px){.c-textBoxB .item>div>div{padding:20px 15px}}.c-textBoxB .field-title{border-bottom:1px dotted #1588f7;font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;margin-bottom:1.5em}@media screen and (max-width: 767px){.c-textBoxB .field-title{font-size:2.4rem}}.c-textBoxB .field-sub-title{color:#1588f7;font-size:2.2rem;font-weight:bold;padding-bottom:.8em}@media screen and (max-width: 767px){.c-textBoxB .field-sub-title{font-size:2rem;padding-bottom:.6em;text-align:center}}.c-textBoxB .field-description{font-size:1.4rem;line-height:1.8}.c-textBoxB .field-description p{padding-bottom:1em}.c-TextImageA .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextImageA .item{padding-bottom:15.91512vw}}.c-TextImageA .item>div{overflow:hidden;border:1px solid #1588f7;display:flex;justify-content:space-between;padding:50px;align-items:center}@media screen and (max-width: 767px){.c-TextImageA .item>div{display:block;padding:6.6313vw}}.c-TextImageA .item>div .field-image{width:360px}@media screen and (max-width: 767px){.c-TextImageA .item>div .field-image{width:100%;padding-bottom:5vw}}.c-TextImageA .item>div .field-image+div{width:380px;text-align:left}@media screen and (max-width: 767px){.c-TextImageA .item>div .field-image+div{width:100%}}.c-TextImageA .item>div .field-image+div .field-sub-title{font-size:1.6rem;font-weight:bold;color:#1588f7;padding-bottom:.8em;text-align:left}@media screen and (max-width: 767px){.c-TextImageA .item>div .field-image+div .field-sub-title{padding-bottom:.5em}}.c-TextImageA .item>div .field-image+div .field-description{padding-bottom:.2em;text-align:left}.c-TextImageA .field-title{font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;border-bottom:7px solid #1588f7;text-align:left}@media screen and (max-width: 767px){.c-TextImageA .field-title{font-size:2.4rem}}.c-TextImageE .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextImageE .item{padding-bottom:15.91512vw}}.c-TextImageE .item>div{overflow:hidden;border:1px solid #1588f7;padding:50px;text-align:center}@media screen and (max-width: 767px){.c-TextImageE .item>div{display:block;padding:6.6313vw}}.c-TextImageE .item>div>div{display:inline-block;width:35%}@media screen and (max-width: 767px){.c-TextImageE .item>div>div{width:80%}.c-TextImageE .item>div>div+div{margin-top:5vw}}.c-TextImageE .item>div>div.field-description{padding-top:2em;text-align:left;width:100%}.c-TextImageE .item>div .field-sub-title{font-size:1.6rem;font-weight:bold;color:#1588f7;padding-bottom:.8em;text-align:left}@media screen and (max-width: 767px){.c-TextImageE .item>div .field-sub-title{padding-bottom:.5em}}.c-TextImageE .field-title{font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;border-bottom:7px solid #1588f7;text-align:left}@media screen and (max-width: 767px){.c-TextImageE .field-title{font-size:2.4rem}}.c-TextImageF .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextImageF .item{padding-bottom:15.91512vw}}.c-TextImageF .item>div{overflow:hidden;border:1px solid #1588f7;padding:50px;text-align:center}@media screen and (max-width: 767px){.c-TextImageF .item>div{display:block;padding:6.6313vw}}.c-TextImageF .item>div .field-description{padding-bottom:3.5em;text-align:left;width:100%}.c-TextImageF .field-title{font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;border-bottom:7px solid #1588f7;text-align:left}@media screen and (max-width: 767px){.c-TextImageF .field-title{font-size:2.4rem}}.c-TextTableA .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextTableA .item{padding-bottom:15.91512vw}}.c-TextTableA .item>div{overflow:hidden;border:1px solid #1588f7;padding:50px;text-align:center}@media screen and (max-width: 767px){.c-TextTableA .item>div{display:block;padding:6.6313vw}}.c-TextTableA .item>div .field-description{padding-bottom:3.5em;text-align:left;width:100%}.c-TextTableA .item table{width:100%;border:0px}@media screen and (max-width: 767px){.c-TextTableA .item table{display:block;width:85vw;margin-right:-5vw;position:relative;overflow-x:scroll}.c-TextTableA .item table:after{content:"â–¼";display:flex;align-items:center;justify-content:center;width:38px;color:#FFF;height:38px;transform:rotate(-90deg);position:absolute;background-color:rgba(0,0,0,0.6);box-shadow:0 3px 6px rgba(0,0,0,0.16);top:0;bottom:0;margin:auto;right:20px;transition:.3s}.c-TextTableA .item table.scrolling:after{opacity:0}}@media screen and (max-width: 767px){.c-TextTableA .item table thead{width:200vw;display:table}}.c-TextTableA .item table thead th{background:#1588f7;font-size:1.6rem;color:#FFF;font-weight:bold}@media screen and (max-width: 767px){.c-TextTableA .item table thead th.field-row-header-title{position:static;left:0}}.c-TextTableA .item table thead th.field-row-header-title{width:200px}@media screen and (max-width: 767px){.c-TextTableA .item table thead th.field-row-header-title{position:static;left:0;width:50vw}}@media screen and (max-width: 767px){.c-TextTableA .item table thead th.field-column-title{width:150vw}}@media screen and (max-width: 767px){.c-TextTableA .item table tbody{width:200vw;display:table}}.c-TextTableA .item table tbody th{background:#E1E3EB;width:200px}@media screen and (max-width: 767px){.c-TextTableA .item table tbody th.field-row-header{width:50vw;position:static;left:0;width:auto}}.c-TextTableA .item table tbody td{background:#F9F9F9;text-align:left}@media screen and (max-width: 767px){.c-TextTableA .item table tbody td{width:150vw}}.c-TextTableA .item table td,.c-TextTableA .item table th{border-top:0px;border-right:4px solid #FFF;border-bottom:4px solid #FFF;padding:20px;text-align:center;vertical-align:middle}.c-TextTableA .field-title{font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;border-bottom:7px solid #1588f7;text-align:left}@media screen and (max-width: 767px){.c-TextTableA .field-title{font-size:2.4rem}}.c-TextTableB .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextTableB .item{padding-bottom:15.91512vw}}.c-TextTableB .item>div{overflow:hidden;border:1px solid #1588f7;padding:50px;text-align:center}@media screen and (max-width: 767px){.c-TextTableB .item>div{display:block;padding:6.6313vw}}.c-TextTableB .item>div .field-description{padding-bottom:3.5em;text-align:left;width:100%}.c-TextTableB .item table{width:100%;border:0px}@media screen and (max-width: 767px){.c-TextTableB .item table{display:block;width:85vw;margin-right:-5vw;position:relative;overflow-x:scroll}.c-TextTableB .item table:after{content:"â–¼";display:flex;align-items:center;justify-content:center;width:38px;color:#FFF;height:38px;transform:rotate(-90deg);position:absolute;background-color:rgba(0,0,0,0.6);box-shadow:0 3px 6px rgba(0,0,0,0.16);top:0;bottom:0;margin:auto;right:20px;transition:.3s}.c-TextTableB .item table.scrolling:after{opacity:0}}@media screen and (max-width: 767px){.c-TextTableB .item table thead{width:220vw;display:table;margin-right:10vw}}.c-TextTableB .item table thead th{word-break:keep-all;background:#1588f7;font-size:1.6rem;color:#FFF;font-weight:bold}@media screen and (max-width: 767px){.c-TextTableB .item table thead th{width:60vw}}@media screen and (max-width: 767px){.c-TextTableB .item table thead th.field-row-header-title{position:static;left:0;width:40vw}}@media screen and (max-width: 767px){.c-TextTableB .item table tbody{width:220vw;display:table;margin-right:10vw}}.c-TextTableB .item table tbody th{background:#E1E3EB;width:200px}@media screen and (max-width: 767px){.c-TextTableB .item table tbody th.field-row-header{width:40vw;position:static;left:0}}.c-TextTableB .item table tbody td{background:#F9F9F9;text-align:left}@media screen and (max-width: 767px){.c-TextTableB .item table tbody td{width:60vw}}.c-TextTableB .item table td,.c-TextTableB .item table th{border-top:0px;border-right:4px solid #FFF;border-bottom:4px solid #FFF;padding:20px;text-align:center;box-sizing:border-box;vertical-align:middle}.c-TextTableB .field-title{font-size:3.8rem;font-weight:bold;color:#1588f7 !important;padding-bottom:.8em;border-bottom:7px solid #1588f7;text-align:left}@media screen and (max-width: 767px){.c-TextTableB .field-title{font-size:2.4rem}}.c-TextImageB .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextImageB .item{padding-bottom:15.91512vw}}.c-TextImageB .item>div{border-radius:3px;overflow:hidden;border:1px solid #1588f7}.c-TextImageB .field-title{font-size:1.6rem;font-weight:bold;color:#FFF !important;background:#1588f7 !important;padding:20px}@media screen and (max-width: 767px){.c-TextImageB .field-title{padding:.8em 1.5em}}.c-TextImageB .field-title+div{padding:50px}@media screen and (max-width: 767px){.c-TextImageB .field-title+div{padding:6.6313vw}}.c-TextImageB .field-title+div img{display:block;margin:30px auto 60px}@media screen and (max-width: 767px){.c-TextImageB .field-title+div img{margin:0 0 7.95756vw 0;max-width:100%}}.c-TextImageB .field-description{font-size:1.4rem;line-height:1.8}.c-TextImageB .field-description p{padding-bottom:1em}.c-TextImageC .item{padding-bottom:80px}@media screen and (max-width: 767px){.c-TextImageC .item{padding-bottom:15.91512vw}}.c-TextImageC .item>div{display:flex;justify-content:space-between;align-items:center;background:#E1E3EB}@media screen and (max-width: 767px){.c-TextImageC .item>div{flex-direction:column-reverse;background-color:transparent}}.c-TextImageC .item>div>div{padding:50px;background:#E1E3EB;box-sizing:border-box}@media screen and (max-width: 767px){.c-TextImageC .item>div>div{width:100%;padding:6.6313vw}}.c-TextImageC .item>div>div .field-sub-title{font-size:2.2rem;font-weight:bold;padding-bottom:.8em}.c-TextImageC .item>div .field-image{width:400px;padding:0px;background-color:transparent}.c-TextImageC .item>div .field-image img{width:100%}@media screen and (max-width: 767px){.c-TextImageC .item>div .field-image img{width:auto}}@media screen and (max-width: 767px){.c-TextImageC .item>div .field-image{width:100%;text-align:center}}.c-TextImageC .field-title{font-family:'Raleway', sans-serif;font-size:3.8rem;color:#1588f7 !important;padding-bottom:.8em;border-bottom:1px dotted #1588f7;margin-bottom:1.5em}@media screen and (max-width: 767px){.c-TextImageC .field-title{font-size:2.4rem}}.c-TextImageD .item{counter-reset:number;padding-bottom:80px}@media screen and (max-width: 767px){.c-TextImageD .item{padding-bottom:15.91512vw}}.c-TextImageD .item:last-child{padding-bottom:100px}@media screen and (max-width: 767px){.c-TextImageD .item:last-child{padding-bottom:10vw}}.c-TextImageD .item>div>div{border-left:1px solid #1588f7;margin-left:90px;padding:60px;position:relative}@media screen and (max-width: 767px){.c-TextImageD .item>div>div{border:0px;margin-left:0px;padding:13.2626vw 0 2.65252vw 0}}.c-TextImageD .item>div>div:last-child:before{content:"";width:20px;height:100%;position:absolute;left:-1px;top:85px;background:#FFF}@media screen and (max-width: 767px){.c-TextImageD .item>div>div:last-child:before{display:none}}.c-TextImageD .item>div>div:first-child{margin-left:0px;background:#1588f7;color:#FFF;padding:35px 30px;border-radius:3px}.c-TextImageD .item>div>div:first-child .field-title{color:#FFF !important;font-size:3.8rem;font-weight:bold;padding-bottom:.6em}@media screen and (max-width: 767px){.c-TextImageD .item>div>div:first-child .field-title{font-size:2.2rem}}.c-TextImageD .item>div>div:first-child .field-description{font-size:1.4rem;color:#FFF;line-height:1.8}@media screen and (max-width: 767px){.c-TextImageD .item>div>div:first-child .field-description{font-size:1.2rem;line-height:1.6}}.c-TextImageD .item .field-item-title{border:1px solid #1588f7;display:flex;font-weight:bold;color:#1588f7;align-items:center;counter-increment:number;position:relative;margin-top:-.5em;margin-bottom:40px}@media screen and (max-width: 767px){.c-TextImageD .item .field-item-title{border:0px;border-bottom:1px solid #1588f7;font-size:1.6rem;margin-bottom:6vw}}.c-TextImageD .item .field-item-title:after{content:"";width:61px;height:1px;background:#1588f7;position:absolute;left:-61px;top:30px}@media screen and (max-width: 767px){.c-TextImageD .item .field-item-title:after{display:none}}.c-TextImageD .item .field-item-title:before{display:flex;height:60px;width:60px;margin-right:20px;color:#FFF;font-size:2.4rem;font-family:'Raleway', sans-serif;background:#1588f7;justify-content:center;align-items:center;content:counter(number)}@media screen and (max-width: 767px){.c-TextImageD .item .field-item-title:before{height:10.61008vw;width:10.61008vw;font-weight:bold;font-size:2rem}}.c-TextImageD .item .field-item-sub-title{padding-bottom:1em}.c-TextImageD .item img{display:block;margin:0px auto 50px auto}@media screen and (max-width: 767px){.c-TextImageD .item img{margin-bottom:13.2626vw}}.c-qanda .item{padding:80px 0;border-bottom:1px dotted #1588f7}@media screen and (max-width: 767px){.c-qanda .item{padding:10vw 0}}.c-qanda .item:first-of-type{padding-top:40px}@media screen and (max-width: 767px){.c-qanda .item:first-of-type{padding-top:5vw}}.c-qanda dt,.c-qanda dd{display:flex;justify-content:flex-start}.c-qanda dt:before,.c-qanda dd:before{font-family:'Raleway', sans-serif;margin-top:-.3em;border-radius:50px;display:flex;justify-content:center;align-items:center;width:43px;height:43px;min-width:43px;border:1px solid #1588f7;margin-right:1em;font-size:2.5rem;line-height:1}.c-qanda .field-question{text-align:left !important;position:relative;font-size:2.2rem;font-weight:bold;color:#1588f7;padding-bottom:50px}@media screen and (max-width: 767px){.c-qanda .field-question{font-size:1.4rem;color:#3C3D40;padding-bottom:2.5em}}.c-qanda .field-question:before{content:"Q";color:#1588f7}.c-qanda .field-answer{text-align:left !important}.c-qanda .field-answer:before{content:"A";color:#FFF;background:#1588f7}.c-contactBox{margin-bottom:40px}@media screen and (max-width: 767px){.c-contactBox{margin-bottom:10vw}}.c-contactBox .item>div{display:flex;justify-content:space-between;color:#1588f7;border:1px solid #1588f7;padding:30px 35px;align-items:center}@media screen and (max-width: 767px){.c-contactBox .item>div{flex-direction:column-reverse;padding:20vw 5vw 5vw;position:relative}}.c-contactBox .item>div>div{width:350px}@media screen and (max-width: 767px){.c-contactBox .item>div>div{width:100%;margin:0 auto}}.c-contactBox .item>div .field-link-title{font-size:2.2rem;padding-bottom:.5em;text-align:left !important;font-weight:bold}@media screen and (max-width: 767px){.c-contactBox .item>div .field-link-title{position:absolute;top:5vw;width:90%;text-align:center !important}}.c-contactBox .item>div .field-link-description{text-align:left !important}@media screen and (max-width: 767px){.c-contactBox .item>div .field-link-description br{display:none}}.c-contactBox .item>div a{display:block;font-size:1.6rem;font-weight:bold;color:#3C3D40;text-align:center;padding:1em 0;width:280px;border:3px solid #1588f7;border-radius:3px;box-shadow:0 3px 4px rgba(0,0,0,0.16);position:relative;margin:0 auto 20px auto}@media screen and (max-width: 767px){.c-contactBox .item>div a{width:90%}}.c-contactBox .item>div a>div>div+div{font-weight:normal;font-size:1.2rem}.c-contactBox .item>div a:after{content:"";display:inline-block;height:.8em;width:.8em;border-right:2px solid #1588f7;border-bottom:2px solid #1588f7;transform:rotate(-45deg);position:absolute;right:20px;top:0;bottom:0;margin:auto}.c-ttl_parts{font-size:2.2rem;text-align:center;padding:100px 0 40px}@media screen and (max-width: 767px){.c-ttl_parts{margin-bottom:24px;text-align:left;border-bottom:1px solid #333;padding:15.91512vw 0 2px}.c-ttl_parts:after{content:"";display:block;margin-top:2px;border:1px solid #CCC}}.c-titleImg{text-align:center}.c-titleImg img{width:1920px !important;height:480px !important}@media screen and (min-width: 1920px){.c-titleImg img{width:100% !important;height:auto !important}}@media screen and (max-width: 767px){.c-titleImg img{height:41.64456vw !important;width:auto !important}}.c-titleMain{margin-top:-300px}@media screen and (min-width: 1920px){.c-titleMain{margin-top:-16vw}}@media screen and (max-width: 767px){.c-titleMain{margin-top:-29vw;height:34vw}}.c-titleMain p{line-height:1.2;text-align:center;font-size:1.6rem;color:#FFF}@media screen and (max-width: 767px){.c-titleMain p{line-height:1}}.c-titleMain h2{text-align:center;font-family:'Raleway', sans-serif;font-size:3.8rem;margin-bottom:.5em;color:#FFF}@media screen and (max-width: 767px){.c-titleMain h2{margin:0px;font-size:3rem}}.c-titleText{text-align:center;width:800px;margin:0 auto;color:#FFF;height:300px;font-size:1.4rem}@media screen and (min-width: 1920px){.c-titleText{height:14vw}}@media screen and (max-width: 767px){.c-titleText{height:auto;color:#3C3D40;width:90%;margin:0 auto;text-align:left}}.c-titleJ{line-height:1.2;text-align:center;font-size:1.6rem;color:#1588f7}.c-titleE{text-align:center;font-family:'Raleway', sans-serif;font-size:3.8rem;color:#1588f7}@media screen and (max-width: 767px){.c-titleE{font-size:3rem}}.c-ttl{line-height:1.2;text-align:center;font-size:1.6rem;color:#1588f7}.c-ttl1{font-size:3.0rem;margin-bottom:1em;color:#1588f7}@media screen and (max-width: 767px){.c-ttl1{font-size:2.4rem !important}}.c-ttl1.left{font-size:3.6rem;text-align:left}.c-ttl1.center{font-size:3.6rem;text-align:center}@media screen and (max-width: 767px){.c-ttl1.center{font-size:2.4rem}}.c-ttl1.black{padding:2.63889em 1.11111em;background:#E6E9EE;background-position:center;background-repeat:no-repeat}.c-ttl1.white{color:#fff;padding:2.63889em 1.11111em;background:#AAB2BD;background-position:center;background-repeat:no-repeat}.c-ttl2{font-size:1.6rem;padding:0.8em .8em 0.8em 1.4em;color:#FFF;background:#1588f7;border-left:5px solid #FFF;box-shadow:0px 0px 0px 1px #1588f7;margin-bottom:24px;line-height:1;font-weight:bold}@media screen and (max-width: 767px){.c-ttl2{margin-bottom:16px;padding-left:.8em}}.c-ttl2.isType2{background:#FFF;border:1px solid #1588f7;border-left:5px solid #1588f7;color:#1588f7}.c-ttl3{color:#1588f7;font-size:2.4rem;font-weight:bold}.c-ttl3.isType2{font-size:1.8rem}.c-ttl3.isType3{font-size:2rem;border-bottom:1px solid #1588f7;padding-bottom:.5em}.c-btn,.field-link{display:inline-block}.c-btn a,.field-link a{display:flex;justify-content:center;align-items:center;background:#FFF;color:#1588f7;border:2px solid #1588f7;padding:.8em 1.5em !important;font-weight:bold;box-shadow:0px 3px 4px rgba(0,0,0,0.16);border-radius:5px;width:100%;text-align:center;position:relative;font-size:1.6rem}.c-btn a.arrow:after,.field-link a.arrow:after{content:"";width:.8em;height:.8em;position:absolute;right:20px;top:0;bottom:0;margin:auto;border-top:2px solid #1588f7;border-right:2px solid #1588f7;transform:rotate(45deg)}@media screen and (max-width: 767px){.c-btn a,.field-link a{font-size:1.4rem}}.c-btn a:hover,.field-link a:hover{opacity:.8}.c-btn a input,.field-link a input{border:0px !important;display:flex;justify-content:center;align-items:center;width:100%}.c-btn.isType2 a,.field-link.isType2 a{background:#1588f7 !important;color:#FFF !important;border-color:#FFF}.c-btn.isType2 a:after,.field-link.isType2 a:after{border-color:#FFF}.c-btn.isType3 a,.field-link.isType3 a{color:#707070;border-color:#CCC !important}.c-btn.isType3 a:after,.field-link.isType3 a:after{border-color:#707070}.c-btn.isType4 a,.field-link.isType4 a{color:#707070;background:#E1E3EB !important;border-color:#FFF !important}.c-btn.isType4 a:after,.field-link.isType4 a:after{border-color:#707070}.c-btn.sizeS,.field-link.sizeS{width:180px}@media screen and (max-width: 767px){.c-btn.sizeS,.field-link.sizeS{width:100px}}@media screen and (max-width: 767px){.c-btn.sizeS a,.field-link.sizeS a{font-size:1.2rem}}.c-btn.sizeM,.field-link.sizeM{width:280px}@media screen and (max-width: 767px){.c-btn.sizeM,.field-link.sizeM{width:162px}}.c-btn.sizeL,.field-link.sizeL{width:420px}@media screen and (max-width: 767px){.c-btn.sizeL,.field-link.sizeL{width:100%}}.sec-button .c-btn{display:block;margin-bottom:20px}.field-link{display:block;text-align:center}.c-colG article .image{text-align:center}.c-colG article .title{font-size:2.2rem;text-align:center;font-weight:bold;padding-bottom:1.8em}@media screen and (max-width: 767px){.c-colG article .title{font-size:1.8rem;padding-bottom:1em}}.c-colG article .image{margin-bottom:2em}.c-col2 article{display:flex;justify-content:space-between;flex-wrap:wrap}.c-col2 article .col{width:48.5%;box-sizing:border-box}@media screen and (max-width: 767px){.c-col2 article .col{width:100%}.c-col2 article .col+.col{padding-top:32px}}@media screen and (max-width: 767px) and (max-width: 767px){.c-col2 article .col+.col{padding-top:20px}}.c-col2 article .col .image{width:100%;text-align:center}@media screen and (max-width: 767px){.c-col2 article .col .image img{width:100%}}.c-col2 article.embed_video{background:#E6E9EE}@media screen and (max-width: 767px){.c-col2 article.embed_video{flex-direction:column}}.c-col2 article.embed_video .col{width:50%;padding:24px}@media screen and (max-width: 767px){.c-col2 article.embed_video .col{width:100%;padding:20px}}.c-col2 article.embed_video .col.video{padding:0px}.c-col2 article.embed_video .col.video video{height:100%;width:100%}.c-col2 article.col2Table table{width:48%}@media screen and (max-width: 767px){.c-col2 article.col2Table table{width:100%}}.c-col2 article.col2Table table th{padding-left:0}@media screen and (max-width: 767px){.c-col2 article.col2Table table th{padding:16px 0 5px 0}}.c-col2 article.col2Table table td{padding-right:0}@media screen and (max-width: 767px){.c-col2 article.col2Table table td{padding:0 0 16px 0}}.c-col2 article.movSch .col{display:flex;margin-bottom:10px}@media screen and (max-width: 767px){.c-col2 article.movSch .col{width:48%;margin-bottom:4%}}@media screen and (max-width: 767px){.c-col2 article.movSch .col+.col{padding-top:0}}.c-col2 article.movSch .col a{display:flex;width:100%;border:1px solid #CCD0D9}@media screen and (max-width: 767px){.c-col2 article.movSch .col a{padding:5px;align-self:center}}@media screen and (max-width: 767px){.c-col2 article.movSch .col a .icon{width:40px}}@media screen and (max-width: 767px){.c-col2 article.movSch .col a .u-prefix{font-size:1.2rem;font-weight:500;line-height:1.4}}.c-colA article,.c-colB article{display:flex;flex-wrap:wrap;justify-content:space-between}.c-colA article .c-image_box,.c-colB article .c-image_box{height:280px;position:relative;display:flex;box-sizing:border-box;padding:24px;font-size:1.6rem;background-repeat:no-repeat;background-position:center;background-size:cover}@media screen and (max-width: 767px){.c-colA article .c-image_box,.c-colB article .c-image_box{height:44vw;font-size:1.4rem}}.c-colA article .c-image_box .img,.c-colB article .c-image_box .img{position:absolute;left:0px;top:0px;width:100%}@media screen and (max-width: 767px){.c-colA article .c-image_box .img,.c-colB article .c-image_box .img{margin-bottom:3vw}}.c-colA article .c-image_box .img img,.c-colB article .c-image_box .img img{max-width:100%}.c-colA article .c-image_box p,.c-colB article .c-image_box p{position:relative;text-align:left !important}.c-colA article .c-image_box p.isWhite,.c-colB article .c-image_box p.isWhite{color:#FFF}.c-colA article .title,.c-colB article .title{font-size:1.8rem;font-weight:bold;padding-bottom:.5em;text-align:center}.c-colA article .title+.image,.c-colB article .title+.image{margin-top:15px}@media screen and (max-width: 767px){.c-colA article .title,.c-colB article .title{text-align:left;font-size:1.6rem}}.c-colA article .col2,.c-colB article .col2{width:66%}@media screen and (max-width: 767px){.c-colA article .col2,.c-colB article .col2{width:100%}}.c-colA article .cols,.c-colB article .cols{width:32%;margin-bottom:25px}@media screen and (max-width: 767px){.c-colA article .cols img,.c-colB article .cols img{display:block;margin:0 auto}}@media screen and (max-width: 767px){.c-colA article .cols.spCol1,.c-colB article .cols.spCol1{width:80%;margin:0 auto 10vw auto}.c-colA article .cols.spCol1 .title,.c-colB article .cols.spCol1 .title{text-align:center}}@media screen and (max-width: 767px){.c-colA article .cols,.c-colB article .cols{width:100%;margin-bottom:10vw}.c-colA article .cols.spCol2,.c-colB article .cols.spCol2{width:47%;margin-bottom:5vw}}.c-colA article .cols .image,.c-colB article .cols .image{width:100%;text-align:center}.c-colA article .cols .image+.text,.c-colB article .cols .image+.text{padding-top:2em}.c-colA article a,.c-colB article a{width:100%;box-sizing:border-box;text-align:center}.c-colC .items{display:flex;justify-content:flex-start;flex-wrap:wrap}.c-colC .items .item{width:306px;box-sizing:border-box;padding:0 30px;margin-bottom:50px;text-align:center}@media screen and (max-width: 767px){.c-colC .items .item{width:50%;padding:0px 4%;margin-bottom:10vw}}.c-colC .items .item .field-title{text-align:center;padding-top:1em}.c-colD .items{display:flex;justify-content:flex-start;flex-wrap:wrap;margin-left:-3.3%}@media screen and (max-width: 767px){.c-colD .items{margin-left:-6%}}.c-colD .items .item{width:30%;box-sizing:border-box;margin-bottom:50px;text-align:center;margin-left:3.31%}@media screen and (max-width: 767px){.c-colD .items .item{margin-left:6%;width:44%;margin-bottom:10vw}}.c-colD .items .item .field-title{text-align:center;padding:1em 0;font-size:1.6rem;font-weight:bold}@media screen and (max-width: 767px){.c-colD .items .item .field-title{text-align:center}}.c-colD .items .item .field-description{padding-bottom:1.2em;text-align:left}@media screen and (max-width: 767px){.c-colD .items .item .field-description{font-size:1.2rem}}.c-colD .items .item .field-link a{font-size:1.6rem;padding:.6em 0 !important}p+.c-colA,p+.c-colB,p+.c-colC,p+.c-colD,p+.c-colE,p+.c-colF{padding-top:20px}.c-colF .items{display:flex;justify-content:flex-start;flex-wrap:wrap;margin-left:-3.3%}@media screen and (max-width: 767px){.c-colF .items{margin-left:0%}}.c-colF .items .item{width:30%;box-sizing:border-box;margin-bottom:50px;text-align:center;margin-left:3.31%}@media screen and (max-width: 767px){.c-colF .items .item{width:80%;margin:0 auto;margin-bottom:10vw}}.c-colF .items .item .field-title{text-align:center;padding:1em 0;font-size:1.6rem;font-weight:bold}@media screen and (max-width: 767px){.c-colF .items .item .field-title{text-align:center}}.c-colF .items .item .field-description{padding-top:1.5em;text-align:left}@media screen and (max-width: 767px){.c-colF .items .item .field-description{font-size:1.2rem}}.c-colE .items{display:flex;margin-left:-7%;justify-content:flex-start;margin-top:32px;flex-wrap:wrap}@media screen and (max-width: 767px){.c-colE .items{margin-top:0px;margin-left:0%;margin-left:-5%}}.c-colE .items .item{width:18%;margin-bottom:40px;margin-left:7%;text-align:center}@media screen and (max-width: 767px){.c-colE .items .item{width:45%;margin-left:5%;margin-bottom:10vw}}.c-colE .items .item .field-title{text-align:center;border-bottom:1px solid #434A54;padding:.8em;font-weight:bold;margin-bottom:.8em;font-size:1.6rem}.c-colE .items .item .field-description{text-align:left}.c-paging .component-content{padding-top:20px;display:flex;justify-content:center}.c-paging .component-content li{margin:0 5px}.c-paging .component-content li.dots{margin:0px}.c-paging .component-content .pagebtn:after{content:"";display:inline-block;width:8px;height:8px;border-top:1px solid #333;border-right:1px solid #333;transform:rotate(-135deg)}.c-paging .component-content .pagebtn.next:after{transform:rotate(45deg)}.c-paging .component-content a,.c-paging .component-content li{display:flex;align-items:center;justify-content:center;width:30px;height:30px}.c-paging .component-content a a,.c-paging .component-content li a{border:1px solid #CCC}.c-paging .component-content a a.current,.c-paging .component-content li a.current{border:1px solid #1588f7;background:#1588f7;color:#FFF}.c-paging .component-content ul{display:flex}.c-modalWrap{background:rgba(0,0,0,0.8);position:fixed;top:0px;width:100%;height:100%;display:flex;justify-content:center;align-items:center;left:-100%}.c-modalWrap.on{left:0px}.c-modalWrap .c-modalInner{background:#FFF;padding:20px;position:relative;width:100%}@media screen and (max-width: 767px){.c-modalWrap .c-modalInner{padding:0px;width:90%;margin:0 auto}}.c-modalWrap .c-modalInner:before{content:"×";position:absolute;right:0px;top:-1.5em;font-weight:100;color:#FFF;font-size:3rem}.c-modalWrap .c-modalInner.c-modalPhoto{max-width:525px;text-align:center}@media screen and (max-width: 767px){.c-modalWrap .c-modalInner.c-modalPhoto img{width:100%}}.c-modalWrap .c-modalInner.c-modalPhoto .text{text-align:left;padding-top:1em}@media screen and (max-width: 767px){.c-modalWrap .c-modalInner.c-modalPhoto .text{padding:20px}}.c-modalWrap .c-modalInner.c-modalPhoto .text span{display:block;font-weight:bold;font-size:1.6rem}.c-modalWrap .c-modalInner.c-modalSlide{max-width:920px}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickMain{text-align:center}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickMain img{margin:0 auto}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickMain .title{padding:10px 0 25px 0}@media screen and (max-width: 767px){.c-modalWrap .c-modalInner.c-modalSlide .modalSlickMain .title{padding:15px;text-align:left;font-weight:bold}}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb{width:370px;margin:0 auto;overflow:hidden}@media screen and (max-width: 767px){.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb{width:auto;overflow:auto;padding-bottom:20px}}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-arrow{width:20px;height:60px;background-color:#E6E9EE;z-index:10}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-arrow.slick-next{right:0px;background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/slk_arw1_r-b.svg");background-size:30% !important}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-arrow.slick-prev{left:0px;background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/slk_arw1_l-b.svg");background-size:30% !important}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide{width:66px}@media screen and (max-width: 767px){.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide{width:56px}}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide .image{padding:0 3px}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide .image em{position:absolute;left:0px;top:0px}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide .image img{border:2px solid #FFFFFF}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide.slick-current .image{position:relative}.c-modalWrap .c-modalInner.c-modalSlide .modalSlickThumb .slick-slide.slick-current .image img{border:2px solid #1588f7}.c-text article{word-wrap:break-word;padding-bottom:1em}.c-float_left{margin-bottom:1em}.c-float_left .image{width:40%;float:left;margin-right:20px;margin-bottom:20px}@media screen and (max-width: 767px){.c-float_left .image{float:none;width:100%;margin-bottom:32px;margin-right:0px}}.c-float_left .image img{width:100%}.c-float_left .text{word-wrap:break-word}.c-float_right{margin-bottom:1em}.c-float_right .image{width:40%;float:right;margin-left:20px}@media screen and (max-width: 767px){.c-float_right .image{float:none;width:100%;margin-bottom:32px;margin-left:0px}}.c-float_right .image img{width:100%}.c-float_right .text{word-wrap:break-word}.c-prefix{display:flex;align-items:center}.c-prefix:before{content:"";display:inline-block;width:0;height:0;border-style:solid;border-width:5px 0 5px 8px;border-color:transparent transparent transparent #1588f7;margin-right:10px}.c-prefix.isType2:before{height:.8em;border-left:5px solid #1588f7;background:#1588f7}.c-prefix.isType3:before{height:.5em;width:.5em;border-radius:50px;border:0px;background:#1588f7}.c-mixA .items .item{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-mixA .items .item{display:block}}.c-mixA .items .item>div{width:45%}@media screen and (max-width: 767px){.c-mixA .items .item>div{width:100%}}.c-mixA .items .item>div .field-title{font-size:2.4rem;text-align:center;font-weight:bold;padding-bottom:1em}@media screen and (max-width: 767px){.c-mixA .items .item>div p{padding-bottom:2em}}.c-mixA .items .item>div ul{margin:0 2em 1.5em 2em}.c-mixA .items .item>div .c-btn{margin-top:30px;display:block}.c-mixA .items .item>div .c-btn a{width:100%;font-size:1.6rem}.c-mixB .items{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-mixB .items{display:block}}.c-mixB .items .item{width:47%;display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-mixB .items .item{width:100%;margin-bottom:15vw}}.c-mixB .items .item .img{width:210px}@media screen and (max-width: 767px){.c-mixB .items .item .img{width:47%}}.c-mixB .items .item>div{width:200px}@media screen and (max-width: 767px){.c-mixB .items .item>div{width:47%}}.c-mixB .items .item .field-title{font-size:1.8rem;text-align:left;font-weight:bold;padding-bottom:.8em}@media screen and (max-width: 767px){.c-mixB .items .item .field-title{font-size:1.4rem}}@media screen and (max-width: 767px){.c-mixB .items .item p{font-size:1rem}}.c-mixB .items .item .c-btn{margin-top:15px;display:block}@media screen and (max-width: 767px){.c-mixB .items .item .c-btn{text-align:right;margin-top:2vw;display:block}}.c-mixB .items .item .c-btn a{width:100%}@media screen and (max-width: 767px){.c-mixB .items .item .c-btn a{width:70%;display:inline-block;font-size:1.2rem}}.c-mixC .items{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-mixC .items{display:block}}.c-mixC .items .item{width:31%}@media screen and (max-width: 767px){.c-mixC .items .item{width:100%;margin-bottom:15vw}}.c-mixC .items .item .img{padding-bottom:1em}@media screen and (max-width: 767px){.c-mixC .items .item .img img{width:100%}}.c-mixC .items .item .field-title{font-size:1.8rem;text-align:left;font-weight:bold;padding-bottom:1em}@media screen and (max-width: 767px){.c-mixC .items .item .field-title{font-size:1.4rem}}.c-mixC .items .item .field-description{padding-bottom:1.6em}@media screen and (max-width: 767px){.c-mixC .items .item .field-description{font-size:1.2rem}}.c-mixC .items .item .field-link{width:100%}.c-mixC .items .item .field-link a{width:100%;font-size:1.6rem}.c-mixD .items{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-mixD .items{display:block}}.c-mixD .items .item{width:48%}@media screen and (max-width: 767px){.c-mixD .items .item{width:100%;margin-bottom:15vw}}.c-mixD .items .item .img{padding-bottom:1em}@media screen and (max-width: 767px){.c-mixD .items .item .img img{width:100%}}.c-mixD .items .item .field-title{font-size:1.8rem;text-align:left;font-weight:bold;padding-bottom:1em}@media screen and (max-width: 767px){.c-mixD .items .item .field-title{font-size:1.4rem}}.c-mixD .items .item p{padding-bottom:1.6em}@media screen and (max-width: 767px){.c-mixD .items .item p{font-size:1.2rem}}.c-mixD .items .item .field-link{width:100%}.c-mixD .items .item .field-link a{width:100%;font-size:1.6rem}.c-blog article{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-blog article{display:block}}.c-blog article .img{width:200px}@media screen and (max-width: 767px){.c-blog article .img{width:100%;padding-bottom:5vw}.c-blog article .img img{width:100%}}.c-blog article .text{width:680px}@media screen and (max-width: 767px){.c-blog article .text{width:100%}}.c-blog article .field-title{font-size:1.8rem;text-align:left;font-weight:bold;padding-bottom:.8em}@media screen and (max-width: 767px){.c-blog article .field-title{font-size:2rem}}.c-blog article p{padding-bottom:.8em}.c-blog article .c-btn{margin-top:15px;font-size:1.6rem;width:200px}@media screen and (max-width: 767px){.c-blog article .c-btn{width:100%;text-align:right;margin-top:2vw;display:block}}.c-blog article .c-btn a{width:100%}@media screen and (max-width: 767px){.c-blog article .c-btn a{font-size:1.6rem}}.c-movie-text article{text-align:center}.c-movie-text article video{width:100%;max-width:600px;margin-bottom:2em}.c-movie-text article .field-title{font-size:2.4rem;font-weight:bold;padding-bottom:1em}@media screen and (max-width: 767px){.c-movie-text article .field-title{text-align:left;font-size:1.8rem}}.c-movie-text article p{padding-bottom:.8em;text-align:left}.c-youtube article{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-youtube article{display:block}}.c-youtube article .video{width:48%}@media screen and (max-width: 767px){.c-youtube article .video{width:100%}}.c-youtube article .video iframe{width:100%}@media screen and (max-width: 767px){.c-youtube article .video iframe{height:60vw;margin-bottom:1.5em}}.c-youtube article .text{width:48%}@media screen and (max-width: 767px){.c-youtube article .text{width:100%}}.c-youtube article .field-title{font-size:1.8rem;font-weight:bold;padding-bottom:.8em}.c-movie-text2 article{display:flex;justify-content:space-between;align-items:center;border:1px solid #CCC}@media screen and (max-width: 767px){.c-movie-text2 article{border:0px;flex-direction:column-reverse}}.c-movie-text2 article .video{width:48%}@media screen and (max-width: 767px){.c-movie-text2 article .video{width:100%}}.c-movie-text2 article .video video{width:100%;height:100%}.c-movie-text2 article .text{width:48%;box-sizing:border-box;padding:25px}@media screen and (max-width: 767px){.c-movie-text2 article .text{width:100%;padding:0px;margin-top:1.5em}}.c-movie-text2 article .field-title{font-size:1.8rem;font-weight:bold;padding-bottom:.8em}.c-movie-text2 article .c-btn{width:170px;margin-right:20px;margin-top:1.5em;font-size:1.6rem}@media screen and (max-width: 767px){.c-movie-text2 article .c-btn{width:46%;margin-right:5%}.c-movie-text2 article .c-btn:last-of-type{margin-right:0px}}.c-youtubeCol2 article{display:flex;justify-content:space-between}@media screen and (max-width: 767px){.c-youtubeCol2 article{display:block}}.c-youtubeCol2 article .video{width:48%}@media screen and (max-width: 767px){.c-youtubeCol2 article .video{width:100%}}.c-youtubeCol2 article .video iframe{width:100%;height:260px}@media screen and (max-width: 767px){.c-youtubeCol2 article .video iframe{height:60vw;margin-bottom:5vw}}.c-youtubeCol2 article .text{width:48%;box-sizing:border-box;padding:25px}.c-youtubeCol2 article .field-title{font-size:1.8rem;font-weight:bold;padding-bottom:.8em}.c-youtubeCol2 article .c-btn{width:170px;margin-right:20px;margin-top:1.5em;font-size:1.6rem}.c-accordion article{display:flex;justify-content:flex-start}@media screen and (max-width: 767px){.c-accordion article{display:block}}.c-accordion article .cols{width:32%;margin-right:3%}@media screen and (max-width: 767px){.c-accordion article .cols{width:100%;margin:0 0 5vw 0}}.c-accordion article .cols:last-of-type{margin-right:0px}.c-accordion article dt{border:1px solid #1588f7;border-bottom:3px solid #1588f7;padding:.7em 1em;font-size:1.5rem;font-weight:bold;color:#1588f7;display:flex;align-items:center;justify-content:space-between;cursor:pointer}.c-accordion article dt.isBlue{color:#3C3D40}.c-accordion article dt.isGrey:after{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/icn-open-grey.svg")}.c-accordion article dt.isGrey.open:after{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/icn-close-grey.svg")}.c-accordion article dt:after{content:"";display:inline-block;width:20px;height:20px;background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/icn-open.svg");background-size:20px 20px}.c-accordion article dt.open:after{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/icn-close.svg");background-size:100% auto;background-repeat:no-repeat;background-position:center}.c-accordion article dt.open+dd{display:block}.c-accordion article dd{display:none;padding:24px 16px;border:1px solid #1588f7}.c-accordion article dd.isBlue{background:#1588f7;color:#FFF}.c-accorditonTab article .c-select select{background:transparent url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/select.png") no-repeat right center;background-size:auto 100%;padding:10px 16px;width:100%;box-sizing:border-box;border:0px;border:1px solid #1588f7;-webkit-appearance:none;border-radius:0}.c-accorditonTab article .c-tab{border-bottom:3px solid #1588f7;display:flex}.c-accorditonTab article .c-tab li{width:100%}.c-accorditonTab article .c-tab li:last-of-type{border-right:1px solid #1588f7}.c-accorditonTab article .c-tab li a{text-align:center;display:block;padding:1.4em 0;font-weight:bold;border:1px solid #1588f7;border-right:0px}.c-accorditonTab article .c-tab li .on{background:#1588f7;color:#FFF}.c-accorditonTab article .c-tabContent{margin-top:32px}.c-accorditonTab article .c-tabContent>ul>li{display:none}.c-accorditonTab article .c-tabContent>ul>li.on{display:block}.slick-slider{margin-bottom:0}.slick-arrow{background-position:0 0;background-repeat:no-repeat;background-size:31px 17px !important;background-position:center;width:25px;height:40px;margin:auto;top:0;bottom:0;z-index:1;transform:translate(0);transition:0.3s}.slick-arrow:hover{opacity:.7}@media screen and (max-width: 767px){.slick-arrow{width:7.1618vw;height:13.2626vw;background-size:contain !important}}.slick-arrow:before{content:normal}.slick-arrow.slick-prev{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/slk_arw1_l.svg");background-repeat:no-repeat;background-position:center;left:-40px}@media screen and (max-width: 767px){.slick-arrow.slick-prev{left:1.32626vw}}.slick-arrow.slick-next{background-image:url("/-/media/Project/East Tenants/East Homepage/Eastcojp/common/slk_arw1_r.svg");background-repeat:no-repeat;background-position:center;right:-40px}@media screen and (max-width: 767px){.slick-arrow.slick-next{right:1.32626vw}}.slick-dots li{background-color:#fff;width:15px;height:15px;margin:0 11px;border-radius:50%;box-sizing:border-box}.slick-dots li.slick-active{background-color:#3B3561;border:2px solid #fff}@media screen and (max-width: 767px){.slick-dots li{width:4vw;height:4vw;margin:0 2.93333vw}.slick-dots li.slick-active{border-width:.5305vw}}.modalBox{display:none;position:fixed;left:0px;top:0px;width:100%;height:100%;background:rgba(255,255,255,0.9)}.modalBox .modalInner{width:600px;position:absolute;left:50%;margin-left:-300px;top:20%;text-align:center}@media screen and (max-width: 767px){.modalBox .modalInner{width:90%}}.modalBox .modalInner p{text-align:left;padding:20px 0;font-size:1.5rem}.modalBox .btnClose{display:inline-block;font-size:1.5rem;background:#333;padding:5px;color:#FFF}@media screen and (min-width: 768px){.sp{display:none !important}}.ptM{padding-top:40px}@media screen and (max-width: 767px){.ptM{padding-top:10vw}}.WAuto{width:auto !important}.M0{margin:0 !important}.MA{margin:auto !important}.MTA{margin-top:auto !important}.MRA{margin-right:auto !important}.MBA{margin-bottom:auto !important}.MLA{margin-left:auto !important}.P0{padding:0 !important}.PA{padding:auto !important}.PTA{padding-top:auto !important}.PRA{padding-right:auto !important}.PBA{padding-bottom:auto !important}.PLA{padding-left:auto !important}.ffNS{font-family:"Noto Sans Japanese"}.fwB{font-weight:bold !important}.fwN{font-weight:normal !important}.lh8{line-height:.8 !important}.lh9{line-height:.9 !important}.lh10{line-height:1 !important}.lh11{line-height:1.1 !important}.lh12{line-height:1.2 !important}.lh13{line-height:1.3 !important}.lh14{line-height:1.4 !important}.lh15{line-height:1.5 !important}.lh16{line-height:1.6 !important}.lh17{line-height:1.7 !important}.lh18{line-height:1.8 !important}.lh19{line-height:1.9 !important}.lh20{line-height:2 !important}.lh21{line-height:2.1 !important}.lh22{line-height:2.2 !important}.lh23{line-height:2.3 !important}.lh24{line-height:2.4 !important}.lh25{line-height:2.5 !important}.lh26{line-height:2.6 !important}.lh27{line-height:2.7 !important}.lh28{line-height:2.8 !important}.lh29{line-height:2.9 !important}.lh30{line-height:3 !important}.disI{display:inline !important}.disB{display:block !important}.disIB{display:inline-block !important}.disT{display:table !important}.disTC{display:table-cell !important}.disN{display:none !important}.disF{display:flex !important}.jcFS{justify-content:flex-start !important}.jcFE{justify-content:flex-end !important}.jcC{justify-content:center !important}.jcSB{justify-content:space-between !important}.jcSA{justify-content:space-around !important}.aiFS{align-items:flex-start !important}.aiFE{align-items:flex-end !important}.aiC{align-items:center !important}.aiS{align-items:stretch !important}.aiB{align-items:baseline !important}.taL{text-align:left !important}.taR{text-align:right !important}.taC{text-align:center !important}.vaT{vertical-align:top !important}.vaM{vertical-align:middle !important}.vaB{vertical-align:bottom !important}.vaTB{vertical-align:text-bottom !important}.fltL{float:left !important}.fltR{float:right !important}.fltN{float:none !important}.posS{position:static !important}.posR{position:relative !important}.posA{position:absolute !important}.posF{position:fixed !important}.brWord{word-wrap:break-word}.waNw{white-space:nowrap}.printDown{display:none}.printBreak{display:none}@media screen and (max-width: 767px){.pc{display:none !important}.spWAuto{width:auto !important}.spM0{margin:0 !important}.spMA{margin:auto !important}.spMTA{margin-top:auto !important}.spMRA{margin-right:auto !important}.spMBA{margin-bottom:auto !important}.spMLA{margin-left:auto !important}.spP0{padding:0 !important}.spPA{padding:auto !important}.spPTA{padding-top:auto !important}.spPRA{padding-right:auto !important}.spPBA{padding-bottom:auto !important}.spPLA{padding-left:auto !important}.spFz6{font-size:6px}.spFz6R{font-size:.6rem}.spFz7{font-size:7px}.spFz7R{font-size:.7rem}.spFz8{font-size:8px}.spFz8R{font-size:.8rem}.spFz9{font-size:9px}.spFz9R{font-size:.9rem}.spFz10{font-size:10px}.spFz10R{font-size:1rem}.spFz11{font-size:11px}.spFz11R{font-size:1.1rem}.spFz12{font-size:12px}.spFz12R{font-size:1.2rem}.spFz13{font-size:13px}.spFz13R{font-size:1.3rem}.spFz14{font-size:14px}.spFz14R{font-size:1.4rem}.spFz15{font-size:15px}.spFz15R{font-size:1.5rem}.spFz16{font-size:16px}.spFz16R{font-size:1.6rem}.spFz17{font-size:17px}.spFz17R{font-size:1.7rem}.spFz18{font-size:18px}.spFz18R{font-size:1.8rem}.spFz19{font-size:19px}.spFz19R{font-size:1.9rem}.spFz20{font-size:20px}.spFz20R{font-size:2rem}.spFz21{font-size:21px}.spFz21R{font-size:2.1rem}.spFz22{font-size:22px}.spFz22R{font-size:2.2rem}.spFz23{font-size:23px}.spFz23R{font-size:2.3rem}.spFz24{font-size:24px}.spFz24R{font-size:2.4rem}.spFz25{font-size:25px}.spFz25R{font-size:2.5rem}.spFz26{font-size:26px}.spFz26R{font-size:2.6rem}.spFz27{font-size:27px}.spFz27R{font-size:2.7rem}.spFz28{font-size:28px}.spFz28R{font-size:2.8rem}.spFz29{font-size:29px}.spFz29R{font-size:2.9rem}.spFz30{font-size:30px}.spFz30R{font-size:3rem}.spFz31{font-size:31px}.spFz31R{font-size:3.1rem}.spFz32{font-size:32px}.spFz32R{font-size:3.2rem}.spFz33{font-size:33px}.spFz33R{font-size:3.3rem}.spFz34{font-size:34px}.spFz34R{font-size:3.4rem}.spFz35{font-size:35px}.spFz35R{font-size:3.5rem}.spFz36{font-size:36px}.spFz36R{font-size:3.6rem}.spFz37{font-size:37px}.spFz37R{font-size:3.7rem}.spFz38{font-size:38px}.spFz38R{font-size:3.8rem}.spFz39{font-size:39px}.spFz39R{font-size:3.9rem}.spFz40{font-size:40px}.spFz40R{font-size:4rem}.spFz41{font-size:41px}.spFz41R{font-size:4.1rem}.spFz42{font-size:42px}.spFz42R{font-size:4.2rem}.spFz43{font-size:43px}.spFz43R{font-size:4.3rem}.spFz44{font-size:44px}.spFz44R{font-size:4.4rem}.spFz45{font-size:45px}.spFz45R{font-size:4.5rem}.spFz46{font-size:46px}.spFz46R{font-size:4.6rem}.spFz47{font-size:47px}.spFz47R{font-size:4.7rem}.spFz48{font-size:48px}.spFz48R{font-size:4.8rem}.spFz49{font-size:49px}.spFz49R{font-size:4.9rem}.spFz50{font-size:50px}.spFz50R{font-size:5rem}.spFwB{font-weight:bold !important}.spFwN{font-weight:normal !important}.spLh8{line-height:.8 !important}.spLh9{line-height:.9 !important}.spLh10{line-height:1 !important}.spLh11{line-height:1.1 !important}.spLh12{line-height:1.2 !important}.spLh13{line-height:1.3 !important}.spLh14{line-height:1.4 !important}.spLh15{line-height:1.5 !important}.spLh16{line-height:1.6 !important}.spLh17{line-height:1.7 !important}.spLh18{line-height:1.8 !important}.spLh19{line-height:1.9 !important}.spLh20{line-height:2 !important}.spLh21{line-height:2.1 !important}.spLh22{line-height:2.2 !important}.spLh23{line-height:2.3 !important}.spLh24{line-height:2.4 !important}.spLh25{line-height:2.5 !important}.spLh26{line-height:2.6 !important}.spLh27{line-height:2.7 !important}.spLh28{line-height:2.8 !important}.spLh29{line-height:2.9 !important}.spLh30{line-height:3 !important}.spDisI{display:inline !important}.spDisB{display:block !important}.spDisIB{display:inline-block !important}.spDisT{display:table !important}.spDisTC{display:table-cell !important}.spDisN{display:none !important}.spDisF{display:flex !important}.spJcFS{justify-content:flex-start !important}.spJcFE{justify-content:flex-end !important}.spJcC{justify-content:center !important}.spJcSB{justify-content:space-between !important}.spJcSA{justify-content:space-around !important}.spAiFS{align-items:flex-start}.spAiFE{align-items:flex-end !important}.spAiC{align-items:center !important}.spAiS{align-items:stretch !important}.spAiB{align-items:baseline !important}.spTaL{text-align:left !important}.spTaR{text-align:right !important}.spTaC{text-align:center !important}.spVaT{vertical-align:top !important}.spVaM{vertical-align:middle !important}.spVaB{vertical-align:bottom !important}.spVaTB{vertical-align:text-bottom !important}.spFltL{float:left !important}.spFltR{float:right !important}.spFltN{float:none !important}.spPosS{position:static !important}.spPosR{position:relative !important}.spPosA{position:absolute !important}.spPosF{position:fixed !important}} @charset "UTF-8"; /* breakpoints */ .link-list { background: transparent; } .link-list h1, .link-list h2, .link-list h3, .link-list h4, .link-list h5, .link-list h6 { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #89C6CC; } .link-list > .component-content ul { background: transparent; } .link-list > .component-content li { background: transparent; display: block; font-size: 13px; } .link-list > .component-content li a { display: inline; color: #747474; position: relative; padding-left: 10px; font-size: 1em; text-decoration: none; } .link-list > .component-content li a:before { display: inline-block; font: normal normal normal 14px/1 FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; content: ""; position: absolute; left: 0; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); font-size: 10px; } .link-list > .component-content li a:hover { color: #878787; text-decoration: none; border-bottom: 1px solid #89C6CC; } .link-list .button-default, .link-list .default { border-width: 1px; border-style: solid; border-color: #d2d2d2; font-size: 12px; font-size: 1.2rem; display: inline-block; vertical-align: middle; box-sizing: border-box; margin: 5px 0; padding: 10px 15px; text-align: center; text-decoration: none; background: #f6f6f6; color: #747474; font-weight: bold; } .link-list .button-default:hover, .link-list .default:hover { color: #747474; background: #f7f7f7; } .link-list .button-success, .link-list .success { font-size: 12px; font-size: 1.2rem; border-width: 1px; border-style: solid; border-color: #d2d2d2; display: inline-block; vertical-align: middle; box-sizing: border-box; margin: 5px 0; padding: 10px 15px; text-align: center; text-decoration: none; background: #a0ce4e; color: #fff; font-weight: bold; } .link-list .button-success:hover, .link-list .success:hover { color: #fff; background: #92be43; } .link-list .button-warning, .link-list .warning { font-size: 12px; font-size: 1.2rem; border-width: 1px; border-style: solid; border-color: #d2d2d2; display: inline-block; vertical-align: middle; box-sizing: border-box; margin: 5px 0; padding: 10px 15px; text-align: center; text-decoration: none; background: #bc4526; color: #fff; font-weight: bold; } .link-list .button-warning:hover, .link-list .warning:hover { color: #fff; background: #c34e30; } /* breakpoints */ .link-list.list-vertical h3 { background: #FFFFFF; width: 100%; display: inline-block; padding: 3px 5px; border-width: 1px; border-style: solid; border-color: #d2d2d2; } .link-list.list-vertical a { border: none; } .link-list.list-vertical li { display: block; margin-left: 20px; }
プライバシーポリシーに同意の上、送信してください。

同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。