@charset "UTF-8";
/*-----------------------------------------
base
-----------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 1.6em;
  color: #1A1311;
  line-height: 1.8;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-color: #fff;
  word-wrap: break-word;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2.2rem;
}

h4,
h5,
h6 {
  font-size: 1.8rem;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
}

a,
a:hover,
a:active,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  outline: none;
}

div,
span,
object,
iframe,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1.4rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.06em;
  vertical-align: baseline;
  background: transparent;
}
@media (min-width: 768px) {
  div,
  span,
  object,
  iframe,
  p,
  blockquote,
  pre,
  abbr,
  address,
  cite,
  code,
  del,
  dfn,
  em,
  ins,
  kbd,
  q,
  samp,
  small,
  strong,
  sub,
  sup,
  var,
  b,
  i,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  figcaption,
  figure,
  footer,
  header,
  menu,
  nav,
  section,
  summary,
  time,
  mark,
  audio,
  video,
  input,
  textarea {
    font-size: 1.6rem;
  }
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*form------------*/
label {
  vertical-align: middle;
}

select,
label {
  cursor: pointer;
}

/*iOS対策*/
[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: none !important;
  border-radius: 0;
}

input,
select,
textarea {
  font-size: 16px;
  /*フォームのフォーカスOFF*/
  vertical-align: middle;
  line-height: normal;
}

input:focus,
select:focus {
  outline: 0;
}

input:focus {
  border-color: none !important;
}

/*ios対策ここまで*/
input,
select,
textarea,
.field {
  background-color: #fff;
  border-radius: 3px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
select,
textarea,
.field {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 48px;
  line-height: 1.6;
  padding: 0 15px;
  font-size: 1.6rem;
  color: #212121;
  vertical-align: middle;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}

input[type=radio] {
  margin: 14px 5px 10px 15px;
}

input[type=radio] {
  display: none;
}

.radio {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.radio::before {
  position: absolute;
  top: 50%;
  left: 5px;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
}

.radio::after {
  position: absolute;
  top: 50%;
  left: 8px;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  opacity: 0;
  background: #212121;
  border-radius: 50%;
}

input[type=radio]:checked + .radio::after {
  opacity: 1;
}

textarea {
  width: 100%;
  height: 210px;
  padding: 15px;
}

.select-box {
  background-color: #fff;
}

select::-ms-expand {
  display: none;
}

/*-----------------------------------------
common
-----------------------------------------*/
html.sc-fixed {
  position: fixed !important;
  width: 100%;
  height: 100%;
}

body.pt-fixed {
  position: relative;
}

body.load-fafe-in {
  animation: bdfadeIn 2s ease 0s 1 normal;
  -webkit-animation: bdfadeIn 2s ease 0s 1 normal;
}

@keyframes bdfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bdfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.common-center {
  margin: 0 auto;
  text-align: center;
}

.common-font-bold {
  font-weight: bold;
}

main {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 80px;
}
@media (min-width: 1024px) {
  main {
    margin-top: 100px;
  }
}

/*button*/
.btn-std-arrow {
  width: 190px;
  height: 52px;
  border-radius: 50px;
  border: solid 2px #1A1311;
  overflow: hidden;
}
@media (min-width: 768px) {
  .btn-std-arrow {
    width: 240px;
    height: 60px;
  }
}
.btn-std-arrow a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #1A1311;
}
.btn-std-arrow a:hover {
  color: #1A1311;
}
@media (min-width: 1024px) {
  .btn-std-arrow a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 1;
  }
}
.btn-std-arrow a:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btn-std-arrow a span {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
  color: #fff;
  z-index: 3;
}
@media (min-width: 768px) {
  .btn-std-arrow a span {
    font-size: 1.6rem;
    line-height: 56px;
    letter-spacing: 0.12em;
  }
}
.btn-std-arrow a span::after {
  content: url(../img/common/btn-arrow.svg);
  width: 20px;
  height: 13px;
  margin-left: 20px;
}
@media (min-width: 1024px) {
  .btn-std-arrow a:hover span {
    color: #1A1311;
  }
}
@media (min-width: 1024px) {
  .btn-std-arrow a:hover span::after {
    content: url(../img/common/btn-arrow-ho.svg);
  }
}

.txt-link-btn::before {
  display: inline-block;
  content: "";
  background-image: url(../img/common/arrow-icon03.svg);
  background-size: cover;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .txt-link-btn::before {
    width: 16px;
    height: 16px;
  }
}
.txt-link-btn:hover {
  opacity: 0.7;
}

/*scroll image slide*/
.js-bg-wrap {
  display: table;
  overflow: hidden;
}

.js-bg-wrap .js-bg-box {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

.js-bg-wrap .js-bg-color {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/*image hover  mask&scale*/
.common-ho-mask {
  position: relative;
  overflow: hidden;
}
.common-ho-mask img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.common-ho-mask .ho-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(26, 19, 17, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common-ho-mask .ho-mask .ho-mask-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  text-align: center;
}
.common-ho-mask .ho-mask .ho-mask-inner .ho-site-name {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #fff;
}
.common-ho-mask .ho-mask .ho-mask-inner .site-page-link {
  display: inline-block;
  padding: 5px 25px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .common-ho-mask:hover .ho-mask {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .common-ho-mask:hover img {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

/*table*/
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tb1 {
  border-top: 1px solid #c2c2c2;
}
.tb1 th,
.tb1 td {
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px 0;
}
@media (min-width: 576px) {
  .tb1 th,
  .tb1 td {
    display: table-cell;
  }
}
.tb1 th {
  vertical-align: top;
  background: #F3F3F2;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .tb1 th {
    background: #fff;
    border-bottom: 1px solid #c2c2c2;
  }
}
.tb1 td {
  border-bottom: 1px solid #c2c2c2;
}

.tb2 th,
.tb2 td {
  display: block;
  text-align: left;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .tb2 th,
  .tb2 td {
    display: table-cell;
    padding-bottom: 50px;
  }
}
.tb2 th {
  padding-bottom: 10px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .tb2 th {
    padding-bottom: 50px;
  }
}
.tb2 th label {
  font-weight: bold;
}
.tb2 th.valign-t {
  vertical-align: top;
}

/*diplay*/
.sp-diplay {
  display: block;
}
@media (min-width: 768px) {
  .sp-diplay {
    display: none;
  }
}

.pc-diplay {
  display: none;
}
@media (min-width: 768px) {
  .pc-diplay {
    display: block;
  }
}

/*-----------------------------------------
header
-----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  z-index: 999;
}

.header-nav {
  width: 100%;
  height: 80px;
  background: #fff;
  border-bottom: solid 10px #1A1311;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media (min-width: 1024px) {
  .header-nav {
    height: 100px;
  }
}
.header-nav .nav-inner {
  position: relative;
  max-width: 1720px;
  height: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .header-nav .nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease 0s, background 0.6s ease 0.2s;
  transition: all 0.3s ease 0s, background 0.6s ease 0.2s;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.header-nav.thin {
  height: 80px;
}

.drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding-left: 20px;
}

.header-logo {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .header-logo {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .header-logo a:hover {
    opacity: 0.7;
  }
}
.header-logo img {
  width: 33px;
  height: auto;
  margin-right: 10px;
}
@media (min-width: 1024px) {
  .header-logo img {
    width: 40px;
  }
}

.navbar-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  margin-right: 20px;
  background: #1A1311;
  border-radius: 50%;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle-icon {
  display: block;
  position: relative;
  width: 15px;
  height: 1px;
  background: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.navbar-toggle-icon:nth-child(1) {
  top: 0;
}

.navbar-toggle-icon:nth-child(2) {
  margin-top: 5px;
}

.menu.open {
  width: 100%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.navbar-toggle.open .navbar-toggle-icon:nth-child(1) {
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-toggle.open .navbar-toggle-icon:nth-child(2) {
  top: -3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu {
  height: calc(100vh - 70px);
  background: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
@media (min-width: 1024px) {
  .menu {
    height: auto;
    padding-right: 20px;
    background-color: inherit;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.menu ul {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}
.menu ul li {
  margin: 0;
  padding: 12px 20px;
  text-align: left;
  border-top: 1px solid #ccc;
}
.menu ul li:first-child {
  border-top: 2px solid #1A1311;
}
@media (min-width: 1024px) {
  .menu ul li:first-child {
    border: none;
  }
}
.menu ul li:nth-last-child(2) {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .menu ul li:nth-last-child(2) {
    border: none;
  }
}
@media (min-width: 1024px) {
  .menu ul li {
    margin: 0 10px;
    padding: 0;
    font-size: 1.3rem;
    text-align: center;
    border: none;
  }
}
@media screen and (min-width: 1200px) {
  .menu ul li {
    margin: 0 15px;
    font-size: 1.5rem;
  }
}
.menu ul li.menu-list {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .menu ul li.menu-list {
    height: 2.25rem;
  }
}
.menu ul li.menu-list a {
  position: relative;
  top: 0;
  left: 0;
}
.menu ul li.menu-list a span {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.menu ul li.menu-list a .en {
  display: block;
}
.menu ul li.menu-list a .ja {
  display: block;
  font-size: 1.1rem;
  color: #7E6D69;
}
@media (min-width: 1024px) {
  .menu ul li.menu-list a .ja {
    font-size: 1.4rem;
    color: #1A1311;
  }
}
@media (min-width: 1024px) {
  .menu ul li.menu-list a:hover {
    top: -22.5px;
  }
}
.menu ul li.menu-list a.on {
  top: 0px;
}
.menu ul li.menu-list a.on span {
  opacity: 0.3;
}
.menu .contact-btn {
  width: 246px;
  height: 55px;
  margin: 35px auto 0 auto;
  padding: 0;
  border-radius: 30px;
  border: solid 2px #1A1311;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .menu .contact-btn {
    margin: 0 0 0 15px;
  }
}
.menu .contact-btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #1A1311;
}
.menu .contact-btn a:hover {
  color: #1A1311;
}
@media (min-width: 1024px) {
  .menu .contact-btn a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 1;
  }
}
.menu .contact-btn a:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.menu .contact-btn a span {
  display: block;
  position: relative;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 3;
}
@media screen and (min-width: 1200px) {
  .menu .contact-btn a span {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .menu .contact-btn a:hover span {
    color: #1A1311;
  }
}
@media (min-width: 1024px) {
  .menu .contact-btn a {
    padding: 15px 18px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1200px) {
  .menu .contact-btn a {
    padding: 0;
    font-size: 1.4rem;
  }
}

/*-----------------------------------------
footer
-----------------------------------------*/
#wrap-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*下部に固定*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*下部に固定*/
  min-height: calc(100vh - 300px);
}
@media (min-width: 768px) {
  #wrap-all {
    min-height: calc(100vh - 365px);
  }
}

.footer {
  line-height: 50px;
  margin-top: auto;
  color: #fff;
  background-color: #1A1311;
}
.footer .footer-inner {
  max-width: 1236px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 80px 20px;
    text-align: left;
  }
}
.footer .company-name-box {
  margin-bottom: 15px;
}
.footer .footer-logo {
  display: inline-block;
  width: 160px;
  height: auto;
  padding: 0;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .footer .footer-logo:hover {
    opacity: 0.6;
  }
}
.footer .company-name {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer .company-name {
    font-size: 1.8rem;
  }
}
.footer .company-ad p {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .footer .company-ad p {
    font-size: 1.2rem;
  }
}
.footer .company-ad p + p {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .footer .menu-box {
    text-align: right;
  }
}
.footer .footer-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px 0 30px 0;
}
@media (min-width: 768px) {
  .footer .footer-menu-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 30px;
  }
}
.footer .footer-menu-list li {
  font-size: 1.2rem;
}
.footer .footer-menu-list li + li {
  margin-left: 20px;
}
@media (min-width: 768px) {
  .footer .footer-menu-list li {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .footer .footer-menu-list li a:hover {
    opacity: 0.6;
  }
}
.footer .copyright small {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

/*-----------------------------------------
page top
-----------------------------------------*/
.page-top {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 5;
}
@media (min-width: 768px) {
  .page-top {
    bottom: 10px;
    right: 10px;
  }
}
.page-top img {
  width: 30px;
  height: auto;
}
@media (min-width: 768px) {
  .page-top img {
    width: 45px;
  }
}

/*-----------------------------------------
pagination
-----------------------------------------*/
.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 50px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 10px;
}
.page-numbers li a, .page-numbers span {
  font-size: 1.4rem;
  font-weight: bold;
}
.page-numbers .fa-chevron-left {
  color: #000;
  font-size: 1.3rem;
}
.page-numbers .fa-chevron-right {
  color: #000;
  font-size: 1.3rem;
}

.page-numbers li {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  text-align: center;
  line-height: 35px;
  background-color: #F3F3F2;
  border-radius: 50%;
}
.page-numbers li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .page-numbers li a:hover {
    background-color: #ccc;
  }
}
.page-numbers li.current {
  color: #fff;
  background-color: #1A1311;
}

.pagenation-next,
.pagenation-prev {
  width: 63px;
  font-size: 1.4rem;
  font-weight: bold;
}

.pagenation-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #1A1311;
}
.pagenation-next a::after {
  content: "";
  background-image: url(../img/common/arrow-icon02-right.svg);
  width: 20px;
  height: 13px;
}

.pagenation-prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #1A1311;
}
.pagenation-prev a::before {
  content: "";
  background-image: url(../img/common/arrow-icon02-left.svg);
  width: 20px;
  height: 13px;
}

.pagenation-next:hover a,
.pagenation-prev:hover a {
  opacity: 0.6;
}

/*-----------------------------------------
common
-----------------------------------------*/
.sec-inner {
  margin: 0 auto;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .sec-inner {
    padding: 100px 20px;
  }
}

.top-sec-tit {
  margin-bottom: 50px;
}
.top-sec-tit span {
  display: block;
  line-height: 1;
}
.top-sec-tit .en {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .top-sec-tit .en {
    font-size: 4.8rem;
    margin-bottom: 16px;
  }
}
.top-sec-tit .ja {
  font-size: 1.2rem;
  font-weight: bold;
  color: #7E6D69;
}
@media (min-width: 768px) {
  .top-sec-tit .ja {
    font-size: 1.5rem;
  }
}

/*-----------------------------------------
key visual
-----------------------------------------*/
.kv {
  position: relative;
}
.kv .kv-image {
  width: 100%;
  height: 480px;
  background: #1A1311;
}
@media (min-width: 768px) {
  .kv .kv-image {
    height: auto;
  }
}
.kv .kv-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right 30% top 50%;
  object-position: right 30% top 50%;
}
.kv .kv-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 45%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
@media (min-width: 576px) {
  .kv .kv-logo {
    width: 30%;
  }
}
@media (min-width: 768px) {
  .kv .kv-logo {
    top: 50%;
    width: 20%;
  }
}
.kv .top-news {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(50%) translateX(-50%);
  -webkit-transform: translateY(50%) translateX(-50%);
  width: 100%;
}
.kv .top-news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1196px;
  margin: 0 auto;
  padding: 15px 20px;
  background: #1A1311;
}
@media (min-width: 1024px) {
  .kv .top-news .inner {
    padding: 25px 50px;
  }
}
.kv .top-news h2 {
  width: 100%;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .kv .top-news h2 {
    width: 22%;
  }
}
.kv .top-news h2 .tit-en {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  margin-right: 15px;
  color: #fff;
  font-size: 1.5rem;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .kv .top-news h2 .tit-en {
    font-size: 2rem;
  }
}
.kv .top-news h2 .tit-ja {
  color: #7E6D69;
  font-size: 1.1rem;
  font-weight: bold;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .kv .top-news h2 .tit-ja {
    font-size: 1.2rem;
  }
}
.kv .top-news .news-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media (min-width: 1024px) {
  .kv .top-news .news-info {
    width: 78%;
  }
}
.kv .top-news .news-info span {
  color: #fff;
  line-height: 1.8;
}
.kv .top-news .news-info .date {
  margin-right: 15px;
  font-size: 1.1rem;
  line-height: 2;
}
@media (min-width: 1024px) {
  .kv .top-news .news-info .date {
    margin-right: 28px;
    font-size: 1.3rem;
  }
}
.kv .top-news .news-info .tit {
  font-size: 1.1rem;
}
@media (min-width: 1024px) {
  .kv .top-news .news-info .tit {
    font-size: 1.5rem;
  }
}
.kv .top-news .news-info .tit a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
about us
-----------------------------------------*/
.top-about .sec-inner {
  max-width: 1236px;
}
.top-about .top-sec-tit {
  margin-top: 50px;
}
.top-about p {
  margin: 50px 0 40px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .top-about p {
    margin: 50px 0 60px 0;
    font-size: 22px;
  }
}

/*-----------------------------------------
service
-----------------------------------------*/
.top-service {
  background: #e5e5e4;
}
.top-service .sec-inner {
  max-width: 1236px;
  padding-top: 0;
}
.top-service .top-sec-tit {
  display: inline-block;
  width: 100%;
  margin-top: -1.4rem;
}
@media (min-width: 768px) {
  .top-service .top-sec-tit {
    margin-top: -2.4rem;
  }
}
.top-service .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .top-service .service-list {
    margin-bottom: 60px;
  }
}
.top-service .service-item {
  width: 50%;
  padding: 15px 5px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e4;
}
@media (min-width: 768px) {
  .top-service .service-item {
    width: 33.3333%;
    padding: 30px 10px;
  }
}
.top-service .service-item .icon {
  width: 25.225%;
  height: auto;
  margin: 0 auto 15px auto;
}
@media (min-width: 576px) {
  .top-service .service-item .icon {
    width: 25.225%;
    margin: 0 auto 25px auto;
  }
}
.top-service .service-item .tit {
  display: block;
  font-weight: bold;
}
.top-service .service-item .tit.en {
  margin-bottom: 4px;
  font-size: 1.3rem;
}
@media (min-width: 576px) {
  .top-service .service-item .tit.en {
    font-size: 1.8rem;
  }
}
.top-service .service-item .tit.ja {
  font-size: 0.9rem;
  color: #7E6D69;
}
@media (min-width: 576px) {
  .top-service .service-item .tit.ja {
    font-size: 1.2rem;
  }
}

/*-----------------------------------------
works
-----------------------------------------*/
.top-works .sec-inner {
  max-width: 1236px;
}

.top-works-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top-works-box .lead {
  width: auto;
  max-width: 80%;
}
@media (min-width: 1024px) {
  .top-works-box .lead {
    width: 52%;
  }
}
.top-works-box .lead p {
  font-size: 2rem;
  padding: 0 10px 50px 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .top-works-box .lead p {
    font-size: 3.4rem;
  }
}
.top-works-box .js-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  z-index: -1;
}
@media (min-width: 768px) {
  .top-works-box .js-bg-wrap {
    width: 48%;
  }
}
.top-works-box .top-works-btn {
  background-color: #fff;
}

/*
.top-works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 28px;
  @include md {
    margin-bottom: 15px;
  }
  &::after {
    content: "";
    display: block;
    width: calc((100% - 3.411%)/2);
    height: 0;
    @include md {
      width: calc((100% - 6.822%)/3);
    }
  }
  .top-works-item {
    width: calc((100% - 3.411%)/2);
    height: 100%;
    margin-bottom: 22px;
    @include md {
      width: calc((100% - 6.822%)/3);
      margin-bottom: 45px;
    }
    a {
      max-height: 330px;
      display: block;
      overflow: hidden;
    }
  }
  .top-works-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
*/
/*-----------------------------------------
contact
-----------------------------------------*/
.top-contact {
  background: #F3F3F2;
}
.top-contact .lead {
  font-size: 1.3rem;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .top-contact .lead {
    font-size: 1.8rem;
  }
}
.top-contact .mail-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .top-contact .mail-img:hover {
    background: #1A1311;
  }
}
@media (min-width: 1024px) {
  .top-contact .mail-img:hover a .mail-icon {
    fill: #fff;
  }
}
.top-contact .mail-img a {
  display: block;
}
.top-contact .mail-img a .mail-icon {
  fill: #1A1311;
  width: 55px;
  height: 41px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*-----------------------------------------
common
-----------------------------------------*/
.page-inner {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contents-inner-b {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .page-contents-inner-b {
    padding-bottom: 100px;
  }
}

.page-contents-inner-tb {
  padding-top: 30px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .page-contents-inner-tb {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.page-sec-tit {
  margin: 40px 0 20px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .page-sec-tit {
    margin: 80px 0 60px 0;
  }
}
.page-sec-tit span {
  display: block;
  line-height: 1;
}
.page-sec-tit .en {
  font-family: "Zilla Slab", serif;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .page-sec-tit .en {
    font-size: 4.8rem;
    margin-bottom: 16px;
  }
}
.page-sec-tit .ja {
  font-size: 1.3rem;
  font-weight: bold;
  color: #7E6D69;
}
@media (min-width: 768px) {
  .page-sec-tit .ja {
    font-size: 1.5rem;
  }
}

/*breadcrumb*/
#breadcrumb-area {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 20px 10px 20px;
}
#breadcrumb-area .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#breadcrumb-area .breadcrumb li {
  font-size: 1.1rem;
}
#breadcrumb-area .breadcrumb li:last-child {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  #breadcrumb-area .breadcrumb li {
    font-size: 1.3rem;
  }
}
#breadcrumb-area .breadcrumb li a {
  text-decoration: underline;
}
#breadcrumb-area .breadcrumb li a span {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  #breadcrumb-area .breadcrumb li a span {
    font-size: 1.3rem;
  }
}

/*Wordpress独自CSS（投稿画像配置・画像回り込み等）*/
.alignnone {
  margin: 0 0 20px 0;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px auto;
}

.alignright {
  float: right;
  display: inline;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  display: inline;
  margin: 0 20px 20px 0;
}

.clear {
  clear: both;
}

.wp-caption-text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

/*-----------------------------------------
NEWS top
-----------------------------------------*/
.page-news-top {
  background: #F3F3F2;
}
.page-news-top .news-list {
  max-width: 784px;
  margin: 0 auto;
}
.page-news-top .news-item {
  background: #fff;
  border: 1px solid #F3F3F2;
}
.page-news-top .news-item a {
  display: block;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: flex;
  padding: 15px 25px;
}
@media (min-width: 768px) {
  .page-news-top .news-item a {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.page-news-top .news-item a:hover {
  opacity: 0.7;
}
.page-news-top .news-item .date,
.page-news-top .news-item .tit {
  width: 100%;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .page-news-top .news-item .date,
  .page-news-top .news-item .tit {
    width: auto;
    font-size: 1.5rem;
  }
}
.page-news-top .news-item .date {
  color: #7E6D69;
}
@media (min-width: 768px) {
  .page-news-top .news-item .date {
    font-size: 1.5rem;
    margin-right: 50px;
  }
}
.page-news-top .news-item .tit {
  font-size: 1.5rem;
}

/*-----------------------------------------
NEWS under
-----------------------------------------*/
.page-news-under {
  background: #F3F3F2;
}
.page-news-under .news-box {
  max-width: 784px;
  margin: 0 auto;
}
.page-news-under .news-box .date {
  display: inline-block;
  margin-bottom: 20px;
  padding: 2px;
  font-size: 1.3rem;
  color: #fff;
  background: #1A1311;
}
@media (min-width: 768px) {
  .page-news-under .news-box .date {
    font-size: 1.5rem;
  }
}
.page-news-under .news-box .news-tit {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .page-news-under .news-box .news-tit {
    margin-bottom: 50px;
    font-size: 2.5rem;
  }
}
.page-news-under .news-box .news-txt div {
  max-width: 100%;
}
.page-news-under .news-box .news-txt p {
  margin-bottom: 20px;
}
.page-news-under .news-box .news-txt a {
  color: #7E6D69;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .page-news-under .news-box .news-txt a:hover {
    opacity: 0.7;
  }
}
.page-news-under .news-box .news-txt img {
  width: auto;
  max-width: 100%;
}
.page-news-under .news-box .news-txt ul {
  margin: 0 0 10px 20px;
}
.page-news-under .news-box .news-txt ul li {
  list-style: disc;
}
.page-news-under .news-box .news-txt ol {
  margin: 0 0 10px 20px;
}
.page-news-under .news-box .news-txt ol li {
  list-style: decimal;
}
.page-news-under .post-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.page-news-under .post-link .prev,
.page-news-under .post-link .next {
  width: 135px;
}
.page-news-under .post-link .prev a,
.page-news-under .post-link .next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: solid 2px #1A1311;
}
@media (min-width: 768px) {
  .page-news-under .post-link .prev a:hover,
  .page-news-under .post-link .next a:hover {
    opacity: 0.6;
  }
}
.page-news-under .post-link .prev img,
.page-news-under .post-link .next img {
  width: 20px;
  height: 13px;
}
/*-----------------------------------------
ABOUT US top
-----------------------------------------*/
.page-about01 .page-contents-inner-tb {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .page-about01 .page-contents-inner-tb {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.page-about01 p {
  font-size: 15px;
  line-height: 2.4;
}
@media (min-width: 768px) {
  .page-about01 p {
    font-size: 17px;
  }
}
.page-about01 .about-area {
  max-width: 784px;
  margin: 0 auto;
}

.page-about02 {
  background: #F3F3F2;
}
.page-about02 .about-area {
  max-width: 784px;
  margin: 0 auto;
}
.page-about02 .about-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-about02 .about-table th,
.page-about02 .about-table td {
  display: block;
  padding: 15px 25px;
}
@media (min-width: 768px) {
  .page-about02 .about-table th,
  .page-about02 .about-table td {
    display: table-cell;
  }
}
.page-about02 .about-table th,
.page-about02 .about-table td,
.page-about02 .about-table th > div,
.page-about02 .about-table td > div {
  font-size: 1.5rem;
}
.page-about02 .about-table th {
  width: 100%;
  color: #fff;
  text-align: left;
  background: #1a1311;
}
@media (min-width: 768px) {
  .page-about02 .about-table th {
    width: 200px;
  }
}
.page-about02 .about-table td {
  width: auto;
  background: #fff;
}
.page-about02 .about-table .office-info + .office-info {
  margin-top: 15px;
}

/*-----------------------------------------
SERVICE top
-----------------------------------------*/
.page-service-top .service-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-service-top .service-box {
  width: 100%;
  margin-bottom: 3.411%;
  padding: 30px 10px;
  text-align: center;
  background: #F3F3F2;
}
@media (min-width: 576px) {
  .page-service-top .service-box {
    width: 48.2945%;
  }
}
@media (min-width: 768px) {
  .page-service-top .service-box {
    width: 31.0593333333%;
    padding: 60px 15px;
  }
}
.page-service-top .service-box .icon {
  width: 23.07%;
  margin: 0 auto 20px auto;
}
@media (min-width: 768px) {
  .page-service-top .service-box .icon {
    margin: 0 auto 30px auto;
  }
}
.page-service-top .service-box .tit {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-service-top .service-box .tit {
    margin-bottom: 30px;
  }
}
.page-service-top .service-box .tit span {
  display: block;
  font-weight: bold;
  line-height: 1.4;
}
.page-service-top .service-box .tit .ja {
  font-size: 1.7rem;
}
@media (min-width: 1024px) {
  .page-service-top .service-box .tit .ja {
    font-size: 2.2rem;
  }
}
.page-service-top .service-box .tit .en {
  font-size: 1rem;
  color: #7E6D69;
}
@media (min-width: 1024px) {
  .page-service-top .service-box .tit .en {
    font-size: 1.3rem;
  }
}
.page-service-top .service-box .detail-item {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media (min-width: 1024px) {
  .page-service-top .service-box .detail-item {
    font-size: 1.5rem;
  }
}

/*-----------------------------------------
WORKS top
-----------------------------------------*/
.page-works-top .kind-menu {
  padding: 30px 20px;
  background: #F3F3F2;
}
@media (min-width: 768px) {
  .page-works-top .kind-menu {
    padding: 50px 20px;
  }
}
.page-works-top .kind-menu .kind-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-works-top .kind-menu .kind-item {
  margin: 0 25px;
  font-weight: bold;
}
.page-works-top .kind-menu .kind-item a {
  padding-bottom: 3px;
}
.page-works-top .kind-menu .kind-item a:hover {
  opacity: 0.6;
}
.page-works-top .kind-menu .kind-item.on {
  border-bottom: solid 2px #1A1311;
}
.page-works-top .page-works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-works-top .page-works-list::after {
  content: "";
  display: block;
  width: 48.2945%;
  height: 0;
}
@media (min-width: 768px) {
  .page-works-top .page-works-list::after {
    width: 31.0593333333%;
  }
}
.page-works-top .page-works-item {
  width: 48.2945%;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .page-works-top .page-works-item {
    width: 31.0593333333%;
    margin-bottom: 45px;
  }
}
.page-works-top .page-works-item .page-works-img {
  border: solid 1px #e3e3e3;
}
.page-works-top .page-works-item .tit {
  margin-top: 15px;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page-works-top .page-works-item .tit {
    font-size: 1.6rem;
  }
}

/*-----------------------------------------
WORKS under web
-----------------------------------------*/
.page-works-under-web .case-image {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-works-under-web .case-image {
    margin-bottom: 50px;
  }
}
.page-works-under-web .case-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-works-under-web .case-info .heading {
  width: 100%;
  margin-bottom: 50px;
  padding-right: 50px;
}
@media (min-width: 1024px) {
  .page-works-under-web .case-info .heading {
    width: 50%;
  }
}
.page-works-under-web .case-info .heading .case-tit {
  display: inline;
  font-size: 2rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page-works-under-web .case-info .heading .case-tit {
    font-size: 3rem;
  }
}
.page-works-under-web .case-info .heading .case-txt {
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
}
.page-works-under-web .case-info .heading .case-txt a {
  color: #7E6D69;
  text-decoration: underline;
}
.page-works-under-web .case-info .heading .case-txt a:hover {
  opacity: 0.7;
}
.page-works-under-web .case-info .heading .url a {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 5px;
  font-size: 1.2rem;
  line-height: 1.5;
  border-bottom: solid 2px #1A1311;
}
@media (min-width: 768px) {
  .page-works-under-web .case-info .heading .url a {
    font-size: 1.6rem;
  }
}
.page-works-under-web .case-info .heading .url a:hover {
  opacity: 0.6;
}
.page-works-under-web .case-info .heading .url ::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url(../img/common/link-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-works-under-web .case-info .heading .url ::after {
    width: 16px;
    height: 16px;
    margin-left: 10px;
  }
}
.page-works-under-web .case-info .detail {
  width: 100%;
}
@media (min-width: 1024px) {
  .page-works-under-web .case-info .detail {
    width: 50%;
  }
}
.page-works-under-web .case-info .detail .tb1 th,
.page-works-under-web .case-info .detail .tb1 td {
  font-weight: bold;
}
.page-works-under-web .case-info .detail .tb1 th {
  padding-right: 20px;
}
@media (min-width: 768px) {
  .page-works-under-web .case-info .detail .tb1 th {
    width: 150px;
  }
}
.page-works-under-web .case-info .detail .tb1 td .tag {
  display: inline-block;
  margin-right: 8px;
}
.page-works-under-web .case-info .detail .tb1 td .tag a {
  padding: 3px 15px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  background: #1A1311;
  border-radius: 50px;
}
.page-works-under-web .case-info .detail .tb1 td .tag a:hover {
  opacity: 0.7;
}

/*-----------------------------------------
WORKS under other
-----------------------------------------*/
.page-works-under-other .case-tit {
  margin: 30px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .page-works-under-other .case-tit {
    margin: 50px 0;
    font-size: 3.2rem;
  }
}

/*-----------------------------------------
CONTACT
-----------------------------------------*/
.page-contact-top {
  background: #F3F3F2;
}
.page-contact-top .note {
  margin-bottom: 30px;
  text-align: left;
}
@media (min-width: 768px) {
  .page-contact-top .note {
    margin-bottom: 50px;
  }
}
@media (min-width: 576px) {
  .page-contact-top .note {
    text-align: center;
  }
}
.page-contact-top .note a {
  color: #7E6D69;
  text-decoration: underline;
}

.contact-form {
  max-width: 784px;
  margin: 0 auto;
}
.contact-form .tb2 th {
  width: 250px;
  padding-right: 15px;
}
.contact-form .must {
  margin-left: 10px;
  padding: 4px 8px;
  color: #fff;
  font-size: 1.2rem;
  background: #1A1311;
}
.contact-form .check-txt {
  text-align: center;
  margin-bottom: 50px;
}

.contact-btn-wrap {
  margin: 0 auto;
  text-align: center;
}
.contact-btn-wrap .contact-btn {
  width: 205px;
  height: 54px;
  background: #1A1311;
  border-radius: 50px;
  border: solid 2px #1a1311;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-btn-wrap .contact-btn span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 50px;
  letter-spacing: 0.12em;
}
.contact-btn-wrap .contact-btn:hover {
  opacity: 0.7;
}
.contact-btn-wrap .contact-btn input {
  background: none;
}

/*reCAPTCHA*/
.grecaptcha-badge {
  bottom: 80px !important;
}

/*Contact Form 7*/
div.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 1.4rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  background: #ccc;
  color: #000;
}

/*-----------------------------------------
PRIVACY POLICY
-----------------------------------------*/
.page-pp-top .pp-box .lead {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-pp-top .pp-box .lead {
    margin-bottom: 50px;
  }
}
.page-pp-top .pp-box ul,
.page-pp-top .pp-box ol {
  margin-top: 10px;
}
.page-pp-top .pp-box .head {
  margin: 30px 0 15px 0;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .page-pp-top .pp-box .head {
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .page-pp-top .pp-box .head {
    font-size: 2.4rem;
  }
}
.page-pp-top .pp-box .mail-info {
  margin-top: 10px;
}

/*-----------------------------------------
SITE MAP
-----------------------------------------*/
.sitemap-top .sitemap-box {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-box {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sitemap-top .sitemap-list {
  width: 100%;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-list {
    width: 48%;
  }
}
.sitemap-top .sitemap-list.l-list {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-list.l-list {
    margin-bottom: 0;
  }
}
.sitemap-top .sitemap-item + .sitemap-item {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-item + .sitemap-item {
    margin-top: 25px;
  }
}
.sitemap-top .sitemap-item > a {
  display: block;
  padding: 5px 20px;
  background: #F3F3F2;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-item > a {
    font-size: 2rem;
  }
}
.sitemap-top .sitemap-item > a::before {
  display: inline-block;
  content: "";
  background-image: url(../img/common/arrow-icon03.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-item > a::before {
    width: 20px;
    height: 20px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-item > a:hover {
    opacity: 0.7;
  }
}
.sitemap-top .sitemap-list-under {
  margin-top: 10px;
}
.sitemap-top .sitemap-item-under {
  margin-left: 25px;
}
.sitemap-top .sitemap-item-under + .sitemap-item-under {
  margin-top: 5px;
}
.sitemap-top .sitemap-item-under a {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  background: #fff;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-item-under a {
    font-size: 1.6rem;
  }
}
.sitemap-top .sitemap-item-under a::before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .sitemap-top .sitemap-item-under a:hover {
    opacity: 0.7;
  }
}

/*-----------------------------------------
404 page
-----------------------------------------*/
.not-found-top .nf-box {
  text-align: center;
}
.not-found-top .nf-box .note {
  margin-bottom: 50px;
}
.not-found-top .txt-link-btn + .txt-link-btn {
  margin-left: 40px;
}