@charset "utf-8";

/* ==========================================================================
Foundation [ reset / base ]
========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  font-size: 14px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  min-width: 100%;
	
}

.header-overflow {
  overflow: hidden;
}

ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
select {
  font-size: 12px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.mincho400 {
  font-family: ten-mincho-text,serif;
  font-weight: 400;
  font-style: normal;
}

.mincho-italic {
  font-family: ten-mincho-text,serif;
  font-weight: 400;
  font-style: italic;
}

.cardo {
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */


/* Header
---------------------------------------------------------------*/

.l-header {
  background-position: center;
  position: relative;
  /*height: calc(100vh - 29px);*/
  overflow: hidden;
  width: 100%;
}

.l-header.sub {
  display: none;
}

.l-header-logo {
  /*position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  max-width: 100px;*/
  display: none;
}
.l-header-logo img {
  height: 45px;
}

.l-header-maint {
  position: absolute;
  transition: opacity .8s;
  z-index: 20;
  top: 25%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.main-catch p {
  font-size: 30px;
  color: #fff;
}

.main-catch span {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.play_btn {
  display: block;
}

.play_btn a {
  display: block;
  cursor: pointer;
  width: 40px;
  margin: auto;
}

.play_btn a .circle {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  padding: 4px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.play_btn a .circle:before {
  content: "";
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.6);
  transform: translate(-50%, -50%) scale(0.6);
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transition: all 0.3s;
  margin-top: -1px;
}

.play_btn a:hover .circle:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.play_btn a .circle img {
  display: block;
  width: 100%;
}

.play_btn span {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
  display: none;
}

/*scroll*/

.scroll {
  color: white;
  letter-spacing: 0.2em;
  font-family: "Oswald", sans-serif;
  right: 50%;
  height: 90px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  z-index: 2;
  top: 60%;
  transform: translateY(-50%);
  position: absolute;
  display: none;
}

.scroll p {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: -50px;
  display: none;
}

.ani {
  position: absolute;
  top: 20px;
  width: 1px;
  height: 30px;
  overflow: hidden;
}

.ani:before {
  content: "";
  animation: ani 2s 2s cubic-bezier(0.3, 0.4, 0.1, 1) infinite;
  animation-delay: .6s;
  background-color: white;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

@-moz-keyframes ani {
  0% {
    height: 0; }
  50% {
    height: 30px; }
  75% {
    transform: translateY(0); }
  100% {
    transform: translateY(100%); } }

@keyframes ani {
  0% {
    height: 0; }
  50% {
    height: 30px; }
  75% {
    transform: translateY(0); }
  100% {
    transform: translateY(100%); } }

/*mv*/

.bg-movie {
  position: relative;
  width: 100%;
  padding-top: 55px;
  overflow: hidden;
  margin-bottom: -5px;
}

.bg-movie:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
}

.bg-movie video {
  width: 100%;
  min-width: 100%;
  z-index: 1;
}

#animatedModal {
  z-index: 99999998;
  width: 100%;
  height: 100%;
  background: #000;
  border: 10px solid #fff;
  position: fixed;
  top: 0;
  left: 0;
  text-align: right;
  display: none;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.close-animatedModal {
  color: #fff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 99999999;
  width: 30px;
  height: 30px;
}

#animatedModal .close-animatedModal span {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0px;
  height: 100%;
}

#animatedModal .close-animatedModal span:after, 
#animatedModal .close-animatedModal span:before {
  content: "";
  width: 25px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
}

#animatedModal .close-animatedModal span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#animatedModal .modal-content-video {
  position: absolute;
  width: 100%;
  height: 86vh;
  overflow: hidden;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#animatedModal .modal-content-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Main
---------------------------------------------------------------*/
.l-wrapper {
  width: 100%;
}

#main.grid {
  overflow: inherit;
}


/* Footer
---------------------------------------------------------------*/

.l-footer.sub {
  margin-top: 50px;
}

.l-footer-top {
  background-color: #111111;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.l-footer-top a {
  color: #fff;
  text-align: center;
  padding-left: 20px;
  position: relative;
}

.l-footer-top:hover {
  background: #444;
}

.l-footer-top a:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(-45deg);
}

.l-footer {
  position: relative;
  padding-bottom: 20px;
}

.ft-top-link {
  margin-bottom: 20px;
}

.ft-top-link a {
  padding-left: 30px;
  background: url(/common/img/corporate/top/ico-home.svg) no-repeat left center;
  font-size: 15px;
}

.l-footer-inner.grid {
  display: block;
  position: relative;
  padding: 50px 25px 10px;
}

.l-footer-inner ul {
  float: left;
  width: 40%;
  margin-right: 20px;
}

.l-footer-inner ul:last-child {
  margin-right: 0;
}

.l-footer-inner ul li {
  margin-bottom: 12px;
}

.l-footer-inner ul li a {
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-size: 13px;
}

.l-footer-inner ul li a:hover {
  text-decoration: underline;
}

.ft-bottom {
  clear: both;
  padding: 15px;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ft-sns {
  margin-left: auto;
  justify-content: center;
}

.ft-sns li {
  width: 33px;
  height: 33px;
  margin-right: 10px;
}

.ft-sns li a {
  display: block;
  width: 33px;
  height: 33px;
  background: url(/common/img/corporate/top/sns_black.svg) no-repeat 0px 0px;
}

.ft-sns li:nth-child(2) a {
  background-position: -43px 0px
}

.ft-sns li:nth-child(3) a {
  background-position: -86px 0px
}

.ft-sns li:nth-child(4) a {
  background-position: -129px 0px
}

.ft-bottom p {
  font-size: 12px;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 20px;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

.l-mv-news {
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  background-color: #111;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  text-align: left;
}

.l-mv-news .lead {
  margin-bottom: 3px;
}
.l-mv-news .lead h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.l-mv-news .lead h2 span {
  font-size: 13px;
  display: inline-block;
  padding-left: 10px;
}

.l-mv-news a {
  background: url(/common/img/corporate/top/btn_arw_shite.svg) no-repeat 95% 90%;
  background-size: 40px;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding-right: 66px;
  -webkit-transition:.2s;
  -o-transition:.2s;
  transition:.2s;
}

.l-mv-news p {
  font-size: 12px;
}

.l-mv-news a:hover {
  background: url(/common/img/corporate/top/btn_arw_shite.svg) no-repeat 100% 90%;
}

.container-body {
  width: 100%;
  padding: 40px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container-body.sub {
  padding-top: 55px;
}

.effect-mono {
  filter: grayscale(70%);
  transition: filter 0.3s;
}

.effect-mono:hover {
  filter: grayscale(0);
}

.p-category {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto 100px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.p-category-list li {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.p-category-list li:nth-child(1) {
  display: none;
}

.p-cat-thum__bg:after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 40px;
  height: 9px;
  background: url(/common/img/corporate/top/btn_arw_shite.svg);
  background-repeat:  no-repeat;
  background-position: 100% 100%;
  background-size: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.p-category-list li:hover .p-cat-thum__bg:after {
  right: 20px;
}

.p-category-list li img ,
.p-category-list li a img{
  width: 100%;
  display: block;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  height: 239px;
  object-fit: cover;
}

.p-category-list li a:hover,
.p-category-list li a img:hover{
  opacity: 1;
}

.p-cat-thum__bg {
  position: absolute;
  width: 100%;
  height: 118px;
  left: 0;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(255,242,242,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,242,242,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,242,242,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fff2f2', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

.p-cat-thum__txt {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.p-cat-thum__txt span {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
}

.p-cat-thum__txt p {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}

.p-news .lead .link-area ,
.p-issue .lead .link-area ,
.p-case .lead .link-area {
  margin-left: auto;
  width: 100%;
  text-align: right;
  margin-top: 20px;
}

.p-issue {
  margin-bottom: 100px;
  padding-left: 15px;
  padding-right: 15px;
}

.p-case {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 100px;
}

.p-issue .lead ,
.p-case .lead {
  padding-left: 15px;
  padding-right: 15px;
}

.p-issue-ttl {
  font-size: 14px;
}

.p-issue-ttl span {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 4px;
  display: block;
}

.p-issue-txt {
  width: 100%;
  padding: 0px 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.p-issue-thum {
  /*width: calc(100% - 480px);*/
  width: 100%;
  overflow: hidden;
}

.p-issue-thum img {
  width: 140%;
  max-width: 140%;
  margin-left: -20%;
}

.p-issue-list .grid {
  position: relative;
  margin-bottom: 20px;
  display: block;
}

.p-issue-list .grid:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: #EEEEEE;
}

.p-issue-list .grid:hover {
  background-color: #111;
  opacity: 1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.p-issue-list .grid:hover img {
  opacity: 1;
}

.p-issue-list .grid:hover .p-issue-ttl ,
.p-issue-list .grid:hover .p-issue-ttl span {
  color: #fff;
}

/*case*/

.p-case-list {
  padding-left: 15px;
  padding-right: 15px;
}

.p-case-list li {
  width: 100%;
  margin-bottom: 30px;
}

.p-case-list li img {
  width: 100%;
}

.p-case-list li a:hover,
.p-case-list li a:hover img {
  opacity: 1;
}

.p-case-list__txt {
  width: 85%;
  position: relative;
  margin-top: -25px;
  margin-left: -15px;
  padding: 30px 30px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.p-case-list__txt--ttl {
  font-size: 14px;
}

.p-case-list__txt--ttl span {
  font-size: 22px;
  display: block;
  letter-spacing: 2px;
}

.p-case-list__txt--ttl span br {
  display: none;
}

.p-case-list li a:hover .p-case-list__txt {
  background-color: #000;
}

.p-case-list li a:hover .p-case-list__txt--ttl ,
.p-case-list li a:hover .p-case-list__txt--ttl span {
  color: #fff;
}

/*ranking*/

.p-ranking {
  background-color: #f5f5f5;
  padding: 74px 15px;
}

.p-ranking-slider {
  width: 100%;
}

.slick-track {
  margin-top: 10px;
}

.p-ranking-slider____txt {
  margin-left: -3%;
  margin-top: -3%;
  padding: 20px;
  padding-left: 5%;
  position: relative;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 85%;
}

.p-ranking-slider li {
  margin: 0 20px;
}

.p-ranking-slider li:hover .p-ranking-slider____txt {
  background-color: #000;
}

.p-ranking-slider li:hover p {
  color: #fff;
}

.p-ranking-slider li a:hover,
.p-ranking-slider li a:hover img {
  opacity: 1;
}

.p-ranking-slider {
  counter-reset: wpp-ranking;
}

.p-ranking-slider li.slick-slide {
  position: relative;
}

.p-ranking-slider li.slick-slide:before {
  content: counter(wpp-ranking, decimal);
  counter-increment: wpp-ranking;
  position: absolute;
  top: -10px;
  right: 10px;
  color: #000;
  counter-increment: wpp-ranking;
  text-align: center;
  z-index: 9999;
  line-height: 26px;
  background: #fff;
  width: 44px;
  height: 57px;
  line-height: 57px;
  font-size: 30px;
  letter-spacing: 1px;
  font-family: 'Cardo', serif;
  text-align: center;
}

/*news*/

.p-news {
  padding: 100px 15px;
}

.p-news .lead {
  width: 100%;
}

.p-news-inner {
  position: relative;
}

.p-news-inner:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  height: 100%;
  background: #eeeeee;
}

.p-news-inner + .p-news-inner {
  margin-top: 40px;
}

.p-news-inner a {
  position: relative;
  display: block;
  background: url(/common/img/corporate/top/btn_arw_black.svg) no-repeat 96% 50%;
  background-size: 40px;
  padding: 30px 60px 30px 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.p-news-inner a:hover {
  background-position: 98% 50%;
}

.p-news-inner .p-news-ttl {
  font-size: 14px;
}

.p-news-inner span {
  font-size: 14px;
  display: block;
  margin-top: 10px;
  font-weight: 400;
}

/*contact*/

.p-contact {
  text-align: center;
  background: url(/common/img/corporate/top/bg_contact.png) no-repeat top center;
  background-size: cover;
  padding: 40px 15px;
}

.c-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url(/common/img/corporate/top/btn_arw_black.svg) no-repeat 95% 50%;
  background-size: 40px;
  background-color: #fff;
  font-size: 14px;
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

input.c-btn {
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-btn:hover {
  background-position: 93% 50%;
}

.c-btn.c-btn-black {
  color: #fff;
  background: url(/common/img/corporate/top/btn_arw_shite.svg) no-repeat 95% 50%;
  background-size: 40px;
  background-color: #111;
}

.c-btn.c-btn-black:hover {
  cursor: pointer;
  background-position: 93% 50%;
}

.p-contact .c-btn {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.p-contact .lead {
  margin-bottom: 18px;
}

.p-contact .lead h2 {
  color: #fff;
  text-align: center;
  font-size: 22px;
}

.p-contact .lead h2 span {
  color: #fff;
  font-size: 14px;
  display: block;
  text-align: center;
}

/*company*/

.company-left, .company-right {
  width: 100%;
  float: none;
}

.company-right {
  margin-top: 40px;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/*-------- table type ---------------*/
.table-style, .table-type-a { width: 100%; border-collapse: collapse;
    border-spacing: 0; }
.table-style th, .table-type-a th, .table-style td, .table-type-a td { padding: 15px 20px; border: 1px solid #ddd; }
.table-style th, .table-type-a th { width: 110px; white-space: nowrap; }

.table-type-a p { margin-top: 27px; }
.table-type-a p:first-child { margin-top: 0; }
.recruitTbl { margin-bottom:7%;}



.gold {
  color: #A5906B;
}

h3 {
  margin-top: 30px;
  font-size: 18px;
  padding-left: 15px;
  border-left: 3px solid #111;
  margin-bottom: 25px;
}

.company-map-section {
  margin-bottom: 50px;
}

.tit-type-b span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #A5906B;
  margin-top: 6px;
  display: block;
}

.company-map {
  width: 100%;
  height: 300px;
  background: #f7f7f7;
}

.company-map iframe,
.company-map object,
.company-map embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all  0.7s ease;
}

.company-map iframe:hover,
.company-map object:hover,
.company-map embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}

.c-center h2 {
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-family: 'Cardo', serif;
}

/*flow*/

.workflow-head { margin: 15px 0 20px; }

.workflow-step-box { width: 100%;position: relative; }
.workflow-step-box:nth-child(1) { z-index: 500; -webkit-order: 0; }
.workflow-step-box:nth-child(2) { z-index: 400; -webkit-order: 1; }
.workflow-step-box:nth-child(3) { z-index: 300; -webkit-order: 2; }
.workflow-step-box:nth-child(4) { z-index: 000; -webkit-order: 5; }
.workflow-step-box:nth-child(5) { z-index: 100; -webkit-order: 4; }
.workflow-step-box:nth-child(6) { z-index: 200; -webkit-order: 3; }
.workflow-step-box.alw-right:before, .workflow-step-box.alw-left:before { content: ""; position: inherit; top: inherit; right: inherit; display: block; width: 0; height: 0; z-index: -10; background: none; }
.workflow-step-box.alw-right:after, .workflow-step-box.alw-left:after { content: ""; position: absolute; top: inherit; right: inherit; bottom: -11px; left: 50%; margin-left: -10px; display: block; width: 20px; height: 20px; border-style: solid; border-width: 0 0 1px 1px; border-color: transparent transparent #fff #fff; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); z-index: 0; background: #fff; }
/*-------- work detail ---------*/
.work-detail-main { width: 100%; float: none; }
.work-detail-aside { margin-top: 40px; width: 100%; float: none; }
.aside-works-box_img { width: 100%; }

.step-box-head { display: table; position: relative; width: 100%; height: 188px; background: #f5f5f5; color: #111; }
.step-box-head .step-num { font-size: 30px; color: #A5906B; position: absolute; top: 20px; left: 20px; }
.step-box-head .step-tit { display: table-cell; width: 100%; text-align: center; vertical-align: middle; font-size: 24px; font-weight: bold; line-height: 1.2; }
.step-box-head .step-tit span { font-size: 20px; }

.step-box-body { padding: 20px; }
.step-box-body .step-box-txt em { font-size: 14px; }
.step-box-body .step-box-btn { margin-top: 30px; text-align: center; }

/* work-detail */
.work-detail { margin-top: 25px; /* clearfix */ overflow: hidden; *zoom: 1; }

.work-detail-main { float: left; width: 820px; }

.work-detail-main_img img { max-width: 100%; height: auto; }

.work-detail-txt { margin-top: 30px; margin-bottom: 40px; }

.work-detail-aside { float: right; width: 260px; }

.btn-style, .btn-type-a, .btn-type-b, .btn-type-s {
  display: inline-block;
  text-align: center;
  color: white;
  background: #A5906B;
  text-decoration: none !important;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.btn-type-a {
  padding: 12px 15px;
  min-width: 160px;
}

.btn-style:hover, .btn-type-a:hover, .btn-type-b:hover, .btn-type-s:hover {
  opacity: 0.7;
}

/*recruit*/

.contents-left { width: 100%; }

.contents-right {  width: 100%; margin-top: 30px; }

.contents-txt {
    margin-bottom: 20px;
}

/*blog*/

.p-blog + .p-blog {
  margin-top: 100px;
}

.p-blog-list li {
  width: 100%;
  margin-bottom: 40px;
}

.p-blog-list li .p-blog-txt {
  margin-top: 10px;
}

.p-blog-txt__date {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 1px;
}

.p-blog .btnArea .c-btn + .c-btn {
  margin-top: 20px;
}

.p-blog-txt__ttl {
  font-size: 14px;
}


/*newtrace media*/

.nt-center {
    margin: 10px 10px;
}

h1.nt-blog-detail-head_tit {
color: aliceblue;
    font-weight: bold;
    font-size: large;
	position: relative;
    padding: 1rem 2rem calc(1rem + 10px);
    background: linear-gradient(275deg, rgba(164, 205, 217, 1), rgba(87, 141, 171, 1));
}

p.nt-blog-detail-head_date {
    text-align: right;
    margin-bottom: 10px;
}


.nt-center h2 {	color: aliceblue;
  padding: 1rem 2rem;
  margin-top: 30px;
	font-weight: bold;
  border-left: 3px solid #4c4c4c;
  margin-bottom: 25px;
  background:#606060;/* グラデーション指定 */
	    font-size: large;
}

.nt-center h3 {
  margin-top: 30px;
  padding-left: 20px;
  margin-bottom: 25px;
	font-weight: bold;
	
}

.nt-center h4 {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 3px solid #4c4c4c;
  margin-bottom: 25px;
  font-size: 2em;
}

.nt-center h5 {
	margin-top: 10px;
	  padding: 10px 10px;
	    font-size: 16px;
	  font-weight: bold;
  border: 2px solid #4c4c4c;
}

.nt-center strong {
	font-weight: bold;
    font-size: larger;
	
}

.nt-center img {
margin-top: 10px;
	
}


figcaption {
    font-size: 10px;
    margin-bottom: 5px;
}


/*pagenation*/
.p-navigation {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}

.p-navigation span, .p-navigation a {
  color: #000;
  min-width: 35px;
  display: inline-block;
  margin: 0 2px;
  padding: 5px 4px;
  /*line-height: 35px;*/
  /*height: 35px;*/
  color: #111;
  text-align: center;
  border: #111 solid 1px;
}

.p-navigation span.current {
  background: #111;
  color: #fff;
}

.p-navigation a:hover {
  background: #111;
  color: #fff;
}

.p-navigation span.pages {
  font-size: 107%;
  font-weight: 700;
  margin-right: 20px;
  color: #111;
  border: none;
}

/*contact page*/

.contact-section-left {
  width: 100%;
}

.contact-section-right {
  width: 100%;
  margin-top: 30px;
}

.contact-form-list li {
  margin-bottom: 18px;
}

.form-txt {
  padding: 9px;
  width: 100%;
  box-sizing: border-box;
}

.form-txt.w-105 {
  width: 105px;
}

.form-txt.w-126 {
  width: 126px;
}

.question_dl dd .form-txt.w-126 {
  width: 90px;
}

.form-txt.w-153 {
  width: 153px;
}

.form-txt.w-265 {
  width: 265px;
}

.contact-form-check .wpcf7-list-item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}

.contact-group {
  margin-bottom: 12px;
  overflow: hidden;
  *zoom: 1;
}

.contact-group h4 {
  margin-bottom: 5px;
}

h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-group .contact-sheet {
  margin-bottom: 18px;
  width: 100%;
}

.contact-group .contact-schedule {
  width: 100%;
}

.contact-schedule select {
  display: block;
  margin-top: 4px;
}

.form-textarea {
  width: 100%;
  padding: 10px;
  font: 11px "Montserrat","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS Pゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
  box-sizing: border-box;
}

.question-section {
  margin: 30px 0%;
}

.btn-section-center { width: 100%; }
.btn-section-center ul { text-align: center; }
.btn-section-center ul li { display: inline; margin: 10px auto 10px; }

span.wpcf7-list-item {
  margin-right: 0.5em;
}

.question_tit {
  text-align: center;
  position: relative;
  border-left: none;
  margin-bottom: 15px;
}

.question_dl { margin: 0 0 30px; }
.question_dl dt { font-size: 17px; margin-bottom: 15px; text-align: center; }
.question_dl dd { margin-bottom: 10px; }
.question_dl dd ul li { margin-bottom: 10px; }

/*single*/

.p-related-products {
  margin-top: 40px;
}

.p-related-products__lists li {
  width: 100%;
  flex-wrap: wrap;
}

.p-related-products__lists li + li {
  margin-top: 50px;
}

.p-related-products__txt ,
.p-related-products__thum {
  width: 100%;
}

.p-related-products__txt {
  order: 2;
  margin-top: 10px;
}
.p-related-products__thum {
  order: 1;
}

.p-related-products__thum img {
  width: 100%;
}

.p-singlecase h2,
.p-related-products h2 {
  text-align: center;
  margin-bottom: 55px;
}

.p-singlecase h2 span,
.p-related-products h2 span {
  padding-left: 15px;
  font-size: 16px;
  margin-top: 10px;
  display: block;
  padding-left: 0;
}

.p-related-products__ttl {
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 0px;
}

.p-related-products__txt .c-btn {
  width: 300px;
  background-size: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 10px auto;
  display: block;
}

.p-related-products__lists li:nth-child(even) .p-related-products__txt {
  order: 2;
}

.p-related-products__lists li:nth-child(even) .p-related-products__thum {
  order: 1;
  margin-left: 0;
  margin-right: auto;
}

.p-singlecase {
  margin-top: 50px;
}

.p-singlecase-lists li {
  width: 100%;
  margin-bottom: 40px;
}

.p-singlecase-lists__thum {
  margin-bottom: 15px;
}

.p-singlecase-lists__thum img {
  width: 100%;
}

.p-singlecase-lists__ttl {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

/*sitemap*/
.p-sitemap-wrap__col2 {
  width: 100%;
  margin-bottom: 20px;
}

.p-sitemap-wrap__col8 {
  margin-top: 0px;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.p-sitemap-homeicon {
  padding-left: 30px;
  background: url(/common/img/corporate/top/ico-home.svg) no-repeat left center;
}

.p-sitemap-homeicon a {
  color: #111;
}

.p-sitemap-list__item {
  width: 50%;
  margin-bottom: 20px;
}

.p-sitemap-list__item li {
  margin-bottom: 10px;
}

.p-sitemap-list__item li a {
  padding-left: 20px;
  position: relative;
}

.p-sitemap-list__item li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.archive-head { position: relative; top: 0; margin-bottom: -20px; }
.archive-refine { float: none; width: 100%; box-sizing: border-box; }
.archive-refine-list { flex-wrap: wrap; width: 100%; box-sizing: border-box; justify-content: space-between;}
.archive-refine-list li { line-height: 1.6; width: auto; text-align: center;}
.archive-refine-list li:nth-child(4) { flex-wrap: wrap; width: 15rem; justify-content: space-between; margin-left: 0;}
.archive-refine-list li ul li { margin-left: 2rem; width: 4rem; }
.archive-thumb { display: none; }
/* archive-section */
.archive-section { width: 100%; margin-left: 0; }
.archive-box { width: 100%; margin-left: 0; margin-bottom: 10px; }

/*-------- blog ---------*/
  .blog-detail-main { width: 100%; float: none; }
  .blog-detail-aside { margin-top: 40px; width: 100%; float: none; }
  .aside-list { margin-left: 10px; margin-right: 10px; }
/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px 20px;
}

.lv {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lv img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.lv:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.25);
}

.lv h1 ,
.lv p {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: auto;
  text-align: center;
  font-size: 22px;
  color: #fff;
  z-index: 2;
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
}

/*breadcrumbs*/

.p-breadcrumbs {
  background-color: #f5f5f5;
  padding: 10px 5px;
  margin-bottom: 15px;
}

.p-breadcrumbs .c-center {
  padding: 0 20px;
}

.p-breadcrumbs ul li.arrow {
  position: relative;
  width: 26px;
  height: 14px;
}

.p-breadcrumbs ul li a,
.p-breadcrumbs ul li {
  font-size: 13px;
}
.p-breadcrumbs ul li.arrow:before {
  content: '';
  position: absolute;
  right: 11px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

.flex-right {
  justify-content:flex-end;
}

/* column */
.col-sp-1 { width: 8.33333333%; }
.col-sp-2 { width: 16.66666667%; }
.col-sp-3 { width: 25%; }
.col-sp-4 { width: 33.33333333%; }
.col-sp-5 { width: 41.66666667%; }
.col-sp-6 { width: 50%; }
.col-sp-7 { width: 58.33333333%; }
.col-sp-8 { width: 66.66666667%; }
.col-sp-9 { width: 75%; }
.col-sp-10 { width: 83.33333333%; }
.col-sp-11 { width: 91.66666667%; }
.col-sp-12 { width: 100%; }


/*top title*/

.lead {
  margin-bottom: 34px;
}

.lead h2 {
  font-size: 22px;
  color: #333333;
  width: 100%;
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
  font-weight: 700;
  text-align: center;
}

.lead h2 span {
  font-family: ten-mincho-text,serif;
  font-size: 14px;
  display: block;
  letter-spacing: 2px;
  font-weight: 400;
}

/*sidebar*/

.l-siderbar {
  position: fixed;
  width: 100%;
  display: none;
  box-shadow: 2px 0px 10px rgba(0,0,0,.05);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100vh;
  overflow: scroll;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-sidebar-logo {
  padding: 60px 50px 0;
  margin-bottom: 63px;
  display: inline-block;
}

#sp-header {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 55px;
  background: #fff;
  padding: 5px 0px;
  z-index: 1000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-header-logo {
  max-width: 100px;
  margin-left: 10px;
  /*margin-top: 5px;*/
}
.sp-header-logo img {
  height: 45px;
}

/*hamburger menu*/
.c-navigation-main__hamburger-wrap {
  display: block;
  position: absolute;
  width: 50px;
  z-index: 30;
  height: 55px;
  top: 0;
  right: 0;
}
.c-navigation-main__hamburger-wrap span {
  position: absolute;
  left: 15px;
  width: 22px;
  height: 1px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #111;
}
.c-navigation-main__hamburger-wrap span {
  background-color: #111;
}
.c-navigation-main__hamburger-wrap span:nth-of-type(1) {
  top: 18px;
}
.c-navigation-main__hamburger-wrap span:nth-of-type(2) {
  top: 26px;
}
.c-navigation-main__hamburger-wrap span:nth-of-type(3) {
  bottom: 20px;
  width: 12px;
}
.c-navigation-main__hamburger-wrap.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
  background-color: #111;
  top: 21px;
}
.c-navigation-main__hamburger-wrap.active span:nth-of-type(2) {
  opacity: 0;
}
.c-navigation-main__hamburger-wrap.active span:nth-of-type(3) {
  -webkit-transform: translateY(-21px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  background-color: #111;
  width: 22px;
}
.c-navigation-main__hamburger-wrap.is-show span {
  background-color: #001489;
}

.c-navigation-overlay-menu {
  animation: fadeInColor 0.4s;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 55px;
  width: 100%;
  height: calc(100vh - 20px);
  padding: 20px 0 120px;
  overflow-y: auto;
  display: none;
}

.c-navigation-overlay-menu.active {
  display: block;
}

.l-nav {
  padding: 0px 50px;
  padding-bottom: 0;
}

.l-nav.active {
  display: block;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.8)
  }
  100% {
    transform: scale(1)
  }
}

@keyframes scaleOut {
  0% {
    transform: scale(1)
  }
  100% {
    transform: scale(0.8)
  }
}

@keyframes fadeInColor {
  0% {
    background: rgba(20, 30, 85, 0.4)
  }
  100% {
    background: #fff
  }
}

@keyframes fadeOutColor {
  0% {
    background: #fff
  }
  100% {
    background: rgba(20, 30, 85, 0)
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }
}

.row--scaled {
  animation: scaleIn 0.3s
}

.row--scaled-out {
  animation: scaleOut 0.45s
}

.row--background-fade-in {
  animation: fadeInColor 0.4s
}

.row--background-fade-out {
  display: block !important;
  animation: fadeOutColor 0.4s
}

.l-nav li {
  margin-bottom: 20px;
  position: relative;
}

.l-nav li:first-child a {
  font-weight: 700;
}

.l-nav li a {
  display: inline-block;
  padding-right: 20px;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  position: relative;
  font-family: 'Cardo', serif;
}

.l-nav > li > a:before {
  content: '';
  position: absolute;
  right: 0;
  height: 0;
  bottom: 0;
  background: #111;
  width: 1px;
  transition: height .4s ease-out 0s;
}

.l-nav > li > a:after {
  content: '';
  position: absolute;
  left: 0;
  width: 40px;
  bottom: 0;
  background-color: #fff;
  height: 1px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.4s;
}

.l-nav > li > a:hover:before {
  height: 20px;
  transition: height .25s ease-out .35s;
}

.l-nav > li > a:hover:after {
  width: 100%;
  background-color: #111;
  transition: all .3s ease-in-out .0s;
}

.l-nav li span.en {
  display: inline;
}

.l-nav li span.jp {
  display: none;
}

.l-nav li a:active span.en {
  display: none;
}

.l-nav li a:active span.jp {
  display: inline;
}

.side-ttl-cat {
  color: #22B4BD;
  font-family: ten-mincho-text,serif;
  border-bottom: 1px solid #22B4BD;
  padding-bottom: 10px; 
}

.plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 15px;
}

.plus:hover {
  cursor: pointer;
}

.plus:before ,
.plus:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  background: #333;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.plus:before {
  width: 1px;
  height: 15px;
  left: 7px;
  top: 2px;
}

.plus:after {
  width: 15px;
  height: 1px;
  top: 9px;
}

.plus.active:before {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.l-nav-second {
  display: none;
  padding-left: 20px;
  padding-top: 20px;
}

.l-nav-second {
  margin-bottom: 10px;
}

.l-nav-second li a {
  font-size: 13px;
  font-weight: 400!important;
  padding-right: 0;
}

.l-sidebar-btm {
  padding: 20px 0 40px;
  border-top: 1px solid #eee;
}


.l-sidebar-btm ul {
  margin-top: 40px;
  justify-content: center;
}

.l-sidebar-btm li {
  width: 37px;
  height: 37px;
  margin-right: 10px;
}

.l-sidebar-btm li a {
  display: block;
  width: 37px;
  height: 37px;
  background: url(/common/img/corporate/top/sns.svg) no-repeat 0px 0px;
}

.l-sidebar-btm li:nth-child(2) a {
  background-position: -49px 0px
}

.l-sidebar-btm li:nth-child(3) a {
  background-position: -98px 0px
}

.l-sidebar-btm li:nth-child(4) a {
  background-position: -147px 0px
}

.l-sidebar-btm dl {
  display: table;
  width: 100%;
  padding: 0px 40px 0 52px;
  margin-bottom: 10px;
}

.l-sidebar-btm dl dt,
.l-sidebar-btm dl dd {
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
  font-family: 'Cardo', serif;
}

.l-sidebar-btm dl dt {
  width: 90px;
}

/*link*/

.link-area {
  margin-top: 30px;
  text-align: right;
}

.c-link {
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
  padding-right: 63px;
  line-height: 1.3;
  background: url(/common/img/corporate/top/btn_arw_black.svg) no-repeat right center;
  background-size: 40px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.c-link:hover {
  background-position: 90% 50%;
}

/*アニメーション*/
.box {
  overflow: hidden;
}

.box .boxInner {
  background-color: #fff;
  opacity: 0;
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );*/
  background: #111;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}

.single-body h1 {
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bbb;
}

.single-body h2 {
  font-size: 20px;
  font-family: ten-mincho-text,serif;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.single-body p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.9;
}

.single-body a {
  text-decoration: underline;
}

.single-body a:hover {
  text-decoration: none;
}

.single-body strong {
  font-weight: 700;
}

.single-body ul {
  margin-bottom: 25px;
}

.single-body ul:not(.p-singlecase-lists) li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.single-body ul:not(.p-singlecase-lists) li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
}

.single-body iframe {
  width: 100%;
  height: 250px;
}

.contents_feature.grid {
  margin: 50px 0 80px;
  background: #f5f5f5;
  display: block;
  padding: 20px;
}

.contents_feature_ttl {
  width: 1005;
}

.contents_feature_ttl h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.contents_feature_ttl h3 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.contents_feature_inner-box {
  width: 100%;
  margin-left: auto;
}

.contents_feature_inner {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.contents_feature_inner:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.contents_feature_inner__ttl {
  font-weight: bold;
  font-size: 14px!important;
  margin-bottom: 6px!important;
}

.contents_case_inner__inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0px 0 40px;
}

.contents_case_inner__head {
  width: 100%;
  margin-top: 20px;
  order: 2;
}

.contents_case_inner__thum {
  width: 100%;
  order: 1;
}

.contents_case_inner__thum img {
  margin-bottom: 0!important;
}

.contents_case_inner__ttl {
  font-weight: 700;
  color: #22B4BD;
  font-size: 16px!important;
}

/*faq*/

.contents_faq.grid {
  background: #f5f5f5;
  padding: 20px;
  display: block;
}

.contents_faq_ttl {
  width: 200px;
}

.contents_faq_ttl h3 {
  margin-top: 0;
}

.contents_faq_ttl h3 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.contents_faq_inner-box {
  width: 100%;
}

.contents_faq_inner {
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  background: #fff;
  padding: 20px;
}

.contents_faq_inner__ttl {
  font-weight: bold;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 16px!important;
}

.contents_faq_inner__ttl span ,
.contents_faq_inner__txt span {
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
}

.contents_faq_inner__txt {
  padding-left: 20px;
  display: block;
  padding-top: 18px;
  overflow: hidden;
}

.contents_faq_inner__txt span {
  float: left;
}

.contents_faq_inner__txt p {
  margin-left: auto;
  width: calc(100% - 30px);
  display: block;
  float: right;
}

/*番号付きリスト*/

.single-body ol {
  counter-reset: item;
  list-style-type: none;
  margin:0 0 24px;
  padding:0;
}

.single-body ol li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.single-body ol li + li {
  margin-top: 7px;
}

.single-body ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  left: 0;
  top: -1px;
  color: #111;
  font-size: 16px;
}

.single-body img {
  margin-bottom: 20px;
}

/*table type01*/
.single-body table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 20px 0 25px;
}

.single-body table.kakaku-table {
  width: 100%;
}

.single-body table thead,
.single-body table tbody {
  text-align: left;
}

.single-body table tr th {
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
}

.single-body table tr th ,
.single-body table tr td {
  vertical-align: top;
  padding: 10px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.single-body table tr th {
  padding: 10px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.single-body table tr td {
  border: 1px solid #cccccc;
  text-align: left;
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-sp {
  display: block !important;
}
.u-pc {
  display: none !important;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc{
  display:         box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n{
  font-weight: normal !important;
}
.u-fw-b{
  font-weight: bold !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}

@media screen and (max-width: 370px) {
  .main-catch p {
    font-size: 26px;
  }
  /*.l-header-maint {
    padding-top: 45%;
  }*/
}