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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 320px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #323232;
}

li {
  list-style: none;
}

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

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

em {
  font-style: normal;
}

section {
  padding: 12rem 2.5rem 16.6rem;
}
@media (max-width: 767px) {
  section {
    padding: 5.5rem 0 8.5rem;
  }
}

@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: 767px) {
  .flex {
    flex-direction: column;
  }
}

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

.blue {
  color: #0057d6;
}

.section-title span {
  display: block;
}
.section-title .en {
  font-size: 12rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-title .en {
    font-size: 7.2rem;
  }
}
.section-title .ja {
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 2.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-title .ja {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}

.section-catch {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .section-catch {
    margin-top: 3.2rem;
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}

.section-text {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2.4;
  margin-top: 3.6rem;
  text-align: justify;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .section-text {
    font-size: 1.6rem;
    line-height: 1.875;
    font-feature-settings: inherit;
    margin-top: 2.1rem;
    letter-spacing: 0.01em;
  }
}

/*=================================================
    アニメーション
===================================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInTrigger {
  opacity: 0;
}

.loop-text__box {
  display: flex;
  width: 100vw;
}

.loop-text__item {
  flex: 0 0 auto;
  white-space: nowrap;
}

.loop-text__item:nth-child(odd) {
  animation: loop 80s -40s linear infinite;
}

.loop-text__item:nth-child(even) {
  animation: loop2 80s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.header {
  background: transparent;
  padding: 3rem 0 3rem;
  height: 12rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    padding: 2.5rem 2.5rem 0 2.5rem;
  }
}
.header .logo-blue {
  display: none;
}
.header .contact-button {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 3rem;
  width: 20rem;
  display: block;
  padding: 1.5rem 0;
  border: solid 2px #fff;
  text-align: center;
}
@media (min-width:768px) and (max-width: 1100px) {
  .header .contact-button {
    font-size: 1.56vw;
    width: 19.53vw;
  }
}
@media (max-width: 767px) {
  .header .contact-button {
    display: none;
  }
}

.header__inner {
  width: 91.89%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header__inner {
    width: 100%;
  }
}
.header__inner .header__logo {
  max-width: 18.7rem;
  width: 100%;
}
@media (min-width:768px) and (max-width: 1100px) {
  .header__inner .header__logo {
    max-width: 18.26vw;
  }
}
@media (max-width: 767px) {
  .header__inner .header__logo {
    max-width: 13.6rem;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-right: 5rem;
}
@media (max-width:1200px) {
  .header__menu {
    gap: 1.5rem;
    margin-right: 2.88vw;
  }
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
.header__menu li a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0px 0px 40px rgb(79, 153, 198);
  letter-spacing: 0.05em;
}
@media (min-width:768px) and (max-width: 1100px) {
  .header__menu li a {
    font-size: 1.56vw;
  }
}
@media (max-width: 767px) {
  .header__menu li a {
    font-size: 1.6rem;
  }
}

/* ハンバーガーメニューボタン */
@media (min-width: 768px) {
  .hamburger-btn-wrapper {
    display: none;
  }
}
.hamburger-btn-wrapper .hamburger-btn {
  width: 3.2rem;
  height: 3.8rem;
  position: relative;
  z-index: 1000;
}
.hamburger-btn-wrapper .hamburger-btn .hamburger-btn__line {
  position: absolute;
  background: #fff;
  width: 3.2rem;
  height: 2px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.hamburger-btn-wrapper .hamburger-btn .hamburger-btn__line:nth-of-type(1) {
  top: 0;
}
.hamburger-btn-wrapper .hamburger-btn .hamburger-btn__line:nth-of-type(2) {
  top: 0.7rem;
}
.hamburger-btn-wrapper .hamburger-btn .text-menu {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ハンバーガーメニュー SPのみ */
.hamburger-menu {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 87, 214, 0.85);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}
@media (min-width: 768px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu .hamburger-menu-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 767px) {
  .hamburger-menu .hamburger-menu-inner {
    top: 35%;
  }
}
.hamburger-menu .hamburger-menu-inner a {
  color: #fff;
}
.hamburger-menu .hamburger-menu__list li {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.hamburger-menu .hamburger-menu__list li:last-child {
  margin-bottom: 0;
}
.hamburger-menu .hamburger-menu__contact {
  font-size: 1.8rem;
  font-weight: 500;
  width: 20rem;
  border: solid 2px #fff;
  border-radius: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  display: block;
  margin: 3rem auto 0;
}

/* ハンバーガーメニュー　open */
.hamburger-menu.active {
  opacity: 1;
  visibility: visible;
}

.hamburger-btn.active .hamburger-btn__line {
  left: 25%;
  right: 25%;
  background: #fff;
}
.hamburger-btn.active .hamburger-btn__line:nth-child(1) {
  transform: rotate(-45deg);
  top: 1.2rem;
}
.hamburger-btn.active .hamburger-btn__line:nth-child(2) {
  transform: rotate(45deg);
  top: 1.2rem;
}
.hamburger-btn.active .text-menu {
  display: none;
}

/* スクロールしたらヘッダーメニューのフォントカラー変更 */
.header.headerColorScroll {
  transition: color 0.4s ease-out;
}
@media (min-width: 768px) {
  .header.headerColorScroll a {
    color: #0057d6;
    text-shadow: none;
  }
}
@media (min-width: 768px) {
  .header.headerColorScroll {
    background: rgba(255, 255, 255, 0.45);
  }
}
@media (max-width: 767px) {
  .header.headerColorScroll {
    background: transparent;
  }
}
.header.headerColorScroll .contact-button {
  border: solid 2px #0057d6;
}
.header.headerColorScroll .logo-white {
  display: none;
}
.header.headerColorScroll .logo-blue {
  display: block;
}
.header.headerColorScroll .hamburger-btn-wrapper .hamburger-btn .hamburger-btn__line {
  background: #0057d6;
}
.header.headerColorScroll .hamburger-btn-wrapper .hamburger-btn .text-menu {
  color: #0057d6;
}
.header.headerColorScroll .hamburger-btn.active .hamburger-btn__line {
  background: #fff;
}

.page-thanks .header {
  transition: color 0.4s ease-out;
}
@media (min-width: 768px) {
  .page-thanks .header {
    background: rgba(255, 255, 255, 0.45);
  }
}
@media (max-width: 767px) {
  .page-thanks .header {
    background: transparent;
  }
}
@media (min-width: 768px) {
  .page-thanks .header a {
    color: #0057d6;
  }
}
.page-thanks .header .contact-button {
  border: solid 2px #0057d6;
}
.page-thanks .header .logo-white {
  display: none;
}
.page-thanks .header .logo-blue {
  display: block;
}
.page-thanks .header .hamburger-btn-wrapper .hamburger-btn .hamburger-btn__line {
  background: #0057d6;
}
.page-thanks .header .hamburger-btn-wrapper .hamburger-btn .text-menu {
  color: #0057d6;
}
.page-thanks .header .hamburger-btn.active .hamburger-btn__line {
  background: #fff;
}
.page-thanks .header .header__menu li a {
  text-shadow: none;
}

.mv {
  position: relative;
}
@media (max-width: 767px) {
  .mv {
    height: auto;
  }
}
.mv .mv__img {
  width: 100%;
}
.mv .mv__text {
  position: absolute;
  left: 8rem;
  top: 24.19vw;
}
@media (max-width: 767px) {
  .mv .mv__text {
    left: 2.5rem;
    top: inherit;
    bottom: 44.59vw;
  }
}
.mv .mv__text .mv__text__top {
  color: #fff;
  font-size: 1.67vw;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mv .mv__text .mv__text__top {
    font-size: 4.8vw;
    margin-bottom: 1rem;
  }
}
.mv .mv-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 10.94vw;
  line-height: 0.9047619048;
  position: relative;
}
@media (max-width: 767px) {
  .mv .mv-title {
    font-size: 19.2vw;
  }
}
.mv .mv-title .text-overlay {
  mix-blend-mode: overlay;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.mv .mv-title .text-clear {
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about {
  position: relative;
  overflow: hidden;
}
.about .flex {
  align-items: flex-start;
  justify-content: space-between;
  gap: 8.98%;
}
@media (max-width: 767px) {
  .about .flex {
    flex-direction: column-reverse;
    gap: 3.7rem;
  }
}
.about .about__img {
  width: 41.02%;
}
@media (max-width: 767px) {
  .about .about__img {
    width: 100%;
    padding: 0 1.6rem;
  }
}
.about .about__img .about-img-1 {
  max-width: 44rem;
  width: 100%;
}
@media (max-width: 767px) {
  .about .about__img .about-img-1 {
    max-width: 100%;
    width: 77.07vw;
  }
}
.about .about__img .about-img-2 {
  width: 100%;
  max-width: 34rem;
  margin: 6.3rem 0 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .about .about__img .about-img-2 {
    max-width: 100%;
    width: 59.47vw;
    margin-top: 4.3rem;
  }
}
.about .about__text {
  width: 50%;
  padding-top: 3.1rem;
}
@media (max-width: 767px) {
  .about .about__text {
    width: 100%;
    padding: 0 2.5rem;
  }
}
.about .about__text .section-title .ja {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 1.2rem;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .about .about__text .section-title .ja {
    font-size: 2.4rem;
  }
}
.about .about__text .section-title .blue {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .about .about__text .section-title .blue {
    font-size: 1.6rem;
  }
}
.about .bg-text {
  font-size: 32rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: #1e57a7;
  opacity: 0.06;
  white-space: nowrap;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: -1.9rem;
  letter-spacing: 0.017em;
  font-feature-settings: "palt";
  z-index: -1;
  line-height: 0.7625;
}
@media (max-width: 767px) {
  .about .bg-text {
    bottom: -0.5rem;
    font-size: 24rem;
    line-height: 0.75;
  }
}

.business {
  background-image: url(../images/pc_bg-business.png);
  background-size: cover;
  background-position: left;
  width: 100%;
}
@media (min-width: 768px) {
  .business {
    padding: 14.5rem 2.5rem 16.2rem;
  }
}
@media (max-width: 767px) {
  .business {
    background-image: url(../images/sp_bg-business.png);
    background-position: center;
    padding: 6.6rem 0 8.1rem;
  }
}
.business .flex {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .business .flex {
    flex-direction: column-reverse;
    padding: 0 2.5rem;
  }
}
@media (max-width: 767px) {
  .business .section-title {
    margin: 0 0 0 auto;
  }
}
.business .section-title .ja {
  text-align: right;
}
@media (min-width: 768px) {
  .business .section-text {
    margin-top: 1.7rem;
  }
}
.business .business__list {
  margin-top: 11.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4.2rem;
}
@media (max-width: 767px) {
  .business .business__list {
    margin-top: 3.4rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.3rem;
  }
}
.business .business__list .business__list__top {
  display: flex;
  gap: 3.8rem;
  align-items: center;
}
@media (max-width: 767px) {
  .business .business__list .business__list__top {
    width: 100%;
    justify-content: center;
  }
}
.business .business__list .business__list__item {
  border-radius: 50%;
  border: solid 2px #005be4;
  width: 31.8rem;
  height: 31.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width:768px) and (max-width: 1100px) {
  .business .business__list .business__list__item {
    width: 24.84vw;
    height: 24.84vw;
  }
}
@media (max-width: 767px) {
  .business .business__list .business__list__item {
    width: 16rem;
    height: 16rem;
  }
}
.business .business__list .business__list__item .number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 6.4rem;
  color: #0057d6;
  opacity: 0.4;
}
@media (min-width:768px) and (max-width: 1100px) {
  .business .business__list .business__list__item .number {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .business .business__list .business__list__item .number {
    font-size: 3.2rem;
  }
}
.business .business__list .business__list__item .list-text {
  font-size: 3.6rem;
  font-weight: 500;
  color: #005be4;
  margin-top: 1rem;
}
@media (min-width:768px) and (max-width: 1100px) {
  .business .business__list .business__list__item .list-text {
    font-size: 2.81vw;
  }
}
@media (max-width: 767px) {
  .business .business__list .business__list__item .list-text {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}

.company {
  background-image: url(../images/pc_bg-company.png);
  background-size: cover;
  padding: 13.9rem 2.5rem 15.7rem;
}
@media (max-width: 767px) {
  .company {
    background-image: url(../images/sp_bg-company.png);
    padding: 6.7rem 0 7.8rem;
  }
}
.company .flex {
  align-items: flex-start;
  gap: 8.28%;
}
@media (min-width:768px) and (max-width: 1100px) {
  .company .flex {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .company .content-width {
    padding: 0 2.5rem;
  }
}
@media (min-width: 768px) {
  .company .company__text {
    margin-top: 2.1rem;
    width: 60.16%;
  }
}
@media (min-width:768px) and (max-width: 1100px) {
  .company .company__text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .company .company__text {
    width: 100%;
  }
}
.company .company__table {
  width: 100%;
  max-width: 77rem;
  border-collapse: collapse;
}
@media (min-width:768px) and (max-width: 1100px) {
  .company .company__table {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .company .company__table {
    width: 100%;
    max-width: 100%;
    margin-top: 4rem;
  }
}
.company .company__table tr {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .company .company__table tr {
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
  }
}
.company .company__table tr th {
  color: #0057d6;
  text-align: left;
  padding: 3rem 4.5rem;
  border-bottom: solid 2px rgba(0, 87, 214, 0.4);
}
@media (min-width: 768px) {
  .company .company__table tr th {
    padding: 3.5rem 2.4rem 3.4rem 4.1rem;
  }
}
@media (max-width: 767px) {
  .company .company__table tr th {
    padding: 1.8rem 0 0 0.7rem;
    border-bottom: none;
  }
}
.company .company__table tr td {
  padding: 3rem 4.5rem;
  border-bottom: solid 2px rgba(0, 87, 214, 0.4);
}
@media (min-width: 768px) {
  .company .company__table tr td {
    padding: 3rem 4.5rem 3rem 0;
  }
}
@media (max-width: 767px) {
  .company .company__table tr td {
    padding: 1rem 0 1.9rem 0.5rem;
    letter-spacing: 0.05em;
  }
}
.company .company__table tr:first-of-type th,
.company .company__table tr:first-of-type td {
  border-top: solid 2px rgba(0, 87, 214, 0.4);
}
@media (max-width: 767px) {
  .company .company__table tr:first-of-type td {
    border-top: none;
  }
}
.company .googlemap {
  margin-top: 4rem;
  max-width: 77rem;
}
@media (min-width:768px) and (max-width: 1100px) {
  .company .googlemap {
    max-width: 100%;
  }
}

.greeting {
  position: relative;
}
@media (min-width: 768px) {
  .greeting {
    padding: 14.4rem 2.5rem 15.7rem;
  }
}
@media (max-width: 767px) {
  .greeting {
    padding: 6.8rem 0 7.5rem;
  }
}
.greeting .flex {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .greeting .flex {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .greeting .content-width {
    padding: 0 2.5rem;
  }
}
.greeting .greeting__text-wrapper {
  width: 56.25%;
}
@media (max-width: 767px) {
  .greeting .greeting__text-wrapper {
    width: 100%;
  }
}
.greeting .greeting__text-wrapper .greeting__name {
  text-align: right;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .greeting .greeting__text-wrapper .greeting__name {
    margin-top: 2rem;
  }
}
.greeting .greeting__text-wrapper .greeting__name .small {
  font-size: 1.8rem;
  margin-right: 1.6rem;
}
@media (max-width: 767px) {
  .greeting .greeting__text-wrapper .greeting__name .small {
    margin-right: 2.4rem;
  }
}
.greeting .greeting__text-wrapper .greeting__name .name {
  font-size: 3.2rem;
  letter-spacing: 0.15em;
}
@media (max-width: 767px) {
  .greeting .greeting__text-wrapper .greeting__name .name {
    letter-spacing: 0.05em;
  }
}
@media (min-width: 768px) {
  .greeting .section-text {
    margin-top: 1.7rem;
  }
}
@media (max-width: 767px) {
  .greeting .section-title {
    margin: 0 0 0 auto;
  }
}
.greeting .section-title .ja {
  text-align: right;
}
.greeting .bg-greeting {
  position: absolute;
  width: 43.4rem;
  right: 0;
  bottom: 2.2rem;
}
@media (max-width: 767px) {
  .greeting .bg-greeting {
    width: 23rem;
    bottom: 1.5rem;
  }
}

.contact {
  background: #edeef0;
  padding: 13.9rem 2.5rem 15.8rem;
}
@media (max-width: 767px) {
  .contact {
    padding: 6.7rem 2.5rem 8.1rem;
  }
}
@media (max-width: 767px) {
  .contact .content-width {
    padding: 1.9rem 1.5rem 3rem;
  }
}
.contact .section-title {
  text-align: center;
}
.contact .contact-text {
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contact .contact-text {
    font-size: 1.8rem;
  }
}

.form-width {
  background: #fff;
  margin-top: 3rem;
  padding: 8.5rem 2.5rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .form-width {
    margin-top: 2.5rem;
  }
}

#formWrap {
  max-width: 100rem;
  margin: 0 auto;
}

.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.formTable input,
.formTable textarea {
  border: solid 1px #74a8f3;
  border-radius: 4px;
  width: 100%;
  padding: 2.8rem 2.3rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .formTable input,
  .formTable textarea {
    padding: 1.3rem 1rem;
  }
}
.formTable textarea {
  height: 32rem;
}
@media (max-width: 767px) {
  .formTable textarea {
    height: 24rem;
  }
}
.formTable tr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .formTable tr {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.formTable tr:last-of-type {
  margin-bottom: 0;
}
.formTable td {
  width: 71%;
  word-break: break-word;
}
@media (max-width: 767px) {
  .formTable td {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.formTable th {
  margin-right: 4.4%;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .formTable th {
    padding-top: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .formTable th .flex {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .formTable th .form-title {
    margin-right: 0.8rem;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
  }
}
.formTable th .requred {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: #0057d6;
  border-radius: 6px;
  width: 44px;
  height: 22px;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formTable td,
.formTable th {
  color: #0057d6;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .formTable td,
  .formTable th {
    font-size: 1.4rem;
  }
}

.formTable th {
  width: 24%;
}
@media (max-width: 767px) {
  .formTable th {
    width: 100%;
  }
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #cccccc;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #cccccc;
  font-weight: 400;
}

.privacy {
  margin-top: 4rem;
  padding: 3.5rem 5rem 7rem;
  background: #f7f8f9;
  border-radius: 4px;
  border: solid 1px #cccccc;
  width: 100%;
  height: 32rem;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .privacy {
    margin-top: 2rem;
    padding: 3rem 1rem;
  }
}
.privacy .privacy-top-title {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .privacy .privacy-top-title {
    font-size: 1.9rem;
  }
}
.privacy .privacy__item {
  margin-bottom: 3.5rem;
}
.privacy .privacy__item .privacy-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .privacy .privacy__item .privacy-title {
    font-size: 1.6rem;
  }
}
.privacy .privacy__item .privaciy-text {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .privacy .privacy__item .privaciy-text {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

.confirm-button-wrapper .confirm-button {
  background: #0057d6;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border: solid 2px #0057d6;
  border-radius: 6px;
  width: 100%;
  height: 8.8rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .confirm-button-wrapper .confirm-button {
    margin-top: 2.4rem;
    height: 8rem;
    letter-spacing: 0.05em;
  }
}

.button-wrapper {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 767px) {
  .button-wrapper {
    flex-direction: column;
  }
}

.button-submit {
  background: #0057d6;
  border: solid 2px #0057d6;
}

.button-back {
  background: #868b96;
  border: solid 2px #868b96;
}

.button-submit,
.button-back {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 6px;
  width: 50%;
  height: 8.8rem;
}
@media (max-width: 767px) {
  .button-submit,
  .button-back {
    width: 100%;
  }
}

.error-title {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .error-title {
    text-align: left;
  }
}

/* 確認画面 */
@media (max-width: 767px) {
  .confirm .content-width {
    padding: 3rem 1.5rem 3rem;
  }
}
.confirm .attention {
  color: red;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .confirm .attention {
    font-size: 1.6rem;
    text-align: left;
  }
}
.confirm .formTable {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .confirm .formTable {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .confirm .formTable th,
  .confirm .formTable td {
    font-size: 1.6rem;
  }
}
.confirm .formTable th {
  padding-top: 0;
  text-align: left;
}
.confirm .formTable td {
  color: #323232;
  font-weight: 400;
}
.confirm .button-wrapper {
  margin-top: 4rem;
}

.footer {
  background-image: url(../images/pc_bg-footer.jpg);
  background-size: cover;
  padding: 15.9rem 2.5rem 8rem;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 4rem 2.5rem 7.8rem;
  }
}
.footer .footer__flex {
  align-items: flex-start;
  margin-top: 16.2rem;
}
@media (max-width: 767px) {
  .footer .footer__flex {
    align-items: center;
    margin-top: 8.3rem;
  }
}
.footer .footer__logo {
  width: 18.7rem;
}
@media (max-width: 767px) {
  .footer .footer__logo {
    width: 18.4rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer .footer__flex__address {
    width: 100%;
    text-align: center;
  }
}
.footer .footer__flex__address .address {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  font-weight: 400;
  margin-top: 1.5rem;
  color: #999;
  letter-spacing: 0.05em;
}
@media (min-width:768px) and (max-width: 1100px) {
  .footer .footer__flex__address .address {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__flex__address .address {
    line-height: 1.5;
    font-size: 1.6rem;
    margin-top: 2.8rem;
    font-feature-settings: "palt";
  }
}
@media (max-width: 767px) {
  .footer .footer__flex__address .address span {
    margin-top: 1.6rem;
    display: inline-block;
  }
}
.footer .footer__menu {
  display: flex;
  align-items: center;
  gap: 4.3rem;
}
@media (min-width:768px) and (max-width: 1100px) {
  .footer .footer__menu {
    gap: 1.6rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__menu {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: 3.1rem;
    gap: 1.6rem;
  }
}
.footer .footer__menu li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (min-width:768px) and (max-width: 1100px) {
  .footer .footer__menu li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__menu li a {
    font-size: 1.6rem;
  }
}
.footer .copryright {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 10rem;
  color: #999;
  text-align: right;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footer .copryright {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 3.5rem;
  }
}
.footer .top-button {
  width: 8rem;
  margin: -1rem 0.6rem 0 auto;
}
@media (max-width:1200px) {
  .footer .top-button {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .footer .top-button {
    display: none;
  }
}
.footer .footer__recruit {
  align-items: center;
  justify-content: flex-start;
  background: #edeef0;
  width: 100%;
}
@media (max-width: 767px) {
  .footer .footer__recruit {
    flex-direction: column-reverse;
  }
}
.footer .footer__recruit .section-title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width:1200px) {
  .footer .footer__recruit .section-title-wrapper .section-title .en {
    font-size: 7rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__recruit .section-title-wrapper .section-title .en {
    font-size: 7.2rem;
  }
}
@media (max-width:1200px) {
  .footer .footer__recruit .section-title-wrapper .section-title .ja {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__recruit .section-title-wrapper .section-title .ja {
    font-size: 1.6rem;
  }
}
.footer .footer__recruit .section-title-wrapper .arrow {
  width: 8rem;
  margin-top: 2.7rem;
}
@media (max-width:1200px) {
  .footer .footer__recruit .section-title-wrapper .arrow {
    width: 5rem;
    margin-top: 1.1rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__recruit .section-title-wrapper .arrow {
    width: 4.8rem;
    margin-top: 1.6rem;
  }
}
.footer .footer__recruit .footer__recruit__img {
  width: 44.53%;
}
@media (max-width: 767px) {
  .footer .footer__recruit .footer__recruit__img {
    width: 100%;
  }
}
.footer .footer__recruit .footer__recruit__text {
  width: 42.21%;
  margin-left: 7.17%;
}
@media (max-width:1200px) {
  .footer .footer__recruit .footer__recruit__text {
    width: 45.41%;
  }
}
@media (max-width: 767px) {
  .footer .footer__recruit .footer__recruit__text {
    width: 100%;
    margin-left: 0;
    padding: 3rem 2.2rem;
  }
}
.footer .footer__recruit .footer__recruit__text p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.05em;
  margin-top: 3.5rem;
}
@media (max-width:1200px) {
  .footer .footer__recruit .footer__recruit__text p {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__recruit .footer__recruit__text p {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */