@charset "utf-8";

/*===============================
 全体共通
===============================*/
body {
  background: #fff;
  color: #333;
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
}

ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width:640px) {
  body {
    font-size: 14px;
  }
}


/*---------- PC・スマホ切り替え ----------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*---------- 背景 ----------*/
.bg_wt {
  background: #fff;
}

.bg_ye {
  background: #f7f2e9;
}

/*---------- 枠 ----------*/
.wrapper {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.wrapper2 {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.wrapper3 {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.box1 {
  border: 10px solid #f7f2e9;
}

@media screen and (max-width:640px) {
  .wrapper {
    padding: 0 15px;
  }
}

/*---------- バッジ ----------*/
.badge_ye {
  background: #ffa801;
  border-radius: 100vw;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 5px 15px;
  margin-bottom: 10px;
}

/*---------- リンク ----------*/
a {
  color: #3571ca;
  transition: all .5s;
}

a:hover {
  text-decoration: none;
}

/*---------- 電話番号 ----------*/
.tel a {
  font-size: 14px;
  color: #333;
  display: inline-block;
  text-align: center;
}

.tel img {
  width: 250px;
}

@media screen and (max-width:960px) {
  .tel img {
    width: 200px;
  }
}

/*---------- ボタン ----------*/
.btn_ye {
  border: 1px solid #ffa801;
  border-radius: 15px;
  background: #ffa801;
  box-shadow:2px 2px 5px rgba(0,0,0,0.2);
  color: #fff;
  display: inline-block;
  font-family:'Zen Kaku Gothic New';
	font-weight:900;
  font-size: 20px;
  padding: 10px 25px;
}

.btn_ye:hover {
  background: #fff;
  color: #ffa801;
}

@media screen and (max-width:640px) {
  .btn_ye {
    font-size: 18px;
    padding: 7px 15px;
  }
}


/*---------- 見出し ----------*/
h2 {
  text-align: center;
  font-family:'Zen Kaku Gothic New';
	font-weight:900;
  font-size: 32px;
  padding-top: 30px;
}

h3 {
  font-family:'Zen Kaku Gothic New';
	font-weight:900;
  font-size: 22px;
}

h4 {
  font-family:'Zen Kaku Gothic New';
	font-weight:900;
  font-size: 22px;
}

@media screen and (max-width:640px) {
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
}


/*---------- テーブル ----------*/
.uk-table caption {
  background: #041d30;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
}

.uk-table th {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  vertical-align: top;
}

.uk-table th,
.uk-table td {
  box-sizing: border-box;
  border-bottom: 1px dotted #ccc;
}

.uk-table tr:last-child th,
.uk-table tr:last-child td {
  border: none;
}

@media screen and (max-width:640px) {
  .uk-table th,
  .uk-table td {
    display: block;
  }
  .uk-table th {
    border-bottom: none;
  }
  .uk-table td {
    padding: 0 12px 16px;
  }
}


/*===============================
 header
===============================*/
header {
  height: 90px;
  position: relative;
  z-index: 150;
}

/*---------- logo ----------*/
header h1 {
  font-size: 12px;
  margin: 15px 0;
}

header h1 a {
  color: #333;
}

header h1 a:hover {
  color: #333;
  opacity: 0.6;
}

header h1 img {
  width: 270px;
  display: inline-block;
}

header h1 br {
  display: none;
}

header .btn_ye {
  font-size: 16px;
  padding: 8px 20px;
  margin-left: 20px;
}

@media screen and (max-width:960px) {
  header h1 br {
    display: block;
  }
}

@media screen and (max-width:748px) {
  header h1 {
    font-size: 10px;
    width: 180px;
  }
  header h1 img {
    width: 180px;
  }
  header .tel {
    display: none;
  }
}



/*===============================
 topページ
===============================*/
/*---------- メインビジュアル ----------*/
.mainvisual {
  background: url(../images/bg_mainvisual.jpg) no-repeat center center / cover;
}

.mainvisual_message {
  color: #fff;
  text-align: center;
  padding: 40px 15px;
}

.mainvisual p {
  font-family:'Zen Kaku Gothic New';
	font-weight: 900;
  line-height: 1.5;
}

.mainvisual p span {
  background: #fff;
  border-radius: 100vw;
  color: #333;
  display: inline-block;
  font-size: 24px;
  padding: 7px 25px;
}

.mainvisual p strong {
  font-size: 44px;
  font-weight: bold;
}

.mainvisual ul {
  margin: 0 auto;
  width: 90%;
}

.mainvisual li img {
  width: 60%;
}

.mainvisual li:nth-of-type(2) img {
  width: 75%;
}

@media screen and (max-width:960px) {
  .mainvisual p span {
    font-size: 18px;
  }
  .mainvisual p strong {
    font-size: 32px;
  }
  .mainvisual ul {
    width: 100%;
  }
  .mainvisual li img {
    width: 80%;
  }
  .mainvisual li:nth-of-type(2) img {
    width: 90%;
  }
}

@media screen and (max-width:640px) {
  .mainvisual p span {
    font-size: 14px;
  }
  .mainvisual p strong {
    font-size: 24px;
  }
}

/*---------- こんなお困りごとありませんか？ ----------*/
.problem {
  font-family:'Zen Kaku Gothic New';
	font-weight:900;
  margin-bottom: 150px;
  position: relative;
}

.problem::after {
color: #ffa801;
  content: "\f0dd";
  font-family: "FontAwesome";
  font-size: 80px;
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translate(-50%,-50%);
}

.problem li {
  text-align: center;
  padding: 15px;
}

.problem li figure {
  text-align: center;
  margin: 0;
}

.problem li figure img {
  width: 70%;
}

.problem li p {
  margin: 0;
  font-size: 16px;
}

@media screen and (max-width:640px) {
  .problem li {
    padding: 15px 8px;
  }
  .problem li figure img {
    width: 100%;
  }
  .problem li p {
    font-size: 14px;
  }
}


/*---------- メリット ----------*/
.merit li {
  text-align: center;
  padding: 15px;
}

.merit li:nth-of-type(1) {
  text-align: left;
}

.merit li:nth-of-type(1) div {
  padding: 0 15px;
}

.merit li:nth-of-type(1) h3 img {
  width: 140px;
}

.merit li h3 {
  margin: 0;
}

@media screen and (max-width:640px) {
  .merit li {
    padding: 15px 5px;
  }
  .merit li:nth-of-type(1) div {
    padding: 0;
  }
  .merit li:nth-of-type(1) h3 img {
    width: 100px;
  }
}


/*---------- 印刷商品 ----------*/
.products li {
  text-align: center;
  padding: 15px;
}

.products li figure {
  margin: 0;
}

.products li figure img {
  width: 80%;
}

.products li h3 {
  margin: 0;
}

.products .box1 li figure img {
  width: 70%;
}

@media screen and (max-width:640px) {
  .products li {
    padding: 15px 5px;
  }
  .products li figure img {
    width: 90%;
  }
  .products .box1 li figure img {
    width: 100%;
  }
}

/*---------- 事例 ----------*/
.case figure {
  margin: 0;
  padding-left: 15px;
}

@media screen and (max-width:640px) {
  .case figure {
    padding-left: 0;
  }
}

/*---------- 設備紹介 ----------*/
.facility figure {
  margin: 0;
  padding-left: 15px;
}

@media screen and (max-width:640px) {
  .facility figure {
    padding-left: 0;
  }
}

/*---------- ご利用の流れ ----------*/
.flow figure {
  margin: 0;
  padding-left: 15px;
}

@media screen and (max-width:640px) {
  .flow figure {
    padding-left: 0;
  }
}

/*---------- 会社概要 ----------*/
.company table {
  border-collapse: collapse;
  box-sizing: border-box;
  width: 100%;
}

.company table th,
.company table td {
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
}

.company table th {
  background: #f4f4f4;
  text-align: left;
  width: 8em;
}

.company table tr:first-child th,
.company table tr:first-child td {
  border-top: 1px solid #ccc;
}

.company table p {
  line-height: 1;
}

@media screen and (max-width:640px) {
  .company table th,
  .company table td {
    display: block;
    width: 100%;
  }
}

/*---------- お問い合わせ ----------*/
.contact .uk-width-1-1 {
  padding: 15px 0;
}

.footer_logo img {
  width: 250px;
}



/*===============================
 footer
===============================*/
footer {
  background: #333;
  color: #fff;
}


