@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header {
  background: #000;
}

main {
  width: 100%;
  overflow: hidden;
}

aside {
  position: absolute;
  right: 0;
  top: 330px;
  height: auto;
  width: 266px;
  overflow: hidden;
  z-index: 5;
}
aside.philosophy {
  top: 725px;
}
aside .btnHamburger-side {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.75);
  right: 0;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}
aside .btnHamburger-side.is-active {
  opacity: 0;
  visibility: hidden;
}
aside .btnHamburger-side .line {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 28px;
  /* 横幅 */
  height: 3px;
  /* 1本辺りの高さ */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #414141;
}
aside .btnHamburger-side .line_01 {
  top: 10px;
}
aside .btnHamburger-side .line_02 {
  top: 17px;
}
aside .btnHamburger-side .line_03 {
  top: 24px;
}
aside .btnHamburger-side .text {
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #414141;
}
aside .btnClose-side {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #414141;
  top: 0;
  left: 0;
  display: none;
  cursor: pointer;
}
aside .btnClose-side::before, aside .btnClose-side::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
aside .btnClose-side::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
aside .btnClose-side::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
aside nav {
  margin: 0 0 0 auto;
  display: none;
}
aside .sub-menu {
  min-width: 50px;
  min-height: 50px;
  position: relative;
  margin-bottom: 35px;
}
aside .sub-menu nav {
  width: 234px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 0 20px 30px;
}
aside .sub-menu h3 {
  font-size: 18px;
  color: #000;
  border-bottom: 2px solid #C60012;
  margin-bottom: 15px;
  line-height: 1.7;
}
aside .sub-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
aside .sub-menu ul li {
  line-height: 1;
}
aside .sub-menu ul li span.current {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}
aside .sub-menu ul li span.current::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #C60012;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
aside .sub-menu ul li span.current::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
aside .sub-menu ul li a {
  display: inline-block;
  padding-left: 20px;
  color: #666;
  font-size: 12px;
  font-weight: bold;
}
aside .sub-menu ul li a:hover {
  color: #000;
}
aside .other-menu {
  position: relative;
  height: 100%;
  min-height: 50px;
  -webkit-transform: translateX(266px);
          transform: translateX(266px);
  -webkit-transition: .5s;
  transition: .5s;
}
aside .other-menu .btnHamburger-side .line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  /* 1本辺りの高さ */
}
aside .other-menu .btnHamburger-side .line_02 {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
aside .other-menu.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
aside .other-menu .btnClose-side {
  display: block;
}
aside .other-menu nav {
  display: block;
  width: 234px;
  background: #fff;
}
aside .other-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
aside .other-menu ul li a:hover {
  opacity: .8;
}
aside .other-menu ul li a img {
  width: 100%;
}

.page-title {
  height: 220px;
  background: #000;
  margin-bottom: 60px;
}
.page-title::before {
  content: "";
  width: calc(50% + 100px);
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #800303), to(#c60012));
  background: linear-gradient(to right, #800303 25%, #c60012 100%);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  position: absolute;
  right: 50%;
  top: 0;
  z-index: 2;
}
.page-title h2 {
  position: relative;
  max-width: 900px;
  height: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  z-index: 3;
}
.page-title h2 .en {
  font-family: "henderson-sans-basic", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 40px;
  margin-bottom: 15px;
  letter-spacing: -0.1em;
}
.page-title h2 .ja {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 22px;
  letter-spacing: .3em;
}
.page-title .title-img {
  position: absolute;
  left: calc(50% - 100px);
  top: 0;
  height: 100%;
}
.page-title .title-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

#page-company {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-company #profile {
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: 90px;
}
#page-company #profile h2 {
  font-size: 18px;
  border-bottom: 1px solid #fff;
  letter-spacing: .1em;
  line-height: 1.8;
  margin-bottom: 20px;
}
#page-company #profile h2 small {
  font-size: .8em;
  font-weight: normal;
}
#page-company #profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#page-company #profile dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 205px;
  min-height: 43px;
  background: #D9D9D9;
  font-size: 14px;
  font-weight: bold;
  color: #414141;
  margin-bottom: 8px;
}
#page-company #profile dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 205px);
  padding: 5px 0 5px 20px;
  margin-bottom: 8px;
  line-height: 1.7;
}

#page-philosophy {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-philosophy #mv {
  position: relative;
  width: 100%;
  height: 558px;
  background: #000;
  overflow: hidden;
}
#page-philosophy #mv h2 {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  z-index: 2;
  -webkit-animation-name: mvFadeIn;
          animation-name: mvFadeIn;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  opacity: 0;
}
#page-philosophy #mv h2 strong {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 41px;
  line-height: 1;
  margin-top: -5px;
}
#page-philosophy #mv h2 .logo {
  line-height: 0;
}
#page-philosophy #mv .mv-bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1440px;
  height: 100%;
  z-index: 1;
}
#page-philosophy #mv .mv-bg img {
  position: absolute;
  opacity: 0;
  right: 0;
  height: 558px;
  width: auto;
  mix-blend-mode: multiply;
}
#page-philosophy #mv .mv-bg img.mv01 {
  -webkit-animation: mv01 40s 2.5s infinite linear;
          animation: mv01 40s 2.5s infinite linear;
}
#page-philosophy #mv .mv-bg img.mv02 {
  -webkit-animation: mv02 40s 2.5s infinite linear;
          animation: mv02 40s 2.5s infinite linear;
}
#page-philosophy #mv .mv-bg img.mv03 {
  -webkit-animation: mv03 40s 2.5s infinite linear;
          animation: mv03 40s 2.5s infinite linear;
}
#page-philosophy #mv .mv-bg img.mv04 {
  -webkit-animation: mv04 40s 2.5s infinite linear;
          animation: mv04 40s 2.5s infinite linear;
}
#page-philosophy #mv .mv-bg img.mv05 {
  -webkit-animation: mv05 40s 2.5s infinite linear;
          animation: mv05 40s 2.5s infinite linear;
}
#page-philosophy #mv .mv-bg img.mv06 {
  -webkit-animation: mv06 40s 2.5s infinite linear;
          animation: mv06 40s 2.5s infinite linear;
}
#page-philosophy #mv .mv-bg img.mv07 {
  -webkit-animation: mv07 40s 2.5s infinite linear;
          animation: mv07 40s 2.5s infinite linear;
}
@-webkit-keyframes mvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mv01 {
  0% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  11% {
    opacity: 1;
  }
  22% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@keyframes mv01 {
  0% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  11% {
    opacity: 1;
  }
  22% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes mv02 {
  13% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  24% {
    opacity: 1;
  }
  35% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@keyframes mv02 {
  13% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  24% {
    opacity: 1;
  }
  35% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes mv03 {
  26% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  37% {
    opacity: 1;
  }
  48% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@keyframes mv03 {
  26% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  37% {
    opacity: 1;
  }
  48% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes mv04 {
  39% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    opacity: 1;
  }
  61% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@keyframes mv04 {
  39% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    opacity: 1;
  }
  61% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes mv05 {
  52% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  63% {
    opacity: 1;
  }
  74% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@keyframes mv05 {
  52% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  63% {
    opacity: 1;
  }
  74% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes mv06 {
  65% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  76% {
    opacity: 1;
  }
  87% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@keyframes mv06 {
  65% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  76% {
    opacity: 1;
  }
  87% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes mv07 {
  78% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  89% {
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes mv07 {
  78% {
    right: 0;
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  89% {
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
#page-philosophy section {
  overflow: hidden;
}
#page-philosophy #intro {
  background: #010528;
  padding: 110px 0 80px;
}
#page-philosophy #intro::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat center bottom;
  background-size: 1440px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
#page-philosophy #intro .intro-inner {
  position: relative;
  display: table;
  margin-inline: auto;
  z-index: 1;
}
#page-philosophy #intro .intro-inner h2 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: .05em;
  margin-bottom: 35px;
}
#page-philosophy #intro .intro-inner .copy {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2em;
  line-height: 2;
}
#page-philosophy .sec-title {
  position: relative;
  width: 100%;
  height: 335px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-philosophy .sec-title strong {
  font-family: "henderson-sans-basic", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 46px;
  text-shadow: 1px 1px 1px black;
  background: -webkit-gradient(linear, left top, right top, from(rgba(166, 0, 0, 0.6)), to(rgba(219, 96, 109, 0.3)));
  background: linear-gradient(to right, rgba(166, 0, 0, 0.6) 0%, rgba(219, 96, 109, 0.3) 100%);
  padding: 0 15px 0 10px;
  letter-spacing: -0.1em;
  line-height: 1;
}
#page-philosophy .inner {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0 80px;
  z-index: 1;
}
#page-philosophy .inner h2 {
  width: 50%;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
#page-philosophy .inner p {
  width: 50%;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
#page-philosophy #philosophy {
  background: #010528;
}
#page-philosophy #philosophy::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat center bottom;
  background-size: 1440px;
  position: absolute;
  left: 0;
  top: 230px;
  z-index: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#page-philosophy #philosophy .sec-title {
  background: #0D0D0D url("../images/company/philosophy/philosophy_title_bg.jpg") no-repeat center;
  background-size: 1440px;
}
#page-philosophy #vision {
  background: #010528;
}
#page-philosophy #vision::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat center bottom;
  background-size: 1440px;
  position: absolute;
  left: 0;
  top: 330px;
  z-index: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
#page-philosophy #vision .sec-title {
  background: url("../images/company/philosophy/vision_title_bg.jpg") no-repeat center, -webkit-gradient(linear, left top, right top, from(#A0BA54), color-stop(50%, #A0BA54), color-stop(50%, #FFB968), to(#FFB968));
  background: url("../images/company/philosophy/vision_title_bg.jpg") no-repeat center, linear-gradient(90deg, #A0BA54 0%, #A0BA54 50%, #FFB968 50%, #FFB968 100%);
  background-size: 1440px, 100%;
}
#page-philosophy #action {
  background: #010528;
}
#page-philosophy #action::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat center bottom;
  background-size: 1440px;
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#page-philosophy #action .sec-title {
  background: #000 url("../images/company/philosophy/action_title_bg.jpg") no-repeat center;
  background-size: 1440px;
}

#page-office {
  position: relative;
  padding-top: 50px;
  background: #000;
  color: #fff;
}
#page-office #intro {
  max-width: 900px;
  margin: 0 auto;
}
#page-office #intro h2 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: .02em;
  margin-bottom: 40px;
}
#page-office #intro .copy {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.3;
}
#page-office #intro .map {
  position: relative;
  width: 730px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 45px;
}
#page-office #intro .map .area {
  position: absolute;
}
#page-office #intro .map .area a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2em;
  padding: 0 2.5em 0 1em;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  background: #BB1B21;
  border-radius: 1000px;
}
#page-office #intro .map .area a:hover {
  opacity: .7;
}
#page-office #intro .map .area a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#page-office #intro .map .area .pref {
  width: 75%;
  margin-inline: auto;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  line-height: 1.5;
  padding-top: 3px;
}
#page-office #intro .map .area-hokkaido {
  top: 90px;
  right: 46px;
}
#page-office #intro .map .area-tohoku {
  top: 300px;
  right: 158px;
}
#page-office #intro .map .area-hokuriku {
  top: 374px;
  left: 317px;
}
#page-office #intro .map .area-kanto {
  top: 435px;
  right: 201px;
}
#page-office #intro .map .area-koshin {
  top: 437px;
  left: 303px;
}
#page-office #intro .map .area-tokai1 {
  top: 494px;
  right: 262px;
}
#page-office #intro .map .area-tokai2 {
  top: 560px;
  right: 262px;
}
#page-office #intro .map .area-kinki {
  top: 520px;
  left: 240px;
}
#page-office #intro .map .area-shikoku {
  top: 548px;
  left: 161px;
}
#page-office #intro .map .area-chugoku1 {
  top: 433px;
  left: 122px;
}
#page-office #intro .map .area-chugoku2 {
  top: 496px;
  left: 122px;
}
#page-office #intro .map .area-kyushu {
  top: 585px;
  left: 8px;
}
#page-office section.branch {
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: 88px;
}
#page-office section.branch h2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 47px;
  width: 100%;
  border-left: 8px solid #BB1B21;
  font-size: 25px;
  font-weight: bold;
  color: #414141;
  background: #fff;
  letter-spacing: .02em;
  padding-left: 1em;
  margin-bottom: 40px;
}
#page-office section.branch h2 .gmap-link {
  width: 120px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 14px;
  font-weight: bold;
  background: #BB1B21;
  color: #fff;
}
#page-office section.branch h2 .gmap-link::before {
  content: "";
  width: 10px;
  height: 12px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#page-office section.branch ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px 54px;
}
#page-office section.branch ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 423px;
  background: #fff;
}
#page-office section.branch ul li h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 23px;
  font-weight: bold;
  background: #808080;
  color: #fff;
  padding: .2em 0 .2em 28px;
  margin: 0;
}
#page-office section.branch ul li .address {
  min-height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  color: #414141;
  padding: 15px 0 15px 28px;
  margin: 0;
  line-height: 1.7;
}
#page-office section.branch ul li .address .area-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #414141;
  line-height: 1;
}
#page-office section.branch ul li .address .area-link::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 12px;
  background: #BB1B21;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* modal parts */
.modal-content {
  height: auto;
  max-height: 85%;
  max-width: 80%;
  top: 50%;
  left: 50%;
  position: fixed;
  display: none;
  z-index: 992;
  margin: 0;
  padding: 60px 0 30px;
  overflow: visible;
  background-color: #fff;
  overflow: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-scrolling: touch;
}
.modal-content .modal-inner {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.modal-overlay {
  z-index: 990;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-open:hover {
  cursor: pointer;
}

.modal-open:hover {
  cursor: pointer;
}

.modal-close {
  display: table;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
  font-size: 22px;
}
.modal-close:hover {
  cursor: pointer;
  opacity: .7;
}

.crossbtn {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 20px;
  right: 20px;
}
.crossbtn::before, .crossbtn::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: #414141;
  left: 50%;
  top: 50%;
}
.crossbtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.crossbtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal-gmap {
  width: 530px;
}
.modal-gmap .gmap {
  width: 100%;
  height: 380px;
  margin-bottom: 20px;
}
.modal-gmap .gmap iframe {
  width: 100%;
  height: 100%;
}
.modal-gmap .access {
  padding-left: 15px;
}
.modal-gmap .access h4 {
  display: table;
  padding: 0 1em;
  font-size: 16px;
  font-weight: bold;
  background: #BB1B21;
  line-height: 1.8em;
  border-radius: 1000px;
  margin-bottom: 15px;
}
.modal-gmap .access p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 38px;
  font-size: 16px;
  color: #414141;
  padding-left: 1em;
  border-left: 5px solid #BB1B21;
  text-align: left;
  margin: 0;
}

.modal-area {
  width: 833px;
}
.modal-area h4 {
  font-weight: bold;
  line-height: 38px;
  font-size: 22px;
  color: #414141;
  padding-left: .6em;
  border-left: 5px solid #BB1B21;
  text-align: left;
  margin-bottom: 20px;
}
.modal-area p.copy {
  font-size: 16px;
  margin: 0;
  color: #414141;
  text-align: left;
}
.modal-area .address {
  margin-top: 20px;
}
.modal-area .address h5 {
  display: table;
  padding: 0 1em;
  font-size: 18px;
  font-weight: bold;
  background: #808080;
  line-height: 1.8em;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.modal-area .address p.copy {
  line-height: 1.4;
}
.modal-area .address p.copy strong {
  font-size: 1.05em;
}
.modal-area .address.last {
  margin-top: 40px;
}
.modal-area .covering {
  margin-top: 25px;
}
.modal-area .covering h5 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #414141;
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
  padding: .3em 0;
  margin-bottom: 10px;
}
.modal-area .covering p {
  display: table;
  margin-inline: auto;
  font-size: 18px;
  font-weight: bold;
  color: #414141;
  text-align: left;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  aside {
    position: static;
    height: auto;
    width: 100%;
  }
  aside.philosophy .sub-menu nav {
    background: transparent;
  }
  aside .btnHamburger-side {
    display: none !important;
  }
  aside .btnClose-side {
    display: none !important;
  }
  aside nav {
    display: block !important;
  }
  aside .sub-menu {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  aside .sub-menu nav {
    width: 100%;
    background: #000;
    padding: 0 0 70px;
  }
  aside .sub-menu h3 {
    display: none;
  }
  aside .sub-menu ul {
    width: 40%;
    max-width: 160px;
    margin-inline: auto;
    gap: 15px;
  }
  aside .sub-menu ul li {
    line-height: 1;
  }
  aside .sub-menu ul li span.current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3em;
    padding-left: 0;
    color: #414141;
    background: #fff;
    font-size: 12px;
  }
  aside .sub-menu ul li span.current::before {
    content: none;
  }
  aside .sub-menu ul li span.current::after {
    content: none;
  }
  aside .sub-menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3em;
    padding-left: 0;
    color: #fff;
    font-size: 12px;
    border: 1px solid #fff;
  }
  aside .sub-menu ul li a:hover {
    color: #fff;
  }
  aside .other-menu {
    position: relative;
    height: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  aside .other-menu nav {
    width: 60%;
    background: #fff;
    margin-inline: auto;
    padding: 50px 0 70px;
  }
  aside .other-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .page-title {
    height: 110px;
    margin-bottom: 35px;
    overflow: hidden;
  }
  .page-title h2 {
    width: 85%;
  }
  .page-title h2 .en {
    font-family: "henderson-sans-basic", sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 21px;
    margin-bottom: 5px;
  }
  .page-title h2 .ja {
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 11px;
    letter-spacing: .1em;
  }
  .page-title .title-img {
    left: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-title .title-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 80%;
    width: 80%;
  }

  #page-company {
    padding-top: 60px;
    background: #000;
    color: #fff;
  }
  #page-company .page-title {
    height: 110px;
    margin-bottom: 35px;
  }
  #page-company .page-title h2 {
    width: 85%;
  }
  #page-company .page-title h2 .en {
    font-family: "henderson-sans-basic", sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 21px;
    margin-bottom: 5px;
  }
  #page-company .page-title h2 .ja {
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 11px;
    letter-spacing: .1em;
  }
  #page-company .page-title .title-img {
    left: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page-company .page-title .title-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 80%;
    width: 80%;
  }
  #page-company #profile {
    width: 85%;
    padding-bottom: 50px;
  }
  #page-company #profile h2 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  #page-company #profile h2 small {
    font-size: .75em;
  }
  #page-company #profile dl {
    display: block;
  }
  #page-company #profile dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 115px;
    min-height: auto;
    height: 2em;
    font-size: 12px;
    margin-bottom: 10px;
  }
  #page-company #profile dl dd {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
  }

  #page-philosophy {
    padding-top: 60px;
  }
  #page-philosophy #mv {
    height: 375px;
  }
  #page-philosophy #mv h2 {
    gap: 10px;
  }
  #page-philosophy #mv h2 strong {
    font-size: 24px;
    margin-top: -4px;
  }
  #page-philosophy #mv h2 .logo {
    width: 125px;
  }
  #page-philosophy #mv .mv-bg {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 900px;
    height: 100%;
  }
  #page-philosophy #mv .mv-bg img {
    height: 375px;
  }
  #page-philosophy #mv .mv-bg img.mv01 {
    -webkit-animation: mv01 40s 2.5s infinite linear;
            animation: mv01 40s 2.5s infinite linear;
  }
  #page-philosophy #mv .mv-bg img.mv02 {
    -webkit-animation: mv02 40s 2.5s infinite linear;
            animation: mv02 40s 2.5s infinite linear;
  }
  #page-philosophy #mv .mv-bg img.mv03 {
    -webkit-animation: mv03 40s 2.5s infinite linear;
            animation: mv03 40s 2.5s infinite linear;
  }
  #page-philosophy #mv .mv-bg img.mv04 {
    -webkit-animation: mv04 40s 2.5s infinite linear;
            animation: mv04 40s 2.5s infinite linear;
  }
  #page-philosophy #mv .mv-bg img.mv05 {
    -webkit-animation: mv05 40s 2.5s infinite linear;
            animation: mv05 40s 2.5s infinite linear;
  }
  #page-philosophy #mv .mv-bg img.mv06 {
    -webkit-animation: mv06 40s 2.5s infinite linear;
            animation: mv06 40s 2.5s infinite linear;
  }
  #page-philosophy #mv .mv-bg img.mv07 {
    -webkit-animation: mv07 40s 2.5s infinite linear;
            animation: mv07 40s 2.5s infinite linear;
  }
  #page-philosophy section {
    overflow: hidden;
  }
  #page-philosophy #intro {
    background: #010528;
    padding: 60px 0 40px;
  }
  #page-philosophy #intro::before {
    background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat right -180px bottom;
    background-size: 1000px;
  }
  #page-philosophy #intro .intro-inner {
    width: 85%;
    display: block;
  }
  #page-philosophy #intro .intro-inner h2 {
    font-size: 20px;
    letter-spacing: .05em;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  #page-philosophy #intro .intro-inner .copy {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2em;
    line-height: 2;
  }
  #page-philosophy .sec-title {
    height: 204px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page-philosophy .sec-title strong {
    font-family: "henderson-sans-basic", sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 29px;
    text-shadow: 1px 1px 1px black;
    background: -webkit-gradient(linear, left top, right top, from(rgba(166, 0, 0, 0.6)), to(rgba(219, 96, 109, 0.3)));
    background: linear-gradient(to right, rgba(166, 0, 0, 0.6) 0%, rgba(219, 96, 109, 0.3) 100%);
    padding: 0 10px 0 5px;
  }
  #page-philosophy .inner {
    width: 85%;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 60px 0 40px;
  }
  #page-philosophy .inner h2 {
    width: 100%;
    font-size: 20px;
    margin: 0;
  }
  #page-philosophy .inner p {
    width: 100%;
    font-size: 14px;
  }
  #page-philosophy #philosophy::before {
    background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat right -120px bottom;
    background-size: 1000px;
    top: 150px;
  }
  #page-philosophy #philosophy .sec-title {
    background: #0D0D0D url("../images/company/philosophy/philosophy_title_bg_sp.jpg") no-repeat center;
    background-size: cover;
  }
  #page-philosophy #vision {
    background: #010528;
  }
  #page-philosophy #vision::before {
    background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat right -150px bottom;
    background-size: 1000px;
    top: 180px;
    z-index: 0;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  #page-philosophy #vision .sec-title {
    background: url("../images/company/philosophy/vision_title_bg_sp.jpg") no-repeat center;
    background-size: cover;
  }
  #page-philosophy #action {
    background: #010528;
    overflow: visible;
  }
  #page-philosophy #action::before {
    height: calc(100% + 208px);
    background: url("../images/company/philosophy/philosophy_bg.jpg") no-repeat right -150px bottom;
    background-size: 1000px;
    top: 0;
    z-index: 0;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  #page-philosophy #action .sec-title {
    background: #000 url("../images/company/philosophy/action_title_bg_sp.jpg") no-repeat center;
    background-size: cover;
  }

  #page-office {
    padding-top: 60px;
  }
  #page-office .page-title .title-img {
    left: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page-office .page-title .title-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
  #page-office #intro {
    width: 85%;
    margin: 0 auto;
  }
  #page-office #intro h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #page-office #intro .copy {
    font-size: 14px;
    line-height: 2;
  }
  #page-office #intro .map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 45px;
  }
  #page-office #intro .map .area {
    width: 46.5%;
    position: static;
    margin-bottom: 30px;
  }
  #page-office #intro .map .area a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 2em;
    padding: 0 2em 0 .5em;
    font-size: 14px;
  }
  #page-office #intro .map .area a::after {
    right: 12%;
  }
  #page-office #intro .map .area .pref {
    display: table;
    width: auto;
    min-width: 55%;
    margin: 0 auto;
    font-size: 11px;
    line-height: 1.7;
    padding-top: 5px;
  }
  #page-office section.branch {
    width: 85%;
    padding-bottom: 60px;
  }
  #page-office section.branch h2 {
    height: 2em;
    border-left: 6px solid #BB1B21;
    font-size: 19px;
    padding-left: 1em;
    margin-bottom: 20px;
  }
  #page-office section.branch h2 .gmap-link {
    width: 94px;
    height: 2em;
    gap: 2px;
    right: 5%;
    font-size: 11px;
  }
  #page-office section.branch h2 .gmap-link::before {
    width: 10px;
    height: 12px;
  }
  #page-office section.branch ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
    margin-inline: auto;
    gap: 20px;
  }
  #page-office section.branch ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    background: #fff;
  }
  #page-office section.branch ul li h3 {
    font-size: 16px;
    padding: .4em 0 .4em 15px;
  }
  #page-office section.branch ul li .address {
    min-height: 100px;
    font-size: 14px;
    padding: 10px 0 10px 15px;
    line-height: 1.7;
  }
  #page-office section.branch ul li .address .area-link {
    margin-top: 5px;
    font-size: 14px;
  }

  /* modal parts */
  .modal-content {
    max-width: none;
    width: 90%;
    padding: 50px 2.5% 30px;
  }
  .modal-content .modal-inner {
    max-width: 94%;
  }

  .modal-close {
    width: auto;
    font-size: 15px;
    font-weight: bold;
  }

  .crossbtn {
    width: 18px;
    height: 18px;
    top: 20px;
    right: 20px;
  }
  .crossbtn::before, .crossbtn::after {
    width: 25px;
    height: 1px;
  }

  .modal-gmap {
    width: 90%;
  }
  .modal-gmap .gmap {
    width: 100%;
    height: 380px;
    margin-bottom: 20px;
  }
  .modal-gmap .gmap iframe {
    width: 100%;
    height: 100%;
  }
  .modal-gmap .access {
    padding-left: 5px;
  }
  .modal-gmap .access h4 {
    display: table;
    padding: 0 1em;
    font-size: 11px;
    line-height: 1.8em;
    border-radius: 1000px;
    margin-bottom: 10px;
  }
  .modal-gmap .access p {
    min-height: auto;
    font-size: 14px;
    padding-left: .5em;
    border-left: 3px solid #BB1B21;
  }

  .modal-area {
    width: 90%;
  }
  .modal-area h4 {
    line-height: 1.5;
    font-size: 16px;
    padding-left: .6em;
    border-left: 6px solid #BB1B21;
    margin-bottom: 15px;
  }
  .modal-area p.copy {
    font-size: 14px;
  }
  .modal-area .address {
    margin-top: 20px;
  }
  .modal-area .address h5 {
    display: block;
    padding: 0 1em;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 10px;
    letter-spacing: .01em;
    text-align: left;
  }
  .modal-area .address p.copy {
    line-height: 1.5;
  }
  .modal-area .address p.copy strong {
    font-size: 1.05em;
  }
  .modal-area .address.last {
    margin-top: 40px;
  }
  .modal-area .covering {
    margin-top: 15px;
  }
  .modal-area .covering h5 {
    font-size: 15px;
    border: 1px solid #414141;
    padding: .3em 0;
    margin-bottom: 10px;
  }
  .modal-area .covering p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.7;
    margin: 0;
  }
}

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