/*------------------------------------------------------
CSS概要

	01. リセット
	02. ベース
	03. レイアウト
	04. ヘッダー
	05. メインコンテンツ
	06. フッター
---------------------------------------------------------*/

/*------------------------------------------------
/* 01. リセット
------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0; 
    border: 0; 
    font-style: inherit;
    font-weight: inherit;
    font-size: 100%;
    text-decoration: none;
    border-collapse: separate; 
    border-spacing: 0;
}
html, body {
    width: 100%;
    height: 100%;
}

/*------------------------------------------------
/* 02. ベース
------------------------------------------------*/
body {
    line-height: 17px;
    background: #fff;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 12px;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: normal;
}
h1{
    line-height: 25px;
    font-size: 23px;
}
h2 {
    line-height: 23px;
    font-size: 21px;
}
h3 {
    line-height: 21px;
    font-size: 19px;
}
h4 {
    line-height: 19px;
    font-size: 17px;
}
h5 {
    line-height: 17px;
    font-size: 15px;
}
h6 {
    line-height: 16px;
    font-size: 14px;
}
a { 
    color: #000;
    outline: none;
}
p {
    margin-bottom: 14px;
}
p:last-child {
    margin-bottom: 0;
}
input[type="txt"], textarea {
    width: 100%;
    padding: 8px 7px;
    border: solid 1px #d5d5d5;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    outline: 0;
}
textarea { 
    width: 100%;
    height: 150px;
    line-height: 150%;
}
input[type="txt"]:hover, textarea:hover,
input[type="txt"]:focus, textarea:focus { 
    border-color: #f8f2ce; 
    box-shadow: #f8f2ce 0px 0px 4px;
    -webkit-box-shadow: #f8f2ce 0px 0px 4px;
    -moz-box-shadow: #f8f2ce 0px 0px 4px;
}

/*------------------------------------------------
/* 03. レイアウト
------------------------------------------------*/
/* 共通コンテナ */
.container {
    position: relative;
    width: 960px;
    margin: 0 auto;
}

/* 共通カラム */
.one, .one_half, .two_third, .one_third, .one_fourth, .one_fifth {
    position: relative;
    float: left;
    margin-right: 3%;
}
.one {
    width: 100%;
    margin-right: 0;
}
.one_half {
    width: 30%;
}
.one_third  {
    width: 32%;
}
.one_fourth {
    width: 22%;
}
.one_fifth {
    width: 17%;
}
.column_last {
    margin-right: 0 !important;
    width: 63% !important;
}
.clear {
    clear: both;
}
.clear:after {
    display: block;
    clear: both;
    content: "";
}

/* テキストの整列 */
.txt_left {
    text-align: left;
}
.txt_center {
    text-align: center;
}
.txt_right {
    text-align: right;
}

/* 余白 */
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.pt20 {
    padding-top: 20px;
}
.pt30 {
    padding-top: 30px;
}
.pt40 {
    padding-top: 40px;
}

/* 区分分け */
.divider {
    clear: both;
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
}

/*------------------------------------------------
/* 04. ヘッダー
------------------------------------------------*/
header {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #000;
}
header .container {
    width: 960px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

/* パンくず */
.breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
}
.breadcrumb ul {
    list-style: none;
    text-align: left;
}
.breadcrumb ul li {
    float: left;
    margin-right: 5px;
}
.breadcrumb ul li:before {
    content: " > ";
}
.breadcrumb ul li:first-child:before {
    content: "";
}

/* ロゴ */
.logo {
    margin: 10px 0;
    padding-top: 20px;
}

/*------------------------------------------------
/* 05. メインコンテンツ
------------------------------------------------*/
article {
    clear: both;
}

/* メニュー */
.main_nav {
    margin: 20px auto 0;
}
.main_nav ul {
    list-style: none;
    width: 700px;
    margin: 0 auto;
}
.main_nav ul li {
    float: left;
    width: 24.8%;
    border-left: 1px solid #000;
    font-family: Arabic Typesetting, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 25px;
    text-align: center;
}
.main_nav ul li.current.home {
    font-family: Arabic Typesetting, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 25px;
}
.main_nav ul li.current {
    background: url('../img/common/menu/current.jpg') no-repeat bottom;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-weight: bold;
    font-size: 11px;
}
.main_nav ul li:last-child {
    border-right: 1px solid #000;
}
.main_nav ul li a {
    display: block;
    padding-top: 5px;
    height: 20px;
    text-decoration: none;
}
.main_nav ul li a:hover {
    font-weight: bold;
}
.main_nav ul li ul {
    z-index: 9999;
}
.main_nav ul li > ul li {
    display: block;
    float: none;
    width: 25%;
    padding-left: 20px;
    border-bottom: 1px solid #fff;
    border-left: none !important;
    background: #f8f2ce;
    font-weight: normal;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 11px;
    text-align: left;
    opacity: 0.95;
}
.main_nav ul li > ul li:last-child {
    border: none !important;
}

/* コンテンツ */
.contents {
    clear: both;
    min-height: 300px;
}
.home, .about_us, .works, .contact, .privacy, .customer_support {
    margin: 0 auto;
    padding: 60px 0;
}

/* コンタクト概要 */
.overview {
    position: relative;
    clear: both;
    padding-bottom: 15px;
    text-align: center;
}
.page_top {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 99px;
    height: 20px;
}

/* home
***********************************/
.home .one_fifth .info, .home .one_fifth .overlay .info_overlay {
    position: absolute;
    top: 15px;
    left: 2px;
    width: 170px;
}
.home .one_fifth .info h2, .home .one_fifth .overlay .info_overlay h2 {
    margin-bottom: 5px;
}
.home .one_fifth .info h5 {
    font-weight: bold;
    margin-bottom: 5px;
}
.home .one_fifth .info p {
    font-size: 11px;
}
.home .one_fifth .overlay {
    position: absolute;
    top: 0;
    z-index: 100;
}
.home .one_fifth .overlay .info_overlay p {
    margin-bottom: 10px;
    font-size: 11px;
}
.home .one_fifth .overlay a:hover {
    opacity: 0.8;
}
.pt180 {
    padding-top: 180px;
}
.top195 {
    top: 195px !important
}

/* about us - ウェブタマゴとは？
***********************************/
.about_us {
    line-height: 2;
    font-size: 13px;
}

/* about us - 会社概要
***********************************/
.company {
    width: 100%;
    text-align: left;
}
.company th {
    width: 23%;
    padding: 10px 0 10px 30px;
}
.company th.odd, .company td.odd {
    background: #f8f2ce;
}

/* about us - 会社概要
***********************************/
.map {
    margin-top: 10px;
}

/* about us - スタッフ紹介
***********************************/
.staff_img {
    float: left;
    margin-right: 15px;
}
.staff_info {
}
.staff_info p {
    margin: 35px 0 5px 0;
}
.staff_info h1 span {
    font-family: Arabic Typesetting, 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
    font-size: 20px;
}
.staff_info table th {
    width: 130px;
    padding: 5px 0;
    text-align: left;
}
.staff_msg {
	width: 600px;
	height: 170px;
	margin-top: 45px;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	line-height: 2.0em;
}
.staff_msg p {
    font-size: 11px;
}
.staff_msg h2 {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: 'HG行書体';
}

/* works - 制作実績
***********************************/
.works h2 {
    padding-top:15px;
    border-top: 1px solid #ccc;
}
.box {
    position:relative;
    z-index:100;
    float:left;
    width:100%;
    height:100%;
    background:url('../img/works/box.png') no-repeat center center;
    margin-bottom: 30px;
}
.box a {
    display: block;
}
.box p {
    padding-top: 5px;
}
.button_area {
    padding: 10px 0 40px;
}
.button_area img:hover {
    opacity: 0.7;
}

/* works - EC/Official/DTP 個別
***********************************/
.w1000 {
    width: 1000px;
}
.works .category {
    float: left;
    margin-right: 25px;
}
.works .one.list .box {
    background-position: center 40px;
    background-size: 64px 87px;
}
.works .one.list .box p {
    font-size: 11px;
}
.works .one.list .box img {
    width: 164px;
    height: 164px;
    border: 1px solid #ccc;
    padding: 3px;
}

/* contact - お問い合わせ
***********************************/
.contact_form {
    width: 690px;
    margin: 0 auto 50px;
    padding: 35px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background: #f5f5f5;
}
.contact_form table {
    width: 560px;
    margin: 0 auto 35px;
}
.contact_form table th {
    width: 26%;
    text-align: left;
}
.contact_form table td {
    text-align: left;
}
.success  {
    color: #65cf82;
    font-weight: bold;
    font-size: 120%;
}
.require {
    color: #ff0000;
    font-weight: bold;
}
.tel {
    margin: 30px 0 20px;
    font-weight: bold;
    font-size: 30px
}

/* contact - プライバシーポリシー
***********************************/
.privacy h4 {
    margin: 30px 0 10px;
}
.privacy .exp {
    line-height: 200%;;
    font-size: 14px;
}
privacy p {
    line-height: 120%;
}
.privacy table {
    width: 350px;
    margin: 0 auto 20px;
    border-spacing: 5px;
}
.privacy table th {
    width: 65px;
    background: #000;
    color: #fff;
}
.privacy table td {
    text-align: left;
    padding-left: 10px;
}

/* cs - カスタマーサポート業務
***********************************/
.cs .customer_support p {
    /* margin-top: 50px; */
    line-height: 2;
}
.cs span.marker {
    background-color: #F2E8AD;
}
.cs .details h2 {
    text-align: center;
    margin-bottom: 40px;
}
.cs .details h2 img {
    width: 428px;
}
.cs .details-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin: 0 auto;
}
.cs .details-list li {
    list-style: none;
    text-align: center;
}
.cs .details-list .item01,
.cs .details-list .item02 {
    width: 35%;
}
.cs .details-list .item03,
.details-list .item04,
.details-list .item05 {
    width: 32%;
}
.cs .details-list li img {
    width: 200px;
}
.cs .description {
    margin-top: 60px;
    margin-bottom: 60px;
}
.cs .description-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    line-height: 2;
}
.cs .description-list h3 {
    text-align: center;
}
.cs .description-list h3 img {
    width: 428px;
}
.cs .description-list li {
    list-style: none;
}
.cs .description-list .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cs .description-list .content img {
    width: 20%;
}
.cs .description-list .content-desc {
    width: 60%;
}

/*------------------------------------------------
/* 06. フッター
------------------------------------------------*/
footer {
    position: relative;
    clear: both;
    width: 100%;
    padding-top: 20px;
    background: #fff;
    border-top: 2px solid #000;
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
footer a {
    text-decoration: underline;
}
.footer_top {
    clear: both;
    font-size: 11px;
}
.footer_top .one_fifth {
    width: 32.8% !important;
    height: 140px;
    margin: 0 !important;
    border-left: 1px solid #d1d1d1;
}
.footer_top .one_fifth.column_last {
    padding-right: 1% !important;
    border-right: 1px solid #d1d1d1;
}
.footer_top .one_fifth h6 {
    margin-bottom: 5px;
    padding-left: 10px;
    font-weight: bold;
}
.footer_top .one_fifth ul li {
    list-style: none;
    padding-left: 10px;
}
.footer_bottom {
    clear: both;
    padding: 35px 0 30px;
}
.idea {
	text-align: left;
	width: 355px;
	margin-right: auto;
	margin-left: auto;
}
.p_bar {
	font-size: 16px;
	font-weight: bold;
}
