@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "bahnschrift";
  src: url("../fonts/BAHNSCHRIFT.TTF") format("tff");
}

/*	img-layout
------------------------------------ */
/*	font-size  cmn
------------------------------------ */
/*	cmn temp
------------------------------------ */
.fle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fle-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.fle-nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.fle-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fle-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.fle-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fle-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fle-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.fle-left {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.fle-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fle-right {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.fle-align-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.fle-align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.fle-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.fle-align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fle-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

/* --- ▲　fle parts　▲ --- */
/*==================================================
 form  PC
================================================== */
select,
textarea,
input[type='tel'],
input[type='num'],
input[type='text'],
input[type='email'] {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #EEF;
  border-radius: 5px;
  -webkit-box-shadow: 1px 2px 8px 0px rgba(150, 150, 150, 0.1) inset;
          box-shadow: 1px 2px 8px 0px rgba(150, 150, 150, 0.1) inset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #eeeeee;
}

textarea {
  width: 100%;
}

/* ボタン
  -------------------------------------------------- */
input[type='button'],
input[type='submit'] {
  width: 100%;
  height: 100%;
  margin: 0 4px;
  border: none;
  -webkit-appearance: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

input[type='button']:hover,
input[type='submit']:hover {
  opacity: 0.7;
}

.contact-submits-wrap .cmn-btn {
  border: none;
}

.contact-submits-wrap .cmn-btn-span {
  height: 100%;
}

.contact-submits-wrap .back {
  background: #898f9c !important;
}

input[type='button']:hover,
input[type='submit']:hover {
  border: none;
  cursor: pointer;
}

input[type='button'][disabled],
input[type='submit'][disabled] {
  pointer-events: none;
}

input[name="check"] {
  margin-left: auto;
  margin-right: auto;
  background: none;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  input[name="check"] {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

input[name="check"][disabled] {
  color: #898f9c;
}

input[name="check"][disabled]:hover {
  pointer-events: none;
}

input[name="back"] {
  margin-left: auto;
  margin-right: auto;
  background: #898f9c !important;
  color: #333333 !important;
}

input[name="send"] {
  margin-left: auto;
  margin-right: auto;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  input[name="send"] {
    margin-top: 30px !important;
  }
}

/* チェックボックス・ラジオボタン
  -------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  padding: 0 0 0 24px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  input[type=radio] + label,
  input[type=checkbox] + label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 59%;
  left: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #FFF;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 59%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 10px;
  width: 5px;
  height: 5px;
  margin-top: -3px;
  background: #333;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*==================================================
 テーブル
================================================== */
.contact-form-table {
  margin: 50px auto 0;
}

.contact-form-table tr:first-of-type {
  border-top: 1px dashed #333333;
}

.contact-form-table tr:last-of-type {
  border-bottom: 1px dashed #333333;
}

.contact-form-table tr:nth-of-type(n+2) th, .contact-form-table tr:nth-of-type(n+2) td {
  border-top: 1px dashed #333333;
}

.contact-form-table th, .contact-form-table td {
  vertical-align: top;
}

.contact-form-table th {
  width: 33.7%;
  padding: 27px 15px 27px 25px;
  text-align: left;
}

.contact-form-table td {
  padding: 27px 30px 27px 15px;
}

.contact-form-table a {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .contact-form-table th, .contact-form-table td {
    padding: 15px 3%;
  }
  .contact-form-table td {
    padding-top: 0;
  }
  .contact-form-table tr:nth-of-type(n+2) td {
    border-top: none;
  }
}

/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}

/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  text-align: center;
  color: #ff0000;
  float: left;
}

/* 「任意」「必須」マーク */
.required-mark {
  padding: 0 15px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  float: right;
  background: #e74c3c;
  line-height: 28px;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #e74c3c;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  margin: 20px auto 0;
  text-align: center;
}

/* プライバシーポリシー */
label[for="agree"] a {
  color: #333333;
  text-decoration: underline;
}

.inline-privacy-policy {
  height: 252px;
  margin: 63px 0 26px;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* リキャプチャ */
.contact-recaptcha-wrap {
  margin: 30px auto 0;
  display: table;
}

.bold {
  font-weight: bold !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}

.t-left {
  text-align: left !important;
}

.w100 {
  width: 100% !important;
}

.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

.f14 {
  font-size: 14px !important;
}

.f15 {
  font-size: 15px !important;
}

.mt00 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

/************************************************

PC layout

************************************************/
/* =========================================
  base  PC
========================================= */
body {
  /* fontはcmn-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: auto;
  color: #333333;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a[href^="tel:"] {
  pointer-events: none;
}

a {
  display: block;
}

a:hover {
  opacity: .7;
}

a,
input[type=submit],
a img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sec-inner,
.bread-inner {
  width: 1080px;
  margin: auto;
}

.sec-inner.md,
.bread-inner.md {
  width: 1280px;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .sec-inner.md,
  .bread-inner.md {
    width: 1080px;
  }
}

.sp-only, .middle-only {
  display: none !important;
}

/*	parts  PC
------------------------------------ */
.br {
  display: inline-block;
}

.cmn-txt,
#privacy .txt-box
form p {
  line-height: 1.55;
}

.ofj {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/*--- cmn-btn  PC----*/
.cmn-btn {
  display: inline-block;
  width: 260px;
  height: 54px;
  margin: auto;
  border: 1px solid #ff7b22;
  background: #fe8a4a;
  background: -webkit-gradient(linear, left top, right top, from(#fe8a4a), color-stop(29%, #fd9145), to(#fb9e3d));
  background: -webkit-linear-gradient(left, #fe8a4a 0%, #fd9145 29%, #fb9e3d 100%);
  background: linear-gradient(90deg, #fe8a4a 0%, #fd9145 29%, #fb9e3d 100%);
  line-height: 54px;
  text-align: center;
  position: relative;
}

.cmn-btn-wrap {
  text-align: center;
}

.cmn-btn-span {
  color: #fff;
  position: relative;
}

.cmn-btn-span::after {
  content: '';
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
}

.cmn-btn.arrow-md .cmn-btn-span::after {
  right: -30px;
}

/*--- cmn-table  PC ----*/
table {
  width: 100%;
}

table.cmn-table tr:nth-of-type(2n-1) th, table.cmn-table tr:nth-of-type(2n-1) td {
  background: #eeeeee;
}

table.cmn-table th, table.cmn-table td {
  padding: 17px 0;
  vertical-align: middle;
  white-space: pre-line;
}

table.cmn-table th {
  width: 33%;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
}

table.cmn-table td {
  padding-left: 54px;
}

/*	heading  PC
------------------------------------ */
.head-type01 {
  text-align: center;
}

.head-type01-en {
  display: block;
  margin-top: 23px;
  font-family: "bahnschrift", sans-serif;
  color: #ff7b22;
  letter-spacing: .1em;
}

.head-type01-en::after {
  content: '';
  display: block;
  width: 44px;
  height: 8px;
  margin: auto;
  border-bottom: 4px dotted #ffe6c6;
}

.head-type02 {
  text-align: center;
  font-family: "游明朝", YuMincho, "Yu Mincho", serif;
  font-weight: bold;
  font-size: 46px;
  font-size: 4.6rem;
  letter-spacing: 0;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .head-type02 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.head-type02::after {
  content: '';
  display: block;
  width: 44px;
  height: 8px;
  margin: 19px auto 0;
  border-bottom: 4px dotted #ff7b22;
}

.head-type03 {
  padding: 10.5px 0;
  border-radius: 10px;
  background: #fec4a4;
  background: -webkit-gradient(linear, left top, right top, from(#fec4a4), to(#fdce9e));
  background: -webkit-linear-gradient(left, #fec4a4 0%, #fdce9e 100%);
  background: linear-gradient(90deg, #fec4a4 0%, #fdce9e 100%);
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .head-type03 {
    font-size: 20px;
    font-size: 2rem;
  }
}

/*	pagetop  PC
------------------------------------ */
.fixed {
  display: block;
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: 141px;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 20;
}

.fixed a {
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.fixed a:not(.fixed-contact) {
  text-align: right;
}

.dis-none {
  visibility: hidden;
  opacity: 0;
}

.slide-none {
  right: -500px;
}

.top-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.top-btn:hover {
  opacity: .7;
}

/*	breadcrumb  PC
------------------------------------ */
.breadcrumb {
  position: relative;
}

.breadcrumb li {
  font-size: 14px;
  font-size: 1.4rem;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.breadcrumb.detail-bg {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

.breadcrumb a {
  display: inline-block;
  color: #333333;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: .7;
}

.breadcrumb .fle {
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  top: 9px;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .breadcrumb .fle {
    max-width: 1080px;
  }
}

.breadcrumb .fle li:not(:first-child)::before {
  content: '>';
  padding: 0 5px;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 60px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagenation li a {
  width: 100%;
  height: inherit;
  color: #333333;
  line-height: 60px;
  position: relative;
  z-index: 10;
}

.pagenation li {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #ff7b22;
  background: #fff;
  line-height: 60px;
  position: relative;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.pagenation li a, .pagenation li span {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .pagenation li a, .pagenation li span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .pagenation li a, .pagenation li span {
    font-size: 20px;
    font-size: 2rem;
  }
}

.pagenation li:hover {
  background: #ff7b22;
}

.pagenation li:hover a, .pagenation li:hover span {
  color: #fff;
  opacity: 1;
}

.pagenation li + li {
  margin-left: 20px;
}

.pagenation-arrow.back::before,
.pagenation-arrow.next::before {
  content: "";
  width: 8px;
  height: 8px;
  margin: auto;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.pagenation-arrow.back::before {
  background: url(../img/common/back-arrow.png) no-repeat center/contain;
}

.pagenation-arrow.next::before {
  background: url(../img/common/next-arrow.png) no-repeat center/contain;
}

.pagenation .current {
  background: #ff7b22;
}

.pagenation .current span {
  color: #fff;
}

/*	detail pagenation  PC
------------------------------------ */
.detail .pagenation-inner {
  max-width: 1080px;
  margin: auto;
  padding-bottom: 145px;
  position: relative;
}

.detail .pagenation-inner li {
  position: absolute;
  top: 0;
}

.detail .top-works {
  margin: auto;
  left: 0;
  right: 0;
}

.detail .back {
  left: 0;
}

.detail .next {
  right: 0;
}

.detail .data-nav a {
  display: inline-block;
  color: #333333;
  padding: 5px 0;
}

.detail .data-nav {
  margin: 60px auto 0;
  position: relative;
}

.detail .data-nav .to-works {
  display: inline-block;
  width: 89px;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .detail .data-nav .to-works {
    margin: auto;
  }
}

.detail .to-works .cmn-btn {
  color: #fff;
  line-height: 36px;
  height: 45px;
}

.detail .to-works .cmn-btn::after {
  content: none;
}

.detail .back, .detail .next, .detail .to-works {
  position: relative;
}

.detail .back a, .detail .next a, .detail .to-works a {
  width: 89px;
  height: 42px;
  background: #fe8a4a;
  background: -webkit-gradient(linear, left top, right top, from(#fe8a4a), color-stop(29%, #fd9145), to(#fb9e3d));
  background: -webkit-linear-gradient(left, #fe8a4a 0%, #fd9145 29%, #fb9e3d 100%);
  background: linear-gradient(90deg, #fe8a4a 0%, #fd9145 29%, #fb9e3d 100%);
  line-height: 34px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.detail .back::after, .detail .next::after, .detail .to-works::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.detail .back::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 12px;
}

.detail .back:hover::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.detail .next::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 12px;
}

.detail .next:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*	ggmap  PC
------------------------------------ */
.ggmap {
  width: 50%;
  height: 0;
  padding-top: 500px;
  position: relative;
}

.ggmap iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================================
  header  PC
========================================= */
@media screen and (min-width: 768px) {
  /* 上部固定 */
  .is-fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}

/*	headline  PC
------------------------------------ */
.seo-txt {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0;
  position: absolute;
  right: 14px;
  bottom: 13px;
}

#header .bg {
  background: url(../img/common/headline-bg.jpg) repeat center/cover;
}

#header .sec-inner {
  padding: 14px 0 0;
}

.headline {
  position: relative;
  z-index: 1010;
}

.info-tel {
  width: 220px;
  padding: 4px 0 7px;
  border: 1px solid #413028;
  text-align: center;
}

.info-tel-txt {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  color: #333333;
  letter-spacing: 0;
}

.info-tel-num {
  margin-top: 2px;
}

.info-fb {
  margin-left: 20px;
}

/*	gnav  PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .clone-nav {
    background: url(../img/common/headline-bg.jpg) repeat center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    opacity: 0;
  }
  .clone-nav .gnav-list {
    margin-top: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clone-nav .cmn-btn {
    margin: 5px 0 0 52px;
  }
  .is-show {
    opacity: 1;
  }
}

#gnav .cmn-btn {
  width: 180px;
  height: 42px;
  line-height: 42px;
}

.gnav-list {
  margin-top: 18px;
  padding: 8px 0 11px;
}

.gnav-item:nth-of-type(n+2)::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 24px;
  margin: 3px auto 0;
  border-left: 4px dotted #ffe6c6;
}

.gnav-item.g-btn .cmn-btn {
  margin-left: 52px;
}

.gnav-item.g-btn::before {
  content: none;
}

.gnav-link {
  display: inline-block;
  padding: 0 33px 0 26px;
  text-align: center;
  color: #333333;
}

.gnav-link-en {
  margin-top: 4px;
  color: #ff7b22;
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .gnav-link-en {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.gnav-link-en {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "bahnschrift", sans-serif;
  letter-spacing: .05em;
}

.gnav-link.pl0 {
  padding-left: 0;
}

.gnav-link.pr0 {
  padding-right: 0;
}

/* =========================================
  footer  PC
========================================= */
#footer .bg {
  background: #eeeeee;
}

#footer .f-txt-wrap {
  width: 100%;
  max-width: 390px;
  margin-left: 100px;
  padding: 59px 0 44px;
}

#footer .f-access {
  margin-top: 34px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  #footer .f-access {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#footer .f-tel, #footer .f-fax {
  margin-top: 17px;
}

#footer .f-nav {
  margin-top: 47px;
}

#footer .f-nav-link {
  font-size: 15px;
  font-size: 1.5rem;
  color: #333333;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  #footer .f-nav-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#footer .f-nav-link:nth-of-type(n+2) {
  margin-left: 23px;
  padding-left: 23px;
  border-left: 1px solid #958f8d;
}

#footer .cmn-btn-wrap {
  margin-top: 20px;
  text-align: left;
}

#footer .cmn-btn-span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .cmn-btn-span::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: auto;
  background: url(../img/common/f-fb-ico.png) no-repeat center/contain;
}

#footer .cmn-btn-span::after {
  position: static;
}

#footer .copyright {
  margin-top: 26px;
  color: #333333;
}

#footer .copyright small {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

#footer .copyright a {
  display: inline-block;
  color: #333333;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* =========================================
  main  PC
========================================= */
/*	mv  PC
------------------------------------ */
.mv {
  background: url(../img/common/mv.jpg) no-repeat center/cover;
  position: relative;
}

.mv-catch-wrap {
  padding: 256px 0 242px;
  text-align: center;
  position: relative;
}

.mv-catch01 {
  width: 720px;
  margin: auto;
  padding: 37px 0 88px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.mv-catch01::before, .mv-catch01::after {
  content: '';
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}

.mv-catch01::before {
  width: 160px;
  height: 134px;
  background: url(../img/common/catch-ico.png) no-repeat center/contain;
  top: 221px;
  left: -600px;
}

.mv-catch01::after {
  width: 170px;
  height: 180px;
  background: url(../img/common/catch-area.png) no-repeat center/contain;
  top: 176px;
  right: -711px;
}

.mv-catch-main02 {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed #999999;
}

.mv-catch02 {
  width: 420px;
  margin: auto;
  padding: 13px 20px 7px;
  border-radius: 18px;
  background: #00a6e8;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 166, 232, 0.9)), to(rgba(32, 138, 232, 0.9)));
  background: -webkit-linear-gradient(left, rgba(0, 166, 232, 0.9) 0%, rgba(32, 138, 232, 0.9) 100%);
  background: linear-gradient(90deg, rgba(0, 166, 232, 0.9) 0%, rgba(32, 138, 232, 0.9) 100%);
  color: #fff;
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
}

.mv-catch-sub02 {
  margin-top: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .mv-catch-sub02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.mv-catch-sub03 {
  margin-top: 7px;
  padding: 1px 0;
  border-radius: 9px;
  background: #fffed6;
  color: #ff7b22;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  letter-spacing: .05em;
}

.mv-catch-sub04 {
  margin-top: 9px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .1em;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
}

/*	cmn parts  PC
------------------------------------ */
.accent {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .05em;
  color: #0073da;
}

@media screen and (max-width: 767px) {
  .accent {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.cmn-tag-list:nth-of-type(n+2) {
  margin-left: 60px;
}

/*	sec01  PC
------------------------------------ */
#sec01 .bg {
  background: url(../img/top/sec01-bg.jpg) repeat center;
}

#sec01 .sec-inner {
  padding: 131px 0 147px;
  position: relative;
}

#sec01 .flex-txt-wrap {
  position: relative;
}

#sec01 .flex-txt-wrap::before {
  content: '';
  display: inline-block;
  width: 292px;
  height: 259px;
  background: url(../img/top/sec01-ico.png) no-repeat center/contain;
  position: absolute;
  top: -44px;
  left: -182px;
}

#sec01 .flex-txt-box {
  width: 100%;
  max-width: 495px;
  margin-top: 40px;
}

#sec01 .cmn-txt:nth-of-type(n+2) {
  margin-top: 28px;
}

#sec01 .cmn-btn-wrap {
  margin-top: 38px;
}

#sec01 figure {
  width: 659px;
  height: 680px;
  position: absolute;
  top: 98px;
  left: 50%;
}

#sec01 h2, #sec01 .flex-txt-box {
  position: relative;
}

/*	sec02  PC
------------------------------------ */
#sec02 .bg {
  background: url(../img/top/sec02-bg.jpg) no-repeat center/cover;
}

#sec02 .sec-inner {
  padding: 100px 0;
}

#sec02 h2 {
  text-align: center;
}

#sec02 .txt-box {
  width: 100%;
  max-width: 980px;
  margin: 50px auto 0;
  padding: 35px 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
  z-index: 10;
}

#sec02 .txt-box::before {
  content: '';
  display: inline-block;
  width: 190px;
  height: 157px;
  background: url(../img/top/sec02-catch.png) no-repeat center/contain;
  position: absolute;
  top: -30px;
  right: 67px;
}

#sec02 .txt-box::after {
  content: '';
  display: inline-block;
  width: 201px;
  height: 179px;
  background: url(../img/top/sec02-ico.png) no-repeat center/contain;
  position: absolute;
  bottom: 61px;
  right: -126px;
  z-index: 1;
}

#sec02 .cmn-txt:nth-of-type(n+2) {
  margin-top: 30px;
}

#sec02 .cmn-tag {
  margin: 50px auto 0;
}

/*	works  PC
------------------------------------ */
#works .bg {
  background: url(../img/top/sec03-bg.jpg) no-repeat center/cover;
}

#works .sec-inner {
  padding: 100px 0;
}

#works .list {
  margin: 40px auto 0;
}

#works .list-item {
  width: 520px;
  padding: 20px 20px 60px;
  background: url(../img/common/headline-bg.jpg) repeat center;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  position: relative;
}

#works .list-item::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #0073da;
  border-right: 3px solid #0073da;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: 28px;
  left: -8px;
  right: 0;
}

@media screen and (min-width: 768px) {
  #works .list-item:nth-of-type(n+3) {
    margin-top: 40px;
  }
}

#works .list-ttl {
  margin-top: 15px;
  text-align: center;
  font-family: "bahnschrift", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  color: #0073da;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #works .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#works .fancybox {
  width: 230px;
  height: 0;
  padding-top: 228px;
  background: #fff;
  position: relative;
}

#works .fancybox .ofj {
  width: 94%;
  height: 94%;
  margin: auto;
}

#works .cmn-btn-wrap {
  margin-top: 51px;
}

/*	top-news  PC
------------------------------------ */
.top-news .w100 {
  width: 100%;
  max-width: 800px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news .bg {
  background: #fff;
  background-image: -webkit-linear-gradient(left, #f3f3f3 1px, transparent 0), -webkit-linear-gradient(#f3f3f3 1px, transparent 0);
  background-image: linear-gradient(90deg, #f3f3f3 1px, transparent 0), linear-gradient(#f3f3f3 1px, transparent 0);
  background-size: 10px 10px;
}

.top-news .sec-inner {
  padding: 90px 0 100px;
}

.top-news .head-type01 {
  margin-top: 40px;
}

.top-news .flex-article {
  padding: 17px 30px 13px;
  border-bottom: 2px solid #c9c9c9;
  background: #fff;
}

.top-news .flex-article:nth-of-type(n+2) {
  margin-top: 10px;
}

.top-news .flex-article-wrap {
  width: 100%;
  max-width: 800px;
  margin-left: 100px;
}

.top-news .flex-time {
  font-size: 15px;
  font-size: 1.5rem;
  color: #333;
  letter-spacing: .025em;
}

@media screen and (max-width: 767px) {
  .top-news .flex-time {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.top-news .flex-tag {
  margin-left: 18px;
  padding: 3px 4px;
  background: #0073da;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.top-news .flex-ttl {
  margin-left: 13px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333333;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .top-news .flex-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.top-news .cmn-btn-wrap {
  margin-top: 50px;
}

/*	cmn-contact  PC
------------------------------------ */
#cmn-contact .bg {
  background: url(../img/common/cmn-contact-bg.jpg) no-repeat center/cover;
}

#cmn-contact .sec-inner {
  width: 902px;
  padding: 100px 0;
}

#cmn-contact .head-type01-en {
  font-size: 14px;
  font-size: 1.4rem;
}

#cmn-contact .cmn-contact-catch {
  margin-top: 45px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #999999;
  text-align: center;
}

#cmn-contact .cmn-contact-flex {
  margin: 30px auto 0;
}

#cmn-contact .cmn-contact-flex-wrap {
  border-radius: 16px;
}

#cmn-contact .cmn-contact-tel {
  width: 410px;
  padding: 22px 0 14px;
  background: #fff;
  text-align: center;
}

#cmn-contact .cmn-contact-fax {
  margin-top: 9px;
}

#cmn-contact .cmn-contact-txt {
  margin-top: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #cmn-contact .cmn-contact-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#cmn-contact .cmn-contact-link {
  width: 410px;
  height: 140px;
  padding: 30px 0;
  text-align: center;
}

#cmn-contact .cmn-contact-link::before {
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  margin: 0 auto 15px;
  background: url(../img/common/cmn-contact-mail-ico.png) no-repeat center/contain;
}

#cmn-contact .cmn-contact-mail {
  background: #fe8a4a;
  background: -webkit-gradient(linear, left top, right top, from(#fe8a4a), color-stop(29%, #fd9145), to(#fb9e3d));
  background: -webkit-linear-gradient(left, #fe8a4a 0%, #fd9145 29%, #fb9e3d 100%);
  background: linear-gradient(90deg, #fe8a4a 0%, #fd9145 29%, #fb9e3d 100%);
}

/* =========================================
  sub  PC
========================================= */
/*	sub mv  PC
------------------------------------ */
.sub .mv {
  background: url(../img/common/sv.jpg) no-repeat center/cover;
}

.sub .mv-catch01 {
  padding: 34px 80px 22px;
}

.sub .mv-catch01::before {
  top: 113px;
}

.sub .mv-catch01::after {
  content: none;
}

.sub .mv-catch-wrap {
  padding: 145px 0 168px;
}

.sub .mv-catch-main02 {
  display: block;
}

/*	site  PCSP
------------------------------------ */
#site .sec-inner {
  width: 800px;
  margin: auto;
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  #site .sec-inner {
    padding: 50px 15px;
  }
}

#site .site-ul {
  margin-top: 30px;
}

#site .site-li {
  border-bottom: 1px solid #333333;
}

#site .site-link {
  display: block;
  padding: 15px 2%;
  color: #333333;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#site .site-link:hover {
  opacity: .7;
}

/*	e404  PCSP
------------------------------------ */
#e404 .sec-inner {
  padding: 120px 6%;
}

#e404 .top {
  display: inline-block;
  color: #333333;
  text-decoration: underline;
}

#e404 .section-content {
  text-align: center;
}

@media screen and (max-width: 767px) {
  #e404 .sec-inner {
    padding: 50px 20px;
  }
  #e404 .section-content {
    margin-top: 0;
  }
}

/*	privacy  PC
------------------------------------ */
#privacy .sec-inner {
  padding: 0 0 50px;
}

#privacy .head-type03 {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  #privacy .head-type03 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#privacy .sec01 .sec-inner {
  padding: 120px 0 50px;
}

#privacy .txt-box {
  margin-top: 20px;
}

#privacy .section:last-of-type {
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .sub.privacy .catch-wrap {
    left: 19.5%;
  }
  .sub.privacy .catch-txt::before {
    left: 53px;
  }
  .sub.privacy .catch-txt::after {
    right: 153px;
  }
}

/*	business  PC
------------------------------------ */
#business {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

#business .first-wrap {
  padding: 90px 0;
  text-align: center;
}

#business .cmn-txt {
  line-height: 2;
}

#business .sec01 .bg {
  background: url(../img/business/sec01-txt-bg.jpg) no-repeat center/cover;
}

#business .sec01 .sec-inner {
  padding: 99px 0 130px;
}

#business .sec01 .txt-box {
  margin-top: 45px;
  padding: 0 20px;
  text-align: center;
}

#business .sec01 .cmn-txt {
  line-height: 2;
}

#business .sec01 .cmn-txt:nth-of-type(n+2) {
  margin-top: 38px;
}

#business .sec01 .box {
  width: 1000px;
  margin: 0 auto 40px;
  padding: 40px 40px 30px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
}

#business .sec01 .box-wrap {
  text-align: center;
  position: relative;
  top: -60px;
}

#business .sec01 .box-txt {
  margin-top: 20px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0;
  line-height: 2.1;
}

@media screen and (max-width: 767px) {
  #business .sec01 .box-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

#business .sec02 .bg {
  background: url(../img/business/sec02-bg.jpg) no-repeat center/cover;
}

#business .sec02 .sec-inner {
  padding: 99px 0 90px;
}

#business .sec02 .txt-box {
  margin-top: 30px;
  text-align: center;
}

#business .sec02 .cmn-txt:nth-of-type(n+2) {
  margin-top: 34px;
}

#business .sec02 .box {
  width: 680px;
  margin: auto;
  padding: 25px 70px 23px;
  border-radius: 20px;
  background: #19afea;
  background: -webkit-gradient(linear, left top, right top, from(#19afea), to(#3695ea));
  background: -webkit-linear-gradient(left, #19afea 0%, #3695ea 100%);
  background: linear-gradient(90deg, #19afea 0%, #3695ea 100%);
  text-align: center;
}

#business .sec02 .box-wrap {
  margin: 100px auto 0;
}

#business .sec02 .box-txt {
  margin: 20px auto 0;
  padding: 9px 0;
  border-radius: 9px;
  background: #fffed6;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ff7b22;
  line-height: 1.625;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  #business .sec02 .box-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*	recruit  PC
------------------------------------ */
#recruit .sec01 .bg {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

#recruit .sec01 .cmn-txt {
  line-height: 1.8;
}

#recruit .sec01 .sec-inner {
  padding: 100px 0 127px;
}

#recruit .sec01 .head-type02 {
  margin-top: 80px;
}

#recruit .sec01 .first-txt-box {
  margin-top: 40px;
}

#recruit .sec01 .first-txt-box .cmn-txt:nth-of-type(n+2) {
  margin-top: 33px;
}

#recruit .sec01 .list {
  margin: 56px auto 0;
}

#recruit .sec01 .list-item:nth-of-type(n+2) {
  margin-top: 63px;
}

#recruit .sec01 .list-txt-box {
  width: 100%;
  max-width: 520px;
  margin-top: 20px;
}

#recruit .sec01 .list .cmn-txt {
  margin-top: 23px;
  padding: 0 15px;
}

#recruit .sec01 .head-type03 {
  padding-left: 29px;
}

#recruit .sec02 .sec-inner {
  padding: 100px 0;
}

#recruit .sec02 .list {
  margin-top: 50px;
}

#recruit .sec02 .list-item {
  padding: 20px 0;
  border-bottom: 1px solid #cdcdcd;
}

#recruit .sec02 .list-q-txt, #recruit .sec02 .list-a-txt {
  width: 100%;
  max-width: 1020px;
  padding: 0 40px;
}

#recruit .sec02 .list-q-txt {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #recruit .sec02 .list-q-txt {
    font-size: 20px;
    font-size: 2rem;
  }
}

#recruit .sec02 .list-a-wrap {
  margin-top: 20px;
}

#recruit .sec02 .list-a-txt {
  font-size: 20px;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #recruit .sec02 .list-a-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#recruit .sec03 .bg {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

#recruit .sec03 .sec-inner {
  padding: 100px 0;
}

#recruit .sec03 .cmn-table {
  margin-top: 20px;
}

#recruit .sec03 .head-type03 {
  margin-top: 50px;
  text-align: center;
}

#recruit .sec03 .head-type03:nth-of-type(n+2) {
  margin-top: 80px;
}

#recruit .sec03 .bnr-wrap {
  margin: 80px auto 0;
  text-align: center;
}

#recruit .sec03 .bnr-box {
  width: 680px;
  margin: auto;
  padding: 23px 0;
  border-radius: 17px;
  background: #fda085;
  background: -webkit-gradient(linear, left top, right top, from(#fda085), color-stop(41%, #f9bf72), to(#f6d365));
  background: -webkit-linear-gradient(left, #fda085 0%, #f9bf72 41%, #f6d365 100%);
  background: linear-gradient(90deg, #fda085 0%, #f9bf72 41%, #f6d365 100%);
}

#recruit .sec03 .bnr-tel-wrap {
  width: 410px;
  margin: 21px auto 0;
  padding: 22px 0 12px;
  border-radius: 17px;
  background: #fff;
}

#recruit .sec03 .bnr-txt {
  margin-top: 13px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #recruit .sec03 .bnr-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#recruit .sec04 .sec-inner {
  padding: 100px 0;
}

#recruit .sec04 form {
  margin-top: 50px;
}

/*	company  PC
------------------------------------ */
#company .sec01 .bg {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

#company .sec01 .sec-inner {
  padding: 90px 0 100px;
}

#company .sec01 .cmn-table {
  margin-top: 50px;
}

#company .sec01 .cmn-table .accent {
  display: inline-block;
  margin-left: 36px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ff7b22;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  #company .sec01 .cmn-table .accent {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#company .sec01 .cmn-table .url {
  color: #333333;
}

@media screen and (min-width: 768px) {
  #company .sec01 .cmn-btn {
    width: 410px;
  }
}

#company .sec01 .cmn-btn-wrap {
  margin-top: 60px;
}

/*	sub blog  PC
------------------------------------ */
.sub #blog .bg {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

.sub #blog .sec-inner {
  padding: 94px 0 100px;
}

.sub #blog .list-tag {
  display: inline-block;
  margin-left: 15px;
}

.sub #blog .tag-nav {
  margin-top: 60px;
  padding: 35px 35px 25px;
  border: 3px dotted #a1a1a1;
  border-radius: 18px;
}

.sub #blog .tag-head {
  word-break: keep-all;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #333333;
}

.sub #blog .tag-ul {
  margin-left: 34px;
}

.sub #blog .tag-li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.sub #blog .tag-link {
  padding: 0 5px;
  background: #0073da;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .sub #blog .tag-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sub #blog .blog-ul {
  margin-top: 80px;
}

.sub #blog .blog-li:nth-of-type(n+2) {
  margin: 40px auto 0;
}

.sub #blog .blog-detail-box {
  width: 100%;
}

.sub #blog .blog-txt-wrap {
  width: 100%;
}

.sub #blog .blog-detail-box.md .blog-txt-wrap {
  width: 100%;
  max-width: 800px;
}

.sub #blog .head-type03 {
  padding-left: 30px;
  padding-right: 30px;
  color: #333333;
}

.sub #blog figure {
  width: 230px;
  height: 0;
  padding-top: 208px;
  border: 6px solid #fff;
  position: relative;
}

.sub #blog .cmn-txt {
  margin-top: 16px;
  color: #333333;
}

.sub #blog .detail .sec-inner {
  max-width: 800px;
  margin: auto;
}

.sub #blog .detail .head-type03, .sub #blog .detail .cmn-txt {
  color: #333333;
}

.sub #blog .detail .head-type03 {
  border-bottom: 1px solid #fff;
}

.sub #blog .detail time {
  display: block;
  margin-top: 10px;
  padding: 0;
  background: none;
  color: #333333;
}

.sub #blog .detail figure {
  width: 55.5%;
  padding-top: 43.4%;
  margin: 30px auto 0;
}

.sub #blog .detail .cmn-txt {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .sub #blog .detail .cmn-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sub #blog .detail .pagenation-inner {
  margin: auto;
  padding-bottom: 100px;
}

/*	sub contact  PC
------------------------------------ */
#contact {
  background: url(../img/common/headline-bg.jpg) repeat center;
}

#contact .sec-inner {
  padding: 100px 0;
}

#contact .cmn-txt {
  margin-top: 50px;
  text-align: center;
}

#contact .cmn-contact-tel {
  margin: 50px auto 0;
}

@media screen and (min-width: 768px) {
  #contact .sec01 .cmn-btn {
    width: 360px;
  }
}

#contact .sec01 .cmn-btn-wrap {
  margin: 50px auto 0;
}

/************************************************

  SP layout

************************************************/
@media screen and (max-width: 767px) {
  /* =========================================
  base  SP
========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a img {
    pointer-events: all;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
------------------------------------ */
  .sec-inner,
  .bread-inner,
  .middle-inner,
  .lg-inner
.sec-inner.md {
    width: 100% !important;
  }
  /* ---- cmn-btn  SP ---- */
  .cmn-btn {
    height: 45px;
    line-height: 45px;
  }
  .cmn-btn-span {
    top: -2px;
  }
  .cmn-btn-span::after {
    bottom: -4px;
  }
  /* ---- cmn-table  SP ---- */
  table th, table td {
    display: block;
    width: 100%;
  }
  table.cmn-table {
    width: 100%;
  }
  table.cmn-table tr:nth-of-type(n+2) th {
    margin: 10px auto 0;
  }
  table.cmn-table th, table.cmn-table td {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 10px;
    text-align: center;
    border: none;
  }
  table.cmn-table th {
    padding-top: 12px;
    padding-bottom: 0;
    border-radius: 10px 10px 0 0;
  }
  table.cmn-table td {
    padding-top: 2px;
    border-radius: 0 0 10px 10px;
  }
  table.cmn-table td::before {
    content: none;
    display: block;
    width: 50px;
    height: 1px;
    margin: 10px auto;
  }
  /*	heading  SP
------------------------------------ */
  .head-type01-ja {
    display: inline-block;
    margin: auto;
  }
  .head-type01-ja.sp4 {
    width: 100px;
  }
  .head-type01-ja.sp5 {
    width: 150px;
  }
  .head-type01-en {
    margin-top: 13px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .head-type02 {
    margin: auto;
    font-size: 20px;
    font-size: 2rem;
  }
  .head-type02::after {
    margin-top: 2px;
  }
  .head-type02.sp4 {
    width: 100px;
  }
  .head-type02.sp6 {
    width: 152px;
  }
  .head-type02.sp10 {
    width: 216px;
  }
  .head-type03 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  /*	pagetop  SP
------------------------------------ */
  .fixed {
    width: 150px;
    z-index: 0;
  }
  .fixed a {
    display: block;
    width: 100px;
    margin: 0 0 0 auto;
  }
  .top-btn {
    width: 50px;
    margin-left: auto;
  }
  .top-btn.top {
    bottom: 530px;
  }
  .slide-none {
    bottom: 10%;
  }
  /*  breadcrumb  SP
------------------------------------ */
  .breadcrumb .bread-inner {
    padding: 0 2% 0;
  }
  .breadcrumb.detail-bg .fle {
    position: static;
  }
  /*	pagenation  SP
------------------------------------ */
  .pagenation {
    margin: 60px auto 0;
  }
  .pagenation-inner .cmn-btn {
    width: 105px;
    min-width: 100px;
  }
  .pagenation-inner .cmn-btn span {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pagenation-inner .cmn-btn span::after {
    content: none;
  }
  .pagenation-inner .back .cmn-btn,
  .pagenation-inner .next .cmn-btn {
    width: 60px;
  }
  .pagenation li {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    line-height: 40px;
  }
  .pagenation li + li {
    margin-left: 2%;
  }
  .pagenation span,
  .pagenation li a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
  }
  .detail .pagenation-inner {
    padding: 0;
  }
  .back::before, .next::before {
    width: 11px;
    height: 11px;
  }
  .data-nav {
    margin-top: 30px;
    padding-bottom: 50px;
  }
  .data-nav .to-works {
    margin: auto;
  }
  /* =========================================
  header  SP
========================================= */
  /*	gnav  SP
------------------------------------ */
  #gnav {
    visibility: hidden;
    width: 100%;
    height: 100%;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 14px;
    font-size: 1.4rem;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 1000;
    color: #fff;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
    overflow-y: scroll;
  }
  #gnav .gnav-item.g-btn {
    text-align: center;
  }
  #gnav .gnav-item.g-fb {
    text-align: center;
  }
  #gnav .info-fb {
    margin: 20px auto 0;
  }
  #gnav .cmn-btn {
    margin: 20px auto 0;
  }
  #gnav .info-time {
    margin-top: 25px;
  }
  #gnav .info-time.date {
    margin-top: 0;
    margin-left: 0;
    padding-bottom: 20px;
  }
  #gnav.sec-inner {
    margin-top: 0;
  }
  #gnav.active {
    display: block;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  #gnav .gnav-list {
    display: block;
    width: 85%;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 70px 10px 0;
    background: url(../img/common/headline-bg.jpg) repeat center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1000;
  }
  #gnav .gnav-item {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 5px;
    padding: 0;
    text-align: left;
    position: relative;
  }
  #gnav .gnav-item.tel-wrap {
    margin-top: 30px;
  }
  #gnav .gnav-item .tel {
    margin: 10px auto 0;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
  }
  #gnav .gnav-item.w100 {
    width: 100%;
  }
  #gnav .gnav-item.w100 a {
    color: #fff;
  }
  #gnav .gnav-item.ml0 {
    margin-left: 0;
  }
  #gnav .gnav-item.h-table {
    margin: 10px auto 0;
  }
  #gnav .gnav-item.insta {
    margin: 10px auto 0;
    text-align: center;
  }
  #gnav .gnav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 16px;
    font-size: 1.6rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: .05em;
    padding: 9px 7px;
  }
  #gnav .gnav-link-ja {
    display: inline-block;
  }
  #gnav .gnav-link.pl0 {
    padding-left: 10px;
  }
  #gnav .gnav-item + .gnav-item::before {
    content: none;
  }
  #gnav .gnav-item.sp-only::before {
    content: none;
  }
  #gnav .gnav-en {
    line-height: 1;
  }
  #gnav .gnav-item.info-item p {
    color: #fff;
  }
  #gnav .gnav-item::before {
    content: none;
  }
  #gnav .list-item {
    margin-top: 20px;
  }
  #gnav .list-item a:nth-of-type(n+2) {
    margin-left: 35px;
  }
  #gnav .sp-shop-wrap {
    margin-top: 10px;
  }
  #gnav .sp-shop-wrap a {
    display: inline-block;
    width: 150px;
  }
  #gnav .sp-shop-wrap a:nth-of-type(n+2) {
    margin-left: 20px;
  }
  #gnav .border {
    border-bottom: 2px solid #333333;
  }
  #gnav .contact-wrap {
    text-align: center;
    margin: 30px auto 0;
  }
  /*	sp menu btn  SP
------------------------------------ */
  #sp-menu-btn {
    display: block;
    position: fixed;
    top: 14px;
    right: 7px;
    width: 45px;
    height: 45px;
    z-index: 1010;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
  }
  #sp-menu-btn.active .top {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
            transform: translateY(9px) translateX(0) rotate(45deg);
  }
  #sp-menu-btn.active .middle {
    opacity: 0;
  }
  #sp-menu-btn.active .bottom {
    -webkit-transform: translateY(-13px) translateX(0) rotate(-45deg);
            transform: translateY(-13px) translateX(0) rotate(-45deg);
  }
  #sp-menu-btn.active span::before {
    content: none;
  }
  #sp-menu-btn span {
    width: 30px;
    height: 2px;
    margin: auto;
    border: none;
    border-radius: 3px;
    background: #333333;
    position: absolute;
    top: 11px;
    right: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
  }
  #sp-menu-btn .middle {
    top: 22px;
  }
  #sp-menu-btn .bottom {
    top: auto;
    bottom: 11px;
  }
  /*	sp-tel  SP
------------------------------------ */
  .sp-tel {
    position: fixed;
    top: 12px;
    right: 65px;
    z-index: 1010;
  }
  .sp-tel a {
    padding: 7px;
  }
  .sp-tel .fa {
    font-size: 33px;
    color: #333333;
  }
  #gnav .sp-info-tel {
    text-align: center;
    margin: 20px auto 0;
  }
  #gnav .sp-sns {
    margin: 20px auto 0;
  }
  #gnav .sp-sns a:nth-of-type(n+2) {
    margin-left: 20px;
  }
  /*	ggmap  SP
------------------------------------ */
  .ggmap {
    width: 100%;
    padding-top: 250px;
  }
  /* =========================================
  footer  SP
========================================= */
  #footer .f-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .f-txt-wrap {
    margin-left: 0;
    padding: 50px 45px;
    text-align: center;
  }
  #footer .f-nav-item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer .f-tel {
    width: 200px;
    margin: 14px auto 0;
  }
  #footer .cmn-btn-wrap {
    text-align: center;
  }
  #footer .cmn-btn-span {
    height: 45px;
  }
  #footer .copyright {
    text-align: center;
  }
  #footer .copyright small {
    font-size: 10px;
    font-size: 1rem;
  }
  /* =========================================
  main  SP
========================================= */
  /*	headline  SP
------------------------------------ */
  .headline {
    padding: 10px 5px 15px;
    position: relative;
    z-index: 1010;
  }
  .logo {
    width: 197px;
  }
  /*	mv  SP
------------------------------------ */
  .mv {
    padding: 113px 15px 50px;
    background-position: 50%;
    background-size: cover;
  }
  .mv-catch-wrap {
    padding: 0;
  }
  .mv-catch01 {
    width: 100%;
    padding: 20px 10px;
  }
  .mv-catch01::before {
    width: 71px;
    height: 48px;
    top: -17px;
    left: 0;
    right: auto;
  }
  .mv-catch01::after {
    width: 89px;
    height: 94px;
    right: 0;
    left: auto;
    top: -80px;
  }
  .mv-catch02 {
    width: 76%;
    padding: 10px 15px 4px;
    position: relative;
    bottom: 10px;
  }
  .mv-catch-main01 {
    width: 222px;
    margin: auto;
  }
  .mv-catch-main02 {
    width: 260px;
    margin: 10px auto 0;
    padding-top: 8px;
  }
  .mv-catch-sub01 {
    width: 124px;
    margin: auto;
  }
  .mv-catch-sub02 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
  }
  .mv-catch-sub03 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .mv-catch-sub04 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 4px;
  }
  /*	cmn parts  SP
------------------------------------ */
  .cmn-tag {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn-tag-list:nth-of-type(n+2) {
    margin: 20px auto 0;
  }
  /*	sec01  SP
------------------------------------ */
  #sec01 .sec-inner {
    padding: 50px 15px;
  }
  #sec01 h2 {
    width: 246px;
  }
  #sec01 .flex-txt-wrap:before {
    width: 124px;
    height: 204px;
    top: -95px;
    left: -15px;
  }
  #sec01 .flex-txt-box {
    margin-top: 20px;
  }
  #sec01 figure {
    width: auto;
    height: auto;
    margin-top: 20px;
    position: static;
  }
  /*	sec02  SP
------------------------------------ */
  #sec02 .sec-inner {
    padding: 50px 15px;
  }
  #sec02 .txt-box {
    margin-top: 79px;
    padding: 30px 10px;
  }
  #sec02 .txt-box::before {
    width: 113px;
    height: 88px;
    top: -59px;
    right: 17px;
  }
  #sec02 .txt-box::after {
    content: none;
  }
  #sec02 .cmn-tag {
    margin-top: 32px;
  }
  /*	works  SP
------------------------------------ */
  #works .sec-inner {
    padding: 50px 15px;
  }
  #works .list-item {
    width: 100%;
    padding: 10px 10px 32px;
  }
  #works .list-item::before {
    width: 7px;
    height: 7px;
    border-top: 2px solid #0073da;
    border-right: 2px solid #0073da;
    bottom: 19px;
    left: -6px;
    right: 0;
  }
  #works .list-item:nth-of-type(n+2) {
    margin-top: 20px;
  }
  #works .list-img-wrap {
    width: 47%;
  }
  #works .list-img-wrap:nth-of-type(2n) {
    margin-left: 3%;
  }
  #works .list-img-wrap:nth-of-type(n+3) {
    margin-top: 20px;
  }
  #works .list-ttl {
    margin-top: 1px;
  }
  #works .fancybox {
    width: 100%;
    padding-top: 95%;
  }
  #works .cmn-btn-wrap {
    margin-top: 30px;
  }
  /*	top-news  SP
------------------------------------ */
  .top-news .sec-inner {
    padding: 50px 15px;
  }
  .top-news .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-news .flex-article {
    padding: 17px 5px 13px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-news .flex-article-wrap {
    margin-left: 0;
  }
  .top-news .flex-ttl {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .top-news .flex-tag {
    padding: 4px 5px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .top-news .head-type01 {
    margin-top: 0;
  }
  .top-news .cmn-btn-wrap {
    margin-top: 30px;
  }
  /*	cmn-contact  SP
------------------------------------ */
  #cmn-contact .bg {
    background-position: 4%;
  }
  #cmn-contact .sec-inner {
    padding: 50px 15px;
  }
  #cmn-contact .cmn-contact-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cmn-contact .cmn-contact-tel {
    width: 100%;
  }
  #cmn-contact .cmn-contact-tel-num {
    width: 222px;
    margin: auto;
  }
  #cmn-contact .cmn-contact-link {
    width: 180px;
    height: 112px;
    margin: auto;
    padding: 26px 0;
  }
  #cmn-contact .cmn-contact-catch {
    margin-top: 16px;
    padding-bottom: 5px;
  }
  #cmn-contact .cmn-contact-mail {
    margin-top: 20px;
  }
  /* =========================================
  sub  SP
========================================= */
  /*	sub mv  SP
------------------------------------ */
  .sub .sp-privacy .mv-catch-main01, .sub .sp-e404 .mv-catch-main01 {
    display: block;
    width: 228px;
  }
  .sub .sp-business .mv-catch-main01, .sub .sp-recruit .mv-catch-main01, .sub .sp-works .mv-catch-main01, .sub .sp-company .mv-catch-main01 {
    display: block;
    width: 119px;
  }
  .sub .sp-blog .mv-catch-main01 {
    display: block;
    width: 100px;
  }
  .sub .sp-contact .mv-catch-main01, .sub .sp-site .mv-catch-main01 {
    display: block;
    width: 172px;
  }
  .sub .sp-privacy .mv-catch-en {
    width: 126px;
  }
  .sub .sp-business .mv-catch-en, .sub .sp-e404 .mv-catch-en {
    width: 80px;
  }
  .sub .sp-contact .mv-catch-en, .sub .sp-site .mv-catch-en {
    width: 77px;
  }
  .sub .sp-recruit .mv-catch-en, .sub .sp-company .mv-catch-en {
    width: 75px;
  }
  .sub .sp-works .mv-catch-en {
    width: 63px;
  }
  .sub .sp-blog .mv-catch-en {
    width: 53px;
  }
  .sub .mv {
    height: 175px;
    padding: 35px 15px 0;
    background-position: top;
  }
  .sub .mv-catch-wrap {
    margin: auto;
    padding: 0;
  }
  .sub .mv-catch01 {
    padding: 15px 10px;
  }
  .sub .mv-catch01::before {
    top: -16px;
    left: -15px;
  }
  .sub .mv-catch-main02 {
    width: 100%;
  }
  .sub .mv-catch-en {
    display: inline-block;
  }
  /*	privacy  SP
------------------------------------ */
  #privacy .section:last-of-type {
    padding-bottom: 50px;
  }
  #privacy .sec-inner {
    padding: 0 15px 30px;
  }
  #privacy .sec01 .sec-inner {
    padding: 60px 15px 30px;
  }
  #privacy .txt-box {
    margin-top: 15px;
  }
  /*	sub blog  SP
------------------------------------ */
  .sub #blog .sec-inner {
    padding: 50px 15px;
  }
  .sub #blog .tag-nav {
    margin-top: 20px;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sub #blog .tag-ul {
    width: 100%;
    margin: auto;
    padding: 10px 0 0;
  }
  .sub #blog .tag-li {
    padding-top: 0;
  }
  .sub #blog .head-type03 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sub #blog .blog-ul {
    max-width: 400px;
    margin: 30px auto 0;
  }
  .sub #blog .blog-li {
    padding: 0;
  }
  .sub #blog .blog-li:nth-of-type(n+2) {
    margin-top: 30px;
  }
  .sub #blog .blog-detail-box {
    min-height: 200px;
    padding: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sub #blog figure {
    width: 90%;
    margin: 7px auto 0;
    border: 3px solid #fff;
    padding-top: 80%;
  }
  .sub #blog .blog-detail-txt-wrap {
    margin-top: 10px;
  }
  .sub #blog .blog-detail-box {
    max-width: 400px;
    margin: auto;
    padding: 0;
  }
  .sub #blog .blog-detail-box.md .cmn-txt {
    padding: 0;
  }
  .sub #blog .detail figure {
    width: 100%;
    max-width: 320px;
    padding-top: 250px;
  }
  .sub #blog .detail .pagenation-inner {
    padding: 0 15px 50px;
  }
  .sub #blog .detail .data-nav {
    margin-top: 0;
  }
  /*	business  SP
------------------------------------ */
  #business .first-wrap {
    padding: 50px 15px;
  }
  #business .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #business .sec01 .box {
    width: 100%;
    margin: auto;
    padding: 30px 15px;
  }
  #business .sec01 .box-wrap {
    top: auto;
  }
  #business .sec01 .txt-box {
    margin-top: 23px;
    padding: 0;
  }
  #business .sec01 .cmn-txt {
    line-height: 1.65;
  }
  #business .sec01 .cmn-txt:nth-of-type(n+2) {
    margin-top: 23px;
  }
  #business .sec02 .sec-inner {
    padding: 50px 15px;
  }
  #business .sec02 .box {
    width: 100%;
    padding: 20px 15px;
    border-radius: 12px;
  }
  #business .sec02 .box-wrap {
    margin: auto;
    padding: 30px 15px;
  }
  #business .sec02 .cmn-txt:nth-of-type(n+2) {
    margin-top: 27px;
  }
  /*	recruit  SP
------------------------------------ */
  #recruit .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #recruit .sec01 .head-type02 {
    margin-top: 50px;
  }
  #recruit .sec01 .first-txt-box .cmn-txt:nth-of-type(n+2) {
    margin-top: 24px;
  }
  #recruit .sec01 .list {
    margin-top: 30px;
  }
  #recruit .sec01 .list-item:nth-of-type(n+2) {
    margin-top: 30px;
  }
  #recruit .sec01 .list-txt-box {
    margin-top: 0;
  }
  #recruit .sec01 .list .cmn-txt {
    margin-top: 10px;
    padding: 0;
  }
  #recruit .sec01 figure {
    margin-top: 10px;
  }
  #recruit .sec02 .sec-inner {
    padding: 50px 15px;
  }
  #recruit .sec02 .list {
    margin-top: 30px;
  }
  #recruit .sec02 .list-q, #recruit .sec02 .list-a {
    width: 40px;
    height: 40px;
  }
  #recruit .sec02 .list-q-txt, #recruit .sec02 .list-a-txt {
    padding: 0 0 0 16px;
  }
  #recruit .sec02 .list-q-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #recruit .sec02 .list-a-wrap {
    margin-top: 15px;
  }
  #recruit .sec03 .sec-inner {
    padding: 50px 15px;
  }
  #recruit .sec03 .bnr-wrap {
    margin-top: 50px;
  }
  #recruit .sec03 .bnr-box {
    width: 100%;
    padding: 23px 25px;
  }
  #recruit .sec03 .bnr-ttl {
    width: 233px;
    margin: auto;
  }
  #recruit .sec03 .bnr-tel-num {
    width: 208px;
    margin: auto;
  }
  #recruit .sec03 .bnr-tel-wrap {
    width: 100%;
  }
  #recruit .sec03 .head-type03 {
    margin-top: 30px;
  }
  #recruit .sec03 .head-type03:nth-of-type(n+2) {
    margin-top: 50px;
  }
  #recruit .sec04 .sec-inner {
    padding: 50px 15px;
  }
  /*	company  SP
------------------------------------ */
  #company .sec01 .sec-inner {
    padding: 50px 15px;
  }
  #company .sec01 .cmn-table {
    margin-top: 30px;
  }
  #company .sec01 .cmn-table .accent {
    display: block;
    margin: auto;
  }
  #company .sec01 .sp-left {
    text-align: left;
  }
  /*	sub contact  SP
------------------------------------ */
  #contact .sec-inner {
    padding: 50px 15px;
  }
  #contact .cmn-txt {
    margin-top: 30px;
    line-height: 1.85;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #contact .cmn-contact-tel {
    margin-top: 30px;
  }
  #contact .head-type02 {
    font-size: 20px;
    font-size: 2rem;
  }
  #contact .sec01 .cmn-btn-wrap {
    margin-top: 30px;
  }
  #contact .sec01 .cmn-btn {
    width: 100%;
  }
  #contact .sec01 .cmn-btn-span::after {
    bottom: 0;
  }
  /*----- */
}

/*----- */
/* =========================================
  breakpoint
========================================= */
@media screen and (min-width: 768px) and (max-width: 1460px) {
  #sec01 .flex-txt-wrap::before {
    left: 0;
  }
  #sec01 figure {
    width: auto;
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1270px) {
  #sec02 .txt-box::after {
    right: 0;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .top-news .flex-tag {
    padding: 4px 10px;
    font-family: sans-serif;
  }
  #footer .cmn-btn-span {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .required-mark {
    font-family: sans-serif;
  }
  .sub #blog .tag-link {
    padding: 4px 10px;
    font-family: sans-serif;
  }
}
