@charset "UTF-8";
@import url(import/reset.css);
@import url(import/util.css);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
/* @import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css); */
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 200;
  src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Light.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Light.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Light.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Regular.otf) format("opentype");
}

/* ==================== common ==================== */
* {
  box-sizing: border-box;
  font-weight: 200;
}

html {
  font-size: 10px;
}

@media only screen and (max-width: 1023px) and (min-width: 640px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media only screen and (max-width: 639px) {
  html {
    font-size: 8px;
  }
}

body {
  color: black;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  /* font-family: -apple-system, blinkMacSystemFont, Montserrat,'Noto Sans Japanese', "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", Meiryo, sans-serif; */
  font-family: -apple-system, blinkMacSystemFont,'Noto Sans Japanese', "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", Meiryo, sans-serif;
  letter-spacing: 0.08em;
  color: #222222;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media only screen and (max-width: 639px) {
  body {
    letter-spacing: 0.035em;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
  padding: 0 16px;
}

@media only screen and (max-width: 639px) {
  .wrap {
    padding: 0 20px;
  }
}

.sp, .tab {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .tab {
    display: block;
  }
  img.tab {
    display: inline;
  }
  .tab_none {
    display: none !important;
  }
}

@media only screen and (max-width: 639px) {
  .sp {
    display: block;
  }
  img.sp {
    display: inline;
  }
  .pc {
    display: none !important;
  }
}

a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #222222;
  text-decoration: none;
  word-break: break-word;
}

.hover_under_line_to_right a {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.hover_under_line_to_right a:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  display: block;
  background: #afafaf;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hover_under_line_to_right a.on:after {
  left: 0;
  width: 100%;
}
.hover_under_line_to_right li.on a:after {
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .hover_under_line_to_right a:hover:after {
    left: 0;
    width: 100%;
  }
}

.hover_img_text a {
  display: block;
}

.hover_img_text a .hover_image {
  background: black;
  overflow: hidden;
}

.hover_img_text a .hover_image > span {
  display: block;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.hover_img_text a .hover_text_wrap {
  position: relative;
  display: inline-block;
}

.hover_img_text a .hover_text_wrap:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #d2d2d2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hover_img_text a .hover_text {
  position: relative;
}

@media only screen and (min-width: 1024px) {
.hover_img_text a:hover .hover_image span {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.hover_img_text a:hover .hover_text_wrap:before {
  right: auto;
  left: 0;
  width: 100%;
}
}

.hover_bg_right a {
  display: inline-block;
  position: relative;
}

.hover_bg_right a .hover_text {
  position: relative;
}

.hover_bg_right a:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #d2d2d2;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1024px) {
  .hover_bg_right a:hover:before {
    right: auto;
    left: 0;
    width: 100%;
  }
}

.btnA a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #dbdbdb;
  width: 280px;
  height: 60px;
  position: relative;
  padding-left: 42px;
  padding-right: 20px;
  background: #f3f3f3;
}

.btnA a .btnA_text {
  position: relative;
  z-index: 1;
  top: -1px;
}

.btnA a:before {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  width: 42px;
  background: url(../imgs/icon_arrow07.png) center no-repeat #7a006e;
}

.btnA a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #dbdbdb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 1024px) {
  .btnA a:hover:after {
    right: auto;
    left: 42px;
    width: calc(100% - 42px);
  }
}

.btnB a {
  padding: 11px 17px 11px 47px;
  background: #eeeeee;
  line-height: 18px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.btnB a .hover_text {
  position: relative;
  z-index: 1;
}

.btnB a:before {
  content: '';
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../imgs/icon_arrow02.png) center no-repeat #7a006e;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto 0;
}

.btnB a.ex:before {
  background: url(../imgs/icon_ex.png) center no-repeat #7a006e;
}

.btnB a .size {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
  margin-left: 5px;
}

.btnB a .size img {
  margin-right: 5px;
  vertical-align: text-bottom;
}

.btnB a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #dbdbdb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btnB.in_image {
  text-align: center;
}

.btnB.in_image a {
  width: 100%;
  max-width: 670px;
  height: 125px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 60px;
  overflow: hidden;
}

.btnB.in_image a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 40%;
  max-height: 100%;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btnB.in_image a .hover_text {
  font-weight: bold;
  line-height: 1;
}

.btnB.in_image a:before {
  left: 30px;
}

@media only screen and (min-width: 1024px) {
  .btnB a:hover:after {
    right: auto;
    left: 0;
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .btnB.in_image a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media only screen and (max-width: 639px) {
  .btnB.in_image a {
    padding: 0;
    height: auto;
    display: block;
  }
  .btnB.in_image a img {
    position: static;
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .btnB.in_image a .hover_text {
    padding: 10px 20px 10px 47px;
    display: block;
    text-align: left;
  }
  .btnB.in_image a:before {
    top: auto;
    bottom: 8px;
    left: 20px;
  }
}

.btnB_list .btnB a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.btnB_list .btnB a:before {
  position: absolute;
  top: 1px;
  bottom: 0;
  margin: auto 0;
}

.anchor__nav {
  border: 1px solid #dedede;
  padding: 15px 20px;
  text-align: center;
}

.anchor__nav img {
  vertical-align: text-bottom;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.anchor__nav ul {
  display: inline-block;
  text-align: left;
  line-height: 1;
}

.anchor__nav ul li {
  padding: 7px 48px 7px 0;
  position: relative;
}

.anchor__nav ul li:after {
  content: '';
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  height: 22px;
  width: 1px;
  margin: auto 0;
  background: #c6c6c6;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
}

.anchor__nav ul li:last-child {
  padding-right: 0;
}

.anchor__nav ul li:last-child:after {
  content: none;
}

.anchor__nav ul li a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}

@media only screen and (max-width: 639px) {
  .anchor__nav {
		padding: 15px 10px;
  }
  .anchor__nav ul li a {
	font-size: 13px;
	position: relative;
	padding-left: 20px;
  }
  .anchor__nav img {
    vertical-align: middle;
	position: absolute;
	top: 3.5px;
	left:-20px;
  }
  .anchor__nav ul li {
    padding: 10px 10px 10px 0;
    position: relative;
    display: block;
  }
  .anchor__nav ul li:after {
    content: none;
  }
}

.cap {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666666;
}

.image_cap {
  position: relative;
}

.image_cap .cap {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.sans {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.montserrat {
  font-family: Montserrat,sans-serif;
}

.ft_white {
  color: white;
}

.ft_purple {
  color: #7a006e;
}

.image_clm {
  position: relative;
}

.image_clm:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: white;
  margin: auto;
}

.image_clm > img {
  width: 50%;
}

@media only screen and (max-width: 639px) {
  .image_clm:after {
    content: none;
  }
  .image_clm > img {
    width: 100%;
  }
}

.clm {
  letter-spacing: -.4em;
}

.clm > div, .clm > li {
  letter-spacing: 0.08em;
  vertical-align: top;
  display: inline-block;
}

.clm2_1 > div {
  width: 48.4375%;
  margin-right: 3.125%;
}

.clm2_1 > div:nth-child(2n) {
  margin-right: 0;
}

.clm3_1 > div {
  width: 31.25%;
  margin-right: 3.125%;
}

.clm3_1 > div:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 639px) {
  .clm2_1 > div, .clm3_1 > div {
    width: 100%;
    margin-right: 0 !important;
  }
}

.titA {
  font-size: 18px;
  font-size: 1.8rem;
  border-bottom: 1px solid #7a006e;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.titB {
  color: white;
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 0.14em;
  margin-bottom: 35px;
}

.titC {
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 0.14em;
  font-weight: normal;
  line-height: 1.6;
}

.titD {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 0 0 0 15px;
  position: relative;
}

.titD:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  width: 4px;
  display: block;
  background: #7a006e;
}

.titE {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.6;
  border-bottom: 1px solid #7a006e;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 0.14em;
}

.titF {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  font-weight: bold;
}

.titG {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #7a006e;
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-weight: bold;
}

.titH {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.14em;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 0 0 0 15px;
  line-height: 1.6;
  position: relative;
}

.titH:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  width: 4px;
  display: block;
  background: #7a006e;
}

.titI {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.14em;
  font-weight: bold;
}

.titJ {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.14em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 35px;
  text-align: center;
  font-weight: bold;
}

.titJ:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 36px;
  height: 2px;
  display: block;
  background: #7a006e;
  margin: 0 auto;
}

@media only screen and (max-width: 639px) {
  .titA {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .titB {
    margin-bottom: 28px;
  }
  .titC {
    text-align: left;
    font-size: 20px;
  }
  .titD {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .titE {
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
  .titF {
    margin-bottom: 16px;
  }
  .titG {
    padding-bottom: 4px;
    margin-bottom: 12px;
  }
  .titH {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .titI {
    font-size: 18px;
  }
  .titJ {
    padding-bottom: 24px;
    margin-bottom: 28px;
  }
}

.boxA li {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dedede;
}

.boxA li:last-child {
  margin-bottom: 0;
}

.boxA li a {
  display: block;
}

.boxA li .boA_inner {
  display: block;
  position: relative;
  padding: 0 0 0 32px;
}

.boxA li .boA_inner:after {
  content: '';
  display: block;
  width: 18px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #7a006e;
}

.boxA li .boA_inner .date {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-family: Montserrat,sans-serif;
  font-weight: bold;
}

.boxA li .boA_inner .date.new:after {
  content: url(../imgs/icon_new.png);
  display: inline-block;
  margin-left: 10px;
}

.boxA li .boA_inner .size {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
}

.boxA li .boA_inner .size img {
  margin-right: 5px;
  vertical-align: text-bottom;
}

.boxA li .boA_inner .text {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
}

.boxA li.pdf .boA_inner:after {
  background: url(../imgs/icon_pdf02.png) center no-repeat #7a006e;
}

.boxA li.arrow .boA_inner:after {
  background: url(../imgs/icon_arrow02.png) center no-repeat #7a006e;
}

.boxA li.ex .boA_inner:after {
  background: url(../imgs/icon_ex.png) center no-repeat #7a006e;
}

@media only screen and (max-width: 639px) {
  .boxA li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .boxA li .boA_inner {
    padding-left: 25px;
  }
  .boxA li .boA_inner:after {
    width: 13.5px;
  }
  .boxA li .boA_inner .date.new:after {
    content: '';
    width: 32px;
    height: 9px;
    background: url(../imgs/icon_new_sp.png) center no-repeat;
    background-size: 31.5px 8.5px;
  }
  .boxA li .boA_inner .size img {
    vertical-align: text-top;
  }
  .boxA li.pdf .boA_inner:before {
    background: url(../imgs/icon_pdf02_sp.png) center no-repeat #7a006e;
    background-size: 8.5px auto;
  }
  .boxA li.arrow .boA_inner:before {
    background: url(../imgs/icon_arrow02_sp.png) center no-repeat #7a006e;
    background-size: 5.5px auto;
  }
  .boxA li.ex .boA_inner:before {
    background: url(../imgs/icon_ex_sp.png) center no-repeat #7a006e;
    background-size: 7.5px auto;
  }
}

.boxB {
  border: 1px solid #dedede;
  padding: 30px 20px;
}

.boxC {
  border: 1px solid #dedede;
  padding: 50px 20px;
}

.boxD {
  border: 1px solid #dedede;
  padding: 40px 30px;
}

.boxE {
  border: 1px solid #dedede;
}

.boxE .boxE_title {
  display: inline-block;
  background: url(../imgs/boxE_bg.png) top right no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 370px;
  color: white;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  padding: 5px 30px;
}

.boxE .boxE_inner {
  padding: 30px;
}

.boxF {
  border: 1px solid #dedede;
  padding: 30px;
}

.boxG {
  border: 1px solid #dedede;
}

.boxG .boxG_title {
  display: inline-block;
  background: url(../imgs/boxG_bg.png) top right no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 217px;
  color: white;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  padding: 3px 30px;
}

.boxG .boxG_inner {
  padding: 30px;
}

@media only screen and (max-width: 639px) {
  .boxB, .boxC, .boxD, .boxF, .boxE .boxE_inner {
    padding: 20px;
  }
  .boxG .boxG_title {
    padding: 3px 20px;
  }
  .boxG .boxG_inner {
    padding: 20px;
  }
}

.tableA > table {
  border-collapse: collapse;
  width: 100%;
}

.tableA > table > tbody > tr {
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.tableA > table > tbody > tr:first-child {
  border-top: 1px solid #dddddd;
}

.tableA > table > tbody > tr > td {
  vertical-align: top;
  text-align: left;
  padding: 8px 25px;
}

.tableA > table > tbody > tr > td:first-child {
  background: #f3f3f3;
  letter-spacing: 0.1em;
  border-right: 2px solid #dddddd;
  width: 20%;
  font-weight: bold;
  padding-right: 0;
}

@media only screen and (max-width: 639px) {
  .tableA > table {
    display: block;
  }
  .tableA > table > tbody {
    display: block;
  }
  .tableA > table > tbody > tr {
    display: block;
  }
  .tableA > table > tbody > tr > td {
    display: block;
    width: 100% !important;
    border: none !important;
    padding: 8px 20px;
  }
}

.tableB table, .tableC table {
  width: 100%;
  border-collapse: collapse;
}

.tableB table tr, .tableC table tr {
  border-bottom: 1px solid #dedede;
  border-left: 1px solid #dedede;
}

.tableB table tr:first-child, .tableC table tr:first-child {
  border-top: 1px solid #dedede;
}

.tableB table tr:first-child td, .tableC table tr:first-child td {
  background: #eeeeee;
}

.tableB table tr td, .tableC table tr td {
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #dedede;
  padding: 15px 0;
}

@media only screen and (max-width: 639px) {
  .tableB {
    overflow: auto;
    white-space: nowrap;
    /* -webkit-overflow-scrolling: touch;
		overflow-scrolling: touch; */
  }
  .tableB table {
    min-width: 768px;
  }
  .tableB::-webkit-scrollbar {
    height: 5px;
  }
  .tableB::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .tableB::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}

.tableD > table {
  border-collapse: collapse;
  width: 100%;
}

.tableD > table > tbody > tr {
  border-bottom: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.tableD > table > tbody > tr:first-child {
  border-top: 1px solid #dddddd;
}

.tableD > table > tbody > tr > td {
  vertical-align: top;
  text-align: left;
  padding: 20px 30px;
  border-right: 1px solid #dddddd;
}

.tableD > table > tbody > tr > td:first-child:not(:last-child) {
  background: #f3f3f3;
  letter-spacing: 0.1em;
  border-right: 2px solid #dddddd;
  font-weight: bold;
}

@media only screen and (max-width: 639px) {
  .tableD {
    overflow: auto;
    white-space: nowrap;
  }
  .tableD table {
    min-width: 768px;
  }
  .tableD::-webkit-scrollbar {
    height: 5px;
  }
  .tableD::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .tableD::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}

.header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0 40px;
  z-index: 999999;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, blinkMacSystemFont, Montserrat,'Noto Sans Japanese', "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", Meiryo, sans-serif;
}

.header__inner .logo {
  padding: 32px 0 35px;
}

.header__snav {
  text-align: right;
  padding: 25px 0 28px;
  line-height: 1;
}

.header__snav .search label {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.header__snav .search label input {
  display: none;
}

.header__snav .search input {
  display: inline-block;
  vertical-align: middle;
  outline: none;
  letter-spacing: 0.06em;
  font-size: 10px;
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  background: #ececec;
  border: none;
  width: 178px;
}

.header__snav .language {
/*   padding-left: 20px;
margin-left: 23px;
border-left: 1px solid #dedede; */
}

.header__snav .language a {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 5px;
}

.header__snav .language a + a {
  margin-left: 15px;
}

.header__snav .language a:after {
  height: 2px;
  background: #7a006e;
}

.header__gnav > ul > li {
  color: transparent;
  padding: 0 15px;
}

.header__gnav > ul > li.home {
  padding-left: 0;
}

.header__gnav > ul > li.contact {
  padding-right: 0;
}

.header__gnav > ul > li.language, .header__gnav > ul > li.menu_close_btn {
  display: none;
}

.header__gnav > ul > li > a {
  display: block;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-bottom: 23px;
  font-size: 14px;
}

.header__gnav > ul > li > a .ft_en {
  font-size: 15.4px;
  line-height: 14px;
}

.header__gnav > ul > li > a:after {
  height: 3px;
  background: #7a006e;
}

@media only screen and (min-width: 1024px) {
  .header__gnav > ul > li:hover > a:after {
    left: 0;
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .header__gnav > ul > li:hover .header__gnav__child {
    opacity: 1;
    pointer-events: auto;
  }
  .header__gnav > ul > li:hover .header__gnav__child__inner {
    opacity: 1;
  }
  .header__right {
    display: block !important;
    /* margin-top: 73px; */
  }
}

.header__gnav__child {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(20, 5, 20, 0.85);
  padding: 30px 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

.header__gnav__child__inner {
  opacity: 0;
  max-width: 1096px;
  margin: 0 auto;
  position: relative;
  padding-left: 212px;
  -webkit-transition: 0.1s 0.1s ease;
  transition: 0.1s 0.1s ease;
}

.header__gnav__child__inner .title {
  font-size: 26px;
  letter-spacing: 0.14em;
  color: white;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header__gnav__child__inner ul {
  line-height: 1;
}

.header__gnav__child__inner ul li {
  padding: 10px 60px 10px 0;
  position: relative;
}

.header__gnav__child__inner ul li a {
  color: white;
  font-size: 14px;
}

.header__gnav__child__inner ul li a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: -5px;
}

.header__gnav__child__inner ul li .min {
  font-size: 12px;
}

.header__gnav__child__inner ul li.line01:after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 25px;
  height: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.header__gnav__child__inner ul li.line02:after {
  content: '';
  position: absolute;
  bottom: 7px;
  right: 20px;
  height: 57px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.header__gnav__child__inner ul li.last {
  padding-right: 0;
}

.header__gnav__child__inner ul li.last:after {
  content: none;
}

.header__gnav > ul > li.business .header__gnav__child .header__gnav__child__inner {
  padding-left: 327px;
}

.header__gnav > ul > li.recruitment .header__gnav__child {
  padding: 48px 0;
}

@media only screen and (max-width: 1439px) {
  .header__gnav > ul > li {
    padding: 0 7.5px;
  }
}

@media only screen and (max-width: 1023px) {
  .header {
    padding: 0 0 0 20px;
    height: auto;
  }
  .header__inner .logo {
    padding: 10px 0 11px;
  }
  .header__inner .logo img {
	width: 180px;
  }
  .header__inner .menu a {
    display: block;
    width: 63px;
    height: 63px;
    background: url(../imgs/hdr_menu.png) center no-repeat;
    background-size: cover;
    border-left: 1px solid white;
  }
  .header__inner .menu a.open {
    background: url(../imgs/hdr_close.png) center no-repeat #e8e8e8;
    background-size: cover;
    border-left: 1px solid #dbdbdb;
  }
  .header__right {
    float: none;
    position: fixed;
    top: 63px;
    right: 0;
    background: rgba(20, 5, 20, 0.9);
    display: none;
    height: calc(100% - 63px);
    overflow: scroll;
    width: 375px;
  }
  .header__snav {
    display: none;
  }
  .header__gnav > ul > li {
    display: block;
    border-bottom: 1px solid #4f454e;
    margin-left: 0 !important;
    padding: 0 !important;
  }
  .header__gnav > ul > li:first-child {
    border-top: 1px solid #4f454e;
  }
  .header__gnav > ul > li.language {
    text-align: center;
    padding: 14px 0;
    display: block;
  }
  .header__gnav > ul > li.language a {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1;
    padding-bottom: 5px;
    color: white;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    margin: 0 30px !important;
    position: relative;
  }
  .header__gnav > ul > li.language a + a {
    margin-left: 15px;
  }
  .header__gnav > ul > li.language a:after {
    height: 2px;
  }
  .header__gnav > ul > li.language a:first-child:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: #4f454e;
    width: 1px;
  }
  .header__gnav > ul > li.language a:after {
    height: 4px;
  }
  .header__gnav > ul > li > a {
    font-size: 16px;
    color: white;
    line-height: 49px;
    height: 49px;
    padding: 0 20px;
  }
  .header__gnav > ul > li > a .ft_en {
    font-size: 17.6px;
    line-height: 16px;
  }
  .header__gnav > ul > li > a:after {
    content: none;
  }
  .header__gnav > ul > li.has_child {
    position: relative;
  }
  .header__gnav > ul > li.has_child a .toggle {
    position: absolute;
    top: 0;
    right: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .header__gnav > ul > li.has_child a .toggle:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    height: 20px;
    width: 1px;
    margin: auto;
    background: #a29da3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .header__gnav > ul > li.has_child a .toggle:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 1px;
    margin: auto;
    background: #a29da3;
  }
  .header__gnav > ul > li.has_child a.open .toggle:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .header__gnav__child {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: auto;
    padding: 0 20px;
    background: rgba(60, 40, 59, 0.6);
    -webkit-transition: none;
    transition: none;
  }
  .header__gnav__child__inner {
    padding: 15px 0 !important;
    border-top: 1px solid #4f454e;
    opacity: 1;
  }
  .header__gnav__child__inner .title {
    display: none;
  }
  .header__gnav__child__inner ul li {
    display: block;
    padding: 0;
  }
  .header__gnav__child__inner ul li:after {
    content: none !important;
  }
  .header__gnav__child__inner ul li a {
    padding: 15px 10px;
    display: block;
  }
  .header__gnav__child__inner ul li a:after {
    content: none;
  }
  .header__gnav > ul > li.recruitment .header__gnav__child {
	padding: 0 20px;
  }
}

@media only screen and (max-width: 639px) {
  .header__right {
    top: 50px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100% - 50px);
  }
  .header__inner .logo img {
	width: 123px;
  }
  .header__inner .menu a {
    width: 50px;
    height: 50px;
  }
  .header__gnav > ul > li.menu_close_btn {
    display: block;
    border-bottom: 1px solid #dbdbdb;
  }
  .header__gnav > ul > li.menu_close_btn a {
    background: url(../imgs/hdr_close02.png) center no-repeat #e8e8e8;
    background-size: 28px 30px;
  }
}

.footer {
  font-family: -apple-system, blinkMacSystemFont, Montserrat,'Noto Sans Japanese', "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", Meiryo, sans-serif;
}

.ftr__primary {
  background: #e8e8e8;
  padding: 50px 0 60px;
}

.ftr__primary .ftr__primary__inner {
  position: relative;
}

@media only screen and (max-width: 639px) {
  .ftr__primary {
    padding: 20px 0 0;
  }
}

.ftr__sns ul li {
  vertical-align: middle;
  line-height: 1;
}

.ftr__sns ul li + li {
  margin-left: 15px;
}

.ftr__sns ul li a {
  display: block;
  opacity: 0.5;
}

@media only screen and (min-width: 1024px) {
  .ftr__sns ul li a:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 639px) {
  .ftr__sns {
    text-align: center;
    margin-bottom: 20px;
  }
  .ftr__sns ul li {
    padding: 0 12.5px;
    margin: 0 !important;
  }
  .ftr__sns ul li a {
    opacity: 1;
  }
}

.pagetop__wrap {
  position: absolute;
  top: 0;
  right: 0;
}

.pagetop__wrap .pagetop a {
  display: block;
  line-height: 1;
  font-weight: bold;
  font-size: 14px;
  padding: 2px 5px;
}

.pagetop__wrap .pagetop a img {
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 639px) {
  .pagetop__wrap {
    top: -20px;
    right: -20px;
  }
  .pagetop__wrap .pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
  }
  .pagetop__wrap .pagetop.stop {
    position: absolute;
  }
  .pagetop__wrap .pagetop a {
    padding: 0;
    width: 40px;
  }
}

.ftr__line {
  max-width: 1096px;
  width: 100%;
  height: 1px;
  margin: 30px auto 60px;
  background: #bfbfbf;
}

@media only screen and (max-width: 639px) {
  .ftr__line {
    display: none;
  }
}

.ftr__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ftr__nav.hover_under_line_to_right a:after {
  background: #afafaf;
}

.ftr__nav > div:nth-child(1) {
  width: 240px;
}

.ftr__nav > div:nth-child(2) {
  width: 122px;
}

.ftr__nav > div:nth-child(3) {
  width: 186px;
}

.ftr__nav > div:nth-child(4) {
  width: 95px;
}

.ftr__nav > div:nth-child(5) {
  width: 126px;
}

.ftr__nav > div:nth-child(6) {
  display: none;
}

.ftr__nav dl dt {
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 2px;
  margin-bottom: 10px;
}

.ftr__nav dl dt a {
  font-weight: bold;
  letter-spacing: 0;
  font-size: 14px;
  cursor: default;
  pointer-events: none;
  white-space: nowrap;
}

.ftr__nav dl dd a {
  font-size: 12px;
  /* font-size: 1.2rem; */
  /* display: block; */
  margin-top: 5px;
  letter-spacing: 0;
}

.ftr__nav dl dd .wide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 1023px) {
  .ftr__nav {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: baseline;
    -webkit-justify-content: baseline;
    -ms-flex-pack: baseline;
    justify-content: baseline;
  }
  .ftr__nav > div:nth-child(1), .ftr__nav > div:nth-child(2), .ftr__nav > div:nth-child(3), .ftr__nav > div:nth-child(4), .ftr__nav > div:nth-child(5) {
    width: 31.25%;
    margin-right: 3.125%;
  }
  .ftr__nav > div:nth-child(1), .ftr__nav > div:nth-child(2) {
    margin-bottom: 30px;
  }
  .ftr__nav > div:nth-child(3n) {
    margin-right: 0;
  }
  .ftr__nav dl dd .wide {
    -webkit-box-pack: baseline;
    -webkit-justify-content: baseline;
    -ms-flex-pack: baseline;
    justify-content: baseline;
  }
  .ftr__nav dl dd .wide > div:first-child {
    margin-right: 60px;
  }
}

@media only screen and (max-width: 639px) {
  .ftr__nav__wrap .wrap {
    padding: 0;
  }
  .ftr__nav > div {
    width: 50% !important;
    border-top: 1px solid #bfbfbf;
    margin: 0 !important;
  }
  .ftr__nav > div:nth-child(2n) {
    border-left: 1px solid #bfbfbf;
  }
  .ftr__nav > div:nth-child(6) {
    display: block;
  }
  .ftr__nav dl dt {
    border-bottom: none;
    padding: 0;
    margin: 0;
  }
  .ftr__nav dl dt a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.4;
    height: 50px;
    font-size: 12px;
    font-weight: normal;
    padding: 0 20px 0 35px;
    background: url(../imgs/icon_arrow05.png) center left 20px no-repeat;
    background-size: 5.5px auto;
    cursor: pointer;
    pointer-events: auto;
    white-space: normal;
  }
  .ftr__nav dl dd {
    display: none;
  }
}

.ftr__secondary {
  padding: 50px 0 30px;
  background: #211620;
}

@media only screen and (max-width: 639px) {
  .ftr__secondary {
    padding: 30px 0 20px;
    background: #211620;
  }
}

.ftr__secondary__inner {
  position: relative;
  padding-bottom: 25px;
}

@media only screen and (max-width: 639px) {
  .ftr__secondary__inner {
    padding-bottom: 0;
  }
}

.ftr__snav .hover_under_line_to_right a:after {
  background: #999;
}

.ftr__snav ul li {
  margin-top: 7px;
}

.ftr__snav ul li:first-of-type {
  margin-top: 0;
}

.ftr__snav ul li a {
  color: white;
  font-size: 12px;
}

@media only screen and (max-width: 639px) {
  .ftr__snav {
    margin-bottom: 45px;
  }
  .ftr__snav ul li {
    display: inline-block;
    margin: 0 0 25px 0 !important;
    line-height: 1;
  }
  .ftr__snav ul li:nth-of-type(2n) {
    margin-left: 15px !important;
    padding-left: 15px;
    border-left: 1px solid white;
  }
  .ftr__snav ul li a {
    font-size: 10px;
    display: block;
  }
}

.ftr__logo {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

.ftr__logo .logo {
  margin-bottom: 10px;
}

.ftr__logo .copy {
  font-size: 10px;
  color: #aaaaaa;
  letter-spacing: 0.06em;
}

@media only screen and (max-width: 639px) {
  .ftr__logo {
    position: static;
    text-align: left;
  }
}

.main__contents {
  padding-top: 110px;
}

.anchor_target {
  margin-top: -110px;
  padding-top: 110px;
}

@media only screen and (max-width: 1023px) {
  .main__contents {
    padding-top: 63px;
  }
  .anchor_target {
    margin-top: -50px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1023px) {
  .main__contents {
    padding-top: 50px;
  }
}
.mv__def {
  margin-bottom: 5px;
  padding: 43px 40px 42px;
}

.mv__def .titB {
  margin-bottom: 0;
}

.mv__def.information {
  background: url(../imgs/mv_information.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}
.mv__def.cm {
  background: url(../imgs/mv_cm.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__def.contact {
  background: url(../imgs/mv_contact.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__def.privacy, .mv__def.aboutsite, .mv__def.sitemap, .mv__def.notfound, .mv__def.qa, .mv__def.smp {
  background: #eeeeee;
  border-top: 1px solid #e3e3e3;
}

.mv__def.privacy .titB, .mv__def.aboutsite .titB, .mv__def.sitemap .titB, .mv__def.notfound .titB, .mv__def.qa .titB, .mv__def.smp .titB {
  color: #222222;
}

.mv__nav__wrap {
  margin-bottom: 5px;
  padding: 55px 40px 40px;
}

.mv__nav__wrap.corp {
  background: url(../imgs/mv_corp.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.services {
  background: url(../imgs/mv_services.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.office {
  background: url(../imgs/mv_office.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.global {
  background: url(../imgs/mv_global.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.shopping {
  background: url(../imgs/mv_shopping.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.urban {
  background: url(../imgs/mv_urban.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.business {
  background: url(../imgs/mv_business.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.recruitment {
  background: url(../imgs/mv_recruitment.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
  padding-bottom: 80px;
}

.mv__nav__wrap.news {
  background: url(../imgs/mv_information.jpg) right center no-repeat #1f1009;
  background-size: auto 100%;
}

.mv__nav__wrap.news .mv__nav ul li a img {
  vertical-align: baseline;
}

.mv__nav__wrap ul {
  line-height: 1;
}

.mv__nav__wrap ul li {
  padding: 10px 60px 10px 0;
  position: relative;
  color: transparent;
}

.mv__nav__wrap ul li a {
  color: white;
  font-size: 14px;
  font-size: 1.4rem;
}

.mv__nav__wrap ul li a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: -5px;
}

.mv__nav__wrap ul li a.on {
  cursor: default;
  pointer-events: none;
}

.mv__nav__wrap ul li .min {
  font-size: 12px;
  font-size: 1.2rem;
}

.mv__nav__wrap ul li.line01:after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 25px;
  height: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.mv__nav__wrap ul li.line02:after {
  content: '';
  position: absolute;
  bottom: 7px;
  right: 20px;
  height: 57px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.mv__nav__wrap ul li.last {
  padding-right: 0;
}

.mv__nav__wrap ul li.last:after {
  content: none;
}

.mv__nav__wrap.only_line1 ul li:after {
  top: 0;
  margin: auto 0;
}

@media only screen and (max-width: 639px) {
  .mv__def {
    padding: 32px 20px;
    height: auto;
  }
  .mv__nav__wrap {
    background: none !important;
    position: relative;
    padding: 0;
  }
  .mv__nav__wrap .mv__nav {
    padding: 32px 20px;
  }
  .mv__nav__wrap.corp .mv__nav {
    background: url(../imgs/mv_corp.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.services .mv__nav {
    background: url(../imgs/mv_services.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.office .mv__nav {
    background: url(../imgs/mv_office.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.global .mv__nav {
    background: url(../imgs/mv_global.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.shopping .mv__nav {
    background: url(../imgs/mv_shopping.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.urban .mv__nav {
    background: url(../imgs/mv_urban.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.business .mv__nav {
    background: url(../imgs/mv_business.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.recruitment {
    padding-bottom: 0;
  }
  .mv__nav__wrap.recruitment .mv__nav {
    background: url(../imgs/mv_recruitment.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap.news .mv__nav {
    background: url(../imgs/mv_information.jpg) right center no-repeat #1f1009;
    background-size: auto 100%;
  }
  .mv__nav__wrap .titB {
    margin-bottom: 0;
  }
  .mv__nav__wrap ul {
    position: relative;
    z-index: 999;
    background: white;
    padding: 12.5px 0;
    border-bottom: 1px solid #dedede;
    display: none;
  }
  .mv__nav__wrap ul li {
    padding: 0;
    display: block;
  }
  .mv__nav__wrap ul li a {
    display: block;
    font-size: 12px;
    color: #222222;
    padding: 12.5px 20px;
  }
  .mv__nav__wrap .mv__nav__btn {
    position: relative;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .mv__nav__wrap .mv__nav__btn a {
    display: block;
    font-size: 14px;
    color: #222222;
    padding: 12.5px 20px;
    background: #e8e8e8;
  }
  .mv__nav__wrap .mv__nav__btn a.open .toggle:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .mv__nav__wrap .mv__nav__btn .toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .mv__nav__wrap .mv__nav__btn .toggle:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    height: 20px;
    width: 1px;
    margin: auto;
    background: #a29da3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .mv__nav__wrap .mv__nav__btn .toggle:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 1px;
    margin: auto;
    background: #a29da3;
  }
}

.pankuzu {
  margin: 0 40px 35px;
}

.pankuzu ul {
  text-align: right;
}

.pankuzu ul li {
  vertical-align: middle;
}

.pankuzu ul li + li:before {
  content: '/';
  display: inline-block;
  margin: 0 15px;
  vertical-align: bottom;
}

.pankuzu ul li a, .pankuzu ul li span {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  display: inline-block;
}

.pankuzu ul li a:after, .pankuzu ul li span:after {
  background: #dedede;
}

@media only screen and (max-width: 639px) {
  .pankuzu {
    margin: 0 20px 32px;
  }
}

.lead {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #dedede;
}

.lead02 .inner {
  padding-bottom: 35px;
  margin-bottom: 60px;
  border-bottom: 1px solid #dedede;
}

.lead03 {
  margin-bottom: 60px;
}

.lead03 .inner {
  border-bottom: 1px solid #7a006e;
  padding-bottom: 20px;
}

@media only screen and (max-width: 639px) {
  .lead {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

.page__bottom__nav {
  border: 1px solid #dedede;
  padding: 15px 20px;
  text-align: center;
  margin-bottom: 70px;
}

.page__bottom__nav ul {
  display: inline-block;
  text-align: left;
  line-height: 1;
}

.page__bottom__nav ul li {
  padding: 10px 60px 10px 0;
  position: relative;
  color: transparent;
}

.page__bottom__nav ul li a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}

.page__bottom__nav ul li a:after {
  background: #dedede;
  bottom: -5px;
}

.page__bottom__nav ul li .min {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}

.page__bottom__nav ul li.line01:after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 25px;
  height: 24px;
  width: 1px;
  background: #dedede;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.page__bottom__nav ul li.line02:after {
  content: '';
  position: absolute;
  bottom: 7px;
  right: 20px;
  height: 57px;
  width: 1px;
  background: #dedede;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.page__bottom__nav ul li.last {
  padding-right: 0;
}

.page__bottom__nav ul li.last:after {
  content: none;
}

@media only screen and (max-width: 1023px) {
  .page__bottom__nav .tab {
    display: inline-block;
  }
  .page__bottom__nav.services ul li:nth-child(4) {
    padding-right: 0;
  }
  .page__bottom__nav.services ul li:nth-child(4):after {
    content: none;
  }
  .page__bottom__nav.services ul li:nth-child(2):after {
    content: none;
  }
  .page__bottom__nav.services ul li.line02_tab:after {
    bottom: 7px !important;
    right: 20px !important;
    height: 57px !important;
    width: 1px !important;
  }
  .page__bottom__nav.business ul li:nth-child(1):after {
    content: none;
  }
  .page__bottom__nav.business ul li:nth-child(2) {
    padding-right: 0;
  }
  .page__bottom__nav.business ul li:nth-child(2):after {
    content: none;
  }
  .page__bottom__nav.business ul li.line02_tab:after {
    bottom: 7px !important;
    right: 20px !important;
    height: 57px !important;
    width: 1px !important;
  }
}

@media only screen and (max-width: 639px) {
  .page__bottom__nav__wrap {
    margin: 0 -20px;
    position: relative;
    z-index: 999;
  }
  .page__bottom__nav__btn {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    z-index: 999;
    position: relative;
  }
  .page__bottom__nav__btn a {
    display: block;
    font-size: 14px;
    color: #222222;
    padding: 12.5px 20px;
    background: #e8e8e8;
  }
  .page__bottom__nav__btn a.open .toggle:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .page__bottom__nav__btn .toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .page__bottom__nav__btn .toggle:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    height: 20px;
    width: 1px;
    margin: auto;
    background: #a29da3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .page__bottom__nav__btn .toggle:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 1px;
    margin: auto;
    background: #a29da3;
  }
  .page__bottom__nav {
    margin: 0;
    padding: 0;
    border: none;
    border-top: 1px solid #dedede;
    /* position: absolute;
		bottom: 100%;
		left: 0;
		right: 0; */
    display: none;
  }
  .page__bottom__nav .tab {
    display: none !important;
  }
  .page__bottom__nav ul {
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    padding: 12.5px 0;
    display: block;
  }
  .page__bottom__nav ul li {
    padding: 0;
    display: block;
  }
  .page__bottom__nav ul li:after {
    content: none !important;
  }
  .page__bottom__nav ul li a {
    display: block;
    font-size: 12px;
    color: #222222;
    padding: 12.5px 20px;
  }
  .page__bottom__nav ul li a:after {
    content: none;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999999999999999;
  transition: 0s 0.8s;
  overflow: hidden;
}

#loading .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.8s cubic-bezier(0.77, 0.04, 0.31, 0.97);
}

#loading .bg:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: #7a006e;
}

#loading:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/loading_logo.png) center no-repeat;
  transition: all  0.1s 0.3s ease;
}

#loading.load {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading.load .bg {
  width: 0;
}

#loading.load .bg:before {
  animation-duration: 0.8s;
  animation-name: zoom_in_out;
  animation-timing-function: cubic-bezier(0.77, 0.04, 0.31, 0.97);
  animation-fill-mode: forwards;
}

#loading.load:after {
  opacity: 0;
}

@keyframes zoom_in_out {
  0% {
    width: 0;
  }
  50% {
    width: 40%;
  }
  90% {
  }
  100% {
    width: 0;
  }
}

.progressbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #7a006e;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (max-width: 639px) {
  #loading:after {
    background-size: 64px auto;
  }
}

.oldTxt {
  font-family: -apple-system, blinkMacSystemFont,"Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", Meiryo, sans-serif;
}

.groupMark {
  font-size: 1rem;
  padding: 2px 10px;
  border: #7a006e 1px solid;
  color: #7a006e;
  margin-left: 10px;
  display: inline-block;
}

@media only screen and (max-width: 639px) {
  .groupMark {
    padding: 1px 6px;
    margin-left: 0;
    margin-top: 5px;
  }
}

.nu {
	position: relative;
}
.nu:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 2px;
	right: 2px;
	border-bottom: 1px solid black;
	display: block;
}
