@charset "UTF-8";
/*
Theme Name: 
Description:  Web Site
Author: Hiroki Ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px !important;
  font-size: 62.5%;
}

body {
  color: #262626;
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  opacity: .6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 100px 15px;
  background-size: cover;
}

section:nth-child(odd) {
  background-image: url(../img/Background01.jpg);
}

section:nth-child(even) {
  background-image: url(../img/Background02.jpg);
}

.Title {
  margin-bottom: 60px;
  font-size: 4.2rem;
  font-weight: 600;
  font-family: futura-pt, sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-left: 27px;
  line-height: 1;
}

@media screen and (max-width: 400px) {
  .Title {
    padding-left: 20px;
  }
}

.Title::before {
  content: "";
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#EAAB00), color-stop(60%, #FFD050), to(#EAAB00));
  background-image: linear-gradient(to top, #EAAB00 0%, #FFD050 60%, #EAAB00 100%);
}

@media screen and (max-width: 400px) {
  .Title::before {
    width: 10px;
  }
}

.Title span {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 10px;
  color: #E8E8E8;
  font-family: source-han-sans-japanese, sans-serif;
}

@media screen and (max-width: 400px) {
  .Title {
    font-size: 3rem;
  }
}

.Pcver {
  display: block;
}

@media screen and (max-width: 768px) {
  .Pcver {
    display: none;
  }
}

.Spver {
  display: none;
}

@media screen and (max-width: 768px) {
  .Spver {
    display: block;
  }
}

/* ------- BTN -------- */
.Btn {
  width: 100%;
  padding: 15px 30px;
  background-color: #fff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  font-family: futura-pt, sans-serif;
}

.Btn:hover {
  opacity: .6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: absolute;
  top: -60px;
}

header .Header__inner {
  width: 100%;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 1400px) {
  header .Header__inner {
    padding: 20px 15px;
  }
}

.Logo {
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .Logo {
    font-size: 1.8rem;
  }
}

.is-animation,
.page .Header__inner,
.single .Header__inner,
.archive .Header__inner {
  background-color: #fff;
  color: #262626;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.Header__inner.is-animation .Logo,
.page .Header__inner .Logo,
.single .Header__inner .Logo,
.archive .Header__inner .Logo {
  color: #262626;
}

.Header__inner.is-animation .Menu__item,
.page .Header__inner .Menu__item,
.single .Header__inner .Menu__item,
.archive .Header__inner .Menu__item {
  color: #262626;
  -webkit-filter: unset !important;
          filter: unset !important;
}

.Header__inner.is-animation .Menu__item:last-child,
.page .Header__inner .Menu__item:last-child,
.single .Header__inner .Menu__item:last-child,
.archive .Header__inner .Menu__item:last-child {
  color: #fff;
}

.Header__inner.is-animation .OpenBtn,
.page .Header__inner .OpenBtn,
.single .Header__inner .OpenBtn,
.archive .Header__inner .OpenBtn {
  -webkit-filter: unset;
          filter: unset;
}

.Header__inner.is-animation .OpenBtn span,
.page .Header__inner .OpenBtn span,
.single .Header__inner .OpenBtn span,
.archive .Header__inner .OpenBtn span {
  background-color: #262626;
}

/*------------------- NAV ------------------ */
@media screen and (max-width: 1400px) {
  nav {
    width: 100%;
    height: 100vh;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    background: #000000e6;
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
  }
  nav.panelactive {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 1400px) {
  .Menu__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.Menu__content .Menu__list {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1400px) {
  .Menu__content .Menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.Menu__content .Menu__list .Menu__item {
  font-size: 1.4rem;
  margin-left: 30px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Menu__content .Menu__list .Menu__item:last-child a span {
  display: none;
}

@media screen and (max-width: 1400px) {
  .Menu__content .Menu__list .Menu__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1400px) {
  .Menu__content .Menu__list .Menu__item {
    margin: 0 0 40px 0;
    font-size: 2rem;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .Menu__content .Menu__list .Menu__item {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 400px) {
  .Menu__content .Menu__list .Menu__item {
    font-size: 1.6rem;
  }
}

.Menu__content .Menu__list .Menu__item a {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.Menu__content .Menu__list .Menu__item a span {
  font-family: futura-pt, sans-serif;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #EDB10C;
}

.Menu__content .Menu__list .Menu__item a:hover {
  opacity: 1;
}

.Menu__content .Menu__list .Menu__item a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  right: 0;
  width: 0%;
  height: 3px;
  background-color: #EDB10C;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Menu__content .Menu__list .Menu__item a:hover::before {
  opacity: 1;
  width: 100%;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Menu__content .Menu__list .current-menu-item a {
  position: relative;
}

.Menu__content .Menu__list .current-menu-item a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #EDB10C;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Menu__content .Menu__list .Btn {
  font-weight: 700;
  padding: 15px 40px;
  margin-top: 0;
  font-size: 1.4rem;
  background-image: -webkit-gradient(linear, right top, left top, from(#ffd901), to(#ff7d00));
  background-image: linear-gradient(to left, #ffd901 0%, #ff7d00 100%);
}

@media screen and (max-width: 1400px) {
  .Menu__content .Menu__list .Btn {
    max-width: 600px;
    width: 90%;
    padding: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 400px) {
  .Menu__content .Menu__list .Btn {
    font-size: 1.6rem;
  }
}

.Menu__content .Menu__list .Btn a {
  -webkit-filter: drop-shadow(0 1px 1px rgba(145, 120, 0, 0.3));
          filter: drop-shadow(0 1px 1px rgba(145, 120, 0, 0.3));
}

.Menu__content .Menu__list .Btn a::before {
  display: none;
}

.home .current-menu-item a::before {
  display: none;
}

.home footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .current-menu-item {
  opacity: 1;
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  display: none;
}

@media screen and (max-width: 1400px) {
  .OpenBtn {
    width: 40px;
    height: 19px;
    position: relative;
    z-index: 1000;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .OpenBtn span {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    border-radius: 50px;
  }
  .OpenBtn span:nth-of-type(2) {
    top: 8px;
  }
  .OpenBtn span:nth-of-type(3) {
    bottom: 0;
  }
  .OpenBtn.active span {
    background-color: #fff !important;
  }
  .OpenBtn.active span:nth-of-type(1) {
    top: 10px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .OpenBtn.active span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .OpenBtn.active span:nth-of-type(3) {
    bottom: 7px;
    -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  width: 100%;
  height: 95vh;
  position: relative;
  background: url(../img/img02.jpeg) no-repeat;
  background-position: center center;
  background-size: cover;
}

.KeyVisual .KeyVisualInner {
  width: 100%;
  height: 100%;
  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;
  -webkit-backdrop-filter: blur(5px) brightness(70%);
          backdrop-filter: blur(5px) brightness(70%);
}

@media screen and (max-width: 1000px) {
  .KeyVisual .KeyVisualInner {
    padding: 0 15px;
  }
}

.KeyVisual .KeyVisualInner .KeyVisualText {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

.KeyVisual .KeyVisualInner .KeyVisualText p {
  letter-spacing: 0.15em;
  font-size: 4.8rem;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 1000px) {
  .KeyVisual .KeyVisualInner .KeyVisualText p {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .KeyVisual .KeyVisualInner .KeyVisualText p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 400px) {
  .KeyVisual .KeyVisualInner .KeyVisualText p {
    font-size: 2rem;
  }
}

.KeyVisual .KeyVisualInner .KeyVisualText p:first-child {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #FFD700;
}

@media screen and (max-width: 1000px) {
  .KeyVisual .KeyVisualInner .KeyVisualText p:first-child {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .KeyVisual .KeyVisualInner .KeyVisualText p:first-child {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 400px) {
  .KeyVisual .KeyVisualInner .KeyVisualText p:first-child {
    font-size: 1.6rem;
  }
}

.KeyVisual .KeyVisualInner .KeyVisualText p:nth-child(2) {
  line-height: 1.5;
}

.KeyVisual .KeyVisualInner .Btn {
  padding: 15px;
  margin-top: 40px;
  font-size: 2rem;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  max-width: 300px;
  background-image: -webkit-gradient(linear, right top, left top, from(#ffd901), to(#ff7d00));
  background-image: linear-gradient(to left, #ffd901 0%, #ff7d00 100%);
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 400px) {
  .KeyVisual .KeyVisualInner .Btn {
    font-size: 1.8rem;
    max-width: unset;
    width: 70%;
  }
}

/*------------- Scroll ------------- */
.scroll p {
  display: inline-block;
  position: absolute;
  right: 60px;
  bottom: 30px;
  padding-bottom: 110px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transition: .2s;
  transition: .2s;
  overflow: hidden;
}

.scroll p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
}

.scroll p:hover {
  opacity: .5;
}

@media screen and (max-width: 1400px) {
  .scroll p {
    right: 20px;
  }
}

#scroll p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
}

#scroll p::after {
  -webkit-animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

/*----------------- ABOUT ------------------ */
#About,
#Service,
#Archivement {
  padding: 0 15px;
}

#About .ContentInner,
#Service .ContentInner,
#Archivement .ContentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 150px 0;
}

@media screen and (max-width: 1000px) {
  #About .ContentInner,
  #Service .ContentInner,
  #Archivement .ContentInner {
    position: unset;
    height: auto;
    padding: 100px 0;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

@media screen and (max-width: 768px) {
  #About .ContentInner,
  #Service .ContentInner,
  #Archivement .ContentInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#About .ContentInner .TextInner,
#Service .ContentInner .TextInner,
#Archivement .ContentInner .TextInner {
  padding: 60px;
  width: 55%;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  z-index: 2;
  color: #fff;
  line-height: 1.8;
}

@media screen and (max-width: 1000px) {
  #About .ContentInner .TextInner,
  #Service .ContentInner .TextInner,
  #Archivement .ContentInner .TextInner {
    width: 50%;
    z-index: 1;
    border-radius: 5px 0 0 5px;
  }
}

@media screen and (max-width: 768px) {
  #About .ContentInner .TextInner,
  #Service .ContentInner .TextInner,
  #Archivement .ContentInner .TextInner {
    width: 100%;
    padding: 60px 30px;
    border-radius: 5px;
  }
}

@media screen and (max-width: 400px) {
  #About .ContentInner .TextInner,
  #Service .ContentInner .TextInner,
  #Archivement .ContentInner .TextInner {
    padding: 40px 20px;
  }
}

#About .ContentInner .TextInner .Title,
#Service .ContentInner .TextInner .Title,
#Archivement .ContentInner .TextInner .Title {
  margin-bottom: 40px;
}

@media screen and (max-width: 400px) {
  #About .ContentInner .TextInner .Title,
  #Service .ContentInner .TextInner .Title,
  #Archivement .ContentInner .TextInner .Title {
    margin-bottom: 20px;
  }
}

#About .ContentInner img,
#Service .ContentInner img,
#Archivement .ContentInner img {
  position: absolute;
  right: 0;
  width: 70%;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
}

@media screen and (max-width: 1000px) {
  #About .ContentInner img,
  #Service .ContentInner img,
  #Archivement .ContentInner img {
    width: 50%;
    height: auto;
    position: unset;
    border-radius: 0 5px 5px 0;
  }
}

@media screen and (max-width: 768px) {
  #About .ContentInner img,
  #Service .ContentInner img,
  #Archivement .ContentInner img {
    width: 100%;
    border-radius: 5px;
    margin-top: 20px;
    aspect-ratio: 16 / 9;
  }
}

#Service,
#Archivement {
  background-image: url(../img/Background03.jpg);
}

#Service .ContentInner,
#Archivement .ContentInner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 180px 0;
}

@media screen and (max-width: 768px) {
  #Service .ContentInner,
  #Archivement .ContentInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 100px 0;
  }
}

#Service .ContentInner .TextInner,
#Archivement .ContentInner .TextInner {
  width: 50%;
  background: #fff;
  color: #262626;
}

@media screen and (max-width: 768px) {
  #Service .ContentInner .TextInner,
  #Archivement .ContentInner .TextInner {
    width: 100%;
  }
}

#Service .ContentInner .TextInner .Title,
#Archivement .ContentInner .TextInner .Title {
  color: #262626;
}

#Service .ContentInner .TextInner .Title span,
#Archivement .ContentInner .TextInner .Title span {
  color: #454545;
}

#Service .ContentInner .TextInner .Btn,
#Archivement .ContentInner .TextInner .Btn {
  color: #fff;
  background-color: #262626;
  margin-top: 40px;
  -webkit-filter: unset;
          filter: unset;
}

@media screen and (max-width: 768px) {
  #Service .ContentInner .TextInner .Btn,
  #Archivement .ContentInner .TextInner .Btn {
    margin-top: 20px;
  }
}

#Service .ContentInner img,
#Archivement .ContentInner img {
  left: 0;
  width: 60%;
  height: 75%;
}

@media screen and (max-width: 1000px) {
  #Service .ContentInner img,
  #Archivement .ContentInner img {
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  #Service .ContentInner img,
  #Archivement .ContentInner img {
    width: 100%;
  }
}

#Archivement .ContentInner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 768px) {
  #Archivement .ContentInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Archivement .ContentInner img {
  right: 0;
  left: unset;
}

/*----------------- Strength ------------------ */
#Strength .wrapper ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #Strength .wrapper ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

#Strength .wrapper ul li:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  #Strength .wrapper ul li:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Strength .wrapper ul li:last-child {
  margin-bottom: unset;
}

#Strength .wrapper ul li .TextInner {
  width: 48%;
}

@media screen and (max-width: 768px) {
  #Strength .wrapper ul li .TextInner {
    width: 100%;
  }
}

#Strength .wrapper ul li .TextInner p {
  color: #fff;
}

#Strength .wrapper ul li .TextInner p:first-child {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  #Strength .wrapper ul li .TextInner p:first-child {
    font-size: 2rem;
  }
}

#Strength .wrapper ul li .TextInner p:first-child span {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #FFD700;
  font-family: futura-pt, sans-serif;
}

@media screen and (max-width: 768px) {
  #Strength .wrapper ul li .TextInner p:first-child span {
    font-size: 1.8rem;
  }
}

#Strength .wrapper ul li .TextInner p:last-child {
  line-height: 1.8;
}

#Strength .wrapper img {
  width: 48%;
  border-radius: 5px;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 768px) {
  #Strength .wrapper img {
    width: 100%;
  }
}

/*----------------- Voice ------------------ */
#Voice {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

#Voice .Title {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

@media screen and (max-width: 1000px) {
  #Voice .Title {
    margin-left: 15px;
  }
}

#Voice .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

#Voice .slick-slide {
  height: auto !important;
}

#Voice .SlickSlider li {
  margin: 0 15px;
  background-color: #fff;
  border-radius: 5px;
}

#Voice .SlickSlider li img {
  border-radius: 5px 5px 0 0;
  aspect-ratio: 3 / 2;
}

@media screen and (max-width: 768px) {
  #Voice .SlickSlider li img {
    aspect-ratio: 16 / 9;
  }
}

#Voice .SlickSlider li .TextInner {
  padding: 40px 20px;
  word-break: break-all;
}

#Voice .SlickSlider li .TextInner p:nth-child(1) {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

#Voice .SlickSlider li .TextInner p:nth-child(2) {
  line-height: 1.5;
}

#Voice .slick-dots {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 0 auto;
  text-align: right;
}

#Voice .slick-dots li {
  background-color: transparent;
}

#Voice .slick-dots li.slick-active button:before {
  color: #fff;
}

#Voice .slick-dots li button::before {
  color: #9C9C9E;
}

/*----------------- Company ------------------ */
#Company .Content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  #Company .Content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

#Company .Content .ContentInner,
#Company .Content iframe {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #Company .Content .ContentInner,
  #Company .Content iframe {
    width: 100%;
  }
}

#Company .Content iframe {
  border-radius: 5px;
  border: 2px solid #666;
  aspect-ratio: 16 / 9;
}

#Company .Content .ContentInner ul {
  margin-bottom: 40px;
}

#Company .Content .ContentInner ul li p {
  color: #fff;
}

#Company .Content .ContentInner ul li p:nth-child(1) {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 10px 15px;
  line-height: 1;
  background-color: #262626;
  border-radius: 5px;
}

#Company .Content .ContentInner ul li p:nth-child(2) {
  padding: 10px 15px 15px;
}

#Company .Content .ContentInner ul li:last-child p:nth-child(2) {
  padding-bottom: 0;
}

#Company .Content .ContentInner .Btn {
  color: #262626;
  -webkit-filter: unset;
          filter: unset;
}

/*----------------- CTA ------------------ */
.CTA ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .CTA ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.CTA ul li {
  width: calc(100% / 2);
  padding: 100px;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.CTA ul li:nth-child(1) {
  background-image: url(../img/CTA-Img01.png);
}

.CTA ul li:nth-child(2) {
  background-image: url(../img/CTA-Img02.png);
}

@media screen and (max-width: 768px) {
  .CTA ul li {
    width: 100%;
    padding: 100px 15px;
  }
}

.CTA ul li h2 {
  font-size: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  color: #fff;
}

.CTA ul li h2 span {
  font-size: 1.6rem;
  margin-top: 5px;
  font-weight: 700;
}

.CTA ul li .Btn {
  max-width: 300px;
  margin: 0 auto;
  color: #262626;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-filter: unset;
          filter: unset;
  font-family: source-han-sans-japanese, sans-serif;
}

@media screen and (max-width: 768px) {
  .CTA ul li .Btn {
    max-width: unset;
  }
}

/* LOW KEYVISUAL */
.LowKeyVisual {
  padding-top: 85px;
  background: url(../img/img01.jpeg) no-repeat center center/cover;
}

@media screen and (max-width: 1400px) {
  .LowKeyVisual {
    padding-top: 60px;
  }
}

.LowKeyVisual .LowKeyVisualInner {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px) brightness(0.7);
          backdrop-filter: blur(5px) brightness(0.7);
}

.LowKeyVisual .LowKeyVisualTitle {
  font-size: 4.2rem;
  font-weight: 600;
  color: #FFD700;
  padding: 100px 0;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  margin-bottom: unset;
}

.LowKeyVisual .LowKeyVisualTitle::before {
  display: none;
}

@media screen and (max-width: 1000px) {
  .LowKeyVisual .LowKeyVisualTitle {
    padding: 100px 15px;
  }
}

@media screen and (max-width: 768px) {
  .LowKeyVisual .LowKeyVisualTitle {
    font-size: 3.2rem;
    padding: 80px 15px;
  }
}

.LowKeyVisual .LowKeyVisualTitle span {
  color: #fff;
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #f7f7f7;
}

.breadcrumb-trail p a {
  color: #125E9F;
  cursor: pointer;
}

.breadcrumb-trail .fbc-wrap {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  background-color: #f7f7f7;
}

.fbc-page .fbc-wrap .fbc-items {
  padding: 0 0 !important;
}

.fbc-page .fbc-wrap .fbc-items .active {
  padding: 0 5px 15px;
}

@media screen and (max-width: 768px) {
  .fbc-page .fbc-wrap .fbc-items .active {
    padding: 0 16px 15px !important;
  }
}

/*----------------- Banner ------------------ */
.Banner {
  background: url(../img/BannerBG.jpg) no-repeat center center/cover;
  padding: 60px 15px;
  margin: 100px auto;
  text-align: center;
  border-radius: 5px;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .Banner {
    margin: 100px 15px;
  }
}

@media screen and (max-width: 768px) {
  .Banner {
    padding: 40px 15px;
  }
}

.Banner p:first-child {
  font-size: 4.2rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: futura-pt, sans-serif;
}

.Banner p:first-child span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .Banner p:first-child {
    font-size: 4rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 400px) {
  .Banner p:first-child {
    font-size: 3.2rem;
  }
}

.Banner p:last-child {
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .Banner p:last-child {
    text-align: left;
    font-size: 1.4rem;
  }
}

/*----------------- SERVICES ------------------ */
.Bg01 {
  background-image: url(../img/Background01.jpg) !important;
  color: #262626;
}

.Bg01 .Title {
  color: #262626;
}

.Bg01 .Title span {
  color: #454545;
}

.Bg02 {
  background-image: url(../img/Background02.jpg) !important;
  color: #fff;
}

.Bg02 .Title {
  color: #fff;
}

.Bg02 .Title span {
  color: #E8E8E8;
}

#InteriorWork ul li {
  background-color: #f2f2f2;
  color: #262626;
}

.ServiceSection p {
  line-height: 1.5;
}

.ServiceSection ul {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .ServiceSection ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ServiceSection ul li {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 50px 15px;
  width: calc(100% / 3 - 10px);
  color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .ServiceSection ul li {
    width: 100%;
    margin-bottom: 60px;
  }
}

.ServiceSection ul li::before {
  content: "";
  background-image: -webkit-gradient(linear, left bottom, left top, from(#EAAB00), color-stop(60%, #FFD050), to(#EAAB00));
  background-image: linear-gradient(to top, #EAAB00 0%, #FFD050 60%, #EAAB00 100%);
  padding: 5px;
  max-width: 100px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  color: #262626;
  border-radius: 5px;
  position: absolute;
  top: -20px;
  left: 15px;
  font-size: 2.4rem;
  font-family: futura-pt, sans-serif;
}

@media screen and (max-width: 768px) {
  .ServiceSection ul li::before {
    font-size: 2rem;
  }
}

.ServiceSection ul li:nth-child(1)::before {
  content: "01";
}

.ServiceSection ul li:nth-child(2)::before {
  content: "02";
}

.ServiceSection ul li:nth-child(3)::before {
  content: "03";
}

.ServiceSection ul li img {
  margin-bottom: 20px;
  border-radius: 5px;
  aspect-ratio: 16 / 9;
}

.ServiceSection ul li p {
  font-weight: 500;
  line-height: 1.5;
}

/*----------------- COMPANY ------------------ */
/* TABLE BOX */
.TableBox {
  width: 100%;
}

.TableBox table {
  width: 100%;
  background-color: #fff;
  width: 100%;
  padding: 40px;
  border-collapse: unset;
  border-spacing: unset;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .TableBox table {
    padding: 20px;
  }
}

@media screen and (max-width: 400px) {
  .TableBox table {
    padding: 15px;
  }
}

.TableBox tr:last-child th,
.TableBox tr:last-child td {
  border: unset;
}

.TableBox tr th,
.TableBox tr td {
  padding: 20px;
  border-bottom: 1px solid #c6c6c6;
}

@media screen and (max-width: 768px) {
  .TableBox tr th,
  .TableBox tr td {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }
}

.TableBox tr th {
  width: 25%;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .TableBox tr th {
    width: 100%;
    border: unset;
    padding: 15px 10px 0px;
  }
}

.TableBox tr td {
  width: 75%;
}

@media screen and (max-width: 768px) {
  .TableBox tr td {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .TableBox tr td {
    padding: 10px 10px 15px;
  }
}

#Access iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
}

/*----------------- Single Page ------------------ */
#Archive,
#SinglePage {
  background: #fff;
}

#Archive .TextInner .SingleTitle,
#SinglePage .TextInner .SingleTitle {
  font-weight: 600;
  margin-top: 5px;
}

#Archive .TextInner .SinglePageContentInner,
#SinglePage .TextInner .SinglePageContentInner {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: futura-pt, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#Archive .TextInner .SinglePageContentInner .post-categories,
#SinglePage .TextInner .SinglePageContentInner .post-categories {
  background-color: #747474;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}

#Archive .SingleText,
#SinglePage .SingleText {
  word-break: break-all;
  line-height: 1.5;
}

#SinglePage .SinglePageContent {
  max-width: 760px;
  width: 100%;
  margin: 0 auto 40px auto;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  #SinglePage .SinglePageContent {
    padding: 30px 15px;
  }
}

#SinglePage .SinglePageContent img {
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  #SinglePage .SinglePageContent img {
    margin: 20px 0;
  }
}

#SinglePage .SinglePageContent .TextInner .SingleTitle {
  font-size: 2.4rem;
}

#SinglePage .Btn {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  background-color: #262626;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  margin: 20px !important;
  border: unset !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wp-pagenavi .current {
  color: #959595;
  font-weight: 500 !important;
}

.wp-pagenavi .pages {
  display: none !important;
}

/*----------------- Archive ------------------ */
#Archive .ArchiveInner {
  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;
}

#Archive .ArchiveInner .ArchiveInnerItem {
  width: calc(100% / 3 - 15px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 40px;
}

@media screen and (max-width: 1000px) {
  #Archive .ArchiveInner .ArchiveInnerItem {
    width: calc(100% / 2 - 15px);
  }
}

@media screen and (max-width: 768px) {
  #Archive .ArchiveInner .ArchiveInnerItem {
    width: 100%;
  }
}

#Archive .ArchiveInner .ArchiveInnerItem:hover {
  opacity: .6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#Archive .ArchiveInner .ArchiveInnerItem:last-child {
  margin-bottom: unset;
}

#Archive .ArchiveInner .ArchiveInnerItem img {
  border-radius: 5px;
  aspect-ratio: 16 / 9;
}

#Archive .ArchiveInner .ArchiveInnerItem .TextInner {
  margin-top: 20px;
}

#Archive .ArchiveInner .ArchiveInnerItem .TextInner .SingleTitle {
  font-size: 1.8rem;
  margin: 5px 0 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#Archive .ArchiveInner .ArchiveInnerItem .TextInner .SingleText {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#Archive .ArchiveInner .ArchiveInnerItem .post-categories li {
  width: 100%;
}

#Archive .ArchiveInner .ArchiveInnerItem a:hover {
  opacity: 1;
}

/*----------------- RecruitMent ------------------ */
#Recruitment .Btn {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  background-color: #262626;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  margin-top: 40px;
}

/*----------------- FORM ------------------ */
form {
  width: 100%;
  margin: 0 auto !important;
  padding: 100px 15px;
}

form .contact7 p:first-child {
  line-height: 1.8;
}

@media screen and (max-width: 400px) {
  form .contact7 p:first-child {
    font-size: 1.4rem;
  }
}

form .contact7 p:first-child a {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: futura-pt, sans-serif;
  color: #F5BC3C;
}

@media screen and (max-width: 400px) {
  form .contact7 p:first-child a {
    font-size: 2.4rem;
  }
}

form .contact7 dt .must {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #fff;
  background-color: #C32929;
  padding: 5px 10px;
  border-radius: 5px;
}

form .contact7 dt {
  font-size: 1.8rem;
  font-weight: 700;
}

form .contact7 dd {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

form .contact7 dd:last-child {
  padding-bottom: 0;
}

form .contact7 .FormFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

form .contact7 .FormFlex span {
  width: 100%;
}

@media screen and (max-width: 768px) {
  form .contact7 .FormFlex {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  form .contact7 .FormFlex .wpcf7-form-control-wrap:first-child {
    margin-bottom: 10px;
  }
}

form .contact7 input[type="text"],
form .contact7 input[type="tel"],
form .contact7 input[type="email"],
form .contact7 select,
form .contact7 textarea {
  font-size: 1.6rem;
  font-weight: normal;
  border: 1px solid #ADADAD;
  border-radius: 5px;
  background-color: #FCFCFC;
  width: 100%;
  padding: 15px;
  text-align: left;
}

form .contact7 .wpcf7-not-valid-tip {
  text-align: left;
}

form .contact7 select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/Icon/BottomArrow.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

form .contact7 textarea {
  height: 300px;
}

form .contact7 p {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

form .contact7 p:nth-child(3),
form .contact7 p:nth-child(4) {
  margin-bottom: 0;
}

form .Btn {
  max-width: 300px;
  width: 100%;
  margin: 60px auto 0 auto;
  background-color: #262626;
  font-size: 1.8rem;
  padding: 20px;
}

form .form-radio .wpcf7-form-control-wrap {
  text-align: left;
}

form .form-radio .wpcf7-form-control-wrap input[type="radio"] {
  border-radius: unset;
}

form .form-radio .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0 1em 1em 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  form .form-radio .wpcf7-form-control-wrap .wpcf7-list-item {
    display: block;
  }
}

form .form-radio label {
  white-space: nowrap;
}

form .wpcf7-form-control-wrap {
  display: block;
  text-align: center;
}

form .wpcf7-form-control-wrap input[type="checkbox"],
form .wpcf7-form-control-wrap input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

form .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0 1em 1em 0;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  form .wpcf7-form-control-wrap .wpcf7-list-item {
    display: block;
    margin: 0 0;
  }
}

.PrivacyPolicy {
  margin: 60px 0;
}

.PrivacyPolicy p:nth-child(2) {
  text-align: center;
  line-height: 1.5;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .PrivacyPolicy p:nth-child(2) {
    text-align: left;
  }
  .PrivacyPolicy p:nth-child(2) br {
    display: none;
  }
}

.PrivacyPolicy .PrivacyPolicyTitle {
  font-size: 2.4rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
}

.PrivacyPolicy .PrivacyPolicyTitle span {
  font-size: 1.4rem;
  margin-top: 5px;
  font-weight: 300;
}

.PrivacyPolicy .PrivacyPolicyInner {
  padding: 30px;
  border: 1px solid #ADADAD;
  border-radius: 5px;
  height: 300px;
  background-color: #FCFCFC;
  overflow: scroll;
}

.PrivacyPolicy .PrivacyPolicyInner p {
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

/* FOOTER */
footer {
  background-color: #171717;
  color: #fff;
  padding: 80px 60px;
}

@media screen and (max-width: 1000px) {
  footer {
    padding: 80px 15px;
  }
}

footer .FooterContent {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

@media screen and (max-width: 1000px) {
  footer .FooterContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .FooterContent .FooterLeft .Logo {
  font-size: 3.2rem;
}

footer .FooterContent .FooterLeft p {
  margin-top: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 1000px) {
  footer .FooterContent .FooterRight {
    margin: 40px 0 60px;
  }
}

footer .FooterContent .FooterRight .Menu__content {
  position: unset;
  -webkit-transform: unset;
          transform: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 40px;
}

@media screen and (max-width: 1000px) {
  footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list {
    width: 100%;
    margin: 20px 0;
    padding: 0 0;
    font-size: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: unset;
  padding: 0 0;
  max-width: unset;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Btn::before {
  display: none;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item {
  color: #fff;
  -webkit-filter: unset;
          filter: unset;
  margin-bottom: 20px;
  font-weight: 500;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item ul {
  margin-top: 20px;
}

@media screen and (max-width: 1000px) {
  footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item ul {
    display: none;
  }
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item ul li {
  margin-bottom: 20px;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item ul li:last-child {
  margin-bottom: 0;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item:last-child {
  margin-bottom: 0;
  font-family: source-han-sans-japanese, sans-serif;
}

@media screen and (max-width: 1000px) {
  footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item {
    margin-left: 0;
    margin-bottom: 40px;
  }
  footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item:last-child {
    margin-bottom: 0;
  }
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .Menu__item a span {
  display: none;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .current-menu-item {
  opacity: .6;
}

footer .FooterContent .FooterRight .Menu__content .Footer__Menu__list .current-menu-item a::before {
  display: none;
}

footer .FooterContent .copyright {
  font-family: futura-pt, sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  position: absolute;
  bottom: 0;
}
/*# sourceMappingURL=style.css.map */