@charset "UTF-8";
.sp-only{
  display: block;
}
.pc-only{
  display: none;
}
html{
  font-size: 62.5%;
  height: 100%;
  overflow: scroll;
}
body{
  font-size: 1.6rem;
  height: 100%;
}

/* *********************************
*
* components
*
********************************* */
/* ======================== 
  container
======================== */
.inner,
.inner--lr,
.inner--sm{
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
.bg-beige{
  background-color: #f4efe8;
}
.bg-beige--grad{
  background: linear-gradient(#faf8f5 0% 5%, #f4efe8 5% 100%);
}
.bg-white--grad{
  background: linear-gradient(#faf8f5 0% 10%, #fff 10% 100%);
}


/* ======================== 
  headline
======================== */
.common-ttl--lr{
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.common-ttl{
  font-size: 2.0rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 24px;
}
.common-lead{
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
}
.common-num{
  font-size: 4rem;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  color: #a28557;
  font-style: italic;
}


/* ======================== 
  media
======================== */
.media{
  margin-bottom: 32px;
}
.media .media__img{
  margin-bottom: 16px;
}
.media .media__body{
  margin-bottom: 40px;
}
.media .media__body .media__ttl{
  font-size: 2.4rem;
  font-weight: bold;
  color: #a28557;
  padding-bottom: 8px;
  border-bottom: 2px solid #a28557;
  margin-bottom: 16px;
}
.media .media__body .media__ttl--noBd{
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 16px;
}
.media .media__body .media__cont--icon{
  padding-left: 1em;
  text-indent: -1.25em;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.media .media__body .media__cont--icon .icon{
  display: inline-block;
  width: 20px;
}
.media .media__body .media__cont--icon .icon img{
  display: block;
}


/* ======================== 
  table
======================== */
.table{
  width: 100%;
  border-collapse: collapse;
}
.table--default tr:not(:last-child){
  border-bottom: 2px solid #fff;
}
.table th:not(:last-child),
.table td:not(:last-child){
  border-right: 2px solid #fff;
}
.table--cent{
  text-align: center;
}
.table--cent td{
  vertical-align: middle;
}

.table th,
.table td{
  padding: 16px;
}
.table th{
  color: #fff;
  text-align: center;
  background: #a28557;
  font-weight: bold;
}
.table--default tr:nth-child(odd) td,
.table--default.rev tr:nth-child(even) td{
  background: #e3cfaf;
}
.table--default tr:nth-child(even) td,
.table--default.rev tr:nth-child(odd) td{
  background: #f1e1c6;
}
/* non-background */
.table--nonBg{
  border: 2px solid #a28557;
}
.table--nonBg th{
  border-bottom: 2px solid #fff;
}
.table--nonBg tr:last-child th{
  border: none;
}
.table--nonBg td{
  border-bottom: 2px solid #a28557;
  text-align: center;
}
.table--nonBg td:not(:last-child){
  border-right: 2px solid #a28557;
}

/* ======================== 
  btn
======================== */
.btn{
	background: #a28557;
	display: block;
	position: relative;
	text-align: center;
	color: #fff;
  border: 1px solid #a28557;
  font-weight: bold;
  margin: auto;
  padding: 10px 8px;
  border-radius: 32px;
  width: 100%;
  font-family: 'aktiv-grotesk-condensed', 'Noto Sans JP', sans-serif;
}
.btn:visited{
  color: #fff;
}
.btn::before{
  position: absolute;
  top: calc(50% - 8px);
  right: 32px;
  content: '';
  width: 30px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skew(45deg);
}
.btn.btn--ja{
  font-size: 2rem;
}

/* ======================== 
  header
======================== */
.header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
.header.is-open{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
}
.header__inner{
  width: 100%;
  padding: 0 16px;
  position: relative;
}
.header__inner .header__logo{
  width: 180px;
  position: absolute;
  left: 16px;
  top: 16px;
}
.menu-btn{
  width: 60px;
  height: 60px;
  background: #a28557;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  display: inline-block;
}
.menu-btn .menu-btn__icon{
  display: block;
  position: relative;
}
.menu-btn .menu-btn__icon::before,
.menu-btn .menu-btn__icon::after{
  content: "";
  background: #fff;
  height: 3px;
  position: absolute; 
  margin: 0 0 0 -20px; 
  display: block;
  transition: all .3s ease-out;
}
.menu-btn .menu-btn__icon::before{
  width: 32px; 
  top: 0;
  left: 50%; 
}
.menu-btn .menu-btn__icon::after{
  width: 22px; 
  top: 10px; 
  left: calc(50% + 10px); 
}
.menu-btn.is-active .menu-btn__icon::before{
  transform: rotate(45deg); 
  top: 4px; 
  left: 43%;
  width: 32px; 
  margin: 0 0 0 -11px;
}
.menu-btn.is-active .menu-btn__icon::after{
  transform: rotate(-45deg); 
  top: 4px; 
  left: calc(43% + 10px);
  width: 32px; 
}
.menu-btn .menu-btn__text{
  text-align: center;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  color: #fff;
  font-weight: bold;
  display: block;
  margin-top: 24px;
  font-size: 1.2rem;
}
.menu-btn,
.menu-btn:focus,
.menu-btn:active{
  outline: none;
}
.menu-btn--open{
  background: #fff;
}
.menu-btn--open.is-active .menu-btn__icon::before,
.menu-btn--open.is-active .menu-btn__icon::after{
  background: #a28557;
  top: 14px; 
}
/* header-contents */
.header__contents{
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  display: none;
}
.header__contents .inner--lr{
  padding: 16px 16px 80px;
}
.header__contents .header__logo--menu{
  width: 150px;
  margin-bottom: 32px;
}
.header__nav .header__item{
  position: relative;
  border-top: 1px solid #ccc;
}
.header__nav .header__item:last-child{
  border-bottom: 1px solid #ccc;
}

.header__nav .header__item > .header__link{
  display: block;
  padding: 16px 0;
  font-family: 'aktiv-grotesk-condensed', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  transition: all .3s ease;
  border-bottom: 2px solid transparent;
  font-size: 1.3rem;
  position: relative;
}
.header__nav .header__item > .header__link::before{ 
  position: absolute;
  top: calc(50% - 8px);
  right: 16px;
  content: '';
  width: 24px;
  height: 8px;
  border-bottom: 1px solid #a28557;
  border-right: 1px solid #a28557;
  transform: skew(45deg);
}
.header__nav .header__item > .header__link.is-open::before{
  border-right: none;
}
.mega-menu-web,
.mega-menu-webConsult,
.mega-menu-system {
  display: none;
}
.header__sub{
  background: #f4efe8;
  padding: 16px 16px;
}
.header__sub .header__subItem:not(:last-child){
  margin-bottom: 16px;
}
.header__sub .header__subItem a{
  display: block;
}
.header__sub .header__subItem a img{
  margin-right: 8px;
  display: inline-block;
  width: 62px;
}
.header__sub .header__subItem a span{
  font-size: 1.3rem;
  display: inline-block;
  padding-top: 8px;
  line-height: 1.3;
}
.header__sub .header__subItem .mega-btn{
  display: block;
  padding: 8px 16px;
  background: #a28557;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 8px;
  position: relative;
}
.header__sub .header__subItem .mega-btn:last-of-type{
  margin-bottom: 0;
}
.header__sub .header__subItem .mega-btn::after{
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 7px;
  height: 7px;
  border: 3px solid transparent;
  border-right: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
}


/* ======================== 
  footer
======================== */ 
.footer{
  background: #eeeeee;
  margin:0 auto;
}
.footer__inner{
  padding: 56px 16px 64px;
  margin: 0 auto;
}
.footer__inner.footer__inner--top{
  padding: 122px 16px 64px;
}
.footer__menu{
  display: flex;
  margin-bottom: 32px;
}
.footer__menu .footer__info{
  text-align: center;
  margin: 0 auto;
}
.footer__menu .footer__logo{
  max-width: 225px;
  margin: 0 auto 24px;
}
.footer__menu .footer__address{
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.footer__menu .footer__sns{
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__menu .footer__sns li{
  margin: 0 8px;
} 
.footer * a{
  display: block;
}
.footer__menu .footer__sns a img{
  width: 16px;
  height: 16px;
}
.footer__gnav{
  display: none;
}
.footer__copy{
  font-size: 1rem;
  text-align: center;
  display: block;
}

/* ======================== 
  page-header
======================== */ 
.page-header{
  position: relative;
  height: 230px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.page-header::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.page-header-ttl{
  font-family: 'aktiv-grotesk-condensed', 'Noto Sans JP', sans-serif;
  color: white;
  font-style: italic;
  font-size: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-header.company{
  background: url('/_common/img/bg_company.jpg') top center no-repeat;
  background-size: cover;
}
.page-header.news{
  background: url('/_common/img/bg_news.jpg') top center no-repeat;
  background-size: cover;
}
.page-header.contact{
  background: url('/_common/img/bg_contact.jpg') top center no-repeat;
  background-size: cover;
}
.page-header.it_support{
  background: url('/_common/img/bg_support.jpg') center center no-repeat;
  background-size: cover;
}
.page-header.others{
  background: url('/_common/img/bg_others.jpg') center center no-repeat;
  background-size: cover;
}
.page-header.liq{
  background: url('/_common/img/bg_liqyud.jpg') bottom center no-repeat;
  background-size: cover;
}
.page-header.mitsumoru{
  background: url('/_common/img/bg_mitsumoru.jpg') bottom center no-repeat;
  background-size: cover;
}
.page-header.listing{
  background: url('/_common/img/bg_listing.jpg') center center no-repeat;
  background-size: cover;
}
.page-header.instory{
  background: url('/_common/img/bg_ig.jpg') bottom center no-repeat;
  background-size: cover;
}
.page-header.seo{
  background: url('/_common/img/bg_seo.jpg') bottom center no-repeat;
  background-size: cover;
}
.page-header.consult{
  background: url('/_common/img/bg_consult.jpg') center center no-repeat;
  background-size: cover;
}

/* ======================== 
  page-section
======================== */ 
.page-section__container,
.page-section__container--rev{
  position: relative;
}
.page-section__container::before,
.page-section__container--rev::before{
  position: absolute;
  content: '';
  top: -10%;
  border: 30px solid transparent;
}
.page-section__container::before{
  right: 0;
  border-right: 200px solid #a28557;
}
.page-section__container--rev::before{
  left: 0;
  border-left: 200px solid #a28557;
}
.page-section__container .page-section,
.page-section__container--rev .page-section{
  overflow: hidden;
  max-height: 190px;
  position: relative;
}
.page-section__container .page-section::before,
.page-section__container--rev .page-section::before{
  content: '';
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 1;
}
.page-section__container .page-section{
  transform: skewY(-174deg);
}
.page-section__container--rev .page-section{
  transform: skewY(-8deg);
}
.page-section__container .page-section::after,
.page-section__container--rev .page-section::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  min-height: 190px;
}
.page-section__container .page-section img{
  transform: skewY(174deg) scale(1.4) translateY(-15%);
}
.page-section__container--rev .page-section img{
  transform: skewY(8deg) scale(1.4);
}
.page-section__container .page-section img.img--lr,
.page-section__container--rev .page-section img.img--lr{
  transform: scale(1.7);
}
.page-section__container .page-section .page-section__ttl,
.page-section__container--rev .page-section .page-section__ttl{
  position: relative;
  z-index: 1;
  position: absolute;
  top: 40%;
  margin: auto;
}
.page-section__container .page-section .page-section-ttl--flex,
.page-section__container--rev .page-section .page-section-ttl--flex{
  top: 20px;
}
.page-section__container--rev .page-section .page-section-ttl--flex{
  display: flex;
  flex-direction: column-reverse;
}

.section-ttl{
  font-family: 'aktiv-grotesk-condensed', 'Noto Sans JP', sans-serif;
  color: white;
  line-height: 1;
  font-size: 11.7vw;
  font-style: italic;
}

.page-section__container .page-section .page-section__ttl{
  left: 16px;
  transform: skewY(174deg);
}
.page-section__container--rev .page-section .page-section__ttl{
  right: 16px;
  transform: skewY(8deg);
  text-align: right;
}
.page-section__container .page-section .page-section__ttl span,
.page-section__container--rev .page-section .page-section__ttl span{
  display: block;
  font-style: normal;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.page-section__container .page-section .page-section-ttl--flex .page-lead,
.page-section__container--rev .page-section .page-section-ttl--flex .page-lead{
  color: #fff;
  font-size: 1.2rem;
  line-height:1.6;
  padding: 16px;
}

/* *********************************
*
* top
*
********************************* */
/*====== kv =====*/
.hero {
  width: 100%;
  position: relative;
}
.hero::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #fff transparent;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.hero::before {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 140px 0 0 100vw;
  border-color: transparent transparent transparent #a28557;
  bottom: 1px;
  left: 0;
  z-index: 1;
}
.hero .slider {
  width: 100%;
  position: relative;
  height: 90vh;
}
.hero .slider__item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.hero .slider__item .slider__copy {
  animation: kf-kvcopy-animation 40s linear 0s infinite;
  opacity: 0;
  position: absolute;
  z-index: 3;
  transform: translateY(-40%);
}
.hero .slider__item:nth-child(1) .slider__copy{
  top: 25%;
  left: 16px;
}
.hero .slider__item:nth-child(1) .slider__copy h2{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.hero .slider__item:nth-child(1) .slider__copy h2 span{
  display: block;
  margin-top: 8px;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.hero .slider__item:nth-child(2) .slider__copy{
  left: 0;
  right: 0;
  margin: auto;
  bottom: 120px;
  max-width: 90%;
}
.hero .slider__item:nth-child(3) .slider__copy{
  left: 0;
  right: 0;
  margin: auto;
  bottom: 100px;
  max-width: 90%;
}
.hero .slider__item:nth-child(4) .slider__copy{
  left: 0;
  right: 0;
  margin: auto;
  bottom: 80px;
  max-width: 90%;
}
.hero .slider__item:nth-child(5) .slider__copy{
  left: 0;
  right: 0;
  margin: auto;
  bottom: 100px;
}
.hero .slider__item:nth-child(5) .slider__copy h2{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.1;
}
.hero .slider__item:nth-child(5) .slider__copy h2 span{
  background: #fff;
  display: inline-block;
  margin-bottom: 16px;
  padding: 0 8px 16px;
}
.hero .slider__item:nth-child(5) .slider__copy h2 span:last-child{
  margin-left: 2em;
}
.hero .slider__item .slider__img {
  animation: kf-kvimg-animation 40s linear 0s infinite;
  opacity: 0;
  width: 100%;
  height: 90vh;
}
.hero .slider__item:nth-child(1) .slider__img{
  background: url('/_common/img/img_kv01_sp.jpg') top center no-repeat;
  background-size: cover;
}
.hero .slider__item:nth-child(2) .slider__img{
  background: url('/_common/img/img_kv03_sp.jpg') top left no-repeat;
  background-size: cover;
}
.hero .slider__item:nth-child(3) .slider__img{
  background: url('/_common/img/img_kv04_sp.jpg') top left no-repeat;
  background-size: cover;
}
.hero .slider__item:nth-child(4) .slider__img{
  background: url('/_common/img/img_kv05_sp.jpg') top left no-repeat;
  background-size: cover;
}
.hero .slider__item:nth-child(5) .slider__img{
  background: url('/_common/img/img_kv02_sp.jpg') top left no-repeat;
  background-size: cover;
}
.hero .slider__item:nth-child(2) .slider__img,
.hero .slider__item:nth-child(2) .slider__copy {
  animation-delay: 8s;
}
.hero .slider__item:nth-child(3) .slider__img,
.hero .slider__item:nth-child(3) .slider__copy {
  animation-delay: 16s;
}
.hero .slider__item:nth-child(4) .slider__img,
.hero .slider__item:nth-child(4) .slider__copy {
  animation-delay: 24s;
}
.hero .slider__item:nth-child(5) .slider__img,
.hero .slider__item:nth-child(5) .slider__copy {
  animation-delay: 32s;
}
@keyframes kf-kvimg-animation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  5% {
    transform: scale(1.1);
    opacity: 1;
  }
  19% {
    transform: scale(1.2);
    opacity: 1;
  }
  25% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes kf-kvcopy-animation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  19% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero .slider__text {
  position: absolute;
}
.slick-slider button {
  display: none;
}
.hero__footer {
  position: absolute;
  left: 8px;
  z-index: 5;
  bottom: -40px;
  width: 40px;
  height: 155px;
}
.hero__footer a {
  display: block;
}
.hero__footer .hero__scroll-btn {
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-size: 1.2rem;
  color: #fff !important;
  font-weight: bold;
  position: relative;
  transform: rotate(90deg);
  display: inline-block;
  text-align: center;
}
.hero__footer .hero__scroll-line {
  width: 48px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 5.5em;
  left: -12%;
  z-index: 5;
  transform: rotate(90deg);
  animation: kf-arrow 2s linear infinite;
}
@keyframes kf-arrow {
  0%,
  50%,
  100% {
    transform: translateY(0) rotate(90deg);
  }
  30% {
    transform: translateY(15px) rotate(90deg);
  }
}
/*====== greeting =====*/
.Greeting{
  position: relative;
  background-color: #fff;
}
/* .Greeting::before{
  position: absolute;
  content: '';
  border-style: solid;
  border-width: 0 0 72px 100vw;
  border-color: transparent transparent #fff transparent;
  top: 0;
  left: 0;
} */
.Greeting::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100px;
  background: #fff;
  bottom: -100px;
  left: 0;
}
.greeting__body{
  margin: 0 auto;
}
.greeting__body .greeting__catch{
}
.greeting__body .greeting__img{
}
.greeting__body .greeting__catch .common-ttl--lr{
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
  font-size: 2.4rem;
  letter-spacing: -0.025em;
}
.greeting__body .greeting__catch .common-ttl--lr::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background: #d2be9f;
}
.greeting__body .greeting__catch .greeting__lead{
  font-weight: 500;
}
/*====== skew relation responsive =====*/
.skew-rectangular,
.skew-rectangular--rev{
  position: relative;
}
.skew-rectangular::before,
.skew-rectangular--rev::before,
.skew-rectangular::after,
.skew-rectangular--rev::after{
  position: absolute;
  content: '';
  min-height: 200px;
  transform: skewY(174deg);
}
.relationship::before{
  top: 0;
  right: 0;
  width: 87.5%;
  background: #f4efe8;
}
.relationship::after{
  top: 50px;
  left: 0;
  width: 26%;
  background: #d2be9f;
}
.responsiveness::before{
  top: 0;
  left: 0;
  width: 87.5%;
  background: #f4efe8;
}
.responsiveness::after{
  top: 44px;
  right: 0;
  width: 26%;
  background: #d2be9f;
}
.skew-ttl{
  font-size: 14vw;
  color: #e7ddcf;
  font-weight: bold;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  transform: skewY(174deg);
  line-height: 1;
  letter-spacing: -0.025em;
  width: 90%;
}
.skewconts__ttl{
  position: absolute;
  top: 0;
  right: 16px;
  z-index: 1;
}
.skewconts__ttl--le{
  left: 16px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.skewconts__container{
  position: relative;
  z-index: 3;
  padding: 20vw 0 64px;
}
.skewconts__container--rev{
  flex-direction: row-reverse;
}
.skewconts__container .skewconts__img{
  margin-bottom: 40px;
}
.skewconts__container .skewconts__conts{
}
.skewconts__container .skewconts__points {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}
.skewconts__container .skewconts__points .num{
  color: #a28557;
  font-size: 6.8rem;
  font-weight: bold;
  font-style: italic;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  line-height: 0.75;
  margin-right: 24px;
}
.skewconts__container .skewconts__points .point-ttl{
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: -0.025em;
}
.skewconts__container .skewconts__conts .text{
  font-weight: 500;
}
/*====== system =====*/
.sec-inner--top{
  padding: 96px 16px 40px;
}
.system--img{
  margin-top: -5%;
}
.sys-media__container{
  width: 100%;
  margin: 0 auto 80px;
}
.sys-media__container--rev{
  flex-direction: row-reverse;
}
.sys-media__container .sys-media__body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  /* padding: calc(22em * (1.41421356237 - 1) / 2 ); */
  width: 22em;
  height: 22em;
  background: #fff;
  font-size: 4.2vw;
  border-radius: 50%;
  position: relative;
}
.sys-media__container .sys-media__body .num{
  position: absolute;
  top: -25px;
  left: 0;
  color: #e9dfd0;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: bold;
  font-size: 6rem;
  font-style: italic;
  letter-spacing: -0.075em;
}
.sys-media__container .sys-media__body .sys-media__ttl{
  font-size: 3rem;
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}
.sys-media__container .sys-media__body .sys-media__ttl.mitsumoru{
  font-size: 3.4rem;
}
.sys-media__container .sys-media__body .sys-media__ttl.mitsumoru .sub-ttl{
  font-size: 1.8rem;
  display: block;
}
.sys-media__container .sys-media__body .sys-media__ttl .eng-sub{
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  color: #a28557;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px;
}
.sys-media__container .sys-media__body .sys-media__text{
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.sys-media__container .sys-media__body .btn{
  width: 80%;
  margin: 0 auto;
}
.sys-media__container .sys-media__img{
  margin-bottom: 24px;
}


/*====== web consultant =====*/
.TOP .consult-card__container{
  padding-top: 0;
}
.TOP .consult-card__item:not(:last-child){
  margin-bottom: 32px;
}
.TOP .consult-card__item .consult-card__text::before{
  display: none;
}

/*====== news =====*/
.News-top{
  position: relative;
  background-color: #e4d7c1;
}
.News-top::before,
.News-top::after{
  content:"";
  position: absolute;
  width: 0;
  height: 0;
}
.News-top::before{
  border-style: solid;
  border-width: 72px 0 0 100vw;
  border-color: #fff transparent transparent transparent;
  top: 0;
  left: 0;
}
.News-top::after{
  border-style: solid;
  border-width: 72px 0 0 100vw;
  border-color: #e4d7c1 transparent transparent transparent;
  bottom: -72px;
  left: 0;
}
.news-top__ttl{
  text-align: center;
  font-size: 4.5rem;
  margin: 0 auto 40px;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-weight: bold;
  font-style: italic;
  position: relative;
}
.news-top__ttl::before{
  position: absolute;
  content: '';
  width: 40px;
  height: 1px;
  background: #a28557;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.TOP .news__container{
  margin-bottom: 40px;
}




/* *********************************
*
* news
*
********************************* */
.News,
.Detail{
  padding: 48px 0 64px;
}
/* ======================== 
  pagination
======================== */ 
.pagination,
.detail-pagination{
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.pagination--btm,
.detail-pagination--btm{
  margin-bottom: 0;
}
.pagination__item,
.detail-pagination li{
  border: 2px solid #a28557;
  background: #fff;
  margin-right: 8px;
}
.pagination__item:last-child,
.detail-pagination li:last-child{
  margin-right: 0;
}
.pagination__item a{
  width: 32px;
  height: 32px;
  display: block;
  color: #a28557;
  text-align: center;
  padding: 4px 0;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Aktiv Grotesk', sans-serif;
  font-style: italic;
  line-height: 2rem;
  position: relative;
  transition: all .3s ease-in-out;
}
.pagination__item a.current{
  background: #a28557;
  color: #fff;
}
.pagination__item a.prev::before,
.pagination__item a.next::before{
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid transparent;
  border-top: 2px solid #a28557;
  top: 10px;
  margin: auto;
}
.pagination__item a.prev::before{
  border-left: 2px solid #a28557;
  transform: rotate(-45deg);
  left: 12px;
}
.pagination__item a.next::before{
  border-right: 2px solid #a28557;
  transform: rotate(45deg);
  right: 12px;
}

.news__container{
  margin-bottom: 64px;
}
.news__item{
  margin-bottom: 56px;
}
.news__item a{
  display: block;
} 
.news__item .news__img{
  height: 180px;
  overflow: hidden;
  margin-bottom: 16px;
}

.news__item .news__body .news__ttl{
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.news__item .news__body .news__text{
  height: 5.5em;
  overflow: hidden;
}
/* ======================== 
  detail-pagination
======================== */ 
.detail-pagination li{
  width: 19%;
}
.detail-pagination li.back{
  width: 58%;
}
.detail-pagination li a{
  transition: all .3s ease-in-out;
  display: block;
  text-align: center;
  padding: 8px 0;
  color: #a28557;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}
.detail-pagination li.back a{
  background: #a28557;
  color: #ffffff;
}
.detail-pagination li.back a:hover{
  color: #a28557;
  background: #ffffff;
}

.detail__container{
  margin-bottom: 56px;
}
.detail__container .detail__ttl{
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.detail__container .detail__img{
  max-height: 300px;
  margin-bottom: 24px;
}
.detail__container .detail__text{
  margin-bottom: 16px;
}



/* *********************************
*
* company
*
********************************* */
/* ======================== 
  intro
======================== */ 
.Company.introduction{
  padding: 64px 0;
}

/* ======================== 
  message
======================== */ 
.Msg .inner--lr,
.Access .inner--lr{
  padding: 56px 16px;
}

.msg__conts{
  font-weight: bold;
}
.msg__conts .msg__text{
  margin-bottom: 16px;
  font-size: 1.8rem;
}
.msg__conts .msg__signature{
  text-align: right;
  margin-bottom: 24px;
}
.msg__img{
}
/* ======================== 
  access
======================== */ 

.access-info{
  text-align: center;
  margin: 0 auto 48px;
  font-weight: 500;
}
.access-info__logo{
  width: 75%;
  margin: 0 auto;
}
.access-info__logo figcaption{
  display: block;
  margin-bottom: 16px;
}
.access-info__add{
  margin-bottom: 16px;
}
.access-info__contacts{
  margin-bottom: 40px;
}
.access-info__contacts li:not(:last-child){
  margin-bottom: 8px;
}
.access-info__contacts li img{
  margin-right: 8px;
  width: 20px;
  display: inline-block;
  margin-top: 8px;
}
.access-map{
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
}



/* *********************************
*
* IT support
*
********************************* */
.CmnIntro,
.Costs,
.Website,
.Works{
  padding: 40px 0 72px;
}
.service__container{
  padding: 16px;
  background:#fff;
}
.service__container--mgb{
  margin-bottom: 32px;
}
.service__lead{
  margin-bottom: 16px;
  font-weight: bold;
}
.service__lead:last-of-type{
  margin-bottom: 0;
}
.service__container .media{
  margin-bottom: 0;
  margin-top: 32px;
}
.service__container .media__body{
  margin-bottom: 0;
}
.service__container .media__body .media__ttl{
  font-size: 2.2rem;
  text-align: center;
  border: none;
  margin-bottom: 0;
}
.itSupport .inner{
  padding: 88px 16px 40px;
}
.itSupport .media__body .media__ttl .media__ttl--sns{
  width: 100px;
  display: inline-block;
  vertical-align: sub;
  margin-left: 16px;
}
.Costs,
.Works{
  background: #f4efe8;
}
.costs__ttl{
  margin-bottom: 32px;
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
}
.costs__container{
  margin-bottom: 40px;
}
.costs__container .costs__table .table{
  margin-bottom: 16px;
}
.costs__container .costs__table{
  margin-bottom: 32px;
}
.table__note{
  margin-bottom: 4px;
  padding-left: 2em;
  text-indent: -2em;
}



/* *********************************
*
* liqyudworks
*
********************************* */
.service__ttl{
  font-size: 5.5rem;
  letter-spacing: -0.025em;
  text-align: center;
  line-height: 0.6;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 40px;
}
.liqyud-license .liqyud-license__ver{
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-align: center;
}
.liqyud-license .liqyud-license__logo{
  width: 70%;
  margin: auto;
}
.sec-inner{
  padding: 40px 16px;
}
.unit-liq,
.unit-mit{
  margin-bottom: 72px;
}
.unit-liq .common-num,
.unit-mit .common-num{
  font-size: 5rem;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}
.unit-liq figure,
.unit-liq figcaption,
.unit-mit figure,
.unit-mit figcaption{
  display: block;
}
.unit-liq .text,
.unit-mit .text{
  margin-bottom: 24px;
}
.unit-liq .table,
.unit-mit .table{
  margin-bottom: 24px;
}


/* *********************************
*
* mitsumoru
*
********************************* */
.inner--non{
  padding: 0;
}
.mitsumoru__other,
.mitsumoru__conclusion{
  margin-bottom:  40px;
}
.mitsumoru__other-ttl{
  font-size: 3rem;
  font-weight: bold;
  color: #a28557;
  margin-bottom: 24px;
  text-align: center;
}
.mitsumoru__text{
  padding-left: 1em;
  text-indent: -1.25em;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.mitsumoru__text:last-of-type{
  margin-bottom: 0;
}
.mitsumoru__text .icon{
  display: inline-block;
  width: 20px;
}
.mitsumoru__text .icon img{
  display: block;
}
.mit__fv{
  margin: 16px auto 24px;
}
.mit-plan__table{
  text-align: center;
  margin-bottom: 24px;
}
.mit-plan__table,
.mit-plan__table tr:not(:last-child){
  border: 2px solid #a28557;
}
.mit-plan__table tr td:not(:last-child) {
  border-right: 2px solid #a28557;
}
.mit-plan__table tr:not(:first-child) th{
  background: #ccb899;
  border-right: 2px solid #a28557;
}
.mit-plan__table tr:first-child th:not(:last-child){
  border-right: 2px solid #ccb899;
}


/* *********************************
*
* instory
*
********************************* */
.instory__logo {
  margin: 0 auto 24px;
  text-align: center;
}
.instory__container{
  padding: 16px;
  background:#fff;
}
.instory__ttl{
  font-size: 4.8rem;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 16px;
}
.instory__feat{
  font-weight: bold;
  margin-bottom: 24px;
  line-height:1.5;
  display: flex;
  align-items: flex-start;
}
.instory__feat .merit,
.instory__feat .demerit{
  padding: 12px 8px;
  text-align: center;
  margin-right: 16px;
  border-radius: 8px;
  color: #fff;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
}
.instory__feat .merit{
  background: #ec9147;
}
.instory__feat .demerit{
  background: #4fa1ad;
}
.instory__lead{
  margin: 40px auto;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.basic-card{
  margin-top: 40px;
}
.basic-card .basic-card__img{
  margin: 0 auto 16px;
}
.basic-card .basic-card__text{
  font-weight: bold;
}
.basic-card .basic-card__img img{
  display: block;
  margin: auto;
}
.basic-card .basic-card__item{
  margin-bottom: 32px;
}
.basic-card .basic-card__img .pic,
.basic-card .basic-card__img .seo{
  width: 100px;
}
.basic-card .basic-card__img .ig,
.basic-card .basic-card__img .hash,
.basic-card .basic-card__img .opt{
  width: 85px;
}
.other-point__container{
  margin: 0 auto 56px;
}

.step-point__container li{
  position: relative;
  background: #fff;
  margin-bottom: 48px;
}
.step-point__container li .num{
  color: #e9dfd0;
  font-size: 7rem;
  text-align: center;
  position: absolute;
  top: -7rem;
  left: 0;
  right: 0;
  margin: auto;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-style: italic;
  font-weight: bold;
}
.step-point__container li .step-point__ttl{
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  padding: 40px 0 24px;
}
.Price .price__img{
  margin-top: -5%;
}
.Price .price__container{
  border: 1px solid #a28557;
}
.Price .price__container .price__desc{
  font-weight: bold;
}
.Price .price__container .price__desc dt{
  text-align: center;
  padding: 8px 16px;
  font-size: 2rem;
}
.Price .price__container .price__desc dt.emphasis{
  background: #a28557;
  color: #fff;
}
.Price .price__container .price__desc dt.normal{
  background: #f4efe8;
  color: #a28557;
}
.Price .price__container .price__desc dt.normal,
.Price .price__container .price__desc dd.normal{
}
.Price .price__container .price__desc dd{
  background: #fff;
  padding: 16px;
}
.Price .price__container .price__desc dd .price__table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: center;
}
.Price .price__container .price__desc dd .price__table th{
  display: block;
  letter-spacing: -0.025em;
}
.Price .price__container .price__desc dd .price__table td{
  display: block;
  font-size: 2rem;
  letter-spacing: -0.025em;
  padding-bottom: 16px;
}
.Price .price__container .price__desc dd .price__table td .price{
  font-size: 5rem;
  line-height: 1.4;
  color: #a28557;
}
.Price .price__container .price__desc dd .price__table td small{
  font-size: 16px;
}


.instory-bnr{
  margin-bottom: 40px;
}
.instory-bnr li{
  margin-bottom: 24px;
}


/* *********************************
*
* other service
*
********************************* */
.service__points{
  margin: 0 auto 40px;
}
.service__container .common-lead:first-of-type{
  margin-bottom: 32px;
}
.service__points p:not(:last-of-type),
.common-points:not(:last-of-type){
  margin-bottom: 8px;
}
.service__points p::before,
.common-points::before{
  content: "◉\00A0\00A0";
  color: #a28557;
}
.common-points{
  padding-left: 16px;
  text-indent: -1.5em;
}
.Website > .inner{
  padding-top: 56px;
}
.website-ttl{
  font-weight: bold;
  font-size: 2.2rem;
  color: #a28557;
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
}
.website-ttl::before{
  content: '';
  width: 30px;
  height: 2px;
  background: #a28557;
  position: absolute;
  top: 50%;
  left: 0;
}
.steps__container {
  margin-bottom: 40px;
}
.steps__container li:not(:last-child){
  margin-bottom: 40px;
}
.steps__ttl{
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.7;
}
.steps__note{
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1em;
}
.steps__note::before{
  content: '◉';
  color: #a28557;
}
.Website .table{
  margin-bottom: 24px;
}
.Website .btn{
  margin-top: 40px;
}
.table-scroll-container{
  width: 100%;
  overflow: scroll;
  white-space: nowrap;
}


/* *********************************
*
* listing
*
********************************* */
.sns-ad__img{
  width: 80%;
  margin: 0 auto 32px;
}
.listing-flow{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}
.listing-flow th, 
.listing-flow td{
  vertical-align: text-top;
  font-weight: normal;
  text-align: left;
  padding-bottom: 24px;
}
.listing-flow th{
  position: relative;
  padding-right: 24px;
  width: 40%;
  text-align: right;
  color: #a28557;
  font-weight: bold;
}
.listing-flow th:not(.non-bd)::before{
  content: '';
  width: 2px;
  height: 100%;
  background: #a28557;
  position: absolute;
  right: -1px;
  top: 8px;
}
.listing-th th{
  vertical-align: middle;
}
.listing-th th img{
  width: auto;
}
.listing-flow th::after{
  content: '●';
  position: absolute;
  top: -1px;
  color: #a28557;
  right: -8px;
}
.listing-flow td {
  padding-left: 24px;
  width: 60%;
}
.card{
  margin-bottom: 48px;
}
.card__item:not(:last-child){
  margin-bottom: 32px;
}
.card__item{
  background: #fff;
  padding: 16px;
}
.card__item--label{
  padding: 0;
  background: none;
  display: flex;
}
.card__item--label .card__label{
  display: inline-block;
  background: #a28557;
  border-radius: 8px 8px 0 0;
  text-align: center;
  border: 2px solid #a28557;
  color: #fff;
  padding: 4px 16px;
  font-size: 18px;
  font-weight: bold;
  font-family: 'aktiv-grotesk-condensed', sans-serif;
}
.card__item--label .card__body{
  border: 2px solid #a28557;
  border-radius: 0 8px 8px 8px;
  background: #fff;
  padding: 16px;
}
.card__ttl{
  font-family: 'aktiv-grotesk-condensed', sans-serif;
  font-size: 5rem;
  font-weight: bold;
  color: #a28557;
  font-style: italic;
  text-align: center;
  padding-bottom: 16px;
  line-height: 0.9;
  border-bottom: 2px solid #a28557;
  margin-bottom: 16px;
}
.card__ttl span{
  font-size: 2.5rem;
  display: block;
}
.media--listing{
  margin-bottom: 48px;
}
.media--listing .media__body{
  margin-bottom: 24px;
}
.listing-table-summary{
  margin: 32px 0 48px;
  font-size: 1.8rem;
  font-weight: bold;
}
.desc-list{
  display: flex;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.desc-list dt{
  font-weight: bold;
  width: 32%;
}
.desc-list dd{
  width: 68%;
  padding-left: 12px;
}
.desc-list--horizontal{
  margin-bottom: 0;
  font-size: 1.4rem;
}
.desc-list--horizontal dt{
  margin-bottom: 8px;
  font-weight: bold;
}
.seo-about-text{
  margin-bottom: 40px;
}


/* *********************************
*
* consult
*
********************************* */
.consult-card__container{

}
.consult-card__item{
  border: 2px solid #a28557;
  border-radius: 30px;
  background: #fff;
  margin-bottom: 32px;
}
.consult-card__item .consult-card__img img{
  border-radius: 30px 30px 0 0;
}
.consult-card__item .consult-card__body{
  padding: 16px;
  border-radius:0 0 30px 30px ;
}
.consult-card__item .consult-card__ttl{
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 32px;
}
.consult-card__item .consult-card__text{
  margin-bottom: 10px;
  position: relative;
  font-weight: bold;
  padding-left: 24px;
}
.consult-card__item .consult-card__text.break{
  margin-bottom: 32px;
}
.consult-card__item .consult-card__text::before,
.consult-card__item .consult-card__text::after{
  content: '';
  position: absolute;
}
.consult-card__item .consult-card__text::before{
  width: 20px;
  height: 20px;
  background: #a28557;
  border-radius: 50%;
  top: 5px;
  left: 0;
}
.consult-card__item .consult-card__text::after{
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 11px;
  left: 5px;
}
.consult-card__item .consult-card__text span{
  position: relative;
  padding-left: 16px;
}
.consult-card__item .consult-card__text span::before{
  content: '';
  position: absolute;
  width: 12px;
  height: 3px;
  top: 50%;
  left: 0;
  background: #a28557;
}

/* *********************************
*
* contact
*
********************************* */
/* ======================== 
  intro
======================== */ 
.Contact.introduction{
  padding: 80px 0;
}
.contact-info__container{
  padding: 24px 16px;
  text-align: center;
  background:#fff;
  margin: 0 auto;
}
.contact-info__item .contact-info__ttl{
  font-size: 2.2rem;
  padding-bottom: 24px;
  position: relative;
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-info__item .contact-info__ttl::after{
  position: absolute;
  content: '';
  border: 1px solid #a28557;
  width: 60px;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.contact-info__item .contact-info__lead{
  font-size: 14px;
}
.contact-info__item .contact-info__tel{
  font-size: 3rem;
  color: #a28557;
  margin-bottom: 24px;
}
.contact-info__item .contact-info__tel img{
  width: 20px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.Form > .inner--sm{
  padding: 64px 16px 80px;
}
.form-info{
  margin-bottom: 64px;
  text-align: center;
}
.form-info .form-info__ttl{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
.form-info .form-info__lead{
  text-align: left;
  margin-bottom: 32px;
}
.form-info .form-info__desc{
  text-align: center;
}

.form__container{
  border-collapse: collapse;
  width: 100%;
}
.form__container th,
.form__container td{
  font-weight: 400;
  display: block;
  text-align: left;
}
.form__container .form__ttl,
.form__container .form__required{
  display: inline-block;
}
.form__container .form__required{
  padding: 0 0 8px 10px;
}
.form__container .form__required .form-required{
  margin: 0;
}
.form__container .form__input{
  width: 100%;
  padding-bottom: 32px;
}
.form__container .form__input .input-text{
  background: #fff;
  border: none;
  padding: 10px 16px;
  display: block;
  width: 100%;
}
.form__container .form__input .input-text.textarea{
  height: 165px;
}
.form__container .form__input input[type='radio']{
  display: none;
}
.form__container .form__input input[type='radio'] + label{
  padding-left: 20px;
  position:relative;
  font-size: 14px;
}
.form__container .form__input input[type='radio'] + label::before{
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  border-radius: 50%;
}

.form__container .form__input input[type='radio']:checked + label::before{
  border-color:  #0075ff;
}
.form__container .form__input input[type='radio']:checked + label::after{
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: #0075ff;
  border-radius: 50%;
}
.form-notice{
  margin-bottom: 24px;
  font-size: 12px;
}

/* *********************************
*
* works
*
********************************* */

.works {
	width: :94%;
	min-height: 400px;
	margin: 60px auto 40px;
	background: #FFF;
	padding: 30px 0;
}
.works h4 {
	margin-left: 12px;
       box-sizing: border-box;
}

.pager  ul.pagination {
  text-align: center;
  margin: 0px 0 10px 0;
  padding: 0;
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
}

.pager .pagination li {
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#FFF;
  border: solid 1px #dddddd;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
    font-size: 14px;
}

  .pager .pagination li.pre,
  .pager .pagination li.next{
      width: 30px;
  }

 .pager .pagination li.pre a,
  .pager .pagination li.next a{
       box-sizing: border-box;
   }

.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center!important;
  display:table;
  color: #000;
  text-decoration: none;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li span{
  display:table-cell!important;
  justify-content: center!important;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #FFF;
  background: #4D657D;
}

.pager .pagination li.pagerTit{
	width: calc(100% - 60px);
	text-align: center!important;
	font-weight: bold;
	padding-top: 5px;
}
  .pager .pagination li.pre,
  .pager .pagination li.next{
      box-sizing: border-box;
}

 .pager .pagination li.pre a,
  .pager .pagination li.next a{
       box-sizing: border-box;
    }


/* blog - article */
.news-article-wrap {
	display: -webkit-box;
    display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 20px 0;
}

.news-article {
    text-align: left;
}
.news-article .thumb {
	/*padding-top: 91.29%;*/
 }
.news-article .thumb a img {
	-webkit-transition: .5s;
	transition: .5s;
    width: 100%;
    height: 180px;    
  object-fit: cover; /* 中央でトリミング */

}
.news-article .thumb a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.news-article .title {
	color: #000;
	font-weight: 500;
}

.news-article .more {
	text-align: right;
}


	/* blog - article */
	.news-article-wrap {
		margin: 0 auto;
		width: 94%;
	}

	.news-article {
		width: 45.7%;
		margin: 0 2.15% 10px;
		box-sizing: border-box;
	}

	.news-article .thumb {
		margin-bottom: 10px;
	}

	.news-article .title {
		margin-bottom: 5px;
        font-size: 18px;
	}
	
	.news-article .cont {
		margin-bottom: 10px;
        font-size: 14px;
	}
	
	.news-article .more {
		font-size: 14px;
	}




/* 高解像度ディスプレイ */
@media only screen and (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){
  
}