@charset "UTF-8";
/* ====================================================================================

    ITEMS

==================================================================================== */
/* ====================================================================================

    LOAD

==================================================================================== */
#load {
  display: none;
  position: fixed;
  inset: 0;
  background: #eee;
  z-index: 2000;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 50vh 50vw;
  transition: padding 1s ease;
}
#load img {
  width: 100px  ;
}
@media only screen and (max-width: 1500px) {
  #load img {
    width: 6.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load img {
    width: 26.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load img {
    width: 16vw;
  }
}
#load--items {
  width: 100%;
  height: 100%;
  position: relative;
}
#load--items img {
  position: absolute;
  max-width: unset;
}
#load--items img:nth-child(1) {
  transform: translate(-100%, -100%);
}
#load--items img:nth-child(1) {
  top: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(1) {
    top: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(1) {
    top: -0.8vw  ;
  }
}
#load--items img:nth-child(1) {
  left: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(1) {
    left: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(1) {
    left: -0.8vw  ;
  }
}
#load--items img:nth-child(2) {
  transform: translate(100%, -100%);
}
#load--items img:nth-child(2) {
  top: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(2) {
    top: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(2) {
    top: -0.8vw  ;
  }
}
#load--items img:nth-child(2) {
  right: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(2) {
    right: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(2) {
    right: -0.8vw  ;
  }
}
#load--items img:nth-child(3) {
  transform: translate(-100%, 100%);
}
#load--items img:nth-child(3) {
  bottom: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(3) {
    bottom: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(3) {
    bottom: -0.8vw  ;
  }
}
#load--items img:nth-child(3) {
  left: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(3) {
    left: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(3) {
    left: -0.8vw  ;
  }
}
#load--items img:nth-child(4) {
  transform: translate(100%, 100%);
}
#load--items img:nth-child(4) {
  bottom: 10px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(4) {
    bottom: 0.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(4) {
    bottom: 2.6666666667vw  ;
  }
}
#load--items img:nth-child(4) {
  right: -3px  ;
}
@media only screen and (max-width: 1500px) {
  #load--items img:nth-child(4) {
    right: -0.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(4) {
    right: -0.8vw  ;
  }
}
@media only screen and (max-width: 768px) {
  #load--items img:nth-child(4) {
    bottom: 1.3333333333vw;
  }
}
#load.loading #load--items img:nth-child(1) {
  animation: topleft 1.5s ease 0s infinite;
}
#load.loading #load--items img:nth-child(2) {
  animation: topright 1.5s ease 0s infinite;
}
#load.loading #load--items img:nth-child(3) {
  animation: botleft 1.5s ease 0s infinite;
}
#load.loading #load--items img:nth-child(4) {
  animation: botright 1.5s ease 0s infinite;
}
#load.loaded {
  padding: 0;
}

@keyframes topleft {
  0% {
    transform: translate(-100%, -100%);
  }
  12.5% {
    transform: translate(-100%, -110%);
  }
  25% {
    transform: translate(-100%, -100%);
  }
  75% {
    transform: translate(-100%, -100%);
  }
  87.5% {
    transform: translate(-110%, -100%);
  }
  100% {
    transform: translate(-100%, -100%);
  }
}
@keyframes topright {
  0% {
    transform: translate(100%, -100%);
  }
  12.5% {
    transform: translate(100%, -110%);
  }
  25% {
    transform: translate(100%, -100%);
  }
  37.5% {
    transform: translate(110%, -100%);
  }
  50% {
    transform: translate(100%, -100%);
  }
}
@keyframes botleft {
  0% {
    transform: translate(-100%, 100%);
  }
  50% {
    transform: translate(-100%, 100%);
  }
  62.5% {
    transform: translate(-100%, 110%);
  }
  75% {
    transform: translate(-100%, 100%);
  }
  87.5% {
    transform: translate(-110%, 100%);
  }
  100% {
    transform: translate(-100%, 100%);
  }
}
@keyframes botright {
  0% {
    transform: translate(100%, 100%);
  }
  25% {
    transform: translate(100%, 100%);
  }
  37.5% {
    transform: translate(110%, 100%);
  }
  50% {
    transform: translate(100%, 100%);
  }
  62.5% {
    transform: translate(100%, 110%);
  }
  75% {
    transform: translate(100%, 100%);
  }
}
/* ====================================================================================

    HEADER

==================================================================================== */
.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EEEEEE;
}
.Header {
  padding: 27px 47px  ;
}
@media only screen and (max-width: 1500px) {
  .Header {
    padding: 1.8vw 3.1333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Header {
    padding: 7.2vw 12.5333333333vw  ;
  }
}
.Header.trans {
  background: transparent;
  transition: background 0.5s ease;
}
.Header.trans.on-scroll {
  background: #EEEEEE;
}
.Header--logo {
  width: 148px  ;
}
@media only screen and (max-width: 1500px) {
  .Header--logo {
    width: 9.8666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Header--logo {
    width: 39.4666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Header {
    padding: 4.5333333333vw 6.6666666667vw;
    display: block;
    background: #EEEEEE;
  }
  .Header.on-scroll {
    box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
  }
  .Header.pageheader {
    box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
  }
  .Header--logo {
    width: 19.4666666667vw;
  }
}

/* ====================================================================================

    NAV

==================================================================================== */
.Navi--primary li a {
  color: #000;
  text-align: center;
  display: block;
  line-height: 1.2;
}
.Navi--primary li a span {
  display: block;
}
.Navi--primary li a span.en {
  font-size: 1.3rem;
  font-family: "Roboto Condensed", "Shippori Antique B1", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.Navi--primary li a span.en {
  margin-bottom: 5px  ;
}
@media only screen and (max-width: 1500px) {
  .Navi--primary li a span.en {
    margin-bottom: 0.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi--primary li a span.en {
    margin-bottom: 1.3333333333vw  ;
  }
}
.Navi--primary li a span.ja {
  font-size: 1.7rem;
}
@media only screen and (min-width: 769px) {
  .Navi--primary li a {
    transition: color 0.4s ease;
  }
  .Navi--primary li a:hover {
    color: #57CB95;
  }
}
.Navi--contact {
  width: 407px  ;
}
@media only screen and (max-width: 1500px) {
  .Navi--contact {
    width: 27.1333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi--contact {
    width: 108.5333333333vw  ;
  }
}
.Navi--contact a {
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  color: #000;
}
.Navi--contact a {
  border-radius: 57px  ;
}
@media only screen and (max-width: 1500px) {
  .Navi--contact a {
    border-radius: 3.8vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi--contact a {
    border-radius: 15.2vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Navi--contact a {
    transition: 0.4s ease;
    transition-property: background, color;
  }
  .Navi--contact a .Navi--contact--right img,
  .Navi--contact a .material-icons-outlined {
    transition: transform 0.4s ease;
  }
  .Navi--contact a:hover {
    background: #57CB95;
    color: #fff;
  }
  .Navi--contact a:hover .Navi--contact--right img {
    transform: scale(1.3);
  }
  .Navi--contact a:hover .material-icons-outlined {
    transform: translateX(50%);
  }
}
.Navi--contact--left {
  width: 68%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Navi--contact--left {
  gap: 0px 20px  ;
}
@media only screen and (max-width: 1500px) {
  .Navi--contact--left {
    gap: 0vw 1.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi--contact--left {
    gap: 0vw 5.3333333333vw  ;
  }
}
.Navi--contact--left span.en {
  font-weight: 500;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", "Shippori Antique B1", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.Navi--contact--left span.ja {
  font-size: 1.4rem;
}
.Navi--contact--right {
  width: 32%;
  position: relative;
  overflow: hidden;
}
.Navi--contact--right img {
  width: 100%;
  object-fit: cover;
}
.Navi--contact--right img {
  height: 78px  ;
}
@media only screen and (max-width: 1500px) {
  .Navi--contact--right img {
    height: 5.2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi--contact--right img {
    height: 20.8vw  ;
  }
}
.Navi--contact--right .material-icons-outlined {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .Navi {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 15.7333333333vw;
    left: 0;
    height: calc(100vh - 59 / 375 * 100vw);
    width: 100%;
    overflow: hidden;
  }
  .Navi--inner {
    margin-left: auto;
    background: #EEEEEE;
    width: 53.3333333333vw;
    height: 100%;
    box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
  }
  .Navi--primary li {
    margin-bottom: 16vw;
    text-align: center;
  }
  .Navi--primary li a span.en {
    font-size: 1.2rem;
  }
  .Navi--primary li a span.ja {
    font-size: 1.5rem;
  }
  .Navi--contact {
    width: 100%;
  }
  .Navi--contact a {
    padding: 5.3333333333vw;
  }
  .Navi--contact--left {
    width: 100%;
    display: block;
    text-align: center;
  }
  .Navi--contact--left span {
    display: block;
  }
  .Navi--contact--left span.en {
    font-size: 2rem;
  }
  .Navi--contact--left span.ja {
    font-size: 1.1rem;
  }
  .Navi--contact--right {
    display: none;
  }
  .Navi .items {
    transform: translateY(10px);
    opacity: 0;
    transition: 0.4s ease 0.2s;
    transition-property: transform, opacity;
  }
  .Navi.open .items {
    transform: translateY(0);
    opacity: 1;
  }
}

#nav-torigger {
  display: none;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
#nav-torigger .ham {
  aspect-ratio: 40/20;
  width: 36.3636363636%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#nav-torigger .ham span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  transition: 0.5s ease;
  transition: width 0.2s 0.2s ease, top 0.2s 0.2s ease, transform 0.2s ease, opacity 0s 0.2s ease;
}
#nav-torigger .ham span:nth-of-type(1) {
  top: 0;
}
#nav-torigger .ham span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
#nav-torigger .ham span:nth-of-type(3) {
  top: 100%;
  translate: 0 -100%;
}
#nav-torigger.active .ham span {
  transition: width 0.2s ease, top 0.2s ease, transform 0.2s 0.2s ease, opacity 0s 0.2s ease;
}
#nav-torigger.active .ham span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
  translate: 0 -50%;
}
#nav-torigger.active .ham span:nth-of-type(2) {
  opacity: 0;
}
#nav-torigger.active .ham span:nth-of-type(3) {
  width: 100%;
  top: 50%;
  translate: 0 -50%;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  #nav-torigger {
    display: block;
  }
}

/* ====================================================================================

    FOOTER

==================================================================================== */
.Footer--logo {
  width: 148px  ;
}
@media only screen and (max-width: 1500px) {
  .Footer--logo {
    width: 9.8666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Footer--logo {
    width: 39.4666666667vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Footer .Navi--primary li a:hover {
    color: #fff;
  }
}

/* ====================================================================================

    ITEM

==================================================================================== */
.to-up,
.to-right,
.to-left {
  opacity: 0;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  transition-property: transform, opacity;
  will-change: opacity, transform;
}
.to-up.active,
.to-right.active,
.to-left.active {
  opacity: 1;
  transform: translate(0, 0);
}

.to-up {
  transform: translateY(5rem);
}

.to-right {
  transform: translateX(-5rem);
}

.to-left {
  transform: translateX(5rem);
}

.order.active .order-child {
  opacity: 1;
  transform: translate(0, 0);
}

.wpcf7-step-2 {
  display: none;
}

.wpcf7sc-confirming .wpcf7-step-1 {
  display: none;
}
.wpcf7sc-confirming .wpcf7-step-2 {
  display: block;
}

.wpcf7-list-item-label {
  cursor: pointer;
}

.wpcf7-acceptance input[type=checkbox] {
  display: none;
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label {
  padding-left: 35px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label {
    padding-left: 2.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label {
    padding-left: 9.3333333333vw  ;
  }
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:before, .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1;
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:before {
  border: 1px solid #57CB95;
  background: #fff;
  left: 0;
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:before {
  width: 22px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:before {
    width: 1.4666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:before {
    width: 5.8666666667vw  ;
  }
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
  background: #57CB95;
  border: 1px solid #57CB95;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
  width: 10px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
    width: 0.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
    width: 2.6666666667vw  ;
  }
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
  left: 6px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
    left: 0.4vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label:after {
    left: 1.6vw  ;
  }
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 25px 0px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-acceptance .wpcf7-list-item {
    margin: 1.6666666667vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item {
    margin: 6.6666666667vw 0vw  ;
  }
}

.wpcf7-not-valid-tip {
  font-size: 1.2rem;
}
.wpcf7-not-valid-tip {
  margin-top: 5px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-not-valid-tip {
    margin-top: 0.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    margin-top: 1.3333333333vw  ;
  }
}

.wpcf7-spinner {
  margin: 0;
  position: absolute;
  left: 50%;
  translate: -50% 100%;
}
.wpcf7-spinner {
  bottom: -20px  ;
}
@media only screen and (max-width: 1500px) {
  .wpcf7-spinner {
    bottom: -1.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-spinner {
    bottom: -5.3333333333vw  ;
  }
}

.recaptcha_policy {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: #808080;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media only screen and (max-width: 768px) {
  .recaptcha_policy {
    font-size: 1rem;
  }
}
.recaptcha_policy a {
  color: #808080;
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden;
}

.ANM {
  position: relative;
  overflow: hidden;
  transition: 1s ease;
  transition-property: width, height;
}
.ANM--INNER {
  transition: 0.8s ease 0.3s;
  transition-property: width, height;
}
.ANM--INNER.do {
  width: 0px;
  height: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  overflow: hidden;
}
.ANM--INNER.do .text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.ANM.big .item {
  width: 26px  ;
}
@media only screen and (max-width: 1500px) {
  .ANM.big .item {
    width: 1.7333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .ANM.big .item {
    width: 6.9333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .ANM.big .item {
    width: 3.7333333333vw;
  }
}
.ANM .text {
  display: block;
}
.ANM .item {
  position: absolute;
  aspect-ratio: 1;
}
.ANM .item {
  width: 11px  ;
}
@media only screen and (max-width: 1500px) {
  .ANM .item {
    width: 0.7333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .ANM .item {
    width: 2.9333333333vw  ;
  }
}
.ANM .item--1 {
  top: 0;
  left: 0;
  background: url("../img/icon--top--1.svg") no-repeat center;
  background-size: 100% 100%;
}
.ANM .item--2 {
  top: 0;
  right: 0;
  background: url("../img/icon--top--2.svg") no-repeat center;
  background-size: 100% 100%;
}
.ANM .item--3 {
  bottom: 0;
  left: 0;
  background: url("../img/icon--bot--1.svg") no-repeat center;
  background-size: 100% 100%;
}
.ANM .item--4 {
  bottom: 0;
  right: 0;
  background: url("../img/icon--bot--2.svg") no-repeat center;
  background-size: 100% 100%;
}

.Ill--1 {
  position: absolute;
  top: 0;
  left: 0;
}
.Ill--1 img {
  margin-left: -100px;
  max-width: unset;
  width: calc(100% + 200px);
}
@media only screen and (max-width: 768px) {
  .Ill--1 {
    top: 16vw;
  }
  .Ill--1 img {
    margin-left: -15vw;
    width: calc(100% + 30vw);
  }
}

/* ====================================================================================

    TOP

==================================================================================== */
.Top--mainvisual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.Top--mainvisual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Top--mainvisual--scroller {
  position: absolute;
  left: 50%;
  translate: -50%;
  z-index: 1;
}
.Top--mainvisual--scroller {
  bottom: 90px  ;
}
@media only screen and (max-width: 1500px) {
  .Top--mainvisual--scroller {
    bottom: 6vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--mainvisual--scroller {
    bottom: 24vw  ;
  }
}
.Top--mainvisual--scroller {
  width: 65px  ;
}
@media only screen and (max-width: 1500px) {
  .Top--mainvisual--scroller {
    width: 4.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--mainvisual--scroller {
    width: 17.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--mainvisual--scroller {
    width: 9.3333333333vw;
  }
}

.Metals--list li {
  border: 1px solid #57CB95;
}

.svg-animation svg {
  width: 100%;
  height: auto;
}

.text-animation {
  position: relative;
}
.text-animation {
  top: -2px  ;
}
@media only screen and (max-width: 1500px) {
  .text-animation {
    top: -0.1333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .text-animation {
    top: -0.5333333333vw  ;
  }
}
.text-animation {
  height: 73px  ;
}
@media only screen and (max-width: 1500px) {
  .text-animation {
    height: 4.8666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .text-animation {
    height: 19.4666666667vw  ;
  }
}
.text-animation span {
  display: flex;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: textAnm 15s linear 0s infinite;
}
.text-animation span img {
  max-width: unset;
  width: auto;
  height: 100%;
}
.text-animation span img {
  margin-right: 70px  ;
}
@media only screen and (max-width: 1500px) {
  .text-animation span img {
    margin-right: 4.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .text-animation span img {
    margin-right: 18.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .text-animation {
    height: 10.6666666667vw;
  }
  .text-animation span {
    animation-duration: 20s;
  }
}

@keyframes textAnm {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}
.Border--layout {
  position: relative;
}
.Border--layout table {
  width: 100%;
}
.Border--layout table tbody tr th,
.Border--layout table tbody tr td {
  line-height: 70px  ;
}
@media only screen and (max-width: 1500px) {
  .Border--layout table tbody tr th, .Border--layout table tbody tr td {
    line-height: 4.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Border--layout table tbody tr th, .Border--layout table tbody tr td {
    line-height: 18.6666666667vw  ;
  }
}
.Border--layout table tbody tr th {
  vertical-align: top;
}
.Border--layout table tbody tr th {
  padding-left: 115px  ;
}
@media only screen and (max-width: 1500px) {
  .Border--layout table tbody tr th {
    padding-left: 7.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Border--layout table tbody tr th {
    padding-left: 30.6666666667vw  ;
  }
}
.Border--layout table tbody tr th {
  width: 268px  ;
}
@media only screen and (max-width: 1500px) {
  .Border--layout table tbody tr th {
    width: 17.8666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Border--layout table tbody tr th {
    width: 71.4666666667vw  ;
  }
}
.Border--layout table tbody tr td {
  padding-left: 40px  ;
}
@media only screen and (max-width: 1500px) {
  .Border--layout table tbody tr td {
    padding-left: 2.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Border--layout table tbody tr td {
    padding-left: 10.6666666667vw  ;
  }
}
.Border--layout .lines--box {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Border--layout .lines--box .lines {
  width: 100%;
  height: 1px;
  background: #EEEEEE;
}
.Border--layout--inner:after {
  content: "";
  position: absolute;
  top: -2.5%;
  width: 1px;
  height: 105%;
  background: #57CB95;
}
.Border--layout--inner:after {
  left: 268px  ;
}
@media only screen and (max-width: 1500px) {
  .Border--layout--inner:after {
    left: 17.8666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Border--layout--inner:after {
    left: 71.4666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Border--layout table {
    display: block;
  }
  .Border--layout table tbody {
    display: block;
  }
  .Border--layout table tbody tr {
    display: block;
  }
  .Border--layout table tbody tr th,
  .Border--layout table tbody tr td {
    padding: 0;
    padding-left: 5.3333333333vw;
    display: block;
    width: 100%;
    line-height: 13.3333333333vw;
  }
  .Border--layout table tbody tr th {
    color: #57CB95;
  }
  .Border--layout--inner:after {
    left: 0vw;
  }
}

.Company--iframe iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .Company--iframe iframe {
    height: auto;
    aspect-ratio: 1/0.8;
  }
}

.Faq--logo {
  position: absolute;
  top: 0;
  right: 0;
  translate: 60%;
}
.Faq--logo {
  width: 638px  ;
}
@media only screen and (max-width: 1500px) {
  .Faq--logo {
    width: 42.5333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--logo {
    width: 170.1333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--logo {
    width: 53.3333333333vw;
  }
}
.Faq--wrap {
  backdrop-filter: blur(32px);
}
.Faq--inner {
  position: relative;
}
.Faq--inner:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 105%;
  translate: 0 -50%;
  background: #57CB95;
}
.Faq--inner:after {
  left: 128px  ;
}
@media only screen and (max-width: 1500px) {
  .Faq--inner:after {
    left: 8.5333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--inner:after {
    left: 34.1333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--inner:after {
    left: 10.6666666667vw;
  }
}
.Faq--box--label {
  font-family: "Roboto Condensed", "Shippori Antique B1", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: absolute;
  font-size: 3rem;
  top: 50%;
  translate: 0 -50%;
  font-weight: bold;
}
.Faq--box--label {
  left: 50px  ;
}
@media only screen and (max-width: 1500px) {
  .Faq--box--label {
    left: 3.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--box--label {
    left: 13.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--box--label {
    left: 0vw;
    font-size: 2.4rem;
  }
}
.Faq--box dt,
.Faq--box dd {
  position: relative;
  line-height: 2;
}
.Faq--box dt,
.Faq--box dd {
  padding-top: 25px  ;
}
@media only screen and (max-width: 1500px) {
  .Faq--box dt, .Faq--box dd {
    padding-top: 1.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--box dt, .Faq--box dd {
    padding-top: 6.6666666667vw  ;
  }
}
.Faq--box dt,
.Faq--box dd {
  padding-bottom: 25px  ;
}
@media only screen and (max-width: 1500px) {
  .Faq--box dt, .Faq--box dd {
    padding-bottom: 1.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--box dt, .Faq--box dd {
    padding-bottom: 6.6666666667vw  ;
  }
}
.Faq--box dt,
.Faq--box dd {
  padding-left: 175px  ;
}
@media only screen and (max-width: 1500px) {
  .Faq--box dt, .Faq--box dd {
    padding-left: 11.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Faq--box dt, .Faq--box dd {
    padding-left: 46.6666666667vw  ;
  }
}
.Faq--box dt:before,
.Faq--box dd:before {
  content: "";
  width: 200vw;
  height: 1px;
  background: #EEEEEE;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
}
@media only screen and (max-width: 768px) {
  .Faq--box dt,
  .Faq--box dd {
    padding-left: 17.3333333333vw;
  }
}
.Faq--box dt {
  color: #57CB95;
}
.Faq--box:last-child dd:after {
  content: "";
  width: 200vw;
  height: 1px;
  background: #EEEEEE;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.Form--box {
  margin-bottom: 35px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--box {
    margin-bottom: 2.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--box {
    margin-bottom: 9.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--box {
    margin-bottom: 6.1333333333vw;
  }
}
.Form--box dt {
  line-height: 1.4;
}
.Form--box dt {
  margin-bottom: 8px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--box dt {
    margin-bottom: 0.5333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--box dt {
    margin-bottom: 2.1333333333vw  ;
  }
}
.Form--item {
  width: 100%;
  background: #fff;
  border: none;
}
.Form--item {
  padding-left: 20px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--item {
    padding-left: 1.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--item {
    padding-left: 5.3333333333vw  ;
  }
}
.Form--item {
  padding-right: 20px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--item {
    padding-right: 1.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--item {
    padding-right: 5.3333333333vw  ;
  }
}
.Form--input {
  height: 50px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--input {
    height: 3.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--input {
    height: 13.3333333333vw  ;
  }
}
.Form--text {
  resize: vertical;
}
.Form--text {
  padding-top: 15px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--text {
    padding-top: 1vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--text {
    padding-top: 4vw  ;
  }
}
.Form--text {
  padding-bottom: 15px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--text {
    padding-bottom: 1vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--text {
    padding-bottom: 4vw  ;
  }
}
.Form--text {
  height: 380px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--text {
    height: 25.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--text {
    height: 101.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--text {
    height: 53.3333333333vw;
  }
}
.Form--submit {
  display: inline-block;
  background: #57CB95;
  color: #fff;
  text-align: center;
}
.Form--submit {
  padding: 20px 10px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--submit {
    padding: 1.3333333333vw 0.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--submit {
    padding: 5.3333333333vw 2.6666666667vw  ;
  }
}
.Form--submit {
  width: 310px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--submit {
    width: 20.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--submit {
    width: 82.6666666667vw  ;
  }
}
.Form--submit {
  border-radius: 44px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--submit {
    border-radius: 2.9333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--submit {
    border-radius: 11.7333333333vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Form--submit {
    transition: 0.4s ease;
    transition-property: background, color;
  }
  .Form--submit:hover {
    background: #fff;
    color: #000;
  }
}
@media only screen and (max-width: 768px) {
  .Form--submit {
    margin: 5.3333333333vw 0;
  }
}
.Form--back {
  display: inline-block;
  background: #808080;
  color: #fff;
  text-align: center;
}
.Form--back {
  padding: 20px 10px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--back {
    padding: 1.3333333333vw 0.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--back {
    padding: 5.3333333333vw 2.6666666667vw  ;
  }
}
.Form--back {
  width: 310px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--back {
    width: 20.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--back {
    width: 82.6666666667vw  ;
  }
}
.Form--back {
  border-radius: 44px  ;
}
@media only screen and (max-width: 1500px) {
  .Form--back {
    border-radius: 2.9333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Form--back {
    border-radius: 11.7333333333vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Form--back {
    transition: 0.4s ease;
    transition-property: background, color;
  }
  .Form--back:hover {
    background: #fff;
    color: #808080;
  }
}

/* ====================================================================================

    SINGLE

==================================================================================== */
.Single--content h1,
.Single--content h2,
.Single--content h3,
.Single--content h4,
.Single--content h5,
.Single--content h6 {
  line-height: 1.4;
  font-weight: bold;
  color: #000;
}
.Single--content h1,
.Single--content h2,
.Single--content h3,
.Single--content h4,
.Single--content h5,
.Single--content h6 {
  margin: 40px 0px 15px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content h1, .Single--content h2, .Single--content h3, .Single--content h4, .Single--content h5, .Single--content h6 {
    margin: 2.6666666667vw 0vw 1vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content h1, .Single--content h2, .Single--content h3, .Single--content h4, .Single--content h5, .Single--content h6 {
    margin: 10.6666666667vw 0vw 4vw  ;
  }
}
.Single--content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  background: #000;
  color: #fff;
  line-height: 1.2;
}
.Single--content h1 {
  padding: 8px 20px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content h1 {
    padding: 0.5333333333vw 1.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content h1 {
    padding: 2.1333333333vw 5.3333333333vw  ;
  }
}
.Single--content h2 {
  font-size: 3rem;
  line-height: 1.3;
  color: #000;
  border-bottom: 2px solid #000;
}
.Single--content h2 {
  padding: 5px 10px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content h2 {
    padding: 0.3333333333vw 0.6666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content h2 {
    padding: 1.3333333333vw 2.6666666667vw  ;
  }
}
.Single--content h3 {
  font-size: 2.4rem;
}
.Single--content h4 {
  font-size: 2rem;
}
.Single--content h5 {
  font-size: 1.8rem;
}
.Single--content h6 {
  font-size: 1.6rem;
}
.Single--content p {
  line-height: 2;
}
.Single--content p {
  margin: 25px 0px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content p {
    margin: 1.6666666667vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content p {
    margin: 6.6666666667vw 0vw  ;
  }
}
.Single--content p:first-child {
  margin-top: 0;
}
.Single--content img {
  height: auto;
}
.Single--content strong {
  font-weight: bold;
}
.Single--content em {
  font-style: italic;
}
.Single--content b {
  font-weight: bold;
}
.Single--content mark {
  display: inline;
  background-color: #fffb7b;
  color: #000;
}
.Single--content blockquote {
  display: block;
  line-height: 1.8;
  font-size: 1.2rem;
  border: 1px solid #dcdcdc;
  color: rgba(33, 33, 33, 0.8);
}
.Single--content blockquote {
  margin: 30px 0px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content blockquote {
    margin: 2vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content blockquote {
    margin: 8vw 0vw  ;
  }
}
.Single--content blockquote {
  padding: 40px 30px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content blockquote {
    padding: 2.6666666667vw 2vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content blockquote {
    padding: 10.6666666667vw 8vw  ;
  }
}
.Single--content blockquote p {
  margin: 0;
}
.Single--content blockquote p + p {
  margin-top: 30px;
}
.Single--content a {
  color: #000;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .Single--content a:hover {
    text-decoration: none;
  }
}
.Single--content .aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.Single--content .alignright {
  float: right;
}
.Single--content .alignleft {
  float: left;
}
.Single--content img[class*=attachment-],
.Single--content img[class*=wp-image-] {
  height: auto;
  max-width: 100%;
}
.Single--content ul,
.Single--content ol {
  margin: 30px 0px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content ul, .Single--content ol {
    margin: 2vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ul, .Single--content ol {
    margin: 8vw 0vw  ;
  }
}
.Single--content ul li,
.Single--content ol li {
  line-height: 1.8;
}
.Single--content ul li + li,
.Single--content ol li + li {
  margin-top: 12px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content ul li + li, .Single--content ol li + li {
    margin-top: 0.8vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ul li + li, .Single--content ol li + li {
    margin-top: 3.2vw  ;
  }
}
.Single--content ul {
  list-style-type: disc;
}
.Single--content ul {
  padding-left: 20px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content ul {
    padding-left: 1.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ul {
    padding-left: 5.3333333333vw  ;
  }
}
.Single--content ol {
  counter-reset: num;
}
.Single--content ol li {
  position: relative;
}
.Single--content ol li {
  padding-left: 24px  ;
}
@media only screen and (max-width: 1500px) {
  .Single--content ol li {
    padding-left: 1.6vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ol li {
    padding-left: 6.4vw  ;
  }
}
.Single--content ol li:before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}

@media only screen and (max-width: 768px) {
  p {
    line-height: 2;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-i {
    display: inline !important;
  }
  .flex {
    display: block;
  }
  .col-sm-1 {
    width: 100%;
  }
  .tc-sp {
    text-align: center;
  }
  .tj-sp {
    text-align: justify;
  }
  .tr-sp {
    text-align: right;
  }
  .mx-sm-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

::selection {
  color: #fff;
  background-color: #57CB95;
}
/*# sourceMappingURL=style.css.map */
