/*
.newsList
---------------------------*/
.newsList {
  padding: 10px 0;
  margin-bottom: 20px;
}
.newsList p {
  line-height: 1.4;
}
.newsList li {
  position: relative;
  border-bottom: 1px solid #D1BE95;
}
.newsList li:last-of-type {
  border-bottom: none;
}
.newsList li:hover .date > p:before {
  left: 5px;
}
.newsList li a, .newsList li .newsContent {
  display: block;
  padding: 15px 4%;
}
.newsList .date {
  vertical-align: middle;
  padding-bottom: 5px;
}
.newsList .date > p {
  position: relative;
  min-width: 6rem;
}
.newsList .date p {
  font-family: "rfafont", sans-serif;
  letter-spacing: 0.05em;
  color: #000;
  font-size: 16px;
}
.newsList .category {
  display: inline-block;
  min-width: 90px;
  background-color: #F5C723;
  text-align: center;
  padding: 1px 5px;
  margin-left: 10px;
}
.newsList .category p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .newsList {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  .newsList p {
    line-height: 1.6;
  }
  .newsList li a, .newsList li .newsContent {
    display: flex;
    align-items: center;
    padding: 30px 30px 30px 0;
  }
  .newsList .date {
    width: 186px;
    padding-left: 30px;
  }
  .newsList .date > p {
    min-width: 10rem;
  }
  .newsList .date p {
    font-size: 20px;
  }
  .newsList .title {
    width: calc(100% - 186px);
  }
  .newsList .date,
  .newsList .title {
    display: inline-block;
    padding-bottom: 0;
  }
  .newsList .category {
    margin-left: 20px;
  }
  .newsList .category p {
    font-size: 14px;
  }
}

/*
tableStyle
---------------------------*/
.tableStyle {
  background-color: #fff;
}
.tableStyle.wide {
  border-top: 1px solid #000;
}
.tableStyle > dl {
  border-bottom: 1px solid #000;
}
.tableStyle > dl:last-of-type {
  border-bottom: none;
}
.tableStyle > dl > dt, .tableStyle > dl > dd {
  line-height: 1.4;
}
.tableStyle > dl > dt p, .tableStyle > dl > dd p {
  line-height: 1.4;
}
.tableStyle > dl > dt p + p, .tableStyle > dl > dd p + p {
  padding-top: 5px;
}
.tableStyle > dl > dt {
  font-weight: 600;
  color: #000;
  padding: 12px 2% 6px;
}
.tableStyle > dl > dd {
  padding: 0 2% 12px;
}
.tableStyle > dl > dd .note {
  font-size: 12px;
}
.tableStyle > dl > dd dl {
  display: flex;
}
.tableStyle > dl > dd dl + dl {
  padding-top: 15px;
}
.tableStyle > dl > dd dl dt {
  min-width: 7em;
}
@media (min-width: 1000px) {
  .tableStyle.wide {
    border-top: none;
  }
  .tableStyle > dl {
    display: flex;
    align-items: stretch;
    background-color: transparent;
    border-bottom: none;
    padding: 0;
  }
  .tableStyle > dl > dt, .tableStyle > dl > dd {
    display: flex;
    align-items: center;
    line-height: 1.6;
    padding: 21px 24px;
  }
  .tableStyle > dl > dt p, .tableStyle > dl > dd p {
    line-height: 1.6;
  }
  .tableStyle > dl > dt {
    width: 185px;
    border-bottom: 1px solid #000;
  }
  .tableStyle > dl > dd {
    width: calc(100% - 185px);
    border-bottom: 1px solid #D1BE95;
  }
  .tableStyle > dl > dd .note {
    font-size: 14px;
  }
}

.tabNavigationJs .tabContent {
  display: none;
}
.tabNavigationJs .tabContent.is-active {
  display: block;
}

/*
tabNavigation
---------------------------*/
.tabNavigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.tabNavigation .tab {
  display: table;
  width: 50%;
  position: relative;
  text-align: center;
  border-left: 1px solid #000;
}
.tabNavigation .tab:nth-of-type(n+3) {
  border-top: 1px solid #000;
}
.tabNavigation .tab a, .tabNavigation .tab p {
  position: relative;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  line-height: 1.2;
  font-size: 14px;
  color: #000;
  padding: 12px 0;
  cursor: pointer;
}
.tabNavigation .tab a.en, .tabNavigation .tab p.en {
  font-family: "rfafont", sans-serif;
}
.tabNavigation .tab a span:after, .tabNavigation .tab p span:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  background-image: url(../img/common/arrow_bk.svg);
  transform: rotate(90deg);
}
.tabNavigation .tab:after {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.tabNavigation .tab:hover::after {
  transform: scale(1, 1);
}
.tabNavigation .tab.is-active, .tabNavigation .tab:hover {
  color: #fff;
  background: #000;
}
.tabNavigation .tab.is-active a, .tabNavigation .tab.is-active p, .tabNavigation .tab:hover a, .tabNavigation .tab:hover p {
  color: #fff;
}
.tabNavigation .tab.is-active a span:after, .tabNavigation .tab.is-active p span:after, .tabNavigation .tab:hover a span:after, .tabNavigation .tab:hover p span:after {
  background-image: url(../img/common/arrow_wh.svg);
}
.tabNavigation .tab.is-active {
  cursor: default;
}
@media (min-width: 1000px) {
  .tabNavigation {
    flex-wrap: nowrap;
  }
  .tabNavigation .tab {
    position: relative;
    min-width: 190px;
    width: 100%;
    transition: 0.4s ease;
    cursor: pointer;
  }
  .tabNavigation .tab:nth-of-type(n+3) {
    border-top: none;
  }
  .tabNavigation .tab a, .tabNavigation .tab p {
    font-size: 20px;
    font-weight: 600;
    padding: 24px 0;
  }
  .tabNavigation .tab.is-active a, .tabNavigation .tab.is-active p {
    cursor: default;
    z-index: 1;
  }
  .tabNavigation .tab.is-active a:after, .tabNavigation .tab.is-active p:after {
    content: none;
  }
  .tabNavigation .tab:nth-of-type(n+3).is-active a:after, .tabNavigation .tab:nth-of-type(n+3).is-active p:after {
    content: none;
    opacity: 0;
  }
  .tabNavigation .tab:hover {
    opacity: 1;
  }
}

/*
.aboutBgContent
---------------------------*/
.aboutBgContent {
  background-image: url(../img/about/about_bg.jpg);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #060606;
  color: #fff;
  padding: 80px 0;
  margin: 55px 0 0;
}
.aboutBgContent .aboutBgInner {
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  padding: 60px 5%;
}
.aboutBgContent .innetTitleArea {
  text-align: center;
  padding-bottom: 80px;
}
.aboutBgContent .innetTitleArea .innetTitle {
  font-family: "rfafont", sans-serif;
  font-size: 28px;
}
.aboutBgContent .innetTitleArea .innetTitle.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
}
.aboutBgContent .innetTitleArea .innetTitle.jp span {
  display: block;
  font-size: 16px;
  font-family: "rfafont", sans-serif;
  padding-bottom: 15px;
}
.aboutBgContent .innetTitleArea .message {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  padding-top: 40px;
}
.aboutBgContent .btnWrap {
  padding-top: 40px;
}
@media (min-width: 1000px) {
  .aboutBgContent {
    padding: 100px 0;
    margin: 80px 0 0;
  }
  .aboutBgContent .aboutBgInner {
    padding: 80px 50px;
  }
  .aboutBgContent .innetTitleArea {
    padding-bottom: 90px;
  }
  .aboutBgContent .innetTitleArea .innetTitle {
    font-size: 32px;
  }
  .aboutBgContent .innetTitleArea .innetTitle.jp {
    font-size: 32px;
    padding-bottom: 15px;
  }
  .aboutBgContent .innetTitleArea .innetTitle.jp span {
    font-size: 20px;
    padding-bottom: 30px;
  }
  .aboutBgContent .innetTitleArea .message {
    font-size: 22px;
    line-height: 2.3;
    padding-top: 36px;
  }
  .aboutBgContent .btnWrap {
    padding-top: 80px;
  }
}
@media (min-width: 1200px) {
  .aboutBgContent .aboutBgInner {
    padding: 80px 100px;
  }
}

/*
.mission_vision
---------------------------*/
.mission_vision .innerBlock {
  text-align: center;
  padding: 10px 0;
  text-align: center;
}
.mission_vision .innerBlock + .innerBlock {
  padding-top: 60px;
}
.mission_vision .innerBlock .subTilte {
  font-family: "rfafont", sans-serif;
  font-size: 20px;
  padding-bottom: 20px;
}
.mission_vision .innerBlock .conceptTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-size: 8vw;
  font-weight: 500;
  line-height: 1.75;
  padding-bottom: 20px;
}
.mission_vision .innerBlock .note {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 768px) {
  .mission_vision .innerBlock .conceptTitle {
    font-size: 30px;
  }
}
@media (min-width: 1000px) {
  .mission_vision .innerBlock {
    padding: 20px;
  }
  .mission_vision .innerBlock + .innerBlock {
    padding-top: 75px;
  }
  .mission_vision .innerBlock .conceptTitle {
    font-size: 66px;
    line-height: 1.35;
  }
  .mission_vision .innerBlock .subTilte {
    font-size: 30px;
    padding-bottom: 35px;
  }
  .mission_vision .innerBlock .note {
    font-size: 20px;
    line-height: 2.25;
  }
}
@media (min-width: 1200px) {
  .mission_vision .innerBlock .conceptTitle {
    font-size: 76px;
  }
}

/*
.mindSet
---------------------------*/
.mindSet .mindSetList li {
  position: relative;
  padding-left: 30px;
}
.mindSet .mindSetList li:after {
  position: absolute;
  top: 6px;
  left: 0;
  font-family: "rfafont", sans-serif;
  font-size: 24px;
}
.mindSet .mindSetList li + li {
  margin-top: 40px;
}
.mindSet .mindSetList li:nth-of-type(1):after {
  content: "01";
}
.mindSet .mindSetList li:nth-of-type(2):after {
  content: "02";
}
.mindSet .mindSetList li:nth-of-type(3):after {
  content: "03";
}
.mindSet .mindSetList li:nth-of-type(4):after {
  content: "04";
}
.mindSet .mindSetList li:nth-of-type(5):after {
  content: "05";
}
.mindSet .mindSetList li:nth-of-type(6):after {
  content: "06";
}
.mindSet .mindSetList li:nth-of-type(7):after {
  content: "07";
}
.mindSet .mindSetList li:nth-of-type(8):after {
  content: "08";
}
.mindSet .mindSetList li:nth-of-type(9):after {
  content: "09";
}
.mindSet .mindSetList li:nth-of-type(10):after {
  content: "010";
}
.mindSet .mindSetList .value {
  font-family: "Noto Serif JP", serif;
  font-size: 5vw;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
}
.mindSet .mindSetList .tagwrap {
  padding-top: 10px;
}
.mindSet .mindSetList .tagwrap .tag {
  display: inline-block;
  border: 1px solid #787878;
  margin: 0 10px 10px 0;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .mindSet .mindSetList .value {
    font-size: 24px;
  }
}
@media (min-width: 1000px) {
  .mindSet .mindSetList li {
    padding-left: 80px;
  }
  .mindSet .mindSetList li:after {
    top: 15px;
    left: 10px;
    font-size: 26px;
  }
  .mindSet .mindSetList li + li {
    margin-top: 70px;
  }
  .mindSet .mindSetList .value {
    font-size: 30px;
    line-height: 1.8;
  }
  .mindSet .mindSetList .tagwrap {
    padding-top: 30px;
  }
  .mindSet .mindSetList .tagwrap .tag {
    padding: 10px 40px;
  }
}

/*
.companyProfile
---------------------------*/
.companyProfile dl + dl,
.ourhistory dl + dl {
  margin-top: 25px;
}
.companyProfile dl dt,
.ourhistory dl dt {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #949494;
}
.companyProfile dl dd,
.ourhistory dl dd {
  font-size: 16px;
  line-height: 1.8;
}
.companyProfile .innerTitle,
.ourhistory .innerTitle {
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 15px;
}
.companyProfile .innerBlock,
.ourhistory .innerBlock {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companyProfile .partnerBlock,
.ourhistory .partnerBlock {
  text-align: center;
  padding: 20px 0;
}
.companyProfile .partnerBlock .partnerBlockInner,
.ourhistory .partnerBlock .partnerBlockInner {
  display: flex;
  justify-content: center;
  padding: 0 5%;
}
.companyProfile .partnerBlock .partnerBlockInner > div + div,
.ourhistory .partnerBlock .partnerBlockInner > div + div {
  margin-left: 10px;
}
.companyProfile .columnBlock,
.ourhistory .columnBlock {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-top: 40px;
  margin-top: 20px;
  border-top: 1px solid #949494;
}
.companyProfile .columnBlock > div,
.ourhistory .columnBlock > div {
  text-align: center;
  width: 50%;
  padding-right: 5%;
}
.companyProfile .columnBlock > div + div,
.ourhistory .columnBlock > div + div {
  padding: 0 0 0 5%;
  border-left: 1px solid #949494;
}
.companyProfile #mapMain,
.ourhistory #mapMain {
  width: 100%;
  height: 300px;
}
.companyProfile .btnWrap,
.ourhistory .btnWrap {
  padding-top: 20px;
}
.companyProfile .btnWrap .btnBase a,
.ourhistory .btnWrap .btnBase a {
  width: 184px;
  font-size: 12px;
  padding: 15px 8px;
}
@media (min-width: 1000px) {
  .companyProfile,
  .ourhistory {
    padding: 0 20px;
  }
  .companyProfile dl + dl,
  .ourhistory dl + dl {
    margin-top: 45px;
  }
  .companyProfile dl dt,
  .ourhistory dl dt {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #949494;
  }
  .companyProfile dl dd,
  .ourhistory dl dd {
    font-size: 20px;
    line-height: 2.5;
  }
  .companyProfile .innerTitle,
  .ourhistory .innerTitle {
    font-size: 16px;
    padding-bottom: 30px;
  }
  .companyProfile .innerBlock,
  .ourhistory .innerBlock {
    min-height: 100px;
  }
  .companyProfile .partnerBlock,
  .ourhistory .partnerBlock {
    padding: 10px 0 0;
  }
  .companyProfile .columnBlock,
  .ourhistory .columnBlock {
    padding-top: 30px;
    margin-top: 40px;
  }
  .companyProfile .columnBlock > div,
  .ourhistory .columnBlock > div {
    width: auto;
  }
  .companyProfile #mapMain,
  .ourhistory #mapMain {
    width: 90%;
    height: 400px;
    margin: auto;
  }
  .companyProfile .btnWrap,
  .ourhistory .btnWrap {
    padding-top: 30px;
  }
  .companyProfile .btnWrap .btnBase a,
  .ourhistory .btnWrap .btnBase a {
    padding: 11px 8px;
  }
}

.ourhistory dl dt {
  font-size: 18px;
  font-family: "rfafont", sans-serif;
  font-weight: 400;
}
@media (min-width: 1000px) {
  .ourhistory dl {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #949494;
  }
  .ourhistory dl + dl {
    margin-top: 35px;
  }
  .ourhistory dl dt {
    width: 140px;
    font-size: 22px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .ourhistory dl dd {
    width: calc(100% - 140px);
  }
}

/*# sourceMappingURL=about.css.map */