@charset "utf-8";
/****************************
  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;
}
html {
  background: #fff;
  margin: 0!important;
}

body {
	  font-family: -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  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; */
  line-height: 1.6;
  color: #000;
  min-width: 1200px;

}

ol, ul {
  list-style: none;
}

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

select {
  font-size: 14px;
  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;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.l-header.sub {
  display: none;
}

.l-header-logo {
  position: absolute;
  left: 50px;
  top: 42px;
  z-index: 2;
  /*width: 45px;*/
}

.l-header-maint {
  position: absolute;
  transition: opacity .8s;
  top: 40%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-catch p {
  font-size: 90px;
  color: #fff;
}

.main-catch span {
  color: #fff;
  font-size: 30px;
  margin-bottom: 60px;
  display: block;
}

.play_btn a {
  display: block;
  cursor: pointer;
  width: 70px;
  margin: auto;
}

.play_btn a .circle {
  width: 70px;
  height: 71px;
  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: 70px;
  height: 70px;
  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: 20px;
  white-space: nowrap;
}

/*scroll*/

.scroll {
  color: white;
  letter-spacing: 0.2em;
  font-family: "Oswald", sans-serif;
  right: 52px;
  height: 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  z-index: 2;
  bottom: 0;
  top: auto;
  transform: translateY(-50%);
  position: absolute;
}

.scroll p {
  writing-mode: vertical-rl;
  font-size: 14px;
  margin-top: -50px;
}

.ani {
  position: absolute;
  top: 60px;
  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%); } }

#sp-header {
  display: none;
}

/*mv*/

.bg-movie {
  position: relative;
  width: 100%;
  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;
}

.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: 150px;
}

.l-footer-top {
  background-color: #111111;
  text-align: center;
  padding: 40px;
  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;
}

.ft-top-link {
  margin-right: 9%;
}

.ft-top-link a {
  padding-left: 30px;
  background: url(/common/img/corporate/top/ico-home.svg) no-repeat left center;
  font-size: 14px;
}

.l-footer-inner {
  position: relative;
  padding: 100px 85px;
}

.l-footer-inner ul {
  margin-right: 9%;
}

.l-footer-inner ul:last-child {
  margin-right: 0;
}

.l-footer-inner ul li {
  margin-bottom: 20px;
}

.l-footer-inner ul li a {
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.l-footer-inner ul li a:hover {
  text-decoration: underline;
}

.ft-bottom {
  position: absolute;
  right: 30%;
  bottom: 40px;
}

.ft-sns {
  margin-left: auto;
  justify-content: flex-end;
}

.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: 13px;
  letter-spacing: 2px;
  margin-top: 20px;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

.l-mv-news {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 693px;
  height: 129px;
  background-color: #111;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 999;
  text-align: left;
}

.l-mv-news a {
  padding: 33px 36px;
  background: url(/common/img/corporate/top/btn_arw_shite.svg) no-repeat 90% 55%;
  display: block;
  -webkit-transition:.2s;
  -o-transition:.2s;
  transition:.2s;
}

.l-mv-news .lead {
  margin-bottom: 10px;
}
.l-mv-news .lead h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.l-mv-news p {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding-right: 130px;
}

.l-mv-news a:hover {
  background: url(/common/img/corporate/top/btn_arw_shite.svg) no-repeat 95% 55%;
}

.container-body {
  width: calc(100% - 320px);
  padding: 100px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container-body.sub {
  padding-top: 0;
}

.p-category .lead h2 {
  text-align: left;
}

.p-category .lead h2 span {
  display: block;
  padding-left: 0;
}

.effect-mono {
  filter: grayscale(70%);
  transition: filter 0.3s;
}

.effect-mono:hover {
  filter: grayscale(0);
}

.p-category {
  width: 100%;
  padding-left: 85px;
  padding-right: 85px;
  margin: 0 auto 145px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.p-category-list {
  position: relative;
  margin-left: -10px;
}

.p-category-list li {
  position: relative;
  margin-bottom: 20px;
}
.p-category-list li:nth-of-type(1) {
  margin: 1%;
  width: 31%;
}
.p-category-list li:nth-of-type(2) {
  position: relative;
  width: 49%;
  margin-right: 2%;
  float: left;
}
.p-category-list li:nth-of-type(3) {
  margin-right: 0;
  width: 49%;
  float: left;
}
.p-category-list li:nth-of-type(4) {
  width: 32%;
  margin-right: 2%;
  float: left;
}
.p-category-list li:nth-of-type(5) {
  width: 32%;
  margin-right: 2%;
  float: left;
}
.p-category-list li:nth-of-type(6) {
  width: 32%;
  margin-right: 0;
  float: left;
}

.p-category-list__items.tit-cat .lead {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
}

.p-category-list li:nth-child(10) {
  width: 64%;
}

.p-cat-thum__bg:after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 60px;
  height: 9px;
  background: url(/common/img/corporate/top/btn_arw_shite.svg);
  background-repeat:  no-repeat;
  background-position: 100% 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;
}

.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 {
  padding-top: 10px;
}

.p-cat-thum__txt span {
  display: block;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
}

.p-cat-thum__txt p {
  font-size: 14px;
  font-family: ten-mincho-text,serif;
  font-weight: 400;
}

.p-news .lead .link-area ,
.p-issue .lead .link-area ,
.p-case .lead .link-area {
  margin-left: auto;
  position: relative;
  top: -10px;
}

.p-issue {
  margin-bottom: 150px;
}

.p-case {
  /*margin-bottom: 120px;*/
}

.p-issue .lead ,
.p-case .lead {
  padding-left: 85px;
  padding-right: 85px;
}

.p-issue-ttl {
  font-size: 18px;
  font-family: ten-mincho-text,serif;
}

.p-issue-ttl span {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 6px;
  display: block;
}

.p-issue-txt {
  width: 30%;
  height: 100%;
  padding-left: 80px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.p-issue-thum {
  /*width: calc(100% - 480px);*/
  width: 70%;
}

.p-issue-thum img {
  width: 100%;
}

.p-issue-list .grid {
  position: relative;
  margin-bottom: 4px;
}

.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: 85px;
  padding-right: 85px;
}

.p-case-list li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 50px;
}

.p-case-list li:nth-child(3n) {
  margin-right: 0;
}

.p-case-list li:nth-child(2),
.p-case-list li:nth-child(5) {
  margin-top: 40px;
}

.p-case-list li:nth-child(3),
.p-case-list li:nth-child(6) {
  margin-top: 80px;
}

.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: -35px;
  margin-left: -20px;
  padding: 36px 40px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.p-case-list__txt--ttl {
  font-size: 18px;
  font-family: ten-mincho-text,serif;
}

.p-case-list__txt--ttl span {
  font-size: 22px;
  display: block;
}

.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: 134px 85px;
}

.p-ranking-slider {
  margin-left: -20px;
  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 {
  position: relative;
}

.p-ranking-slider li:before {
  content : counter(wpp-ranking, decimal);
  position: absolute;
  top: -10px;
  right: 10px;
  color: #000;
  counter-increment: wpp-ranking;
  z-index: 9999;
  background: #fff;
  width: 58px;
  height: 67px;
  line-height: 67px;
  font-size: 30px;
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
  text-align: center;
}

/*news*/

.p-news {
  padding: 150px 85px 150px;
}

.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%;
  padding: 50px 130px 50px 60px;
  -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: 18px;
}

.p-news-inner span {
  font-size: 18px;
  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: 80px 85px;
}

.c-btn {
  display: inline-block;
  width: 400px;
  padding: 20px 90px;
  -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-color: #fff;
  font-size: 18px;
  margin-left: 20px;
  margin-right: 20px;
  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 {
  cursor: pointer;
  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-color: #111;
}

.c-btn.c-btn-black:hover {
  cursor: pointer;
  background-position: 93% 50%;
}

.p-contact .c-btn {
  width: 600px;
  display: block;
  margin: 0 auto;
}

.p-contact .lead {
  margin-bottom: 18px;
}

.p-contact .lead h2 {
  color: #fff;
  text-align: center;
  font-size: 36px;
}

.p-contact .lead h2 span {
  color: #fff;
  font-size: 18px;
  display: block;
  text-align: center;
}


/*company*/

.company-left {
  width: 46%;
  margin-right: auto;
}

.company-right {
  width: 46%;
}

/*-------- table type ---------------*/
.table-style, 
.table-type-a { width: 100%; }
.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: 80px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.table-type-a p {
  margin-top: 27px;
}

.gold {
  color: #A5906B;
}

h3 {
  margin-top: 30px;
  font-size: 24px;
  padding-left: 20px;
  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-left: 15px;
  vertical-align: middle;
}

.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: 30px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  font-family: 'Cardo', serif;
}

.c-center h2 span {
  font-size: 16px;
  padding-left: 15px;
}

/*flow*/

.workflow-head { margin: 15px 0 20px; }

.workflow-step { display: -webkit-flex; display: flex; -webkit-flex-direction: row; flex-direction: row; -webkit-justify-content: flex-start; justify-content: flex-start; -webkit-flex-flow: row wrap; flex-flow: row wrap; margin-bottom: 20px; border-right: 1px solid #B4B4B4; border-top: 1px solid #B4B4B4; }

.workflow-step-box { border-left: 1px solid #B4B4B4; border-bottom: 1px solid #B4B4B4; border-collapse: collapse; box-sizing: border-box; width: 33.3%; }
.workflow-step-box:nth-child(1) { z-index: 500; }
.workflow-step-box:nth-child(2) { z-index: 400; }
.workflow-step-box:nth-child(3) { z-index: 300; }
.workflow-step-box:nth-child(4) { z-index: 0; }
.workflow-step-box:nth-child(5) { z-index: 100; }
.workflow-step-box:nth-child(6) { z-index: 200; }
.workflow-step-box.alw-right { position: relative; display: inline-block; }
.workflow-step-box.alw-right:after { content: ""; position: absolute; top: 178px; right: -11px; display: block; width: 20px; height: 20px; border-style: solid; border-width: 0 1px 1px 0; border-color: transparent #B4B4B4 #B4B4B4 transparent; transform: rotate(-45deg); z-index: 0; }
.workflow-step-box.alw-right:before { content: ""; position: absolute; top: 174px; right: -16px; display: block; width: 20px; height: 28px; z-index: -10; background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiLz48c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzFhMWExYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #f5f5f5), color-stop(51%, #fff)); background: -moz-linear-gradient(#f5f5f5 50%, #fff 51%); background: -webkit-linear-gradient(#f5f5f5 50%, #fff 51%); background: linear-gradient(#f5f5f5 50%, #fff 51%); }
.workflow-step-box.alw-bottom { position: relative; display: inline-block; }
.workflow-step-box.alw-bottom:after { content: ""; position: absolute; 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 #B4B4B4 #B4B4B4; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); z-index: 0; background: #fff; }
.workflow-step-box.alw-left { position: relative; display: inline-block; }
.workflow-step-box.alw-left:after { content: ""; position: absolute; top: 178px; left: -11px; display: block; width: 20px; height: 20px; border-style: solid; border-width: 1px 0 0 1px; border-color: #B4B4B4 transparent transparent #B4B4B4; transform: rotate(-45deg); z-index: 0; }
.workflow-step-box.alw-left:before { content: ""; position: absolute; top: 174px; left: -16px; display: block; width: 20px; height: 28px; z-index: -10; background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiLz48c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzFhMWExYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, #f5f5f5), color-stop(51%, #fff)); background: -moz-linear-gradient(#f5f5f5 50%, #fff 51%); background: -webkit-linear-gradient(#f5f5f5 50%, #fff 51%); background: linear-gradient(#f5f5f5 50%, #fff 51%); }

.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: 800px; }

.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 { float: left; width: 460px; }

.contents-right { float: right; width: 56%; }

.contents-txt {
    margin-bottom: 20px;
}

/*blog*/

.p-blog + .p-blog {
  margin-top: 130px;
}

.p-blog-list li {
  width: 31%;
  float: left;
  margin-right: 3.5%;
  margin-bottom: 40px;
}

.p-blog-list li:nth-child(3n) {
  margin-right: 0;
}

.p-blog-list li .p-blog-txt {
  margin-top: 20px;
}

.p-blog-txt__date {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 3px;
}

.p-blog-txt__ttl {
  font-size: 14px;
}




/*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: 530px;
  float: left;
}

.contact-section-right {
  width: 530px;
  float: right;
}

.contact-form-list li {
  margin-bottom: 18px;
}

.form-txt {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.form-txt.w-105 {
  width: 105px;
}

.form-txt.w-126 {
  width: 126px;
}

.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 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-group .contact-sheet {
  float: left;
  margin-right: 30px;
}

.contact-group .contact-schedule {
  float: left;
}

.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 {
  clear: both;
  margin: 30px 25%;
  padding-top: 5px;
}

.btn-section-center { width: 100%; margin: 30px 0 100px; }
.btn-section-center ul { text-align: center; }
.btn-section-center ul li { display: inline; margin: 10px 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 15% 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: 100px;
}

.p-related-products__lists li {
  width: 100%;
}

.p-related-products__lists li + li {
  margin-top: 100px;
}

.p-related-products__txt ,
.p-related-products__thum {
  width: 48%;
}

.p-related-products__thum {
  margin-left: auto;
}

.p-related-products__thum img {
  width: 100%;
}

.p-related-products h2 {
  text-align: center;
  margin-bottom: 55px;
}

.p-related-products h2 span {
  padding-left: 15px;
  font-size: 16px;
  margin-top: 10px;
  display: block;
}

.p-related-products__ttl {
  font-size: 22px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.p-related-products__txt .c-btn {
  width: 300px;
  background-size: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 32px;
}

.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: 80px;
}

.p-singlecase-lists li {
  width: 30%;
  margin-right: 5%;
}

.p-singlecase-lists li:nth-child(3n) {
  margin-right: 0;
}

.p-singlecase-lists__thum {
  margin-bottom: 20px;
}

.p-singlecase-lists__thum img {
  width: 100%;
}

.p-singlecase-lists__ttl {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

/*sitemap*/

.p-sitemap-wrap__col8 {
  margin-left: 150px;
}

.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 + .p-sitemap-list__item {
  margin-left: 90px;
}

.p-sitemap-list__item li {
  margin-bottom: 30px;
}

.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);
}

/*blog*/
/* archive-section */
.archive-section { width: 101.2%; display: -webkit-flex; display: flex; -webkit-flex-direction: row; flex-direction: row; -webkit-justify-content: flex-start; justify-content: flex-start; -webkit-flex-flow: row wrap; flex-flow: row wrap; margin-left: -1.2%; }
.archive-section.archive-size-s .archive-box { width: 18.8%; }
.archive-section.archive-size-l .archive-box { width: 32.1%; }

.archive-box { background: #F2F2F2; width: 23.8%; margin-bottom: 15px; margin-left: 1.2%; }

.archive-box-img { padding-top: 73%; }

.archive-box-img, .aside-works-box_img { width: 100%; background-size: cover; background-repeat: no-repeat; background-position: center center; position: relative; }
.archive-box-img a, .aside-works-box_img a { position: absolute; top: 0; left: 0; display: block; width: 100%; height: 100%; color: white; text-decoration: none; }
.archive-box-img .hover-contents, .aside-works-box_img .hover-contents { display: block; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); text-align: center; position: relative; }
.archive-box-img .hover-contents .hover-tit, .aside-works-box_img .hover-contents .hover-tit { font-size: 12px; border: 1px solid white; padding: 8px; text-align: center; width: auto; display: inline-block; margin-top: 38px; }
.archive-box-img .hover-contents .hover-alw, .aside-works-box_img .hover-contents .hover-alw { font-size: 60px; line-height: 1; margin: 5px 0; }
.archive-box-img .hover-contents .hover-txt, .aside-works-box_img .hover-contents .hover-txt { font-size: 14px; }

.archive-box-title { padding: 15px 10px 12px; border-bottom: 1px solid #333; overflow: hidden; *zoom: 1; font-weight: bold; }
.archive-box-title .archive-box-date { float: left; font-size: 13px; }
.archive-box-title .archive-box-type { float: right; color: #A5906B; font-size: 12px; }
.archive-box-title .archive-box-no { font-size: 18px; color: #A5906B; float: left; line-height: 1; padding-top: 3px; }
.archive-box-title .archive-box-price { font-size: 21px; float: right; line-height: 1; }
.archive-box-title .archive-box-price span { font-size: 14px; font-weight: normal; }

.archive-box-body { padding: 10px; box-sizing:border-box; width:100%;}
.archive-box-body h3 { font-size: 13px; margin-bottom: 6px; font-weight:bold; margin-top: 0;}
.archive-box-body p { font-size: 12px; }
.archive-box-body dl { font-size: 12px; overflow: hidden; *zoom: 1; }
.archive-box-body dl dt { color: #A5906B; clear: both; float: left; width: 26%; margin-bottom: 5px; margin-right: 2%; }
.archive-box-body dl dd { float: left; width: 72%; margin-bottom: 5px; }

/*-------- blog ---------*/
.blog-detail { margin-top: 20px; /* clearfix */ overflow: hidden; *zoom: 1; }

.blog-detail-main { width: 800px; float: left; }

.blog-detail-head { margin-bottom: 15px; }
.blog-detail-head .blog-detail-head_date { font-size: 15px; }

.blog-detail-body { margin-bottom: 30px; }
.blog-detail-body strong { font-weight: bold;}
.blog-detail-body h1 { font-size: 30px;}
.blog-detail-body p { margin-bottom: 20px; }
.blog-detail-body a { text-decoration:underline;}
.blog-detail-body a:hover { text-decoration:none;}
.blog-detail-body img { max-width: 100%; height: auto; }

.blog-detail-aside { width: 260px; float: right; }

.aside-list { margin-bottom: 20px; }
.aside-list li { margin-bottom: 5px; }
.aside-list a { color: inherit; text-decoration: none; }
.aside-list a:hover { text-decoration: underline; }

/*-------- media ---------*/

.nt-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 60px 20px;
}

.nt-center h2 {	color: aliceblue;
  padding: 1rem 2rem;
  margin-top: 30px;
  font-size: 22px;
	font-weight: bold;
  border-left: 3px solid #4c4c4c;
  margin-bottom: 25px;
  background:#606060;/* グラデーション指定 */
}

.nt-center h3 {
  margin-top: 30px;
  padding-left: 20px;
  margin-bottom: 25px;
  font-size: 20px;
	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 h2 span {
  font-size: 16px;
  padding-left: 15px;
	
}

.nt-center strong {
	font-weight: bold;
    font-size: larger;
	
}

.nt-center img {
margin-top: 10px;
	
}


h1.nt-blog-detail-head_tit {
	color: aliceblue;
	font-weight: bold;
	top: 15px;
  left: 15px;
	width: 750px;
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background:linear-gradient(275deg, rgba(164, 205, 217, 1), rgba(87, 141, 171, 1));/* グラデーション指定 */
  font-size: 22px;
}

h1.nt-blog-detail-head_tit:before {
		color: #191919;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #4c4c4c;
}

.nt-blog-detail-head { margin-bottom: 15px; }
.nt-blog-detail-head .nt-blog-detail-head_date { font-size: 15px;
margin-top: 30px;}


.nt-blog-detail { margin-top: 30px; /* clearfix */ overflow: hidden; *zoom: 1; }

.nt-blog-detail-main { width: 780px; float: left; }

.nt-blog-detail-img { width: 100%; text-align: center; margin-bottom: 20px; }

.nt-blog-detail-textarea {
	padding-left: 20px;
	margin: 0px 30px;
}


figcaption {
    font-size: 10px;
    margin-bottom: 5px;
}


section.nt-media-body {
	line-height: 1.9;
	font-kerning: auto;
	letter-spacing: 1.5px;
	margin-top: 20px;
	margin-bottom: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';}
section strong.nt-media-body { font-weight: bold;}
section h2.nt-media-body {
padding: 1rem 2rem;
  margin-top: 30px;
  font-size: 24px;
  border-left: 3px solid #000;
  margin-bottom: 25px;
  background: linear-gradient(to right, rgb(48, 224, 192) 0%,rgba(96,155,208,0.7) 30%,rgba(125,185,232,0) 100%);/* グラデーション指定 */}

section p.nt-media-body { margin-bottom: 20px; }
section a.nt-media-body { text-decoration:underline;}
section a.nt-media-body:hover { text-decoration:none;}
section img.nt-media-body { max-width: 100%; height: auto; text-align: center;}

.nt-blog-detail-aside { width: 200px; float: right; }

.nt-aside-list { margin-bottom: 20px; margin-top: 20px;}
.nt-aside-list li { margin-bottom: 5px; }
.aside-list a { color: inherit; text-decoration: none; }
.aside-list a:hover { text-decoration: underline; }


/*-------- pagenation ---------------*/
.pagenation ul { /* clearfix */ overflow: hidden; *zoom: 1; }
.pagenation ul li.prev { float: left; }
.pagenation ul li.next { float: right; }
.pagenation ul li a { color: inherit; text-decoration: none; }

/* archive-head */
.archive-head { overflow: hidden; *zoom: 1; margin-bottom: 20px; background: #83CFC8; color: #fff; }

.archive-refine { float: none; width: auto; border-bottom: 1px solid #22B4BD; }
.archive-refine a { color: white; text-decoration: none; }

.archive-refine-select { display: block; padding: 7px 0; margin: auto; border-bottom: 1px solid #22B4BD; }
.archive-refine-select dl { display: block; width: 1100px; margin: auto; }
.archive-refine-select dt, .archive-refine-select dd { display: table-cell; border: none; padding: 5px; width: 100px; text-align: center; font-size: 12px; }
.archive-refine-select dd { border: 2px solid #fff; width: auto; padding: 5px 10px; }
.archive-refine-select dt span { font-size: 14px; line-height: 1;}

.archive-refine-list { display: flex; justify-content: space-evenly; border: none; padding: 12px 10px; font-size: 12px; width: 1100px; margin: auto;}
.archive-refine-list li { display: flex; margin-right: 0; }
.archive-refine-list li a.active { color: #A5906B; pointer-events: none; }
/* .archive-refine-list li:nth-child(4) { display: flex; width: 140px; justify-content: flex-start;} */
.archive-refine-list li ul { display: flex; }
.archive-refine-list li ul li { margin-left: 38px; }

.archive-thumb { float: right; }
.archive-thumb p { float: left; margin-right: 5px; }
.archive-thumb ul { float: right; text-align: center; }
.archive-thumb ul li { display: inline-block; margin-left: 8px; }
.archive-thumb ul li a { display: block; border: 1px solid #333; padding: 5px; line-height: 1; text-align: center; font-size: 11px; color: white; text-decoration: none; }
.archive-thumb ul li a.active { border-color: #A5906B; pointer-events: none; }

/* work-detail */
.work-detail { margin-top: 25px; /* clearfix */ overflow: hidden; *zoom: 1; }

.work-detail-main { float: left; width: 800px; }

.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; }

.aside-works-box { margin-bottom: 20px; }

.aside-works-box_img { width: 260px; height: 195px; background: center center no-repeat; background-size: cover; }

.movFrame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movFrame iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 60px 20px;
}

.lv {
  position: relative;
  width: 100%;
  height: 130px;
  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: 40px;
  color: #fff;
  z-index: 2;
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
}

/*breadcrumbs*/

.p-breadcrumbs {
  background-color: #f5f5f5;
  padding: 15px 5px;
  margin-bottom: 45px;
}

.p-breadcrumbs .c-center {
  padding: 0 20px;
}

.p-breadcrumbs ul li.arrow {
  position: relative;
  width: 26px;
  height: 14px;
}

.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-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333333%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }

/*top title*/

.lead {
  margin-bottom: 64px;
}

.lead h2 {
  font-size: 36px;
  color: #333333;
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
  font-weight: 700;
}

.lead h2 span {
  font-family: ten-mincho-text,serif;
  font-size: 18px;
  padding-left: 30px;
  font-weight: 400;
}

/*sidebar*/

.l-siderbar {
  width: 320px;
  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-y: 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;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
 /*Google Chrome、Safariへの対応*/
.l-siderbar::-webkit-scrollbar{
  display: none;
}

.l-sidebar-logo {
  padding: 30px 30px 0;
  margin-bottom: 33px;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.l-sidebar-logo img {
  /*width: 45px;*/
}

.l-nav {
  padding: 0px 24px;
  padding-bottom: 38px;
  border-bottom: 1px solid #eeeeee;
}
.l-nav li {
  margin-bottom: 20px;
  position: relative;
}

.l-nav li a {
  display: inline-block;
  padding-right: 20px;
  font-size: 15px;
  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:hover span.en {
  display: none;
}

.l-nav li a:hover span.jp {
  display: inline;
}

.plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 17px;
  height: 17px;
}

.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: 17px;
  left: 8px;
  top: 2px;
}

.plus:after {
  width: 17px;
  height: 1px;
  top: 10px;
}

.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 {
  /*padding-left: 1em;*/
  display: none;
  padding-top: 20px;
}

.l-nav-second {
  margin-bottom: 10px;
}

.l-nav-second li {
  margin-bottom: 15px;
}
/*.l-nav-second li:before {
  content: "・";
  position: absolute;
  top: 0;
}*/
.l-nav-second li a {
  font-size: 12px;
  font-weight: 400!important;
  padding-left: 1em;
  letter-spacing: .1em;
}
.l-nav-second li a span {
  font-size: 10px;
  letter-spacing: .03em;
}

.side-ttl-cat {
  color: #22B4BD;
  font-family: ten-mincho-text,serif;
  border-bottom: 1px solid #22B4BD;
  padding-bottom: 10px; 
}

.l-sidebar-btm {
  padding-top: 40px;
}


.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 24px 0;
  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;
}

/*carouselカルーセル*/

/**
 * Button
 */
.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-transparent:hover {
  background-color: #fff;
}

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}



/*link*/

.c-link {
  letter-spacing: 6px;
  font-family: 'Cardo', serif;
  padding-right: 83px;
  line-height: 1.3;
  background: url(/common/img/corporate/top/btn_arw_black.svg) no-repeat right center;
  -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: 34px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    /* padding-bottom: 10px; */
    /* border-bottom: 1px solid #bbb; */
    /* font-weight: bold; */
    /* font-family: 'ヒラギノ角ゴシック',sans-serif; */
    /* background: #27acd9; */
    /* color: #fff; */
    /* padding: 0.75rem 2rem; */
    font-weight: bold;
    text-align: center;
    padding: 1rem 2rem;
    color: #fff;
    transform: skew(-15deg);
    background-image: linear-gradient(to right, #27acd9 0%, #b4e12b 100%);
}


.single-body h2 {
    font-size: 26px;
    font-family: ten-mincho-text,serif;
    letter-spacing: 4px;
    margin-bottom: 30px;
    margin-top: 20px;
    /* background: linear-gradient(transparent 60%, #c8f1ff 60%); */
    border-bottom: dashed 2px #27acd9;
    padding: 10px 0;
}


.single-body h3 {
    margin-top: 30px;
    font-size: 24px;
    /* padding-left: 20px; */
    /* border-left: 3px solid #111; */
    margin-bottom: 25px;
    /* border-bottom: 1px solid #A3A3A3; */
    padding: 0.2em 0.5em;
    border-left: solid 5px #27acd9;
    font-family: ten-mincho-text,serif;
    letter-spacing: 4px;
}


.single-body h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: .7px;
    background: linear-gradient(transparent 50%, #c8f1ff 50%);
}



.single-body p {
    margin-bottom: 15px;
    /* font-size: 14px; */
    /* line-height: 1.9; */
    font-size: 16px;
    letter-spacing: .8px;
    line-height: 1.6;
}

.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;
}

.contents_feature {
  margin: 50px 0 80px;
  background: #f5f5f5;
  padding: 50px;
}

.contents_feature_ttl {
  width: 200px;
}

.contents_feature_ttl h3 {
  margin-top: 0;
}

.contents_feature_ttl h3 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.contents_feature_inner-box {
  width: calc(100% - 260px);
  margin-left: auto;
}

.contents_feature_inner {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.contents_feature_inner__ttl {
  font-weight: bold;
  font-size: 18px!important;
}

.contents_case_inner__inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin: 0px 0 50px;
}

.contents_case_inner__head {
  width: calc(100% - 55%);
}

.contents_case_inner__thum {
  margin-left: auto;
  width: 50%;
}

.contents_case_inner__inner:nth-child(even) .contents_case_inner__head {
  order: 2;
}

.contents_case_inner__inner:nth-child(even) .contents_case_inner__thum {
  order: 1;
  margin-left: 0;
  margin-right: auto;
}

.contents_case_inner__ttl {
  font-weight: 700;
  color: #22B4BD;
  font-size: 18px!important;
}

/*faq*/

.contents_faq {
  margin: 50px 0 80px;
  background: #f5f5f5;
  padding: 50px;
}

.contents_faq_ttl {
  width: 200px;
}

.contents_faq_ttl h3 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.contents_faq_inner-box {
  width: calc(100% - 260px);
  margin-left: auto;
}

.contents_faq_inner {
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  background: #fff;
  padding: 20px;
}

.contents_faq_inner__ttl {
  font-weight: bold;
  font-size: 18px!important;
}

.contents_faq_inner__ttl span ,
.contents_faq_inner__txt span {
  font-size: 22px;
  font-weight: bold;
  margin-right: 20px;
}

.contents_faq_inner__txt {
  padding-left: 20px;
  display: block;
  overflow: hidden;
  padding-top: 18px;
}

.contents_faq_inner__txt span {
  float: left;
}

.contents_faq_inner__txt p {
  margin-left: auto;
  width: calc(100% - 50px);
  float: right;
  display: block;
}

/*番号付きリスト*/

.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: 20px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.single-body table tr th {
  padding: 20px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.single-body table tr td {
  border: 1px solid #cccccc;
  text-align: left;
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: block !important;
}
.u-sp {
  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: 1600px){
  .p-issue-txt {
    padding-left: 30px;
    padding-right: 20px;
  }

  .p-case-list__txt {
    width: 90%;
    padding: 30px;
  }
  
  .p-case-list__txt--ttl span {
    font-size: 20px;
  }

  .p-case-list__txt--ttl {
    font-size: 16px;
  }

  .p-issue-ttl span {
    font-size: 22px;
  }

  .p-issue-ttl {
    font-size: 16px;
  }

  .p-category .lead h2 {
    font-size: 30px;
  }

}




