CINXE.COM

一般広告提案営業|株式会社 中日アド企画

<!doctype html> <html lang="ja" dir="ltr"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="format-detection" content="telephone=no" /> <title>一般広告提案営業|株式会社 中日アド企画</title> <meta name="description" content="東海地区を中心に全7拠点のネットワークを持つ株式会社中日アド企画のウェブサイト。私たちはあらゆるメディアや、デジタルマーケティングを駆使し、広告主のビジネスを成功へと導くソリューションを提供いたします。"> <meta name="keywords" content="中日アド企画,広告会社,名古屋,愛知,岐阜,三重,静岡,東京,滋賀"> <link rel="stylesheet" href="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/style.css" type="text/css" media="all"> <meta property="og:url" content="https://www.chunichi-adnet.co.jp/archives/entry/0002"> <meta property="og:title" content=" 一般広告提案営業"> <meta property="og:type" content="article"> <meta property="og:image" content="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/default.png"> <!--CSS--> <link rel="stylesheet" href="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/css/recruit-style.css"> <link rel="stylesheet" href="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/css/recruit-max-640px.css"> <link rel="stylesheet" href="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/css/jquery.bxslider.css"> <link rel="stylesheet" href="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/css/animate.css"> <link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet"> <link href="https://fonts.googleapis.com/earlyaccess/mplus1p.css" rel="stylesheet" /> <!--JS--> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script type="text/javascript" src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/js/common.js"></script> <script type="text/javascript" src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/js/jquery.inview.js"></script> <script type="text/javascript" src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/js/jquery.bxslider.min.js"></script> <script type="text/javascript" src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/js/story-box.min.js"></script> <script> $(function() { // フェードイン $('.inviewfadeIn').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if (isInView) { $(this).stop().addClass('fadeIn'); } else { $(this).stop().removeClass('fadeIn'); } }); // 上へスライド $('.inviewUp').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if (isInView) { $(this).stop().addClass('Up'); } else { $(this).stop().removeClass('Up'); } }); // ズームイン $('.inviewzoomIn').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if (isInView) { $(this).stop().addClass('zoomIn'); } else { $(this).stop().removeClass('zoomIn'); } }); // フェードインしながら上へスライド $('.inviewfadeInUp').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if (isInView) { $(this).stop().addClass('fadeInUp'); } else { $(this).stop().removeClass('fadeInUp'); } }); // フェードインしながら右へスライド $('.inviewfadeInright').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if (isInView) { $(this).stop().addClass('fadeInright'); } else { $(this).stop().removeClass('fadeInright'); } }); // フェードインしながら右へスライド $('.inviewfadeInleft').on('inview', function(event, isInView, visiblePartX, visiblePartY) { if (isInView) { $(this).stop().addClass('fadeInleft'); } else { $(this).stop().removeClass('fadeInleft'); } }); }); </script> <script> (function ($) { $(window).on("load", function () { $(".js-demo-01").bxSlider({ auto: true, infiniteLoop: true, responsive: true, speed: 1000, displaySlideQty: 1, pager: true, slideWidth: 980, startSlide: 0, minSlides: 1, maxSlides: 1, moveSlides: 1, slideMargin: 0, pause: 4000, }); }); }(jQuery)); </script> <script> $(function () { setTimeout('rect()'); //アニメーションを実行 }); function rect() { $('#rect').animate({ marginTop: '-=10px' }, 800).animate({ marginTop: '+=10px' }, 800); setTimeout('rect()', 1600); //アニメーションを繰り返す間隔 } </script> <script> $(function() { //クリックしたときのファンクションをまとめて指定 $('ul.tab_area li').click(function() { //.index()を使いクリックされたタブが何番目かを調べ、 // indexという変数に代入します。 var index = $('ul.tab_area li').index(this); //コンテンツを一度すべて非表示にし、 $('.content_area').css('display','none'); //クリックされたタブと同じ順番のコンテンツを表示します。 $('.content_area').eq(index).fadeIn(); //タブについているクラスselectを消し、 $('.tab_area li').removeClass('select'); //クリックされたタブのみにクラスselectをつけます。 $(this).addClass('select') }); }); //ダイレクトリンク $(function() { //location.hashで#以下を取得 変数hashに格納 var hash = location.hash; //hashの中に#tab~が存在するか調べる。 hash = (hash.match(/^#tab\d+$/) || [])[0]; //hashに要素が存在する場合、hashで取得した文字列(#tab2,#tab3等)から#より後を取得(tab2,tab3) if($(hash).length){ var tabname = hash.slice(1) ; } else{ // 要素が存在しなければtabnameにtab1を代入する var tabname = "tab1";} //コンテンツを一度すべて非表示にし、 $('.content_area').css('display','none'); //一度タブについているクラスselectを消し、 $('.tab_area li').removeClass('select'); var tabno = $('ul.tab_area li#' + tabname).index(); //クリックされたタブと同じ順番のコンテンツを表示します。 $('.content_area').eq(tabno).fadeIn(); //クリックされたタブのみにクラスselectをつけます。 $('ul.tab_area li').eq(tabno).addClass('select') }); </script> <meta name='robots' content='max-image-preview:large' /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.chunichi-adnet.co.jp\/wp\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.6"}}; /*! This file is auto-generated */ !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.chunichi-adnet.co.jp/wp/wp-includes/css/dist/block-library/style.min.css?ver=6.2.6' type='text/css' media='all' /> <link rel='stylesheet' id='classic-theme-styles-css' href='https://www.chunichi-adnet.co.jp/wp/wp-includes/css/classic-themes.min.css?ver=6.2.6' type='text/css' media='all' /> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-columns.is-layout-flex){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='wp-pagenavi-css' href='https://www.chunichi-adnet.co.jp/wp/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70' type='text/css' media='all' /> <link rel="https://api.w.org/" href="https://www.chunichi-adnet.co.jp/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.chunichi-adnet.co.jp/wp/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.chunichi-adnet.co.jp/wp/wp-includes/wlwmanifest.xml" /> <link rel="canonical" href="https://www.chunichi-adnet.co.jp/archives/entry/0002" /> <link rel='shortlink' href='https://www.chunichi-adnet.co.jp/?p=4581' /> <link rel="alternate" type="application/json+oembed" href="https://www.chunichi-adnet.co.jp/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.chunichi-adnet.co.jp%2Farchives%2Fentry%2F0002" /> <link rel="alternate" type="text/xml+oembed" href="https://www.chunichi-adnet.co.jp/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.chunichi-adnet.co.jp%2Farchives%2Fentry%2F0002&#038;format=xml" /> <link rel="Shortcut Icon" type="image/x-icon" href="https://www.chunichi-adnet.co.jp/wp/wp-content/uploads/2017/05/favicon.ico" /> <link rel="apple-touch-icon-precomposed" href="https://www.chunichi-adnet.co.jp/wp/wp-content/uploads/2017/05/icon.png" /> <script src="//kitchen.juicer.cc/?color=1tw2jn1sijk=" async></script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-KH8Q2PM');</script> <!-- End Google Tag Manager --> </head> <body data-rsssl=1 id="0002" class="entry-template-default single single-entry postid-4581"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KH8Q2PM" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <!-- header 20210711以前(インタビュー・クロストークあり)--> <!-- <header class="clearfix"> <div class="mobile"> <h1><a href="https://www.chunichi-adnet.co.jp"><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/logo.png" alt="株式会社 中日アド企画"></a></h1> <div class="menu_bt"> <div class="sp_nav"> <div class="menu1" id="js-popout"></div> <div class="panel" id="js-popout-panel"> <div class="panel-inner"> <nav> <ul class="nav-sp"> <li class="nav-item"><a href="https://www.chunichi-adnet.co.jp">トップページ</a></li> <li class="nav-item"><a href="https://www.chunichi-adnet.co.jp/intervew-003">INTERVIEW</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/intervew-003">┗ 営業 向 健太朗</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/intervew-001">┗ 営業 鈴木 隆史</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/intervew-004">┗ デジタル 鈴木 順之</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/intervew-002">┗ クリエイティブ 岩田 真実</a></li> <li class="nav-item"><a href="https://www.chunichi-adnet.co.jp/crosstalk">CROSSTALK</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/crosstalk-001">┗ 対談 01</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/crosstalk-002">┗ 対談 02</a></li> <li class="nav-item list-link"><a href="https://www.chunichi-adnet.co.jp/outline" target="_blank">ABOUT US<img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/icon-link.png" ></a></li> <li class="nav-item"><a href="https://www.chunichi-adnet.co.jp/entry">ENTRY</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/entry/#tab1">┗ 新卒採用</a></li> <li class="nav-item link-inner"><a href="https://www.chunichi-adnet.co.jp/entry/#tab2">┗ キャリア採用</a></li> <li class="nav-item list-link"><a href="https://www.chunichi-adnet.co.jp/" target="_blank">COMPANY<img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/icon-link.png" ></a></li> </ul> </nav> <div class="close" id="js-popout-close"></div> </div> </div> </div> </div> </div> <div class="pc pc-navi"> <h1><a href="https://www.chunichi-adnet.co.jp/"><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/logo.png" alt="株式会社 中日アド企画"></a></h1> <ul class="glovalnavi pc webfont-en clearfix"> <li class="nav-inte"><a href="https://www.chunichi-adnet.co.jp/intervew-003">INTERVIEW</a> <ul> <li><a href="https://www.chunichi-adnet.co.jp/intervew-003">営業 向 健太朗</a></li> <li><a href="https://www.chunichi-adnet.co.jp/intervew-001">営業 鈴木 隆史</a></li> <li><a href="https://www.chunichi-adnet.co.jp/intervew-004">デジタル 鈴木 順之</a></li> <li><a href="https://www.chunichi-adnet.co.jp/intervew-002">クリエイティブ 岩田 真実 </a></li> </ul> </li> <li><a href="https://www.chunichi-adnet.co.jp/crosstalk">CROSSTALK</a> <ul> <li><a href="https://www.chunichi-adnet.co.jp/crosstalk-001">対談 01</a></li> <li><a href="https://www.chunichi-adnet.co.jp/crosstalk-002">対談 02</a></li> </ul> </li> <li><a href="https://www.chunichi-adnet.co.jp/outline" target="_blank">ABOUT US</a></li> <li class="nav-entry"><a href="https://www.chunichi-adnet.co.jp/entry">ENTRY</a> <ul> <li><a href="https://www.chunichi-adnet.co.jp/entry/#tab1">新卒採用</a></li> <li><a href="https://www.chunichi-adnet.co.jp/entry/#tab2">キャリア採用</a></li> </ul> </li> </ul> </div> </header>--> <!-- /. header 20210711以前(インタビュー・クロストークあり)--> <header class="new_header clearfix"> <h1><a href="https://www.chunichi-adnet.co.jp/"><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/logo.png" alt="株式会社 中日アド企画"></a></h1> <ul class="glovalnavi pc clearfix"> <li><a href="https://www.chunichi-adnet.co.jp/#particles">私たちの特徴</a></li> <li><a href="https://www.chunichi-adnet.co.jp/#service">サービス</a></li> <li><a href="https://www.chunichi-adnet.co.jp/aboutus">会社案内</a> <ul> <li><a href="https://www.chunichi-adnet.co.jp/aboutus">コンセプト</a></li> <li><a href="https://www.chunichi-adnet.co.jp/greeting">代表挨拶 / 経営理念</a></li> <li><a href="https://www.chunichi-adnet.co.jp/outline">会社概要</a></li> <li><a href="https://www.chunichi-adnet.co.jp/health">健康経営への取り組み</a></li> </ul> </li> <li><a href="https://www.chunichi-adnet.co.jp/recruit">採用情報</a></li> </ul> <p class="pc"><a href="https://www.chunichi-adnet.co.jp/contact"><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/btn-contact-icon.png" alt="contact"></a></p> </header> <div id="main-contents"> <section class="main-info"> <div class="inner"> <h2 class="webfont-en section-ttl">INFORMATION<span>募集要項</span></h2> </div> </section> <section class="info-sec"> <div class="inner"> <div> <h3 class="section-ttl">一般広告提案営業</h3> </div> <div class="info-comment"> <h4>新聞やテレビ、Web、雑誌、ポスター、ダイレクトメール、イベントなど、さまざまな広告のご提案をお任せします。スケジュールの組み方や、既存・新規のどちらに比重を置くかもあなたの自由!裁量を持って活躍できます。取引先は官公庁(市役所)からハウスメーカー、製造業など多岐に渡ります。</h4> <p></p> </div> <div class="infotable"> <table> <tr><th>職種</th><td>一般広告提案営業</td></tr><tr><th>勤務地</th><td>〒107-0051 東京都港区元赤坂1-2-7 赤坂Kタワー4階<br /> アクセス/東京メトロ銀座線・丸ノ内線「赤坂見附」駅B出口徒歩1分<br />      東京メトロ半蔵門線・有楽町線・南北線「永田町」駅7番出口徒歩3分<br />  ※当面転勤なし<br /> <br /> ★リモートワークも可能!<br /> 今回募集のポジションでは、週3日~4日のリモートワークが可能!ワークライフバランスを大切にしながら働ける環境です。※リモートワーク可能日数は勤務地により異なります</td></tr><tr><th>応募条件</th><td>■普通自動車運転免許(AT限定可)<br /> <br /> 【こんな方を歓迎しています!】<br /> ■広告営業の経験をお持ちの方<br /> ■自主性を活かして働きたい方<br /> ■裁量を持って活躍したい方<br /> ■安定基盤に腰を据えて長く働きたい方<br /> ■ワークライフバランスを整えたい方<br /> ※職種・業種未経験 可<br /> ※第二新卒 可<br /> </td></tr><tr><th>勤務時間</th><td>9:30~17:30(所定労働時間7時間)<br /> ■平均残業時間<br /> 月35時間~40時間(当社の所定労働時間は7時間なので、19時30分前には退勤が可能です)<br /> </td></tr><tr><th>雇用形態</th><td>正社員<br /> 試用期間6カ月<br /> ※期間中の待遇に変更はありません</td></tr><tr><th>給与・賞与</th><td>■月給22万円~30万円(固定残業代を含む)<br /> ※経験やスキルを考慮し決定します<br /> ※上記には固定残業代(月5万631円~7万5431円/40時間分)が含まれます<br /> ※超過した時間外労働の残業手当は追加支給します<br />  <br /> ■通勤手当(上限月10万円)<br /> ■家族手当(配偶者:月1万7000円、お子様1人:月8000円)<br /> ■住宅手当(支給条件あり)<br /> <br /> ■賞与/年2回(6月、12月)<br /> ■昇給/年1回(4月)<br /> 【入社時の想定年収】<br /> 年収320万円~430万円<br />  </td></tr><tr><th>待遇・福利厚生</th><td>■社会保険完備(雇用・労災・健康・厚生年金)<br /> ■退職金制度<br /> ■保養施設(リゾートトラスト)<br /> ■厚生会(慶弔贈与金、社員旅行、ゴルフ・山岳・アウトドア同好会 など)<br /> </td></tr><tr><th>休日・休暇</th><td>年間休日120日★有給も併せ125日以上の休日取得が可能<br />  <br /> ■完全週休2日制(土日)<br /> ■祝日休み<br /> ■慶弔休暇<br /> ■有給休暇 (入社後即10日付与)<br /> ■産前・産後休暇 (取得実績あり)<br /> ■育児休暇 (取得実績あり)<br /> ■介護休暇<br /> ■5日以上の連休取得可</td></tr><tr><th>選考の流れ</th><td>①書類選考・Web適性検査<br /> ②一次面接(Webで実施)<br /> ③最終面接(Webまたは対面で実施)<br /> ④内定<br /> <br /> <入社後の研修><br /> 入社後はまず座学にて会社のルールや部署の役割、業界などについて学んでいただきます。<br /> その後、OJT研修がスタート! 先輩社員のアシスタントとして実務に関わりながら、お客様との関わり方、企画書の作成方法、広告に関する知識などを身に付けていきます。</td></tr> </table> </div> <p class="info-btn002"><a href="https://www.chunichi-adnet.co.jp/recruit-sp/entoryform?post_id=4581">応募フォームへ</a></p> </div> </section> </div> <!-- /main-contents --> <section class="foot-entry"> <div class="inner"> <h2 class="entry-ttl webfont">ENTRY</h2> <div class="enrty-bnr"> <ul class="clearfix"> <li><a href="https://www.chunichi-adnet.co.jp/entry/#tab1"><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/recruit/top/bnr-new.png" alt="新卒採用"></a></li> <li><a href="https://www.chunichi-adnet.co.jp/entry/#tab2"><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/recruit/top/bnr-next.png" alt="キャリア採用"></a></li> </ul> </div> <p>まずはお気軽にエントリーください</p> </div> </section> <div class="mobile"> <p class="pagetop"><a href="#header" class="scroll" ><img src="https://www.chunichi-adnet.co.jp/wp/wp-content/themes/chunichi/images/common/pagetop-002.png" alt="PAGE TOP" /></a></p> </div> <div class="recruit-pagetop pc"> <p><a href="#" class="scroll"><span>PAGE TOP</span></a></p> </div> <footer class="recruit-footer"> <p>Copyright &copy; 2018 中日アド企画. All Rights Reserved.</p> </footer> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10