#hero {
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
}
#hero .movie {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#hero .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .movie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#hero .heroConts {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  color: var(--color-black);
  position: relative;
  padding: 120px 5vw;
}
#hero .heroConts .heroContsInner {
  margin: 0 auto;
  max-width: 640px;
}
#hero .heroConts p {
  margin-top: 24px;
}
#hero .heroConts ul {
  margin: 80px auto 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#hero .heroConts ul li {
  width: 80%;
  max-width: 300px;
}
#hero .heroConts ul a.btn {
  width: 100%;
  height: 50px;
  background-color: var(--color-black);
  color: var(--color-bg);
  padding: 0;
  font-size: var(--fontsize-S);
}
@media screen and (max-width: 767px) {
  #hero {
    min-height: 50vh;
  }
  #hero .heroConts {
    min-height: 50vh;
  }
  #hero .heroConts ul {
    margin-top: 50px;
    gap: 30px;
  }
}

#why .inner {
  padding-bottom: 0;
}
#why ul.dial {
  margin: 0 0 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#why ul.dial li {
  width: 32%;
  height: auto;
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: var(--border-radius-s);
}
#why ul.dial li h3 {
  font-size: 80px;
  font-weight: 300;
  color: var(--color-black);
}
#why ul.dial li h3 .dialPlus {
  transform: translateY(7px);
  display: inline-block;
}
#why .mapCase {
  width: calc(100% + 9vw);
  height: auto;
  aspect-ratio: 3207/1600;
  transform: translateX(-4vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
#why .mapCase ul.map {
  width: 100%;
  height: auto;
  aspect-ratio: 3207/958;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(../img/map.webp);
  position: relative;
  margin: 0;
}
#why .mapCase ul.map li {
  position: absolute;
  transform: translateY(-200px);
  opacity: 0;
}
#why .mapCase ul.map li::after {
  content: "";
  width: 32px;
  height: auto;
  aspect-ratio: 112/155;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/map_point.png);
  transform-origin: center bottom;
  position: absolute;
  left: -20px;
  bottom: 0;
}
#why .mapCase ul.map li.spot1 {
  left: 7%;
  top: 29.2%;
}
#why .mapCase ul.map li.spot1 .fuki {
  left: -42px;
}
#why .mapCase ul.map li.spot1 .fuki span {
  left: -63px;
}
#why .mapCase ul.map li.spot2 {
  left: 18.4%;
  top: 30.8%;
  animation-delay: 0.1s !important;
}
#why .mapCase ul.map li.spot3 {
  left: 21.2%;
  top: 25.8%;
  animation-delay: 0.2s !important;
}
#why .mapCase ul.map li.spot4 {
  left: 44.7%;
  top: 20%;
  animation-delay: 0.3s !important;
}
#why .mapCase ul.map li.spot5 {
  left: 49%;
  top: 21%;
  animation-delay: 0.4s !important;
}
#why .mapCase ul.map li.spot6 {
  left: 56%;
  top: 35.6%;
  animation-delay: 0.5s !important;
}
#why .mapCase ul.map li.spot7 {
  left: 88.5%;
  top: 32.2%;
  animation-delay: 0.6s !important;
}
#why .mapCase ul.map .fuki {
  position: absolute;
  left: -94px;
  bottom: -130px;
  width: 180px;
  height: 130px;
  border-radius: 10px;
  transition-duration: 0.3s;
  opacity: 0;
}
#why .mapCase ul.map .fuki .cardHead {
  width: 100%;
  height: 28px;
  background-color: black;
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
  position: relative;
}
#why .mapCase ul.map .fuki .cardHead.cardHeadRound {
  border-radius: 10px;
}
#why .mapCase ul.map .fuki .cardVisual {
  width: 100%;
  height: 102px;
  background-color: #EEE;
  border-radius: 0 0 10px 10px;
}
#why .mapCase ul.map .fuki span {
  width: 200px;
  height: 22px;
  position: absolute;
  left: -10px;
  top: -11px;
  transform: scaleX(0.6);
}
#why .mapCase ul.map .fuki span::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 90px;
  top: 4px;
  background-color: black;
  transform: rotate(45deg);
}
#why .mapCase ul.map li.open .fuki {
  opacity: 1;
  bottom: -145px;
}
#why .mapCase.on ul.map li {
  animation: drop 0.8s ease-out forwards;
}
@keyframes drop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  #why ul.dial {
    flex-direction: column;
    gap: 40px;
  }
  #why ul.dial li {
    width: 100%;
  }
  #why .mapCase {
    margin-top: 120px;
  }
  #why .mapCase ul.map li .fuki {
    left: -90px;
    pointer-events: none;
  }
  #why .mapCase ul.map li.spot1 .fuki {
    left: -17px;
  }
  #why .mapCase ul.map li.spot1 .fuki span {
    left: -83px;
  }
  #why .mapCase ul.map li.spot2 .fuki {
    left: -48px;
  }
  #why .mapCase ul.map li.spot2 .fuki span {
    left: -52px;
  }
  #why .mapCase ul.map li.spot3 .fuki {
    left: -48px;
  }
  #why .mapCase ul.map li.spot3 .fuki span {
    left: -52px;
  }
  #why .mapCase ul.map li.spot5 .fuki {
    left: -120px;
  }
  #why .mapCase ul.map li.spot5 .fuki span {
    left: 20px;
  }
  #why .mapCase ul.map li.spot7 .fuki {
    left: -143px;
  }
  #why .mapCase ul.map li.spot7 .fuki span {
    width: 40px;
    left: 75px;
  }
  #why .mapCase ul.map li::after {
    width: 20px;
    left: -10px;
  }
}

#philosophy {
  background-color: var(--color-bg);
}
#philosophy h2.h2main span {
  display: block;
  font-size: var(--fontsize-M);
  line-height: 1.8;
}
#philosophy .philoCase {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
#philosophy .philoCase .philoImg,
#philosophy .philoCase .philoText {
  display: flex;
  align-items: center;
}
#philosophy .philoCase .philoImg {
  width: calc((100% - 40px) * 0.6);
}
#philosophy .philoCase .philoImg ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
#philosophy .philoCase .philoImg ul li {
  width: calc((100% - 40px) / 2);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius-s);
}
#philosophy .philoCase .philoText {
  width: calc((100% - 40px) * 0.4);
}
#philosophy .philoCase .philoText p {
  margin-bottom: 0;
}
#philosophy .slider {
  margin-top: 40px;
}
#philosophy .slider .slide-date {
  color: var(--color-black);
  font-size: var(--fontsize-M);
  font-weight: 400;
  text-align: center;
}
#philosophy .slider h2 {
  height: auto;
  font-size: 20px;
  margin-top: 58px;
  overflow: inherit;
  -webkit-line-clamp: inherit;
  text-align: center;
}
#philosophy .slider time {
  position: relative;
}
#philosophy .slider time::before, #philosophy .slider time::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-black);
}
#philosophy .slider time::before {
  width: 14px;
  bottom: -42px;
}
#philosophy .slider time::after {
  width: 24px;
  bottom: -47px;
  opacity: 0.2;
}
#philosophy .slider .swiper-area {
  position: relative;
}
#philosophy .slider .swiper-area::before {
  content: "";
  position: absolute;
  top: 99px;
  left: -24px;
  width: calc(100% + 48px);
  height: 1px;
  background-color: #4E4E4E;
}
#philosophy .slider .swiper-button-next, #philosophy .slider .swiper-button-prev {
  bottom: auto;
  top: 68px;
}
#philosophy .president {
  display: flex;
  gap: 40px;
  margin-bottom: 120px;
}
#philosophy .president .cardVisual {
  width: 226px;
  border-radius: var(--border-radius-s);
}
#philosophy .president .cardBody {
  width: calc(100% - 266px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
#philosophy .president .cardBody h3 {
  color: var(--color-gray);
}
#philosophy .president .cardBody p {
  margin-bottom: 12px;
}
#philosophy .president .cardBody a.btn {
  margin-top: 16px;
}
#philosophy .innerFull {
  padding-top: 0;
  padding-bottom: 0;
}
#philosophy .innerFull h3.h3main {
  margin: 0 auto;
  max-width: calc(1200px + 10vw);
  padding: 0 5vw;
}
#philosophy .inner:last-child > p {
  margin-top: 20px;
}
#philosophy .philoPres .inner {
  padding-bottom: 0;
}
#philosophy .philoWhat {
  background-color: #181818;
}
#philosophy .philoWhat .inner .whatVision {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 40px 0 80px;
  position: relative;
}
#philosophy .philoWhat .inner .whatVision h3 {
  width: 240px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  font-weight: 200;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
  order: 1;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
}
#philosophy .philoWhat .inner .whatVision h3 span {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  transform-origin: center center;
}
#philosophy .philoWhat .inner .whatVision h3 span:nth-of-type(1) {
  transform: scale(1.1);
  opacity: 0.3;
}
#philosophy .philoWhat .inner .whatVision h3 span:nth-of-type(2) {
  transform: scale(1.18);
  opacity: 0.2;
}
#philosophy .philoWhat .inner .whatVision h3 span:nth-of-type(3) {
  transform: scale(1.24);
  opacity: 0.1;
}
#philosophy .philoWhat .inner .whatVision h3::after, #philosophy .philoWhat .inner .whatVision h3::before {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(45vw - 120px);
  height: 1px;
}
#philosophy .philoWhat .inner .whatVision h3::after {
  left: 239px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
#philosophy .philoWhat .inner .whatVision h3::before {
  right: 239px;
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase {
  width: calc((100% - 360px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase:nth-of-type(1) {
  order: 0;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase:nth-of-type(1) img {
  height: 130px;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase:nth-of-type(2) {
  order: 2;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase:nth-of-type(2) img {
  height: 110px;
  margin-top: 19px;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase h4 {
  font-weight: 200;
  font-size: 34px;
  color: var(--color-main);
  margin: 30px 0 0;
  padding: 0;
  text-align: center;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase h4 .jpWhite {
  color: white;
  font-weight: 500;
}
#philosophy .philoWhat .inner .whatVision .whatVisionCase p {
  margin: 0;
  padding: 0 0 30px;
  max-width: 300px;
  text-align: center;
  font-size: 18px;
}
#philosophy .philoWhat .inner .whatVision::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: calc(50% - 40px);
  width: 80px;
  height: 3px;
  background-color: var(--color-main);
}
#philosophy .philoWhat .inner .whatTab {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #333;
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  border-left: 1px solid #969696;
  border-right: 1px solid #969696;
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader li a {
  font-size: var(--fontsize-M);
  font-weight: 200;
  line-height: 1.2;
  display: block;
  text-decoration: none;
  position: relative;
  color: var(--color-gray);
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader li a:hover {
  text-decoration: underline;
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader li.active a {
  font-weight: 400;
  color: var(--color-black);
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader li:last-child {
  border-left: 1px solid #969696;
}
#philosophy .philoWhat .inner .whatTab .whatTabHeader li:last-child a {
  text-align: right;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody {
  position: relative;
  margin-top: 60px;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent {
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  transition-duration: var(--anim-mouseOver);
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent.active {
  pointer-events: auto;
  opacity: 1;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent:last-child {
  position: absolute;
  top: 0;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent h3 {
  font-size: 36px;
  margin: 10px 0 20px;
  padding: 0;
  line-height: 1.2;
  color: var(--color-main);
  font-weight: 400;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 33px;
  width: 100%;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li {
  width: calc((100% - 66px) / 3);
  position: relative;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li .whatTabContentCard {
  background-color: var(--color-black);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  padding: 40px 20px 0;
  border-radius: 10px;
  height: 100%;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li .whatTabContentCard h4 {
  font-size: var(--fontsize-S);
  font-weight: 400;
  color: var(--color-main);
  text-align: center;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li .whatTabContentCard p {
  color: var(--color-white);
  text-align: center;
  font-size: 18px;
  padding-bottom: 24px;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li .whatTabContentCard p span {
  display: inline-block;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li .whatTabContentCard img {
  height: 80px;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li::before {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 0px;
  width: 132px;
  height: 132px;
  background: var(--color-black);
  transform: translateY(50%) rotate(45deg);
  border-radius: var(--border-radius-s);
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li:nth-child(1) {
  z-index: 3;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li:nth-child(2) {
  z-index: 2;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li:nth-child(3)::before {
  display: none;
}
#philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul.noArrow li::before {
  display: none;
}
#philosophy .philoFocus .inner .focusTabCase {
  position: relative;
}
#philosophy .philoFocus .inner .focusTab, #philosophy .philoFocus .inner .focusTabBase {
  margin: 0;
  padding: 0;
}
#philosophy .philoFocus .inner .focusTab li, #philosophy .philoFocus .inner .focusTabBase li {
  border: 3px solid #969696;
  border-radius: 10px;
  display: flex;
  box-sizing: border-box;
}
#philosophy .philoFocus .inner .focusTab li .focusTabTitle, #philosophy .philoFocus .inner .focusTabBase li .focusTabTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
#philosophy .philoFocus .inner .focusTab li .focusTabTitle:focus, #philosophy .philoFocus .inner .focusTabBase li .focusTabTitle:focus {
  outline: none;
}
#philosophy .philoFocus .inner .focusTab li .focusTabTitle .focusTabIcon, #philosophy .philoFocus .inner .focusTabBase li .focusTabTitle .focusTabIcon {
  display: flex;
  justify-content: center;
  align-items: center;
}
#philosophy .philoFocus .inner .focusTab li .focusTabTitle .focusTabIcon img, #philosophy .philoFocus .inner .focusTabBase li .focusTabTitle .focusTabIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#philosophy .philoFocus .inner .focusTab li .focusTabTitle h5, #philosophy .philoFocus .inner .focusTabBase li .focusTabTitle h5 {
  color: var(--color-black);
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
#philosophy .philoFocus .inner .focusTab li .focusTabBody, #philosophy .philoFocus .inner .focusTabBase li .focusTabBody {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#philosophy .philoFocus .inner .focusTab li .focusTabBody p, #philosophy .philoFocus .inner .focusTabBase li .focusTabBody p {
  font-size: 18px;
}
#philosophy .philoFocus .inner .focusTab li {
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#philosophy .philoFocus .inner .focusTab li .focusTabBody {
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#philosophy .philoFocus .inner .focusTab li .focusTabBody p {
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
#philosophy .philoFocus .inner .focusTab li .focusTabBody p.jp {
  transition-duration: 0s;
}
@media screen and (max-width: 1023px) {
  #philosophy .slider h2 {
    padding: 0 32px;
  }
  #philosophy .slider .swiper-area::before {
    top: 99px;
    left: 32px;
    width: calc(100% - 64px);
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li:first-child {
    width: 61%;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li:last-child {
    width: 39%;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li a {
    font-size: 32px;
  }
}
@media screen and (min-width: 988px) {
  #philosophy .philoFocus .focusTabBase, #philosophy .philoFocus .focusTab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
  }
  #philosophy .philoFocus .focusTabBase li.active, #philosophy .philoFocus .focusTab li.active {
    grid-column: span 2;
  }
  #philosophy .philoFocus[data-index="3"] .focusTabBase li:last-child {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabTitle, #philosophy .philoFocus .focusTab li .focusTabTitle {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabTitle .focusTabIcon, #philosophy .philoFocus .focusTab li .focusTabTitle .focusTabIcon {
    width: 90px;
    height: 90px;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabBody, #philosophy .philoFocus .focusTab li .focusTabBody {
    max-width: 0;
    position: relative;
    transition-duration: 0s;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabBody p, #philosophy .philoFocus .focusTab li .focusTabBody p {
    padding: 0 12px 0 60px;
    margin: 0;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabBody p.jp, #philosophy .philoFocus .focusTab li .focusTabBody p.jp {
    font-size: 1px;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabBody::before, #philosophy .philoFocus .focusTab li .focusTabBody::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 16px;
    height: calc(100% - 64px);
    width: 1px;
    background-color: #5C5C5C;
  }
  #philosophy .philoFocus .focusTabBase li.active, #philosophy .philoFocus .focusTab li.active {
    position: relative;
    justify-content: flex-end;
  }
  #philosophy .philoFocus .focusTabBase li.active .focusTabTitle, #philosophy .philoFocus .focusTab li.active .focusTabTitle {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  #philosophy .philoFocus .focusTabBase li.active .focusTabBody, #philosophy .philoFocus .focusTab li.active .focusTabBody {
    max-width: 500px;
  }
  #philosophy .philoFocus .focusTabBase li.active .focusTabBody p.jp, #philosophy .philoFocus .focusTab li.active .focusTabBody p.jp {
    font-size: var(--fontsize-jp-S);
  }
  #philosophy .philoFocus .focusTabBase {
    position: relative;
    opacity: 0;
    pointer-events: none;
  }
  #philosophy .philoFocus .focusTabBase li .focusTabBody {
    width: 100%;
  }
  #philosophy .philoFocus .focusTabBase li.active .focusTabTitle {
    width: calc(50% - 18px);
  }
  #philosophy .philoFocus .focusTabBase li.active .focusTabBody {
    width: calc(50% + 18px);
  }
  #philosophy .philoFocus .focusTab {
    position: absolute;
    left: 0;
    top: 0;
  }
  #philosophy .philoFocus .focusTab li {
    position: absolute;
    background-color: var(--color-bg);
  }
  #philosophy .philoFocus .focusTab li .focusTabBody p {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
    opacity: 0;
    transition-delay: 0.3s;
  }
  #philosophy .philoFocus .focusTab li.active {
    z-index: 2;
  }
  #philosophy .philoFocus .focusTab li.active .focusTabBody p {
    opacity: 1;
  }
}
@media screen and (max-width: 987px) {
  #philosophy .philoCase {
    flex-direction: column;
  }
  #philosophy .philoCase .philoImg,
  #philosophy .philoCase .philoText {
    width: 100%;
  }
  #philosophy .philoCase .philoImg ul {
    gap: 20px;
  }
  #philosophy .philoCase .philoImg ul li {
    width: calc((100% - 20px) / 2);
  }
  #philosophy .philoWhat .inner .whatVision {
    flex-direction: column;
    gap: 40px;
  }
  #philosophy .philoWhat .inner .whatVision h3 {
    order: 0;
  }
  #philosophy .philoWhat .inner .whatVision .whatVisionCase {
    width: 100%;
  }
  #philosophy .philoWhat .inner .whatVision .whatVisionCase:nth-of-type(1) {
    margin-top: 40px;
  }
  #philosophy .philoWhat .inner .whatVision .whatVisionCase h4 {
    margin-top: 0;
  }
  #philosophy .philoWhat .inner .whatVision .whatVisionCase p {
    padding-bottom: 0;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent {
    display: none;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent.active {
    display: block;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent:last-child {
    position: relative;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul {
    flex-direction: column;
    margin-bottom: 20px;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li {
    width: 100%;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabBody .whatTabContent ul li::before {
    bottom: 2px;
    right: 50%;
    transform: translateX(50%) translateY(0) rotate(45deg);
  }
  #philosophy .philoFocus {
    height: 1000px;
    overflow: hidden;
  }
  #philosophy .philoFocus .inner {
    padding-bottom: 0;
  }
  #philosophy .philoFocus .inner .focusTabBase {
    display: none;
  }
  #philosophy .philoFocus .inner .focusTab {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #philosophy .philoFocus .inner .focusTab li {
    display: flex;
    flex-direction: column;
  }
  #philosophy .philoFocus .inner .focusTab li .focusTabTitle {
    width: 100%;
    padding: 10px 0;
    justify-content: flex-start;
    gap: 10px;
  }
  #philosophy .philoFocus .inner .focusTab li .focusTabTitle h5 {
    font-size: 22px;
  }
  #philosophy .philoFocus .inner .focusTab li .focusTabTitle .focusTabIcon {
    margin-left: 12px;
    width: 60px;
    height: 50px;
  }
  #philosophy .philoFocus .inner .focusTab li .focusTabBody {
    width: 100%;
    max-height: 0;
  }
  #philosophy .philoFocus .inner .focusTab li .focusTabBody p {
    font-size: 14px;
    margin: 0;
    padding: 12px 16px;
    position: relative;
    width: 100%;
  }
  #philosophy .philoFocus .inner .focusTab li .focusTabBody p::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 16px;
    width: calc(100% - 32px);
    height: 1px;
    background-color: #5C5C5C;
  }
  #philosophy .philoFocus .inner .focusTab li.active .focusTabBody {
    max-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  #philosophy .president {
    flex-direction: column;
  }
  #philosophy .president .cardVisual,
  #philosophy .president .cardBody {
    width: 100%;
  }
  #philosophy .slider .swiper-area::before {
    top: 86px;
  }
  #philosophy .slider .swiper-button-next, #philosophy .slider .swiper-button-prev {
    transform: translateY(-14px);
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader {
    justify-content: space-between;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li a {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  #philosophy .philoWhat .inner .whatTab .whatTabHeader {
    justify-content: space-between;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li:first-child {
    width: 63%;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li:last-child {
    width: 37%;
  }
  #philosophy .philoWhat .inner .whatTab .whatTabHeader li a {
    font-size: 16px;
  }
}

#portfolio h3.h3main {
  margin-top: 60px;
}
#portfolio ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 12px 0px 0px;
  gap: 24px;
}
#portfolio ul li {
  list-style-type: none;
  box-sizing: border-box;
  display: block;
  height: auto;
  aspect-ratio: 437/333;
  overflow: hidden;
}
#portfolio ul li a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-black);
  border-radius: var(--border-radius-s);
}
#portfolio ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition-duration: var(--anim-mouseOver);
  transform-origin: center center;
  transform: scale(0.8);
}
#portfolio ul li a:hover img {
  transform: scale(0.9);
}

#team {
  background-color: var(--color-bg);
}
#team h2.h2main {
  width: 100%;
  margin: 0 auto;
  max-width: calc(1200px + 10vw);
  text-align: left;
  padding: 0 5vw;
}
#team .teamBelt {
  margin-top: 40px;
  width: 100%;
  height: 200px;
  background-repeat: repeat-x;
  background-image: url(../img/team_belt.webp);
  animation: beltMove 90s linear 0s infinite;
}
@keyframes beltMove {
  0% {
    background-position: 0px bottom;
  }
  100% {
    background-position: -2100px bottom;
  }
}
#team .innerFull {
  padding-bottom: 0;
}
#team .inner {
  padding-top: 80px;
}
#team .teamLink {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
#team .teamLink a {
  width: 40%;
  background-color: var(--color-main);
  color: var(--color-black);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  border-radius: var(--border-radius-s);
  transition-duration: var(--anim-mouseOver);
}
#team .teamLink a:hover {
  transform: translate(-3px, -3px);
}
@media screen and (max-width: 767px) {
  #team .teamLink {
    margin-top: 40px;
    gap: 20px;
    flex-direction: column;
  }
  #team .teamLink a {
    width: 80%;
  }
}

#career .careers-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#career .careers-list .career-item {
  background: var(--color-bg);
  padding: 50px 80px;
  padding-right: 350px;
  position: relative;
  border-radius: var(--border-radius-s);
}
#career .careers-list .career-item .career-item-title {
  color: var(--color-black);
}
#career .careers-list .career-item .career-item-title h4 {
  font-weight: var(--fontwaight-S);
  line-height: var(--lineheight-all);
  font-size: var(--fontsize-S);
}
#career .careers-list .career-item .career-item-title p {
  margin-top: 12px;
  color: var(--color-gray);
}
#career .careers-list .career-item .career-item-text {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.43;
}
#career .careers-list .career-item .career-item-button {
  position: absolute;
  right: 80px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#career .careers-list .career-item .career-item-button a.btn {
  width: 232px;
  padding-left: 0;
  padding-right: 0;
}
#career .careers-list .career-item .career-item-button a.btn p {
  padding: 0;
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #career .careers-list .career-item {
    padding: 30px 5vw;
  }
  #career .careers-list .career-item .career-item-button {
    transform: translateY(0);
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    gap: 20px;
    align-items: center;
  }
}

#news {
  background-color: var(--color-bg);
  overflow-x: hidden;
}
#news h3.h3main {
  margin-top: 80px;
  margin-bottom: 20px;
}
#news .slider-case {
  padding: 0;
}
#news .slider-case .slide-media {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#news .slider-case .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: none;
  transform-origin: center center;
  transition-duration: var(--anim-mouseOver);
}
#news .slider-case a:hover .slide {
  transform: none;
}
#news .slider-case a:hover .slide-media img {
  transform: scale(1.1);
}
#news .slider-case a:hover h2.slide-title {
  text-decoration: underline;
}
#news .showAll {
  display: flex;
  justify-content: flex-end;
}
#news .showAll a {
  font-weight: var(--fontwaight-M);
}

#contact .contactCase {
  margin-top: 64px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}
#contact .contactCase .contactBox {
  background-color: var(--color-bg);
  border-radius: var(--border-radius-s);
  padding: 33px 33px 12px;
}
#contact .contactCase .contactBox h3 {
  margin-top: 80px;
}
#contact .contactCase .contactBox h3:first-child {
  margin-top: 0;
}
#contact .contactCase .contactBox .wpcf7-form > p {
  margin-bottom: 0;
  padding-bottom: 0;
}
#contact .contactCase .contactBox .contactPlace {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}
#contact .contactCase .contactBox .contactPlace li {
  display: flex;
  font-size: var(--fontsize-S);
  gap: 7px;
  color: var(--color-black);
  align-items: flex-start;
}
#contact .contactCase .contactBox .contactPlace li::before {
  content: "";
  width: 24px;
  height: auto;
  aspect-ratio: 19/24;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_place.svg);
  transform: translateY(4px);
}
#contact .contactCase .contactBox .formBox2 {
  display: flex;
  gap: 20px;
}
#contact .contactCase .contactBox .formBox2 > p {
  width: calc((100% - 20px) / 2);
}
#contact .contactCase .contactBox label span {
  color: var(--color-main);
}
#contact .contactCase .contactBox label span input,
#contact .contactCase .contactBox label span textarea {
  margin-top: 6px;
  width: 100%;
  font-weight: 400;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-s);
  background-color: var(--color-white);
  color: white;
}
@media screen and (max-width: 767px) {
  #contact .contactCase {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  #contact .contactCase .contactBox {
    padding: 33px 12px;
  }
}/*# sourceMappingURL=top.css.map */