@charset "UTF-8";
/* 文字コードの指定 */
/* ページ全般の設定 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: #000000;
  overflow-x: hidden;
  background: #000000;
}

li {
  list-style: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .flex {
    flex-direction: column;
  }
}

.content-width {
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
}

@media (min-width: 1025px) {
  .slide-scroll {
    align-items: center;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    flex-shrink: 0;
    /*overflow-x: hidden;*/
  }
}

@media (min-width: 1025px) {
  .slide-scroll-01 {
    width: 69.4444444444vw;
  }
}

/*=================================================
    SP ハンバーガーメニュー
===================================================*/
/* ハンバーガーメニューボタン */
.hamburger-btn {
  position: fixed;
  top: 0;
  width: 5.4rem;
  height: 12.2rem;
  cursor: pointer;
  z-index: 100;
  background: #858585;
  padding: 0.75rem;
}
@media (min-width: 1025px) {
  .hamburger-btn {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .hamburger-btn {
    right: 0;
  }
}
.hamburger-btn .hamburger-btn__logo {
  text-align: center;
}
.hamburger-btn .hamburger-btn__line {
  width: 3.8rem;
  height: 3.8rem;
  position: relative;
  margin-top: 1.5rem;
}
.hamburger-btn .hamburger-btn__line .line {
  width: 3.8rem;
  height: 4px;
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(1) {
  width: 3.8rem;
  height: 4px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
}
.hamburger-btn .hamburger-btn__line .line:nth-child(2) {
  width: 4px;
  height: 3.8rem;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

/* メニューの中身 */
#hamburger-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  background: #000000;
  scrollbar-width: none;
}
#hamburger-menu .hamburger-menu__list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
#hamburger-menu .hamburger-menu__list li {
  margin-bottom: 5rem;
  text-align: center;
}
#hamburger-menu .hamburger-menu__list li:last-child {
  margin-bottom: 0;
}

#hamburger-menu::-webkit-scrollbar {
  display: none;
}

/* ハンバーガーメニュー開いた時 */
#hamburger-menu.active {
  overflow: scroll;
  visibility: visible;
  transition: all 0.5s;
  left: 0;
  -webkit-overflow-scrolling: touch;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ×　オープン */
.hamburger-btn.active .line:nth-child(2) {
  opacity: 0;
}

.top {
  position: relative;
}
@media (min-width: 1025px) {
  .top .bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 76.4vh;
  }
}
@media (max-width: 1024px) {
  .top .bg-1 {
    width: 89.058524173vw;
  }
}

@media (min-width: 1025px) {
  .index {
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 6.9444444444vw;
    margin-left: -1px;
    background: transparent;
    padding-bottom: 6.9444444444vw;
  }
}
@media (max-width: 1024px) {
  .index {
    padding: 3.8rem 0 6.5rem;
  }
}
@media (min-width: 1025px) {
  .index .flex {
    gap: 13.1944444444vw;
  }
}
@media (min-width: 1025px) {
  .index .scroll {
    margin-top: 4.1666666667vw;
  }
}
@media (max-width: 1024px) {
  .index .scroll {
    text-align: center;
  }
}
.index .scroll a {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 10rem;
}
@media (max-width: 1024px) {
  .index .scroll a {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    height: 5.3rem;
  }
}
.index .scroll .arrow {
  animation: arrowMove 1.2s steps(3) infinite;
}
@media (max-width: 1024px) {
  .index .scroll .arrow {
    animation: arrowMove-bottom 1.2s steps(3) infinite;
    height: 0.9rem;
    display: flex;
  }
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(54px);
  }
}
@keyframes arrowMove-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(39px);
  }
}
.index .index__menu {
  width: 54.7222222222vw;
  height: 33.1944444444vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 1024px) {
  .index .index__menu {
    width: 89.8218829517vw;
    height: 77.0992366412vw;
    margin: 23rem auto 0;
    padding: 3.85rem 6.8702290076vw 4.25rem 6.6157760814vw;
  }
}
.index .index__menu::before {
  position: absolute;
  content: "";
  background-image: url(../images/index-frame.svg);
  background-size: contain;
  width: 54.7222222222vw;
  height: 33.1944444444vw;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .index .index__menu::before {
    background-image: url(../images/sp_index-frame.svg);
    width: 89.8218829517vw;
    height: 77.0992366412vw;
  }
}
.index .index__menu__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 1025px) {
  .index .index__menu__inner {
    width: 41.6666666667vw;
  }
}
@media (max-width: 1024px) {
  .index .index__menu__inner {
    width: 100%;
  }
}
.index .menu-title {
  margin-bottom: 5rem;
  display: flex;
}
@media (max-width: 1024px) {
  .index .menu-title {
    width: 18.320610687vw;
    margin-bottom: 7.6335877863vw;
  }
}
@media (max-width: 1024px) {
  .index .menu-title img {
    width: 100%;
  }
}
.index .index-list li {
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .index .index-list li .text-link {
    flex-shrink: 0;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .index .index-list li:nth-child(1) .text-link {
    width: 31.2977099237vw;
  }
}
@media (max-width: 1024px) {
  .index .index-list li:nth-child(2) .text-link {
    width: 41.2213740458vw;
  }
}
@media (max-width: 1024px) {
  .index .index-list li:nth-child(3) .text-link {
    width: 21.3740458015vw;
  }
}
.index .index-list li:last-child {
  margin-bottom: 0;
}
.index .index-list li a {
  transition: 0.3s all;
  color: #B9BFCE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 1024px) {
  .index .index-list li a {
    font-size: 4.5801526718vw;
    align-items: flex-end;
  }
}
.index .index-list li a .text-link-hover {
  display: none;
  transition: 0.3s all;
}
.index .index-list li a .ja {
  white-space: nowrap;
}
.index .index-list li a .line {
  background: #B9BFCE;
  height: 1px;
  width: 100%;
  display: block;
  transition: 0.3s all;
  margin: 0 1rem;
}
@media (min-width: 1025px) {
  .index .index-list li a:hover {
    color: #004199;
  }
  .index .index-list li a:hover .text-link {
    display: none;
  }
  .index .index-list li a:hover .line {
    background: #004199;
  }
  .index .index-list li a:hover .text-link-hover {
    display: inline-block;
  }
}

.what {
  position: relative;
  overflow: visible;
}
@media (min-width: 1025px) {
  .what {
    margin-left: -1px;
    justify-content: flex-start;
    padding-left: 6.9444444444vw;
  }
}
@media (max-width: 1024px) {
  .what {
    padding: 14.1rem 5.4707379135vw 6.9rem;
  }
}
.what .bg-2 {
  position: absolute;
  top: 0;
  z-index: 0;
}
@media (min-width: 1025px) {
  .what .bg-2 {
    width: auto;
    height: 68.4vh;
    left: -33.75vw;
  }
}
@media (max-width: 1024px) {
  .what .bg-2 {
    width: 89.058524173vw;
    margin: 0 auto;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1025px) {
  .what .bg-2 img {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .what .section-title {
    width: 37.9134860051vw;
    padding-top: 2.4rem;
  }
}
@media (max-width: 1024px) {
  .what .section-title img {
    width: 100%;
  }
}
.what .slide-right {
  width: 45.8333333333vw;
  position: relative;
  z-index: 1;
}
@media (max-width:1100px) {
  .what .slide-right {
    width: 69%;
  }
}
@media (min-width:1440px) {
  .what .slide-right {
    width: 66rem;
  }
}
@media (max-width: 1024px) {
  .what .slide-right {
    width: 100%;
  }
}
.what .what__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 22vh;
}
@media (min-width: 1025px) {
  .what .what__list {
    height: 48.9vh;
  }
}
@media (max-height: 700px) {
  .what .what__list {
    margin-top: 4vh;
  }
}
@media (max-width: 1024px) {
  .what .what__list {
    grid-template-columns: 1fr;
    margin-top: 3.6rem;
  }
}
.what .what__list .what__list__item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: 0.3s;
  position: relative;
  height: auto;
}
.what .what__list .what__list__item .what__list__item__text {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  z-index: 1;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
  .what .what__list .what__list__item .list-img {
    height: 48.9vh;
  }
}
@media (min-width: 1025px) {
  .what .what__list .what__list__item .list-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .list-img img {
    width: 100%;
  }
}
.what .what__list .what__list__item .list-title {
  text-align: center;
  color: #EAEAEA;
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .list-title {
    font-size: 5.0890585242vw;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .logo {
    width: 27.2264631043vw;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .logo img {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .what .what__list .what__list__item .detail-list,
  .what .what__list .what__list__item .disco-btn {
    display: none;
    transition: transform 0.3s ease;
  }
}
.what .what__list .what__list__item .disco-btn {
  margin: 2rem auto 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .disco-btn {
    width: 29.0076335878vw;
    margin: 5.0890585242vw auto 0;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .disco-btn img {
    width: 100%;
  }
}
.what .what__list .what__list__item .detail-list {
  margin: 2rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .detail-list {
    margin: 1rem auto 0;
  }
}
.what .what__list .what__list__item .detail-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #EAEAEA;
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .detail-list li {
    font-size: 3.5623409669vw;
    margin-bottom: 2.5445292621vw;
    line-height: 1;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item .detail-list li:last-child {
    margin-bottom: 0;
  }
}
.what .what__list .what__list__item:hover::after {
  height: 100%;
}
@media (min-width: 1025px) {
  .what .what__list .what__list__item:hover::after {
    position: absolute;
    content: "";
    background: rgba(133, 133, 133, 0.9);
    top: 0;
    left: 0;
    width: 100%;
  }
  .what .what__list .what__list__item:hover .what__list__item__text {
    transform: translate(-50%, -65%);
  }
  .what .what__list .what__list__item:hover .detail-list,
  .what .what__list .what__list__item:hover .disco-btn {
    display: block;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item:nth-child(3) .sp-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.0890585242vw;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item:nth-child(3) .disco-btn {
    margin-top: 2.7989821883vw;
    display: block;
  }
}
@media (max-width: 1024px) {
  .what .what__list .what__list__item:nth-child(3) .detail-list {
    margin: 0;
  }
}

.slide-scroll {
  position: relative;
}

.slide-scroll-02 {
  z-index: 10;
}

.slide-scroll-03 {
  z-index: 1;
}

.index__menu {
  position: relative;
  z-index: 100;
}

@media (min-width: 1025px) {
  .contact {
    margin-left: -1px;
  }
}
@media (max-width: 1024px) {
  .contact {
    padding: 2.4rem 5.0890585242vw 1rem;
  }
}
.contact .contact-scroll {
  width: 100%;
}
@media (max-width: 1024px) {
  .contact .section-title {
    width: 25.9541984733vw;
  }
}
@media (max-width: 1024px) {
  .contact .section-title img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .contact .scroll {
    margin: 8rem auto 0;
    text-align: center;
  }
}
.contact .scroll a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .contact .scroll a {
    flex-direction: column;
    align-items: center;
  }
}
.contact .scroll .en {
  display: flex;
}
.contact .scroll .arrow {
  animation: arrowMove-left 1.2s steps(3) infinite;
}
@media (min-width: 1025px) {
  .contact .scroll .arrow {
    margin-left: 7.2916666667vw;
  }
}
@media (max-width: 1024px) {
  .contact .scroll .arrow {
    animation: arrowMove-top 1.2s steps(3) infinite;
    height: 0.9rem;
    display: flex;
  }
}
@keyframes arrowMove-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-54px);
  }
}
@keyframes arrowMove-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-39px);
  }
}
@media (min-width: 1025px) {
  .contact .slide-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .contact .slide-inner .slide-left {
    width: 75.2083333333vw;
  }
}
@media (min-width: 1025px) {
  .contact .slide-inner .slide-right {
    width: 21.5277777778vw;
  }
}
.contact .contact__box {
  background: rgba(185, 191, 206, 0.5);
  margin-top: 5rem;
}
@media (min-width: 1025px) {
  .contact .contact__box {
    height: 68.7vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: scroll;
    scrollbar-width: none;
    padding: 5vh 3rem;
  }
}
@media (min-width:1440px) {
  .contact .contact__box {
    margin-top: 5rem;
  }
}
@media (max-height: 700px) {
  .contact .contact__box {
    margin-top: 2rem;
  }
}
@media (max-width: 1024px) {
  .contact .contact__box {
    margin-top: 3rem;
    padding: 3rem 1.6rem;
  }
}
.contact .contact__box .Form {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
}
@media (min-width: 1025px) {
  .contact .contact__box .Form {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.3rem;
  }
}
@media (min-width: 1025px) {
  .contact .contact__box .Form .Form__left {
    max-width: 41.6666666667vw;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .contact .contact__box .Form .Form__right {
    max-width: 25vw;
    width: 100%;
  }
}
.contact .contact__box .Form .Form-Item-Label-Required {
  background: #80A0CC;
  color: #fff;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 2px;
}
.contact .contact__box .Form .Form-Item {
  margin-bottom: 1.5rem;
}
@media (max-height: 800px) {
  .contact .contact__box .Form .Form-Item {
    margin-bottom: 1.4rem;
  }
}
@media (min-width: 1025px) {
  .contact .contact__box .Form .Form-Item:last-of-type {
    margin-bottom: 0;
  }
}
.contact .contact__box .Form .input-text {
  height: 2.8rem;
}
.contact .contact__box .Form input,
.contact .contact__box .Form textarea {
  background: #C3C3C3;
  border-radius: 2px;
  padding: 3px 15px 1px;
}
.contact .contact__box .Form input::-moz-placeholder {
  font-family: "Helvetica", "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #535353;
}
.contact .contact__box .Form input::placeholder {
  font-family: "Helvetica", "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #535353;
}
.contact .contact__box .Form textarea {
  width: 100%;
  height: 7.1rem;
}
@media (max-width: 1024px) {
  .contact .contact__box .Form textarea {
    height: 5rem;
  }
}
@media (min-width: 1025px) {
  .contact .contact__box .Form .Form-Item--company .input-text {
    max-width: 30rem;
  }
}
.contact .contact__box .Form .Form-Item--company .input-text {
  width: 100%;
}
@media (max-width: 1024px) {
  .contact .contact__box .Form .input-list li {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .contact .contact__box .Form .input-list li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .contact .contact__box .Form .Form-Item--name .input-list {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
}
.contact .contact__box .Form .Form-Item--name .input-list {
  width: 100%;
}
@media (min-width: 1025px) {
  .contact .contact__box .Form .Form-Item--name .input-list li {
    width: 50%;
  }
}
.contact .contact__box .Form .Form-Item--name .input-list .input-wrap {
  margin-bottom: 0.5rem;
}
.contact .contact__box .Form .Form-Item--name .input-list .input-text {
  width: 100%;
  height: 2.8rem;
}
.contact .contact__box .Form .Form-Item--adderss .input-text {
  width: 100%;
}
.contact .contact__box .Form .Form-Item--adderss .input-list li {
  margin-bottom: 0.5rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.contact .contact__box .Form .Form-Item--adderss .input-list li:last-child {
  margin-bottom: 0;
}
.contact .contact__box .Form .Form-Item--contact {
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .contact .contact__box .Form .Form-Item--contact {
    margin-top: 2.3rem;
    margin-bottom: 0;
  }
}
.contact .contact__box .Form #checkbox-563 {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact .contact__box .Form #checkbox-563 .wpcf7-list-item {
  color: #fff;
  font-weight: 400;
  margin-left: 0;
}
@media (max-height: 800px) {
  .contact .contact__box .Form #checkbox-563 .wpcf7-list-item {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .contact .contact__box .Form #checkbox-563 .wpcf7-list-item {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    line-height: 100%;
    letter-spacing: 0;
  }
}
.contact .contact__box .Form #checkbox-563 .wpcf7-list-item label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .contact .contact__box .Form #checkbox-563 .wpcf7-list-item label {
    align-items: center;
  }
}
.contact .contact__box .Form #checkbox-563 .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.contact .contact__box .Form #checkbox-563 .wpcf7-list-item input[type=checkbox] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  background: #D9D9D9;
  border-radius: 3px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  flex-shrink: 0;
}
.contact .contact__box .Form #checkbox-563 .wpcf7-list-item input[type=checkbox]:checked:before {
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(50deg);
  width: 3.5px;
  height: 7.5px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.contact .Form-Item-Label {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-height: 800px) {
  .contact .Form-Item-Label {
    font-size: 1.4rem;
  }
}
.contact .privacy-agree {
  text-align: center;
  margin-top: 1.5rem;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .contact .privacy-agree {
    margin-top: 1.5rem;
  }
}
.contact .privacy-agree input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: #D9D9D9;
  border-radius: 2px;
  border: solid 1px #fff;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}
.contact .privacy-agree input[type=checkbox]:checked:before {
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(50deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.contact .privacy-agree a {
  text-decoration: underline;
  color: #fff;
}
.contact .btn-wrap {
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.contact .btn-wrap input {
  max-width: 19rem;
  width: 100%;
  height: 5rem;
  background: #004199;
  color: #fff;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 2px;
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  .contact .btn-wrap input {
    max-width: 19.2rem;
  }
}
.contact .wpcf7-spinner {
  display: none !important;
}
.contact .copyright {
  color: #5C6374;
  font-size: 1.4rem;
  margin-top: 3.4722222222vw;
  text-align: right;
}
@media (max-width: 1024px) {
  .contact .copyright {
    text-align: center;
    margin-top: 5rem;
  }
}
.contact .privacy-policy {
  margin-top: 2rem;
}
@media (max-height: 800px) {
  .contact .privacy-policy {
    margin-top: 1rem;
  }
}
.contact .privacy-policy .privacy-text {
  height: 9rem;
  overflow-y: scroll;
  background: #C3C3C3;
  padding: 1rem 1.6rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0;
}

.contact .contact__box::-webkit-scrollbar {
  display: none;
}

.confirm_area .input-wrap {
  background: #C3C3C3;
  border-radius: 2px;
  padding: 3px 15px;
  word-break: break-all;
  height: 3rem;
}
.confirm_area .Form-Item--contact .input-wrap,
.confirm_area .Form-Item--category .input-wrap {
  height: auto;
}
.confirm_area .btn-wrap {
  margin: 5rem auto 0;
}

.thanks_area {
  color: #fff;
}
.thanks_area h2 {
  font-size: 3rem;
}
.thanks_area p {
  margin-top: 3rem;
  font-size: 2rem;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.company {
  position: relative;
}
@media (min-width: 1025px) {
  .company {
    margin-left: -1px;
    justify-content: flex-start;
    padding-left: 6.9444444444vw;
  }
}
@media (max-width: 1024px) {
  .company {
    padding: 57.5063613232vw 2rem 5rem;
    position: relative;
  }
}
.company .bg-3 {
  position: absolute;
  z-index: -1;
}
@media (min-width: 1025px) {
  .company .bg-3 {
    bottom: 0;
    left: -31.9444444444vw;
    width: auto;
    height: 54.6vh;
  }
}
@media (max-width: 1024px) {
  .company .bg-3 {
    top: 0;
    right: 0;
    width: 89.058524173vw;
  }
}
@media (min-width: 1025px) {
  .company .bg-3 img {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .company .bg-3 img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .company .section-title {
    width: 53.68956743vw;
    padding-top: 2.4rem;
  }
}
@media (max-width: 1024px) {
  .company .section-title img {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .company .slide-inner {
    width: 65.5555555556vw;
    margin: 0 auto;
  }
}

.company__table {
  margin: 20vh auto 0;
  color: #878C98;
  border-spacing: 0;
  width: 51.6666666667vw;
}
@media (min-width:1440px) {
  .company__table {
    max-width: 74.4rem;
  }
}
@media (max-height: 700px) {
  .company__table {
    margin: 9vh auto 0;
  }
}
@media (max-width: 1024px) {
  .company__table {
    width: 79.6437659033vw;
    margin: 5rem auto 0;
  }
}
@media (max-width: 1024px) {
  .company__table tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.company__table th,
.company__table td {
  text-align: left;
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 150%;
  border-bottom: solid 1px #878C98;
  padding: 1rem 0;
  margin-bottom: 0.9rem;
}
@media (max-width: 1024px) {
  .company__table th,
  .company__table td {
    border-bottom: none;
  }
}
.company__table th {
  font-weight: 500;
  vertical-align: text-top;
  width: 40%;
}
@media (max-width: 1024px) {
  .company__table th {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 2rem;
  }
}
.company__table td {
  font-weight: 400;
  width: 60%;
}
@media (max-width: 1024px) {
  .company__table td {
    width: 100%;
    border-bottom: solid 1px #878C98;
    padding-top: 0;
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */