@charset "utf-8";


/*--------------------------------------------
ヘッダー
--------------------------------------------*/
.l-header__logo {
  display: flex;
  align-items: center;
  transition: 0.5s;
  position: absolute;
  left: 2.928%;
  top: 28px;
  z-index: 10;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__logo {
    left: 4vw;
    top: 5.333vw;
    display: block;
  }
}

.l-header__logo__img {
  width: 370px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__logo__img {
    width: 49.333vw;
  }
}

.l-header__logo__img img {
  width: 180px;
  height: 180px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__logo__img img {
    width: 100%;
    height: auto;
  }
}

.l-header__logo h1 {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  padding-left: 25px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__logo h1 {
    font-size: 2.4vw;
    padding: 0;
    margin-top: 3.333vw;
  }
}

.l-header__logo h1 span {
  display: block;
  margin-top: 0.6em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__logo h1 span {
    line-height: 1.3em;
  }
}

.l-header__logo h1 span br {
  display: none;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__logo h1 span br {
    display: inline;
  }
}

/* ENTRYボタン */
.l-header__entry {
  width: 140px;
  height: 80px;
  margin-left: auto;
  transition: 0.5s;
  position: fixed;
  top: 0;
  right: 80px;
  z-index: 20;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry {
    width: 26.666vw;
    height: 16vw;
    right: 16vw;
  }
}

.l-header__entry__hide {
  display: block;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__hide {
    display: none;
  }
}

.l-header__entry__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 140px;
  height: 100%;
  text-align: center;
  color: #151c1c;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 14px;
  user-select: none;
  position: relative;
  padding-right: 4em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__btn {
    width: 26.666vw;
    height: 16vw;
    font-size: 2.8vw;
  }
}

.l-header__entry__btn_coming {
  color: #c1c1b9;
  cursor: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 140px;
  height: 100%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 14px;
  user-select: none;
  position: relative;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__btn_coming {
    width: 26.666vw;
    height: 16vw;
    font-size: 2.8vw;
  }
}

.l-header__entry__btn::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 0px;
  border-top: solid 2px #d6d6d0;
  border-right: solid 2px #d6d6d0;
  transform: rotate(135deg);
  margin-top: -6px;
  position: absolute;
  top: 50%;
  right: 20px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__btn::after {
    right: 3vw;
  }
}

.l-header__entry__btn.-on::after {
  transform: rotate(-40deg);
  margin-top: -2px;
  right: 20px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__btn.-on::after {
    right: 3vw;
  }
}

/* ENTRYボタン OPEN */
.l-header__entry__open {
  display: none;
}

.l-header__entry__open li {
  position: relative;
}

.l-header__entry__open li::after {
  content: "";
  display: block;
  background: #eaeceb;
  width: 85.714%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.l-header__entry__open li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 140px;
  height: 50px;
  color: #000;
  position: relative;
  font-size: 12px;
  padding-right: 0.5em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__open li a {
    justify-content: flex-start;
    padding-left: 2vw;
    width: 26.666vw;
    height: 10.133vw;
    font-size: 2.8vw;
  }
}

.l-header__entry__open li a::after {
  content: "";
  width: 4px;
  height: 4px;
  border: 0px;
  border-top: solid 1px #d6d6d0;
  border-right: solid 1px #d6d6d0;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 16px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__open li a::after {
    right: 2vw;
  }
}

.l-header__entry__open li a::before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border: solid 1px #d6d6d0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 18px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__entry__open li a::before {
    right: 2.5vw;
  }
}

/* nav */
.l-header__nav {
  background: #606642;
  cursor: pointer;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__nav {
    width: 16vw;
    height: 16vw;
  }
}

.l-header__nav__inner {
  width: 28px;
  height: 18px;
  position: relative;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__nav__inner {
    width: 5.2vw;
    height: 3.866vw;
  }
}

.l-header__nav__inner span {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  transition: 0.1s ease-in-out;
}

.l-header__nav__inner span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.l-header__nav__inner span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 69%;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__nav__inner span:nth-child(3) {
    left: auto;
    right: 0;
  }
}

/* nav on */
.l-header__nav.-on {
  background: rgba(255,255,255,0);
}

.l-header__nav.-on .l-header__nav__inner span:nth-child(1) {
  background: #606642;
  transform: rotate(45deg);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.l-header__nav.-on .l-header__nav__inner span:nth-child(2) {
  display: none;
}

.l-header__nav.-on .l-header__nav__inner span:nth-child(3) {
  background: #606642;
  width: 100%;
  transform: rotate(-45deg);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* ヘッダーシャドウ */
.l-header__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(rgba(0,0,0,0.12),rgba(0,0,0,0));
  z-index: 10;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-header__bg {
    height: 25.333vw;
  }
}

.l-header__logo.-hide,
.l-header__entry.-hide,
.l-header__nav.-hide {
  opacity: 0;
  margin-top: -30px;
}


/*--------------------------------------------
フッター
--------------------------------------------*/
.l-footer_bg {
  background: #3e4031;
  width: 100%;
  margin-top: 140px;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer_bg {
    margin-top: 15.666vw;
    padding: 18.666vw 0;
  }
}

.l-footer {
  width: 80.6%;
  max-width: 1280px;
  margin: 0 auto;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer {
    width: 86.666%;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__logo {
    display: block;
  }
}

.l-footer__logo__img {
  width: 370px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__logo__img {
    width: 72.4vw;
  }
}

.l-footer__logo p {
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.05em;
  padding-left: 25px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__logo p {
    margin-top: 5.333vw;
    font-size: 2.4vw;
    padding-left: 0;
  }
}

.l-footer__logo p span {
  display: block;
  color: #fff;
  margin-top: 0.6em;
}

/* footer nav */
.l-footer__nav {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
  
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__nav {
    margin-top: 12vw;
    display: block;
  }
}

.l-footer__nav dl {
  width: 29%;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__nav dl {
    width: 100%;
    margin-top: 9.333vw;
  }
}

.l-footer__nav dt {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 26px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__nav dt {
    font-size: 3.466vw;
    padding-bottom: 5.333vw;
    margin-bottom: 4.5vw;
  }
}

.l-footer__nav dt::after {
  content: "";
  background: #fff;
  width: 16px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__nav dt::after {
    width: 4vw;
  }
}

.l-footer__nav dt::before {
  content: "";
  background: #535549;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-footer__nav dd {
  margin-top: 12px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__nav dd {
    margin-top: 3vw;
  }
}

.l-footer__nav dd:first-child {
  margin-top: 0;
}

.l-footer__nav dd a {
  font-size: 12px;
  line-height: 1.7em;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__nav dd a {
    font-size: 2.666vw;
  }
}

/* footer group */
.l-footer__group {
  margin-top: 120px;
  font-size: 12px;
  font-weight: 300;
  color: #8d919f;
  line-height: 1.8em;
  font-feature-settings: "palt";
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__group {
    margin-top: 14vw;
    font-size: 2.666vw;
  }
}

/* footer corporate */
.l-footer__corporate {
  margin-top: 95px;
  display: flex;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__corporate {
    margin-top: 14vw;
    display: block;
  }
}

.l-footer__corporate ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.l-footer__corporate ul li {
  display: inline-block;
  margin-right: 40px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__corporate ul li {
    margin-right: 2vw;
  }
  .l-footer__corporate ul li:nth-child(3) {
    margin-top: 3vw;
  }
}

.l-footer__corporate ul li a {
  padding-right: 1em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__corporate ul li a {
    padding-right: 1.1em;
  }
}

.l-footer__corporate ul li a span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__corporate ul li a span {
    font-size: 2.666vw;
  }
}

.l-footer__corporate ul li a span::after {
  content: "";
  width: 4px;
  height: 4px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 0;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__corporate ul li a span::after {
    margin-top: -4px;
  }
}

.l-footer__corporate ul li a span::before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border: solid 1px #fff;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 2px;
}

.l-footer__corporate p {
  margin-left: auto;
  font-weight: 300;
  color: #fff;
  font-size: 11px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-footer__corporate p {
    margin-top: 14vw;
    font-size: 2.213vw;
  }
}


/*--------------------------------------------
ナビ
--------------------------------------------*/
.l-nav_bg {
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 84.5%;
  height: 100%;
  z-index: 10;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav_bg {
    width: 100%;
    align-items: flex-start;
  }
}

.l-nav {
  width: 82.758%;
  max-width: 960px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav {
    width: 78.666%;
    padding: 12vw 0 7vw 0;
    margin: 0 auto;
  }
}


/* holdings */
.l-nav__holdings a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  padding-left: 2em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__holdings a {
    font-size: 2.933vw;
    padding-left: 1.5em;
  }
}

.l-nav__holdings a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #d6d6d0;
  border-right: solid 2px #d6d6d0;
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 0;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__holdings a::after {
    content: "";
    width: 1.6vw;
    height: 1.6vw;
    border: 0px;
    border-top: solid 2px #d6d6d0;
    border-right: solid 2px #d6d6d0;
    transform: rotate(-135deg);
    position: absolute;
    top: 50%;
    margin-top: -0.9vw;
    left: 0;
  }
}

/* home */
.l-nav__home a {
  margin-top: 88px;
  display: inline-block;
  padding-right: 2em;
  position: relative;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__home a {
    margin-top: 8vh;
    font-size: 4vw;
    padding-right: 1.5em;
  }
}

.l-nav__home a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #d6d6d0;
  border-right: solid 2px #d6d6d0;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 0;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__home a::after {
    content: "";
    width: 1.6vw;
    height: 1.6vw;
    border: 0px;
    border-top: solid 2px #d6d6d0;
    border-right: solid 2px #d6d6d0;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    margin-top: -1.3vw;
    right: 0;
  }
}

.l-nav__home span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.13em;
  line-height: 1.7em;
  margin-top: 10px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__home span {
    margin-top: 2vw;
    font-size: 2.4vw;
  }
}

/* list */
.l-nav__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 8vh;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__list {
    width: 100%;
    display: block;
    margin-top: 8vw;
  }
}

.l-nav__list dl:nth-child(1) {
  width: 33.333%;
}

.l-nav__list dl:nth-child(2) {
  width: 37.5%;
}

.l-nav__list dl:nth-child(3) {
  width: 16.666%;
}

/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__list dl:nth-child(1),
  .l-nav__list dl:nth-child(2),
  .l-nav__list dl:nth-child(3) {
    width: 100%;
  }

  .l-nav__list dl:nth-child(2),
  .l-nav__list dl:nth-child(3) {
    ;margin-top: 9vw;
  }
}

.l-nav__list dt {
  color: #000;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 33px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__list dt {
    font-size: 4vw;
    padding-bottom: 4vw;
    margin-bottom: 4.5vw;
  }
}

.l-nav__list dt::after {
  content: "";
  background: #000;
  width: 16px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__list dt::after {
    width: 4vw;
  }
}

.l-nav__list dt::before {
  content: "";
  background: #e5e5de;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-nav__list dd {
  margin-top: 12px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__list dd {
    margin-top: 2.5vw;
  }
}

.l-nav__list dd:first-child {
  margin-top: 0;
}

.l-nav__list dd a {
  font-size: 14px;
  line-height: 1.7em;
  font-weight: 300;
  color: #000;
  letter-spacing: 0.05em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__list dd a {
    font-size: 2.933vw;
  }
}

/* nav corporate */
.l-nav__corporate {
  display: flex;
  margin-top: 25vh;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__corporate {
    display: flex;
    flex-wrap: wrap;
    margin-top: 22vw;
  }
}

.l-nav__corporate li {
  display: inline-block;
  margin-right: 40px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__corporate li {
    margin-right: 2.7em;
  }
}

.l-nav__corporate li a {
  padding-right: 0.8em;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__corporate li a {
    padding-right: 1.5em;
  }
}

.l-nav__corporate li a span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #adada5;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__corporate li a span {
    font-size: 2.666vw;
  }
}

.l-nav__corporate li a span::after {
  content: "";
  width: 4px;
  height: 4px;
  border: 0px;
  border-top: solid 1px #d6d6d0;
  border-right: solid 1px #d6d6d0;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: 0;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__corporate li a span::after {
    margin-top: -4px;
  }
}

.l-nav__corporate li a span::before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border: solid 1px #d6d6d0;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  right: 2px;
}
/********* sp *********/
@media only screen and (max-width: 750px) {
  .l-nav__corporate li a span::before {
    margin-top: -2px;
  }
}


/*
ブラックスクリーン
*/
.l-screen {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

/*
スクロール禁止
*/
body.l-body-fixed {
  position: fixed;
  width: 100%;
}


/*--------------------------------------------
IEアラート
--------------------------------------------*/
.l-ie_alert {
  background: rgba(0,0,0,0.7);
  position: fixed;
  bottom: 0;
  padding: 2em;
  width: 100%;
  z-index: 1000;
  color: #fff;
  text-align: center;
}

.l-ie_alert p {
  display: inline-block;
  position: relative;
  padding: 0 3em;
}

.l-ie_alert__btn {
  font-size: 13px;
  color: #fff;
  display: inline-block;
  background: #0284c3;
  border-radius: 3px;
  padding: 0.5em 0.8em 0.55em 0.8em;
  margin-left: 1em;
  cursor: pointer;
}
