@charset "UTF-8";
/* =======================
VARIABLES
* ======================= */
/* colors */
/* breakpoints */
/* header hiehgt */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");
@font-face {
  font-family: "Futura PT";
  font-weight: 600;
  src: url("../fonts/FuturaPTDemi.otf");
}
@font-face {
  font-family: "Futura PT Medium";
  font-weight: 500;
  src: url("../fonts/FuturaPTMedium.otf");
}
@font-face {
  font-family: "Futura PT Bold";
  font-weight: 500;
  src: url("../fonts/FuturaPTBold.otf");
}
@font-face {
  font-family: "Texta", sans-serif;
  font-weight: 500;
  src: url("../fonts/TextaRegular.ttf");
}
/* =======================
 * HELPER CLASS
 * ======================= */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: #111111;
}

ul {
  list-style: none;
}

input,
textarea {
  font-family: "Noto Sans", sans-serif;
}

/*====================================================================
siteHeader
====================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header__container {
  margin: 0 auto;
  padding: 30px 0;
  width: calc(100% - 10vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__logo {
  width: 140px;
  display: block;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 768px) {
  .header__logo:hover {
    opacity: 0.6;
  }
}
.header__navMenu {
  margin: 0px 0px 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  list-style: none;
}
.header__navMenu.m-pcDb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__navMenu-item {
  margin-right: 60px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header__navMenu-item {
    margin-right: 30px;
  }
}
.header__navMenu-item:last-child {
  margin-right: 0;
}
.header__navMenu-link {
  font-family: "Jost", sans-serif;
  font-size: clamp(10px, 1vw, 19.2px);
  font-weight: normal;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}
@media screen and (max-width: 767px) {
  .header__navMenu-link {
    font-size: 12px;
  }
}
.header__navMenu-link:hover {
  color: #fff;
}
.header__navMenu-link:hover:before {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.header__navMenu-link:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  background-color: #fff;
}
.header__navMenu-link.is-active:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.header__navMenu-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9375vw;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  width: 0.3125vw;
  height: 0.3125vw;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  transition: -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  transition: transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  transition: transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s, -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}
.header__navMenu-link:after {
  -webkit-transition: all 0.2s ease-in-out 0.01s;
  transition: all 0.2s ease-in-out 0.01s;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header__navMenu-link.language-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  line-height: 1;
}
.header__navMenu-link.language-toggle .header__navMenu-itemIcon {
  width: 25px;
}
.header__navMenuLang {
  margin: 0px 0px 0px 4.0625vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__navMenuLang-link {
  display: block;
  font-size: clamp(10px, 0.8125vw, 15.6px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .header__navMenuLang-link {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .header__navMenuLang-link:hover {
    color: #fff;
  }
}
.header__navMenuLang-link.is-active {
  color: #fff;
}
.header__navMenuLang-link.separator {
  margin: 0 0.25vw;
}
@media screen and (min-width: 768px) {
  .header__navMenuLang-link.separator:hover {
    color: #fff;
  }
}
.header__navMenuBar {
  margin-left: 5.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__navMenuBar:hover .header__navMenuBar-line {
    background-color: #fff;
  }
  .header__navMenuBar:hover .header__navMenuBar-line.top {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .header__navMenuBar:hover .header__navMenuBar-line.bottom {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .header__navMenuBar:hover .header__navMenuBar-label {
    color: #fff;
  }
}
.header__navMenuBar.close-btn .header__navMenuBars {
  width: 45px;
}
.header__navMenuBar.close-btn .header__navMenuBar-closeBtn {
  margin-right: 3vw;
  width: 100%;
  display: block;
}
.header__navMenuBars {
  display: block;
  width: 4vw;
}
.header__navMenuBar-line {
  display: block;
  width: 1.875vw;
  height: 1px;
  background-color: #fff;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
  transition: background-color 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
  transition: background-color 0.2s ease, transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
  transition: background-color 0.2s ease, transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275), -webkit-transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
}
.header__navMenuBar-line.top {
  -webkit-transform: translate(0.6038647343vw);
          transform: translate(0.6038647343vw);
  margin-bottom: 0.5vw;
}
.header__navMenuBar-line.bottom {
  -webkit-transform: translate(-0.3125vw);
          transform: translate(-0.3125vw);
}
.header__navMenuBar-label {
  font-size: clamp(10px, 0.875vw, 16.8px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #fff;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .header__navMenuBar-label {
    font-size: 12px;
  }
}
.header__gMenu {
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header__gMenu-container {
  margin: auto;
  padding: 30px 5vw 60px;
  max-width: 100%;
  height: 100%;
  color: #fff;
  background: #111111;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header__gMenu-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__gMenu-logo {
  width: 140px;
  display: block;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 768px) {
  .header__gMenu-logo:hover {
    opacity: 0.6;
  }
}
.header__gMenu-links {
  margin: 3vw auto 0;
  width: 100%;
  display: block;
  text-align: center;
}
.header__gMenu-link {
  display: block;
  font-size: 3vw;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.7;
  color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .header__gMenu-link {
    font-size: 12px;
  }
}
.header__gMenu-link.language-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2vw;
  line-height: 1;
}
.header__gMenu-link.language-toggle span {
  font-size: 0;
}
.header__gMenu-link.language-toggle .header__navMenu-itemIcon {
  width: 11vw;
}
@media screen and (min-width: 768px) {
  .header__gMenu-link:hover {
    opacity: 0.6;
    padding-left: 0.5vw;
  }
}

/*====================================================================
Header SP
====================================================================*/
@media screen and (max-width: 767px) {
  .header__container {
    margin: 0 auto;
    padding: 30px 0;
    width: calc(100% - 14.4927vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header__logo {
    width: 100px;
  }
  .header__navMenu {
    display: none;
  }
  .header__navMenuLang {
    display: none;
  }
  .header__navMenuBar {
    margin-left: 0;
    width: auto;
    height: 7.2463768116vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) and (min-width: 768px) {
  .header__navMenuBar:hover .header__navMenuBar-line {
    background-color: #fff;
  }
  .header__navMenuBar:hover .header__navMenuBar-line.top {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .header__navMenuBar:hover .header__navMenuBar-line.bottom {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .header__navMenuBar:hover .header__navMenuBar-label {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__navMenuBar.close-btn {
    width: auto;
    height: auto;
  }
  .header__navMenuBar.close-btn .header__navMenuBar-closeBtn {
    margin-right: 0;
    width: 100%;
  }
  .header__navMenuBars {
    display: block;
    width: 3.6231884058vw;
  }
  .header__navMenuBar-line {
    display: block;
    width: 3.6231884058vw;
    height: 1px;
    background-color: #fff;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
    transition: background-color 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
    transition: background-color 0.2s ease, transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
    transition: background-color 0.2s ease, transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275), -webkit-transform 0.3s cubic-bezier(0.175, -0.885, 0.32, 2.275);
  }
  .header__navMenuBar-line.top {
    -webkit-transform: translate(0.6038647343vw);
            transform: translate(0.6038647343vw);
    margin-bottom: 1.1vw;
  }
  .header__navMenuBar-line.bottom {
    -webkit-transform: translate(-0.6vw);
            transform: translate(-0.6vw);
  }
  .header__navMenuBar-label {
    display: none;
  }
  .header__gMenu {
    padding: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 2;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header__gMenu-container {
    padding: 30px 7.24635vw 60px;
  }
  .header__gMenu-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header__gMenu-logo {
    width: 100px;
  }
  .header__gMenu-links {
    margin-top: 10vw;
  }
  .header__gMenu-link {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.6;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .header__gMenu-link {
    font-size: 7.5vw;
  }
}
/*====================================================================
siteFooter
====================================================================*/
.footer {
  margin: 70px 0 15px;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.footer__container {
  margin: 0 auto;
  width: calc(100% - 100px);
}
.footer__copyrights {
  text-align: right;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__copyrights {
    font-size: 12px;
  }
}

/*====================================================================
siteFooter SP
====================================================================*/
@media screen and (max-width: 767px) {
  .footer {
    margin: 45px 0 25px;
    width: 100%;
  }
  .footer__container {
    width: calc(100% - 40px);
  }
  .footer__copyrights {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 16px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer__copyrights {
    font-size: 10px;
  }
}
/*====================================================================
COMMON LAYOUT
====================================================================*/
html {
  font-family: "fot-tsukuardgothic-std", "fot-tsukubrdgothic-std", "Tsukushi A Round Gothic", "Tsukushi B Round Gothic", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", Meiryo, sans-serif;
  font-size: 62.5%;
  font-size: 16px;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg height='6' width='6' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='%23eee' r='4'/%3E%3C/svg%3E") 3 3, auto;
}
@media screen and (max-width: 767px) {
  html {
    cursor: auto;
    font-size: 16px;
  }
}

.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--width);
  height: var(--height);
  -webkit-transform: translate(calc(var(--x) - var(--width) / 2), calc(var(--y) - var(--height) / 2));
          transform: translate(calc(var(--x) - var(--width) / 2), calc(var(--y) - var(--height) / 2));
  /* transition-duration: 125ms;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-property: width, height, transform; */
  -webkit-transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1), 150ms height cubic-bezier(0.39, 0.575, 0.565, 1), 150ms -webkit-transform cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1), 150ms height cubic-bezier(0.39, 0.575, 0.565, 1), 150ms -webkit-transform cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1), 150ms height cubic-bezier(0.39, 0.575, 0.565, 1), 150ms transform cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1), 150ms height cubic-bezier(0.39, 0.575, 0.565, 1), 150ms transform cubic-bezier(0.39, 0.575, 0.565, 1), 150ms -webkit-transform cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .cursor {
    display: none;
  }
}

@media (pointer: fine) {
  .cursor {
    display: block;
  }
}
a {
  cursor: url("data:image/svg+xml,%3Csvg height='6' width='6' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='%23eee' r='4'/%3E%3C/svg%3E") 3 3, auto;
}
@media screen and (max-width: 767px) {
  a {
    cursor: pointer;
  }
}

.cursor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  border: 2px solid rgba(31, 88, 204, 0.3);
  background-color: rgba(31, 88, 204, 0.3);
  opacity: var(--scale);
  -webkit-transform: scale(var(--scale));
  transform: scale(var(--scale));
  -webkit-transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1), 150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1), 300ms -webkit-transform cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1), 150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1), 300ms -webkit-transform cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1), 300ms transform cubic-bezier(0.39, 0.575, 0.565, 1), 150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1), 300ms transform cubic-bezier(0.39, 0.575, 0.565, 1), 150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1), 300ms -webkit-transform cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .cursor::after {
    display: none;
  }
}

html:not(html:hover) .cursor::after {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

body {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  position: relative;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 35vh, rgba(0, 0, 0, 0.2) 70vh), #031f32 url(../images/kv/noise.e7dd78a6.jpg) 50% repeat;
}
body.preloading {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

.sortable-handler {
  -ms-touch-action: none;
      touch-action: none;
}

main {
  margin-top: 120px;
}
main.top-page {
  margin-top: 0;
}
main.contact-page {
  margin-top: 200px;
}

/*-----------------------------------------------
PC/SP
------------------------------------------------*/
.m-pcDb {
  display: block;
}

.m-pcDib {
  display: inline-block;
}

.m-pcDin {
  display: inline;
}

.m-pcDf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m-pcDt {
  display: table;
}

.m-pcDtc {
  display: table-cell;
}

.m-spDb,
.m-spDib,
.m-spDin,
.m-spDf,
.m-spDt,
.m-spDtc {
  display: none;
}

@media screen and (max-width: 767px) {
  .m-pcDb,
  .m-pcDib,
  .m-pcDin,
  .m-pcDf,
  .m-pcDt,
  .m-pcDtc {
    display: none;
  }
  .m-spDb {
    display: block;
  }
  .m-spDib {
    display: inline-block;
  }
  .m-spDin {
    display: inline;
  }
  .m-spDf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .m-spDt {
    display: table;
  }
  .m-spDtc {
    display: table-cell;
  }
}
/*-----------------------------------------------
Container
------------------------------------------------*/
.siteContainer {
  margin: auto;
  width: 100%;
  max-width: 980px;
  position: relative;
}
@media screen and (max-width: 1080px) and (min-width: 768px) {
  .siteContainer {
    max-width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .siteContainer {
    max-width: calc(100% - 40px);
  }
}

/*====================================================================
Pre Load Screen
====================================================================*/
.progress {
  background: red;
  display: block;
  height: 20px;
  text-align: center;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  width: 0;
}

.progress.hide {
  opacity: 0;
  -webkit-transition: opacity 1.3s;
  transition: opacity 1.3s;
}

.preLoad {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 35vh, rgba(0, 0, 0, 0.2) 70vh), #031f32 url(../images/kv/noise.e7dd78a6.jpg) 50% repeat;
  overflow: hidden;
}
.preLoad__progress {
  margin: auto;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .preLoad__progress {
    font-size: 12px;
  }
}
.preLoad__progress img {
  width: 400px;
}
.preLoad__progress.shrink {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .preLoad__progress {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 146px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .preLoad__progress {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .preLoad__progress img {
    width: 200px;
  }
}

@-webkit-keyframes growUp {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(10);
  }
}
@keyframes growUp {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}
/*====================================================================
Contact Btn
====================================================================*/
.contactBtn {
  margin: 50px auto 50px;
  padding: 11px 0;
  width: 240px;
  display: block;
  right: 0;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: normal;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .contactBtn {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .contactBtn:hover {
    background-color: #fff;
    color: #111111;
  }
}
@media screen and (max-width: 767px) {
  .contactBtn {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: normal;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactBtn {
    font-size: 16px;
  }
}
.contactBtn.contact-btn {
  margin-top: 100px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .contactBtn.contact-btn:hover {
    background-color: #fff;
    color: #111111;
  }
}

/*====================================================================
anchor link
====================================================================*/
.anchor {
  position: relative;
}
.anchor__link {
  margin: auto;
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  opacity: 0;
  outline: none;
}

/*====================================================================
Fade Toggle
====================================================================*/
/*====================================================================
Top Page PC
====================================================================*/
.siteKv {
  margin: 0 auto;
  padding-top: 270px;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.siteKv__hText {
  padding-left: 248px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: normal;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .siteKv__hText {
    font-size: 12px;
  }
}
.siteKv__mqueText {
  width: 100%;
}
.siteKv__mqueText .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.siteKv__mqueText-item {
  font-size: 120px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: normal;
  color: #111111;
  display: block;
  width: 200%;
  margin: 70px 0;
  -webkit-animation: marquee 20s linear infinite;
          animation: marquee 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .siteKv__mqueText-item {
    font-size: 12px;
  }
}
.siteKv__scrollDown {
  position: absolute;
  bottom: 3.75vw;
  left: 5vw;
  text-align: center;
}
.siteKv__scrollDown-svg {
  margin: 0 auto 1.5vw;
  width: 1.9375vw;
  height: 5.375vw;
  overflow: visible;
}
.siteKv__scrollDown-moving {
  -webkit-animation: scroll-down-circles 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: scroll-down-circles 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes scroll-down-circles {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(65.5px);
            transform: translateY(65.5px);
  }
  100% {
    -webkit-transform: translateY(65.5px);
            transform: translateY(65.5px);
  }
}
@keyframes scroll-down-circles {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(65.5px);
            transform: translateY(65.5px);
  }
  100% {
    -webkit-transform: translateY(65.5px);
            transform: translateY(65.5px);
  }
}
.siteKv__scrollDown-label {
  font-family: "Jost", sans-serif;
  font-size: clamp(10px, 0.875vw, 16.8px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .siteKv__scrollDown-label {
    font-size: 12px;
  }
}

.tpServices {
  margin: 80px auto;
  padding-bottom: 120px;
  width: 100%;
}
.tpServices__container {
  width: 100%;
  max-width: 100%;
}
.tpServices__imgCont {
  position: relative;
}
.tpServices__img-clip-path {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.tpServices__img-disp {
  width: 100%;
  height: auto;
  position: relative;
}
.tpServices__img-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.36px;
  line-height: 1.11;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 600;
  letter-spacing: 0.36px;
  line-height: 1.11;
  color: #fff;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .tpServices__img-caption {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__img-caption {
    font-size: 12px;
  }
}
.tpServices__img-caption span {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.36px;
  line-height: 1.11;
  color: #fff;
  font-size: 1.8vw;
  font-weight: 600;
  letter-spacing: 0.36px;
  line-height: 1.11;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpServices__img-caption span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__img-caption span {
    font-size: 12px;
  }
}
.tpServices__list {
  margin: 0 auto 0;
  width: 100%;
  max-width: 1400px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tpServices__list-item {
  width: 25%;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.tpServices__item-img-cont {
  padding-top: 100%;
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.tpServices__item-img {
  margin: auto;
  width: 70%;
  display: block;
}
.tpServices__item-title {
  margin-top: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.025rem;
  line-height: 1.4;
  color: #fff;
  font-size: 1.5vw;
  font-weight: 400;
  letter-spacing: 0.025rem;
  line-height: 1.4;
  color: #fff;
  height: 6.34vw;
}
@media screen and (max-width: 767px) {
  .tpServices__item-title {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__item-title {
    font-size: 12px;
  }
}
.tpServices__item-title span {
  margin-top: 10px;
  display: block;
  font-size: 0.7vw;
  font-weight: 400;
  letter-spacing: 0.025rem;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpServices__item-title span {
    font-size: 12px;
  }
}
.tpServices__item-desc {
  margin-top: 1vw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
  line-height: 2;
  color: #fff;
  font-size: 0.9vw;
  font-weight: 300;
  letter-spacing: 0.04rem;
  line-height: 2;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .tpServices__item-desc {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__item-desc {
    font-size: 12px;
  }
}
.tpServices__item-desc strong {
  font-size: 1.2vw;
}

.tpWorks {
  padding: 80px 60px;
  width: 100%;
}
.tpWorks__container {
  margin: auto;
  width: 100%;
  max-width: 1600px;
  position: relative;
}
.tpWorks__heading {
  margin-bottom: 50px;
}
.tpWorks__title {
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: 28px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpWorks__title {
    font-size: 12px;
  }
}
.tpWorks__title.jp {
  display: inline-block;
  margin-top: 2px;
  margin-left: 20px;
  padding-left: 19px;
  height: 24px;
  border-left: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 24px;
  color: #fff;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .tpWorks__title.jp {
    font-size: 12px;
  }
}
.tpWorks__capt {
  margin-top: 24px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpWorks__capt {
    font-size: 12px;
  }
}
.tpWorks__archiveBtn {
  padding: 11px 25px 11px 0;
  min-width: 240px;
  display: block;
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: normal;
  color: #fff;
  text-align: center;
  border: 1px solid #111111;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  display: none;
}
@media screen and (max-width: 767px) {
  .tpWorks__archiveBtn {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .tpWorks__archiveBtn:hover {
    background-color: #111111;
    color: #fff;
  }
  .tpWorks__archiveBtn:hover:after {
    background-image: url(../images/common/icon-arrow-right-white.png);
  }
}
.tpWorks__archiveBtn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 16px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-arrow-right.png);
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.tpWorks__slider {
  display: none;
}
.tpWorks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tpWorks__list.m-pcDb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tpWorks__list.m-spDb {
  display: none;
}
.tpWorks__item {
  margin-right: 0.1%;
  width: 33.26%;
  height: 27.5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tpWorks__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.6);
  opacity: 0;
  border-radius: 4px;
  display: block;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 768px) {
  .tpWorks__item:hover .tpWorks__item-bg {
    -webkit-filter: blur(3px);
            filter: blur(3px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .tpWorks__item:hover .tpWorks__item-innerCont:before {
    width: 100%;
    left: 0;
  }
  .tpWorks__item:hover .tpWorks__item-innerCont:after {
    width: 100%;
    left: 0;
  }
  .tpWorks__item:hover .tpWorks__item-innerCont-span:before {
    height: 100%;
    top: 0;
  }
  .tpWorks__item:hover .tpWorks__item-innerCont-span:after {
    height: 100%;
    top: 0;
  }
  .tpWorks__item:hover .tpWorks__item-title {
    opacity: 1;
  }
  .tpWorks__item:hover .tpWorks__item-desc {
    opacity: 1;
  }
  .tpWorks__item:hover:after {
    opacity: 1;
  }
}
.tpWorks__item:nth-child(3n+3) {
  margin-right: 0;
}
.tpWorks__item:nth-child(n+4) {
  margin-top: 0.1%;
}
.tpWorks__item-bgCont {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  overflow: hidden;
  border-radius: 4px;
}
.tpWorks__item-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tpWorks__item-innerCont {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.tpWorks__item-innerCont:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.tpWorks__item-innerCont:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.tpWorks__item-innerCont-span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0;
  background-color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.tpWorks__item-innerCont-span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 0;
  background-color: #fff;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.tpWorks__item-details {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tpWorks__item-title {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.9;
  color: #fff;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .tpWorks__item-title {
    font-size: 12px;
  }
}
.tpWorks__item-title:after {
  margin: auto;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: #fff;
}
.tpWorks__item-desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: normal;
  color: #fff;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .tpWorks__item-desc {
    font-size: 12px;
  }
}

.tpAboutus {
  margin: auto;
  padding: 200px 60px 153px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .tpAboutus {
    padding: 8vw 0 6vw;
  }
}
.tpAboutus__container {
  margin: auto;
  padding-left: 0;
  width: 100%;
  max-width: 1600px;
  position: relative;
}
.tpAboutus__heading {
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: 28px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpAboutus__heading {
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .tpAboutus__heading {
    padding-left: 60px;
  }
}
.tpAboutus__heading.jp {
  display: inline-block;
  margin-top: 2px;
  margin-left: 20px;
  padding-left: 19px;
  height: 24px;
  border-left: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 24px;
  color: #fff;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .tpAboutus__heading.jp {
    font-size: 12px;
  }
}
.tpAboutus__slider1-cont {
  margin: auto;
  width: 203px;
  height: 349px;
  position: absolute;
  top: 6px;
  right: -103px;
  left: 1097px;
  display: block;
  overflow: hidden;
}
.tpAboutus__slider1 {
  height: 100%;
}
.tpAboutus__slider1-item {
  overflow: hidden;
}
.tpAboutus__slider1-item.swiper-slide-active .tpAboutus__slider1-item-bg {
  -webkit-animation: slick 7s cubic-bezier(0.39, 0.575, 0.565, 1) 0s 1 normal both;
          animation: slick 7s cubic-bezier(0.39, 0.575, 0.565, 1) 0s 1 normal both;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.tpAboutus__slider1-item-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@-webkit-keyframes slick {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes slick {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.tpAboutus__bigTxt {
  position: absolute;
  top: 20px;
  right: 126px;
  margin-top: 30px;
  font-family: "Texta", sans-serif;
  font-size: 160px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.875;
  color: #fff;
  text-align: right;
  display: inline-block;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .tpAboutus__bigTxt {
    font-size: 12px;
  }
}
@media screen and (max-width: 1300px) {
  .tpAboutus__bigTxt {
    top: 7vw;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media screen and (max-width: 1400px) {
  .tpAboutus__bigTxt {
    font-size: 11.4286vw;
  }
}
.tpAboutus__mainCont {
  margin: 102px auto 0;
  padding: 0 135px 153px;
  padding: 0 0 0;
  max-width: 1300px;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1400px) {
  .tpAboutus__mainCont {
    padding: 0px 9.64286vw 0;
  }
}
.tpAboutus__slider2 {
  margin: 0;
  width: 500px;
  height: 679px;
}
@media screen and (max-width: 1400px) {
  .tpAboutus__slider2 {
    width: 38.4615vw;
    height: 51vw;
  }
}
.tpAboutus__slider2-item {
  overflow: hidden;
}
.tpAboutus__slider2-item.swiper-slide-active .tpAboutus__slider2-item-bg {
  -webkit-animation: slick 7s cubic-bezier(0.39, 0.575, 0.565, 1) 0s 1 normal both;
          animation: slick 7s cubic-bezier(0.39, 0.575, 0.565, 1) 0s 1 normal both;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.tpAboutus__slider2-item-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@keyframes slick {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.tpAboutus__contents {
  margin-left: 60px;
  padding-top: 80px;
  width: 415px;
  min-width: 340px;
}
.tpAboutus__cHeading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.875;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpAboutus__cHeading {
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .tpAboutus__cHeading {
    font-size: 1.8vw;
  }
}
.tpAboutus__cText {
  margin-bottom: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.27em;
  line-height: 2.4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpAboutus__cText {
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .tpAboutus__cText {
    font-size: 2.28571vw;
    font-size: 1vw;
  }
}
.tpAboutus__cText.first-elem {
  margin-top: 56px;
}
.tpAboutus__cText:last-child {
  margin-bottom: 0;
}

.tpOutline {
  margin: 40px auto 60px;
  padding: 0 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tpOutline__container {
  margin: auto;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1600px;
}
.tpOutline__heading {
  margin-bottom: 4.6875vw;
  display: block;
}
.tpOutline__title {
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: 28px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tpOutline__title {
    font-size: 12px;
  }
}
.tpOutline__title.jp {
  display: inline-block;
  margin-top: 2px;
  margin-left: 20px;
  padding-left: 19px;
  height: 24px;
  border-left: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 24px;
  color: #fff;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .tpOutline__title.jp {
    font-size: 12px;
  }
}
.tpOutline__items {
  display: block;
}
.tpOutline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tpOutline__item-content {
  padding: 2.09375vw 0;
  font-size: clamp(10px, 1vw, 19.2px);
  letter-spacing: 0.075em;
  line-height: 2;
  color: #fff;
  position: relative;
}
.tpOutline__item-content a {
  display: inline-block;
  position: relative;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.tpOutline__item-content.no-brd:before, .tpOutline__item-content.no-brd:after {
  display: none;
}
.tpOutline__item-content:before, .tpOutline__item-content:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.tpOutline__item-content:before {
  top: 0;
}
.tpOutline__item-content:after {
  bottom: -1px;
}
.tpOutline__item-content:nth-child(odd) {
  width: 15.625vw;
  font-weight: bold;
}
.tpOutline__item-content:nth-child(even) {
  width: calc(100% - min(20vw, 384px));
  font-weight: 400;
}

/*====================================================================
Top Page SP
====================================================================*/
@media screen and (max-width: 767px) {
  .siteKv {
    margin: 0 auto;
    padding-top: 210px;
    width: 100%;
    min-height: 100vh;
    position: relative;
  }
  .siteKv__hText {
    padding-left: 7.2463768116vw;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: normal;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .siteKv__hText {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .siteKv__mqueText {
    width: 100%;
  }
  .siteKv__mqueText .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
  }
  .siteKv__mqueText-item {
    font-size: 120px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: normal;
    color: #111111;
    display: block;
    width: 200% !important;
    margin: 70px 0;
    -webkit-animation: marquee 20s linear infinite;
            animation: marquee 20s linear infinite;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .siteKv__mqueText-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .siteKv__scrollDown {
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    text-align: center;
  }
  .siteKv__scrollDown-svg {
    margin: 0 auto 1vw;
    width: 5.7971014493vw;
    height: 16.0822814399vw;
    overflow: visible;
  }
  .siteKv__scrollDown-moving {
    -webkit-animation: scroll-down-circles 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: scroll-down-circles 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
  .siteKv__scrollDown-label {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .siteKv__scrollDown-label {
    font-size: clamp(12px, 0.875vw, 16.8px);
  }
}
@media screen and (max-width: 767px) {
  .tpServices {
    margin: 80px auto 0;
    padding-bottom: 120px;
  }
  .tpServices__container {
    width: 100%;
    max-width: 100%;
  }
  .tpServices__img-caption {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.36px;
    line-height: 1.5;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpServices__img-caption {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__img-caption span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.36px;
    line-height: 1.5;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpServices__img-caption span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__list {
    margin: 0 auto 0;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tpServices__list-item {
    margin-bottom: 10vw;
    width: 100%;
    padding: 0 20px;
  }
  .tpServices__list-item:last-child {
    margin-bottom: 0;
  }
  .tpServices__item-img-cont {
    margin: auto;
    padding-top: 50%;
    width: 50%;
  }
  .tpServices__item-img {
    margin: auto;
    width: 200px;
  }
  .tpServices__item-title {
    margin-top: 15px;
    height: 10vw;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.025rem;
    line-height: 1;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpServices__item-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__item-title span {
    font-size: 1rem;
  }
  .tpServices__item-desc {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04rem;
    line-height: 2;
    color: #fff;
    text-align: left;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpServices__item-desc {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .tpServices__item-desc strong {
    font-size: 1.2rem;
  }
  .tpWorks {
    padding: 0 20px;
    width: 100%;
  }
  .tpWorks__container {
    margin: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  .tpWorks__heading {
    margin-bottom: 25px;
  }
  .tpWorks__title {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 28px;
    color: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpWorks__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .tpWorks__title.jp {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
    height: 24px;
    border-left: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 24px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpWorks__title.jp {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tpWorks__capt {
    display: none;
  }
  .tpWorks__archiveBtn {
    margin: 40px auto 0;
    padding: 11px 25px 11px 0;
    width: 160px;
    display: none;
    position: relative;
    top: auto;
    right: auto;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: normal;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpWorks__archiveBtn {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .tpWorks__slider {
    display: block;
  }
  .tpWorks__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tpWorks__list.m-pcDb {
    display: none;
  }
  .tpWorks__list.m-spDb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: block;
  }
  .tpWorks__item {
    margin-right: 0;
    width: 100%;
    height: auto;
  }
  .tpWorks__item:after {
    display: none;
  }
  .tpWorks__item:nth-child(3n+3) {
    margin-right: 0;
  }
  .tpWorks__item:nth-child(n+4) {
    margin-top: 0;
  }
  .tpWorks__item-bgCont {
    width: 100%;
    height: 75vw;
  }
  .tpWorks__item-innerCont {
    display: none;
  }
  .tpWorks__item-innerCont:before, .tpWorks__item-innerCont:after {
    display: none;
  }
  .tpWorks__item-innerCont-span {
    display: none;
  }
  .tpWorks__item-details {
    margin: 20px auto 50px;
    width: 100%;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .tpWorks__item-title {
    margin-bottom: 15px;
    padding-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.9;
    color: #fff;
    position: relative;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpWorks__item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tpWorks__item-title:after {
    display: none;
  }
  .tpWorks__item-desc {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: normal;
    color: #fff;
    position: relative;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpWorks__item-desc {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .tpAboutus {
    margin: auto;
    padding: 80px 0 80px;
    width: 100%;
  }
  .tpAboutus__container {
    margin: auto;
    padding: 0 40px;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .tpAboutus__heading {
    padding-left: 0;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpAboutus__heading {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .tpAboutus__heading.jp {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
    height: 24px;
    border-left: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 24px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpAboutus__heading.jp {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tpAboutus__slider1-cont {
    display: none;
  }
  .tpAboutus__bigTxt {
    position: absolute;
    top: auto;
    bottom: -108vw;
    right: 1vw;
    margin-top: 0;
    font-family: "Texta", sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 0.875;
    color: #fff;
    text-align: right;
    display: inline-block;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpAboutus__bigTxt {
    font-size: 18vw;
  }
}
@media screen and (max-width: 767px) {
  .tpAboutus__mainCont {
    margin: 60px auto 0;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .tpAboutus__slider2 {
    margin: 0;
    width: 100%;
    height: 100vw;
  }
  .tpAboutus__contents {
    margin-left: 0;
    padding-top: 80px;
    width: 100%;
    min-width: 100%;
  }
  .tpAboutus__cHeading {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.875;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpAboutus__cHeading {
    font-size: 6.13333vw;
  }
}
@media screen and (max-width: 767px) {
  .tpAboutus__cText {
    margin-bottom: 2rem;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.27em;
    line-height: 2;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpAboutus__cText {
    font-size: 3.46667vw;
  }
}
@media screen and (max-width: 767px) {
  .tpAboutus__cText.first-elem {
    margin-top: 56px;
  }
  .tpAboutus__cText:last-child {
    margin-bottom: 0;
  }
  .tpOutline {
    margin: 40px auto 60px;
    padding: 0 7.2463768116vw;
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .tpOutline__container {
    padding-bottom: 10px;
  }
  .tpOutline__heading {
    margin-bottom: 10.8695652174vw;
    display: block;
  }
  .tpOutline__title {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 28px;
    color: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpOutline__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .tpOutline__title.jp {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
    height: 24px;
    border-left: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 24px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .tpOutline__title.jp {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tpOutline__items {
    display: block;
  }
  .tpOutline__item {
    padding: 5.0362318841vw 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .tpOutline__item:before, .tpOutline__item:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .tpOutline__item:before {
    top: 0;
  }
  .tpOutline__item:after {
    bottom: -1px;
  }
  .tpOutline__item-content {
    padding: 0;
    font-size: 2.8985507246vw;
    letter-spacing: 0.075em;
    line-height: 2;
    color: #fff;
    position: relative;
  }
  .tpOutline__item-content:before, .tpOutline__item-content:after {
    display: none;
  }
  .tpOutline__item-content:nth-child(odd) {
    width: 100%;
  }
  .tpOutline__item-content:nth-child(even) {
    margin-top: 1.2077294686vw;
    width: 100%;
    font-size: 3.3816425121vw;
    line-height: 1.7142857143;
    letter-spacing: 0.075em;
  }
}
/*====================================================================
Contact Form Page PC
====================================================================*/
.contactForm {
  margin: 0 auto;
  width: 100%;
}
.contactForm__heading {
  margin-bottom: 50px;
}
.contactForm__title {
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.15em;
  line-height: 28px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contactForm__title {
    font-size: 12px;
  }
}
.contactForm__title.jp {
  display: inline-block;
  margin-top: 2px;
  margin-left: 20px;
  padding-left: 19px;
  height: 24px;
  border-left: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 24px;
  color: #fff;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .contactForm__title.jp {
    font-size: 12px;
  }
}
.contactForm__desc {
  margin: 20px auto 55px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 23px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contactForm__desc {
    font-size: 12px;
  }
}
.contactForm__block {
  margin-bottom: 50px;
  display: block;
}
.contactForm__block:last-child {
  text-align: center;
  margin-bottom: 0;
}
.contactForm__block.col-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contactForm__block.col-btn .myartBtn {
  margin: 0;
}
.contactForm__block.col-btn .myartBtn:last-child {
  margin-left: 50px;
}
.contactForm__block.has-error .contactForm__label .error-text {
  display: inline-block;
}
.contactForm__block.has-error .contactForm__input {
  background-color: #FFF2F2;
  border-color: #E83131;
}
.contactForm__label {
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 23px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contactForm__label {
    font-size: 12px;
  }
}
.contactForm__label span.error-text {
  display: none;
  margin-left: 14px;
  color: #E83131;
}
.contactForm__input {
  padding: 13px 20px 12px;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 31px;
  color: #fff;
  border-radius: 3px;
  border: 1px solid #111111;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  resize: none;
  background-color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 767px) {
  .contactForm__input {
    font-size: 12px;
  }
}
.contactForm__input::-webkit-input-placeholder {
  color: #BEBEBE;
}
.contactForm__input::-moz-placeholder {
  color: #BEBEBE;
}
.contactForm__input:-ms-input-placeholder {
  color: #BEBEBE;
}
.contactForm__input::-ms-input-placeholder {
  color: #BEBEBE;
}
.contactForm__input::placeholder {
  color: #BEBEBE;
}
.contactForm__input:disabled {
  background-color: rgba(255, 255, 255, 0.4);
}
.contactForm__disc {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 23px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contactForm__disc {
    font-size: 12px;
  }
}

.contactComplete {
  margin: 180px auto 25vw;
  width: 100%;
  text-align: center;
}
.contactComplete__heading {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 31px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contactComplete__heading {
    font-size: 12px;
  }
}
.contactComplete__desc {
  margin-bottom: 50px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 23px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contactComplete__desc {
    font-size: 12px;
  }
}

/*====================================================================
Contact Form Page SP
====================================================================*/
@media screen and (max-width: 767px) {
  .contactForm {
    margin: 0 auto;
    width: 100%;
  }
  .contactForm__title {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 28px;
    color: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactForm__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__title.jp {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
    height: 24px;
    border-left: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 24px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactForm__title.jp {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__desc {
    margin: 15px auto 45px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 21px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactForm__desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__block {
    margin-bottom: 30px;
    display: block;
  }
  .contactForm__block:last-child {
    text-align: center;
    margin-bottom: 0;
    margin-top: 50px;
  }
  .contactForm__block.col-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactForm__block.col-btn .myartBtn {
    margin: 0;
  }
  .contactForm__block.col-btn .myartBtn:last-child {
    margin-top: 20px;
    margin-left: 0;
  }
  .contactForm__label {
    margin-bottom: 5px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 21px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactForm__label {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__label span.error-text {
    margin-left: 8px;
  }
  .contactForm__input {
    padding: 6px 15px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 31px;
    color: #fff;
    border: 1.5px solid #111111;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactForm__input {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm__input.textarea-field {
    height: 250px;
    display: block;
  }
  .contactForm__disc {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 16px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactForm__disc {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contactComplete {
    margin: 180px auto 100px;
    width: 100%;
  }
  .contactComplete__heading {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 31px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactComplete__heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contactComplete__desc {
    margin: auto;
    width: 100%;
    max-width: 350px;
    text-align: left;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 21px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contactComplete__desc {
    font-size: 13px;
  }
}