@charset "UTF-8";
/* font */
/* color */
/*
*    Base
* ------------------------------------------------------
*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  color: #59493f;
  font-family: "メイリオ", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* link */
a {
  color: #428bca;
  text-decoration: none;
}
a:hover {
  color: darkgray;
  transition: .5s;
}

/* typo */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  clear: both;
  margin: 0;
}

/* element */
table {
  border-collapse: separate;
  border-spacing: 0;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

hr {
  background-color: #eaeaea;
  border: 0;
  height: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

/*
*    Layout
* ------------------------------------------------------
*/
/* ステッキーフッター */
html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 50px;
}

.bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
}

/* 上下の余白 */
footer {
  padding-top: 20px;
}

/* 背景色 */
.top, .bottom, footer, .stage.even {
  background-color: #fdf9f4;
}

/* 包括 */
.wrapper {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .stage {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .wrapper {
    width: 90%;
  }
}
@media screen and (min-width: 600px) {
  .site {
    float: left;
  }

  .header-block {
    float: right;
  }
}
@media screen and (min-width: 960px) {
  .stage {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  footer {
    padding-bottom: 30px;
  }

  footer {
    background-color: #fff;
  }

  .wrapper {
    width: auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .columns .column-left,
  .columns .column-right {
    width: 50%;
  }
  .columns .column-left {
    float: left;
    padding-right: 2%;
  }
  .columns .column-right {
    float: right;
    padding-left: 2%;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper {
    width: 1000px;
  }
}
/*
*    Project
* ------------------------------------------------------
*/
/* header
-------------------------------- */
/* ロゴ */
.logo {
  margin: 0;
}
.logo a {
  display: block;
  background-position: 0 50%;
}

@media screen and (max-width: 599px) {
  /* ロゴ */
  .logo a {
    width: 140px;
    padding-top: 50px;
    background-image: url(../img/mobile/logo.png);
  }

  /* ヘッダーメニュー */
  .header-navi {
    border-bottom: 1px solid #eaeaea;
    background-color: #fdf9f4;
  }
  .header-navi li {
    border-top: 1px solid #eaeaea;
  }
  .header-navi li a {
    display: block;
    padding: .3em 1em;
  }
  .header-navi li a:hover {
    background-color: #f5e1c9;
  }

  /* ヘッダーメニュー(フッター共通) */
  .header-navi {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .header-navi i {
    margin-right: 5px;
  }
  .header-navi li ul {
    margin-left: 1.5em;
  }

  .third-level span {
    display: inline-block !important;
  }

  /* トグルボタン関連 */
  .header {
    position: relative;
  }
  .header #menubtn {
    position: absolute;
    top: 8px;
    right: 0;
  }

  #menubtn {
    border: none;
    background-color: transparent;
    outline: none;
    padding: 0;
  }
  #menubtn:hover {
    background-color: #59493f;
    color: #fff;
  }
  #menubtn i {
    font-size: 20px;
    font-size: 2rem;
    padding: .3em .4em;
  }

  /* トグルボタンに関連し、メニューを常に非表示に */
  #menu {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  /* ヘッダーメニュー */
  .header-navi {
    display: table;
  }
  .header-navi > li {
    float: left;
  }
  .header-navi > li > a {
    display: table-cell;
    width: 70px;
    height: 70px;
    vertical-align: middle;
  }

  .header-navi {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
  }
  .header-navi > li > a {
    color: #59493f;
  }
  .header-navi > li i {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .header-navi > li span {
    display: block;
  }
  .header-navi li {
    position: relative;
  }
  .header-navi li a:hover {
    background-color: #59493f;
    color: #fff;
  }
  .header-navi li li a {
    display: block;
    padding: .8em;
    color: #fff;
  }
  .header-navi .second-level {
    position: absolute;
    top: 70px;
    background-color: #776154;
  }
  .header-navi .second-level > li > a {
    width: 70px;
  }
  .header-navi .third-level {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: #866e5f;
  }
  .header-navi .third-level li a {
    text-align: left;
    width: 8em;
  }

  /* メニューを見えなくする */
  .third-level,
  .second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
  }

  /* hover時、メニューを見えるようにする */
  .second-level li:hover .third-level,
  .primary-level li:hover .second-level {
    visibility: visible;
    opacity: 1;
  }

  /* トグルボタンに関連し、メニューを消えるのを防ぐ */
  #menu {
    display: block !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  /* ロゴ */
  .logo a {
    width: 160px;
    padding-top: 70px;
    background-image: url(../img/tablet/logo.png);
  }
}
@media screen and (min-width: 960px) {
  /* ロゴ */
  .logo a {
    width: 200px;
    padding-top: 90px;
    background-image: url(../img/logo.png);
  }

  /* ヘッダーメニュー */
  .header-navi > li > a {
    width: 90px;
    height: 90px;
  }

  .header-navi .second-level {
    top: 90px;
  }
  .header-navi .second-level > li > a {
    width: 90px;
  }
  .header-navi .third-level {
    left: 90px;
  }
  .header-navi .third-level li a {
    width: 8em;
  }
}
/* footer-menu
-------------------------------- */
.footer-navi {
  text-align: center;
}

@media screen and (max-width: 959px) {
  /* フッターメニュー */
  .footer-navi {
    border-bottom: 1px solid #eaeaea;
  }
  .footer-navi li {
    border-top: 1px solid #eaeaea;
  }
  .footer-navi li a {
    display: block;
    padding: .3em 1em;
  }
  .footer-navi li a:hover {
    background-color: #f5e1c9;
  }
}
@media screen and (min-width: 960px) {
  /* フッターメニュー */
  .footer-navi li {
    margin: 0 5px;
    display: inline;
  }
}
/* bottom
-------------------------------- */
.bottom {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}

/* sub-menu
-------------------------------- */
.sub-menu {
  text-align: center;
  margin-top: 30px;
  color: #428bca;
}
.sub-menu li {
  counter-increment: list;
}
.sub-menu li:before {
  content: counter(list) ".";
}
.sub-menu li {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

/* contents 共通
-------------------------------- */
/* サブタイトル */
.brackets-title,
.sub-title {
  font-weight: 500;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.brackets-title:before {
  content: '【 ';
}
.brackets-title:after {
  content: ' 】';
}

.brackets-title,
.sub-title {
  text-align: center;
}

@media screen and (max-width: 599px) {
  .brackets-title,
  .sub-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .sub-title {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .brackets-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .sub-title {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 0;
  }

  .brackets-title {
    font-size: 22px;
    font-size: 2.2rem;
  }

  .biz-sample .brackets-title,
  .sub-title {
    text-align: left;
  }
}
/* お問い合わせフォームへのリンク　料金表やサンプルページで利用 */
.contact-link {
  text-align: center;
  margin: 1.5em 0;
}

/* table共通 */
.table {
  margin-right: auto;
  margin-left: auto;
}
.table th, .table td {
  padding: .5em .8em;
}
.table-line {
  border-top: 1px solid #eaeaea;
}
.table-line th, .table-line td {
  border-bottom: 1px solid #eaeaea;
}
.table-line th {
  background-color: #ebe4db;
}

/* 流れについて */
.flow p {
  margin: .5em 0 0;
}

@media screen and (max-width: 959px) {
  .flow li {
    padding: 1em;
    background-color: #ebe4db;
    margin-bottom: 15px;
    text-align: center;
  }
  .flow li {
    position: relative;
  }
  .flow li + li:before {
    position: absolute;
    top: -25px;
    left: 50%;
    font-family: FontAwesome;
    content: '\f078';
    font-size: 20px;
    font-size: 2rem;
    margin-left: -10px;
  }
}
@media screen and (min-width: 960px) {
  .flow ul {
    display: table;
    border-collapse: separate;
    border-spacing: 10px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .flow li {
    display: table-cell;
    padding: 2em 1em;
    background-color: #ebe4db;
    width: 16.6666%;
  }
  .flow li {
    position: relative;
  }
  .flow li + li:before {
    position: absolute;
    top: 50%;
    left: -10px;
    font-family: FontAwesome;
    content: '\f054';
    font-size: 20px;
    font-size: 2rem;
    margin-top: -10px;
  }
  .flow h3 {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: .5em;
  }
  .flow i {
    display: block;
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .flow p {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: justify;
  }
}
/* 料金について */
.charge i {
  display: block;
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  margin-top: 30px;
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .charge i {
    font-size: 50px;
    font-size: 5rem;
  }
}
@media screen and (min-width: 960px) {
  .charge i {
    font-size: 60px;
    font-size: 6rem;
  }
}
/* お取引について */
.dealing .column {
  text-align: center;
}
.dealing .column h3 {
  margin: 1em 0;
}
.dealing .column + .column {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eaeaea;
}

@media screen and (max-width: 599px) {
  .dealing .icon-in-circle {
    width: 60px;
    height: 60px;
  }
  .dealing .icon-in-circle i {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 60px;
  }
}
@media screen and (min-width: 600px) {
  .dealing .icon-in-circle {
    width: 80px;
    height: 80px;
  }
  .dealing .icon-in-circle i {
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 80px;
  }
  .dealing h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .dealing .columns {
    display: table;
    border-left: 1px solid #eaeaea;
  }
  .dealing .column {
    display: table-cell;
    width: 33.3333%;
    padding: 2em 3em;
    border-right: 1px solid #eaeaea;
  }
  .dealing .column p {
    text-align: justify;
    margin-bottom: 0;
  }
  .dealing .column.delivery p {
    text-align: center;
  }
}
/* contents 各ページ
-------------------------------- */
/* Web制作 */
.server {
  background-image: url(../img/serverBG-L.jpg), url(../img/serverBG-R.jpg);
  background-position: 0 50%, 0 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.server .circle-block {
  padding: 2em;
  background-color: #1d1815;
  opacity: .8;
}
.server .contents {
  margin: 0 auto;
  color: #fff;
  width: 90%;
}
.server i {
  display: block;
  text-align: center;
  font-size: 35px;
  font-size: 3.5rem;
}
.server h3 {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 1em 0;
}
.server p {
  text-align: justify;
}

@media screen and (min-width: 600px) {
  .server {
    height: 400px;
    overflow: hidden;
  }
  .server .circle-block {
    width: 600px;
    height: 600px;
    border-radius: 999px;
    margin: -100px auto 0;
    padding-top: 150px;
  }
  .server .contents {
    width: 350px;
  }
  .server i {
    font-size: 45px;
    font-size: 4.5rem;
  }
  .server h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .server {
    background-position: 0 50%, 100% 50%;
    background-size: 60%, 60%;
  }
  .server .circle-block {
    background-color: #59493f;
    opacity: 1;
  }
}
/* 各種印刷 */
.print-catch .sub-title {
  text-align: center;
}

/* 名刺印刷 */
@media screen and (min-width: 960px) {
  .biz-sample .columns {
    position: relative;
  }
  .biz-sample .fude,
  .biz-sample .wagara,
  .biz-sample .biz {
    position: absolute;
    bottom: 0;
  }
  .biz-sample .fude,
  .biz-sample .biz {
    right: 0;
  }
}
@media screen and (min-width: 600px) {
  /* 封筒印刷 */
  .evlp-sample p {
    text-align: center;
  }
}
/* パソコンサポート */
.pc-service .service-title {
  font-weight: 500;
  text-align: center;
}
.pc-service h4 {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}
.pc-service p:last-child {
  margin-bottom: 0;
}

.pc-charge td:last-child {
  text-align: right;
}

@media screen and (max-width: 599px) {
  .pc-service .service-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 959px) {
  .pc-service .column-right {
    margin-top: 50px;
  }
  .pc-service h4 {
    text-align: center;
  }
  .pc-service .circle-icon {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background-color: #e24c38;
    color: #fff;
    margin: 0 auto 15px;
  }
  .pc-service .fa {
    line-height: 60px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .pc-service .service-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .pc-service h4 {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .pc-service .service-title {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: left;
  }
  .pc-service h3 {
    font-family: 'Noto Sans JP', sans-serif;
  }
  .pc-service h4 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 1em;
  }
}
/* 特定商取引に関する表記 */
@media screen and (max-width: 599px) {
  .law table th, .law table td {
    display: block;
  }
  .law table th {
    text-align: left;
  }
  .law table th span {
    color: #e24c38;
  }
  .law table td {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 600px) {
  .law table {
    margin-right: auto;
    margin-left: auto;
    border-top: 1px solid #eaeaea;
  }
  .law table th, .law table td {
    padding: .5em .7em;
    border-bottom: 1px solid #eaeaea;
  }
  .law table th {
    text-align: left;
  }
}
/* お問い合わせフォーム */
.contact table th, .contact table td {
  display: block;
}
.contact table th {
  text-align: left;
}
.contact table th span {
  color: #e24c38;
}
.contact table td {
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .contact table {
    width: 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .contact table {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 960px) {
  .contact table {
    width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}
.mailform {
  /* form */
}
.mailform input,
.mailform textarea {
  font-family: inherit;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #eaeaea;
  padding: .3em .5em;
  background-color: #fdf9f4;
}
.mailform textarea {
  padding: 0.5em;
  resize: vertical;
}
.mailform input[type="button"],
.mailform input[type="checkbox"],
.mailform input[type="radio"],
.mailform input[type="reset"],
.mailform input[type="submit"],
.mailform label {
  cursor: pointer;
}
.mailform input[type="checkbox"],
.mailform input[type="radio"] {
  vertical-align: -2px;
  padding: 0;
}
.mailform input[type="button"],
.mailform input[type="reset"],
.mailform input[type="submit"] {
  -webkit-appearance: button;
  font-size: 12px;
  font-size: 1.2rem;
  border: 0;
  padding: .5em .8em;
  background-color: #59493f;
  color: #fff;
}
.mailform input[type="button"]:hover,
.mailform input[type="reset"]:hover,
.mailform input[type="submit"]:hover {
  background-color: #e24c38;
}
.mailform ::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
  font-family: "メイリオ", "Hiragino Kaku Gothic Pro", sans-serif;
}
.mailform :-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
  font-family: "メイリオ", "Hiragino Kaku Gothic Pro", sans-serif;
}
.mailform ::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
  font-family: "メイリオ", "Hiragino Kaku Gothic Pro", sans-serif;
  opacity: 1;
}
.mailform :-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
  font-family: "メイリオ", "Hiragino Kaku Gothic Pro", sans-serif;
}
.mailform th {
  margin-bottom: 5px;
}
.mailform input[type="text"],
.mailform input[type="email"],
.mailform textarea {
  width: 100% !important;
  border-radius: 3px;
}
.mailform textarea {
  height: 20em !important;
}
.mailform input.yubin {
  width: 90px !important;
  margin-right: 1em;
}
.mailform input#button {
  width: auto;
}
.mailform #submit,
.mailform #reset {
  width: 49%;
}
.mailform #submit {
  margin-right: 1%;
}
.mailform #reset {
  margin-left: 1%;
}

/* カードサンプル（fude / biz) */
.sample-yoko table,
.sample-tate table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sample-yoko td,
.sample-tate td {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}
.sample-yoko img,
.sample-tate img {
  box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* カードサンプル(wagara) */
.wagara-sample ul {
  margin-top: 30px;
  text-align: center;
}
.wagara-sample li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.wagara-sample p {
  margin-top: .5em;
  margin-bottom: 1.2em;
}

/*
*    cosmetic
* ------------------------------------------------------
*/
/* clearfix */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* 表示・非表示 */
.hidden {
  display: none !important;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

@media screen and (max-width: 599px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .hidden-sm {
    display: none !important;
  }

  .visible-sm {
    display: block !important;
  }
}
@media screen and (min-width: 960px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md {
    display: block !important;
  }
}
.notes {
  color: #e24c38;
  margin-left: 1em;
  font-size: 13px;
  font-size: 1.3rem;
}
.notes li:before {
  content: '※';
  margin-left: -1em;
}

.attention {
  color: #e24c38;
}

/* マーカー */
.mark-water {
  background: linear-gradient(transparent 20%, #cbf9ff 40%);
}
.mark-yellow {
  background: linear-gradient(transparent 20%, #fff98f 40%);
}
.mark.mark-pink {
  background: linear-gradient(transparent 20%, #f9d4e4 40%);
}

/* alignment */
.align-left {
  display: inline;
  float: left;
}
.align-right {
  display: inline;
  float: right;
}
.align-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.txt-center {
  text-align: center;
}

/* table　形を崩さず表示 */
.overflow-x {
  min-height: .01%;
  overflow-x: auto;
  white-space: nowrap;
}

/* アイコンを円の中に入れる */
.icon-in-circle {
  margin: 0 auto;
  border-radius: 999px;
  background-color: #e24c38;
  color: #fff;
  text-align: center;
}
.icon-in-circle i {
  display: block;
}

/* 文字と画像の入れ替え */
.logo a, .title {
  height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* title
-------------------------------- */
/* 各ページ・各ステージのタイトル */
.title {
  background-position: 0 0;
}

@media screen and (max-width: 699px) {
  .title {
    width: 300px;
    padding-top: 50px;
    margin: 0 auto 30px;
    /* WEB制作 */
    /* 各種印刷 */
    /* 名刺印刷 */
    /* サンプル */
    /* 封筒印刷 */
    /* パソコンサポート */
    /* 特定商取引に関する表記 */
    /* お問い合わせフォーム */
  }
  .web-catch .title {
    background-image: url(../img/tablet/web_title-catch.gif);
  }
  .web-flow .title {
    background-image: url(../img/tablet/web_title-flow.gif);
  }
  .web-management .title {
    background-image: url(../img/tablet/web_title-management.gif);
  }
  .web-charge .title {
    background-image: url(../img/tablet/web_title-charge.gif);
  }
  .web-dealing .title {
    background-image: url(../img/tablet/web_title-dealing.gif);
  }
  .print-catch .title {
    background-image: url(../img/tablet/print_title-catch.gif);
  }
  .print-slip .title {
    background-image: url(../img/tablet/print_title-slip.gif);
  }
  .print-pvc .title {
    background-image: url(../img/tablet/print_title-pvc.gif);
  }
  .print-flag .title {
    background-image: url(../img/tablet/print_title-flag.gif);
  }
  .print-packing .title {
    background-image: url(../img/tablet/print_title-packing.gif);
  }
  .biz-catch .title {
    background-image: url(../img/tablet/bizcard_title-catch.gif);
  }
  .biz-flow .title {
    background-image: url(../img/tablet/bizcard_title-flow.gif);
  }
  .biz-sample .title {
    background-image: url(../img/tablet/bizcard_title-sample.gif);
  }
  .biz-charge .title {
    background-image: url(../img/tablet/bizcard_title-charge.gif);
  }
  .biz-dealing .title {
    background-image: url(../img/tablet/bizcard_title-dealing.gif);
  }
  .wagara-sample .title {
    background-image: url(../img/tablet/sample_title-wagara.gif);
  }
  .fude-sample .title {
    background-image: url(../img/tablet/sample_title-fude.gif);
  }
  .bizcard-sample .title {
    background-image: url(../img/tablet/sample_title-bizcard.gif);
  }
  .evlp-catch .title {
    background-image: url(../img/tablet/envelope_title-catch.gif);
  }
  .evlp-flow .title {
    background-image: url(../img/tablet/envelope_title-flow.gif);
  }
  .evlp-sample .title {
    background-image: url(../img/tablet/envelope_title-sample.gif);
  }
  .evlp-charge .title {
    background-image: url(../img/tablet/envelope_title-charge.gif);
  }
  .evlp-dealing .title {
    background-image: url(../img/tablet/envelope_title-dealing.gif);
  }
  .pc-service .title {
    background-image: url(../img/tablet/pc_title-service.gif);
  }
  .pc-charge .title {
    background-image: url(../img/tablet/pc_title-charge.gif);
  }
  .law .title {
    background-image: url(../img/tablet/law_title.gif);
  }
  .contact .title {
    background-image: url(../img/tablet/contact_title.gif);
  }
}
@media screen and (min-width: 700px) {
  .title {
    width: 400px;
    padding-top: 60px;
    margin: 0 auto 50px;
    /* WEB制作 */
    /* 各種印刷 */
    /* 名刺印刷 */
    /* サンプル */
    /* 封筒印刷 */
    /* パソコンサポート */
    /* 特定商取引に関する表記 */
    /* お問い合わせフォーム */
  }
  .web-catch .title {
    background-image: url(../img/pc/web_title-catch.png);
  }
  .web-flow .title {
    background-image: url(../img/pc/web_title-flow.png);
  }
  .web-management .title {
    background-image: url(../img/pc/web_title-management.png);
  }
  .web-charge .title {
    background-image: url(../img/pc/web_title-charge.png);
  }
  .web-dealing .title {
    background-image: url(../img/pc/web_title-dealing.png);
  }
  .print-catch .title {
    background-image: url(../img/pc/print_title-catch.png);
  }
  .print-slip .title {
    background-image: url(../img/pc/print_title-slip.png);
  }
  .print-pvc .title {
    background-image: url(../img/pc/print_title-pvc.png);
  }
  .print-flag .title {
    background-image: url(../img/pc/print_title-flag.png);
  }
  .print-packing .title {
    background-image: url(../img/pc/print_title-packing.png);
  }
  .biz-catch .title {
    background-image: url(../img/pc/bizcard_title-catch.png);
  }
  .biz-flow .title {
    background-image: url(../img/pc/bizcard_title-flow.png);
  }
  .biz-sample .title {
    background-image: url(../img/pc/bizcard_title-sample.png);
  }
  .biz-charge .title {
    background-image: url(../img/pc/bizcard_title-charge.png);
  }
  .biz-dealing .title {
    background-image: url(../img/pc/bizcard_title-dealing.png);
  }
  .wagara-sample .title {
    background-image: url(../img/pc/sample_title-wagara.png);
  }
  .fude-sample .title {
    background-image: url(../img/pc/sample_title-fude.png);
  }
  .bizcard-sample .title {
    background-image: url(../img/pc/sample_title-bizcard.png);
  }
  .evlp-catch .title {
    background-image: url(../img/pc/envelope_title-catch.png);
  }
  .evlp-flow .title {
    background-image: url(../img/pc/envelope_title-flow.png);
  }
  .evlp-sample .title {
    background-image: url(../img/pc/envelope_title-sample.png);
  }
  .evlp-charge .title {
    background-image: url(../img/pc/envelope_title-charge.png);
  }
  .evlp-dealing .title {
    background-image: url(../img/pc/envelope_title-dealing.png);
  }
  .pc-service .title {
    background-image: url(../img/pc/pc_title-service.png);
  }
  .pc-charge .title {
    background-image: url(../img/pc/pc_title-charge.png);
  }
  .law .title {
    background-image: url(../img/pc/law_title.png);
  }
  .contact .title {
    background-image: url(../img/pc/contact_title.png);
  }
}
/* 旧ブラウザへの注意喚起 */
.browsehappy {
  margin: 0;
  padding: 10px;
  text-align: center;
  color: #fff;
  background: #c00;
}
.browsehappy a:link, .browsehappy a:visited {
  color: #fff;
}
.browsehappy a:hover, .browsehappy a:active {
  color: #fff;
  text-decoration: none;
}

/* pagetop */
.pagetop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 10%;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 0;
  overflow: hidden;
  padding-top: 50px;
  background: #e24c38 url("../img/pagetop.png") no-repeat 0 0;
  border-radius: 45px;
}

/*
*    Toppage
* ------------------------------------------------------
*/
/* 背景画像を画面いっぱいに表示する */
body.toppage {
  background-image: url(../img/topBG.jpg);
  background-position: 30% center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.toppage {
  /* 英文 */
}
.toppage .top, .toppage .bottom {
  background-color: transparent;
}
.toppage .contents {
  display: table;
  width: 100%;
  height: 80vh;
}
.toppage .contents-inner {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.toppage .contents-inner {
  padding: 0 50px 100px;
  text-align: center;
  color: #fff;
  text-shadow: -1px 1px 3px #59493f;
}
.toppage .sentence h2 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 1em;
}

/* ##### 599px 以下 #####
----------------------------------------------------- */
@media screen and (max-width: 599px) {
  .toppage .contents-inner {
    padding: 0 20px 50px;
  }
  .toppage .copyright br {
    display: block;
  }
  .toppage .portrait h2 {
    font-size: 30px;
    font-size: 3rem;
  }
  .toppage .landscape h2 {
    font-size: 30px;
    font-size: 3rem;
  }
  .toppage .sentence h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}
/* ##### 縦の場合 #####
----------------------------------------------------- */
@media screen and (orientation: portrait) {
  .portrait {
    writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: auto;
  }
  .portrait h2 {
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-size: 50px;
    font-size: 5rem;
    font-weight: 700;
    text-align: left;
  }
  .portrait p {
    text-align: right;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .landscape {
    display: none;
  }
}
/* ##### 横の場合 #####
----------------------------------------------------- */
@media screen and (orientation: landscape) {
  .portrait {
    display: none;
  }

  .landscape h2 {
    font-size: 50px;
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
  }
}
