/* ----------------------------------------------------------------------------------------------------
  base
* --------------------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  min-width: 1200px;
  background: #fbfbfb;
  position: relative;
  text-align: justify;
  color: #000;
  font-family: "YakuHanJP", Noto Sans Japanese;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.786;
}

@media print, screen and (min-width: 768px) {
  body {
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 1.3rem;
  }
}

@keyframes bg_color {
  0% {
    background-position: 100% 0%;
  }
  20% {
    background-position: 100% 0%;
  }
  80% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 100%;
  }
}

a {
  transition: 0.2s;
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------------------------------------
  inner
* --------------------------------------------------------------------------------------------------*/
.header__inner,
.footer__inner,
.navi__inner,
.content__inner {
  width: 960px;
  margin: 0 auto;
  position: relative;
}

.header__inner:after,
.footer__inner:after,
.navi__inner:after,
.content__inner:after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .header__inner,
  .footer__inner,
  .navi__inner,
  .content__inner {
    width: auto;
    padding: 0 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/
#header__wrap {
  background: #fff;
}

@media screen and (max-width: 767px) {
  #header__wrap {
    width: 100%;
    border-bottom: solid 1px #bbb;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

#header {
  padding: 103px 0 30px;
}

@media screen and (max-width: 767px) {
  #header {
    padding: 30px 0;
    position: relative;
    z-index: 2;
  }
  #header .header__logo {
    max-width: 76%;
  }
  #header .header__logo img {
    display: block;
  }
  #header .header__btn {
    width: 46px;
    height: 46px;
    background: #e60012;
    right: 4%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  #header .header__btn span {
    position: absolute;
    left: 8px;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
  }
  #header .header__btn span:nth-of-type(1) {
    top: 11px;
  }
  #header .header__btn span:nth-of-type(2) {
    top: 22px;
  }
  #header .header__btn span:nth-of-type(3) {
    bottom: 11px;
  }
  #header .header__btn.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  #header .header__btn.active span:nth-of-type(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  #header .header__btn.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}

/* gnavi
--------------------------------------------------*/
#gnavi {
  line-height: 1.2;
}

@media print, screen and (min-width: 768px) {
  #gnavi {
    display: block !important;
    padding-top: 0 !important;
    background: #e60012;
    position: relative;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  #gnavi {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 0 8% 30px;
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
  }
  #gnavi__overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    content: "";
    z-index: 9;
  }
  #gnavi__overlay.active {
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@media screen and (max-width: 767px) {
  .navi__inner {
    padding: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .navi__list01 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .navi__list01 .navi__item {
    height: 76px;
    padding: 0 1.93em;
    font-size: 1.6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .navi__list01 .navi__item:nth-child(n+2) {
    position: relative;
  }
  .navi__list01 .navi__item:nth-child(n+2):before {
    width: 1px;
    height: 25px;
    background: #bbb;
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    transform: translateY(-50%);
  }
  .navi__list01 .navi__item_investors {
    padding: 0;
  }
  .navi__list01 .navi__item_investors:before {
    display: none;
  }
  .navi__list01 .navi__item_investors .navi__link {
    display: inline-block;
    padding: 10px 14px 9px;
    background: #fff;
    color: #e60012;
  }
  .navi__list01 .navi__item_investors .navi__link .navi__link_img {
    display: inline-block;
    margin-right: 14px;
  }
  .navi__list01 .navi__item_investors .navi__link .navi__link_img img {
    display: block;
    transition: 0.2s;
  }
  .navi__list01 .navi__item_investors .navi__link:hover {
    background: #954d29;
    color: #fff;
  }
  .navi__list01 .navi__item_investors .navi__link:hover .navi__link_img {
    background: url(../img/common/logo03_on.svg) no-repeat center/contain;
  }
  .navi__list01 .navi__item_investors .navi__link:hover .navi__link_img img {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .navi__list01 .navi__item_investors .navi__link:before {
    display: none;
  }
  .navi__list01 .navi__item_investors .navi__link > * {
    vertical-align: middle;
  }
  .navi__list01 .navi__link {
    display: block;
    position: relative;
  }
  .navi__list01 .navi__link:before {
    width: 100%;
    height: 2px;
    background-color: #e60012;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: 0.2s;
    transform: translateY(100%);
    position: absolute;
    bottom: -11px;
    left: 0;
    content: "";
  }
  .navi__list01 .navi__link.current, .navi__list01 .navi__link:hover {
    color: #bbb;
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .navi__list01 .navi__link.current:before, .navi__list01 .navi__link:hover:before {
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .navi__list01 .navi__item {
    border-bottom: solid 1px #fff;
    margin-top: 10px;
  }
  .navi__list01 .navi__item_investors {
    padding: 0;
    border-bottom: none;
    margin-top: 25px;
  }
  .navi__list01 .navi__item_investors:before {
    display: none;
  }
  .navi__list01 .navi__item_investors .navi__link {
    padding: 9px 4.7%;
    background: #fff;
    color: #e60012;
    font-size: 1.2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .navi__list01 .navi__item_investors .navi__link .navi__link_img {
    display: inline-block;
    margin-right: 3%;
  }
  .navi__list01 .navi__item_investors .navi__link .navi__link_img img {
    display: block;
    transition: 0.2s;
  }
  .navi__list01 .navi__item_investors .navi__link:before {
    display: none;
  }
  .navi__list01 .navi__link {
    display: block;
    position: relative;
    padding: 15px 1.5em 15px 0;
    font-size: 1.4rem;
  }
  .navi__list01 .navi__link:before {
    right: 0;
    content: "\f054";
    font-family: Font Awesome\ 5 Free;
    font-size: 1.1rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media print, screen and (min-width: 768px) {
  .navi__list02 {
    position: absolute;
    top: -205px;
    right: 0;
    font-size: 1.2rem;
  }
  .navi__list02 .navi__item {
    float: left;
  }
  .navi__list02 .navi__item:nth-child(n+2) {
    margin-left: 3em;
    position: relative;
  }
  .navi__list02 .navi__item:nth-child(n+2):before {
    width: 1px;
    height: 20px;
    background: #bbb;
    transform: translateY(-50%) rotate(15deg);
    position: absolute;
    top: 50%;
    left: -1.5em;
    content: "";
  }
  .navi__list02 .navi__link {
    color: #222;
  }
  .navi__list02 .navi__link:hover {
    color: #e60012;
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@media screen and (max-width: 767px) {
  .navi__list02 {
    margin-top: 25px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .navi__list02 .navi__item {
    width: 45%;
    border-bottom: solid 1px #fff;
  }
  .navi__list02 .navi__link {
    display: block;
    padding: 8px 3em 8px 0;
    position: relative;
  }
  .navi__list02 .navi__link:before {
    right: 0;
    content: "\f054";
    font-family: Font Awesome\ 5 Free;
    font-size: 1.1rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media print, screen and (min-width: 768px) {
  .navi__trigger:hover .navi__link {
    color: #bbb;
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .navi__trigger:hover .navi__link:before {
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .navi__trigger {
    position: relative;
  }
  .navi__trigger .trigger__btn {
    width: 21px;
    height: 21px;
    background: #fff;
    position: absolute;
    top: 10px;
    right: 0;
  }
  .navi__trigger .trigger__btn:before, .navi__trigger .trigger__btn:after {
    width: 11px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 10px;
    left: 5px;
    content: "";
  }
  .navi__trigger .trigger__btn:after {
    transform: rotate(90deg);
  }
  .navi__trigger .trigger__btn.active:after {
    transform: none;
  }
}

@media print, screen and (min-width: 768px) {
  .navi__drawer {
    width: 100%;
    padding: 80px 0;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    transition: 0.4s;
    position: absolute;
    top: 76px;
    left: 0;
    z-index: 10;
    color: #fff;
  }
  .navi__drawer .drawer-bg {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .navi__drawer .drawer-bg__item {
    height: 510px;
    outline: none;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .navi__drawer .drawer-bg img {
    height: 100%;
    min-width: 100%;
    outline: none;
  }
  .navi__drawer .drawer__inner {
    display: -ms-flexbox;
    display: flex;
    width: 960px;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  .navi__drawer .drawer__ttl {
    margin-bottom: 0.8em;
    font-size: 2.0rem;
  }
  .navi__drawer .drawer__btn {
    width: 180px;
    height: 50px;
    padding: 0 0.7em 0 0;
    border: solid 1px #fff;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .navi__drawer .drawer__btn:before {
    position: absolute;
    right: 1em;
    content: "\f105";
    transition: 0.2s;
    font-family: Font Awesome\ 5 Free;
    font-weight: bold;
  }
  .navi__drawer .drawer__btn:hover {
    background: #e60012;
    border-color: transparent;
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .navi__drawer .drawer__list {
    width: 695px;
    min-height: 300px;
    padding: 45px 0 45px 60px;
    margin-left: 60px;
    border-left: dashed 1px #fff;
  }
  .navi__drawer .drawer__item {
    width: 33.333%;
  }
  .navi__drawer .drawer__item:nth-child(n+2) {
    margin-top: 1.5em;
  }
  .navi__drawer .drawer__link {
    padding-left: 1.5em;
    position: relative;
    transition-timing-function: linear;
  }
  .navi__drawer .drawer__link:before {
    position: absolute;
    top: 0.25em;
    left: 0;
    content: "\f105";
    transition: 0.2s;
    font-family: Font Awesome\ 5 Free;
    font-weight: bold;
  }
  .navi__drawer .drawer__link:hover {
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    color: #e60012;
  }
  .navi__drawer .drawer__link:hover:before {
    left: 0.25em;
  }
}

@media screen and (max-width: 767px) {
  .navi__drawer {
    display: none;
  }
  .navi__drawer .drawer__item {
    border-top: dashed 1px #fff;
  }
  .navi__drawer .drawer__link {
    display: block;
    padding: 0.6em 1em;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/
#footer {
  background: #fff;
}

.footer__inner {
  padding: 69px 0 64px;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 30px 8% 50px;
  }
}

.footer__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media screen and (max-width: 767px) {
  .footer__info {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.footer__logo {
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 54%;
  }
}

.footer__tel {
  padding-left: 20px;
  border-left: solid 1px #bbb;
  margin-left: 20px;
  font-size: 10px;
  font-size: 1.0rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .footer__tel {
    padding-left: 15px;
    margin-left: 15px;
    font-size: 0.8rem;
    letter-spacing: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .footer__tel a {
    display: inline-block;
    pointer-events: none;
  }
}

.footer__navi {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .footer__navi {
    margin-top: 30px;
  }
}

.footer__navi .navi__list {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer__navi .navi__list {
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 768px) {
  .footer__navi .navi__item {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .footer__navi .navi__item:nth-child(n+2) {
    margin-left: 2.6em;
    position: relative;
  }
  .footer__navi .navi__item:nth-child(n+2):before {
    width: 1px;
    height: 20px;
    background: #bbb;
    transform: translateY(-50%) rotate(15deg);
    position: absolute;
    top: 50%;
    left: -1.4em;
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .footer__navi .navi__item {
    width: 45%;
    border-bottom: solid 1px #bbb;
  }
  .footer__navi .navi__item:nth-child(n+3) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer__navi .navi__link {
    display: block;
    padding: 6px 2em 5px 0;
    position: relative;
    font-size: 1.1rem;
  }
  .footer__navi .navi__link:before {
    right: 0.7em;
    content: "\f054";
    font-family: Font Awesome\ 5 Free;
    font-size: 1.0rem;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.footer__copy {
  padding: 6px 0 7px;
  background: #000;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-size: 1.0rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .footer__copy {
    padding: 10px 0;
  }
}

.pagetop__btn {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .pagetop__btn {
    position: fixed;
    top: auto;
    bottom: 40px;
    right: 4%;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  content
* --------------------------------------------------------------------------------------------------*/
#content {
  padding: 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  #content {
    padding: 20px 0 40px;
  }
}

#content:before, #content:after {
  position: absolute;
  bottom: 50px;
  content: '';
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #content:before, #content:after {
    bottom: 10px;
  }
}

#content:before {
  width: calc(100% - 102px);
  height: calc(100% - 100px);
  border: 2px solid #e60012;
  left: 52px;
  z-index: -2;
}

@media screen and (max-width: 767px) {
  #content:before {
    width: calc(100% - 21px);
    height: calc(100% - 20px);
    border-width: 1px;
    left: 11px;
  }
}

#content:after {
  width: 48px;
  height: 46px;
  background: url(/_asset/img/common/body_logo01.svg) no-repeat bottom left/contain;
  left: 50px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  #content:after {
    width: 24px;
    height: 23px;
    left: 10px;
  }
}

.content__inner {
  width: auto;
}

@media print, screen and (min-width: 768px) {
  .content__inner {
    max-width: 1200px;
  }
}

.content__box {
  padding: 30px 15px 50px;
  background: #fff;
}

@media print, screen and (min-width: 768px) {
  .content__box {
    padding: 50px 60px;
  }
}

@media print, screen and (min-width: 1367px) {
  .content__box {
    padding: 100px 120px;
  }
}

.content__box02 {
  padding: 100px;
}

@media screen and (max-width: 767px) {
  .content__box02 {
    padding: 30px 15px 50px;
  }
}

.content__box .text-thin {
  font-weight: 200;
}

/* breadcrumb
--------------------------------------------------*/
.breadcrumb {
  padding-bottom: 50px;
  color: #707070;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-bottom: 30px;
    font-size: 1.2rem;
  }
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li:nth-child(n+2):before {
  display: inline;
  margin: 0 0.5em;
  content: "\f105";
  font-family: Font Awesome\ 5 Free;
  font-weight: bold;
}

/* section
--------------------------------------------------*/
section + section {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  section + section {
    margin-top: 60px;
  }
}

/* lead
--------------------------------------------------*/
.lead__txt01 {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .lead__txt01 {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
}

.lead__txt01 .ttl__style02 {
  margin-bottom: 30px;
}

.lead__txt02 {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .lead__txt02 {
    margin-bottom: 30px;
  }
}

/* l__navi
--------------------------------------------------*/
.l__navi {
  padding: 60px 120px;
  background: #fff;
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .l__navi {
    padding: 1em;
    margin-top: 30px;
  }
}

.l__navi .navi__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.l__navi .navi__item {
  width: 48%;
}

.l__navi .navi__item:first-child {
  width: 100%;
}

.l__navi .navi__item:nth-child(n+2) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .l__navi .navi__item:nth-child(n+2) {
    margin-top: 10px;
  }
}

.l__navi .navi__item .btn__style01 {
  max-width: none;
  height: 60px;
  border-width: 1px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .l__navi .navi__item .btn__style01 {
    height: 40px;
    font-size: 1.1rem;
  }
}

.l__navi .navi__item .btn__style01:not(:hover) {
  background: #fff;
}

.l__navi .navi__item .btn__style01.current:not(:hover) {
  background: #000;
  color: #fff;
}

.l__navi .navi__item .btn__style01.current:not(:hover):before {
  color: inherit;
}

body {
  margin: auto;
}

body:before {
  display: none;
  width: 100%;
  height: 242px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
