@charset "UTF-8";
.fv {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.fv__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.fv__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 6s ease;
  transition: opacity 1.5s ease, -webkit-transform 6s ease;
  transition: opacity 1.5s ease, transform 6s ease;
  transition: opacity 1.5s ease, transform 6s ease, -webkit-transform 6s ease;
}
.fv__slide.active {
  opacity: 1;
  z-index: 1;
}
.fv__slide-l {
  background-position: left;
}
.fv__catch {
  position: absolute;
  bottom: 35%;
  left: 5.33%;
  color: #fff;
  font-size: 7.47vw;
  letter-spacing: 0.26em;
  line-height: 200%;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: slideInLeft 1.2s ease-out forwards;
          animation: slideInLeft 1.2s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 1080px) {
  .fv {
    height: 100vh;
  }
  .fv__catch {
    font-size: 2.75rem;
  }
}
.scroll {
  left: 48%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  bottom: 16%;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  z-index: 11;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-out forwards;
          animation: fadeIn 1s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
  background-color: #fff;
  bottom: -68px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}

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

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.about {
  position: relative;
}
.about__inner {
  padding-left: 10.67%;
}
.about__text {
  display: block;
}
.about__text + .about__text {
  margin-top: 20px;
}
.about__text-container {
  margin-top: 32px;
  padding-right: 12%;
}
.about__contents::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 89.33%;
  height: 28%;
  background-color: #F5F5F5;
  z-index: -1;
}
.about__image-pc {
  display: none;
}

@media (min-width: 1080px) {
  .about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .about__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__text-container {
    margin-top: 0;
  }
  .about__image {
    display: none;
  }
  .about__image-pc {
    display: block;
    width: 44%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .about__contents::before {
    top: 144px;
    height: 72%;
  }
}
.business {
  background-color: #F5F5F5;
}
.business__inner {
  padding-left: 5.33%;
}
.business__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  padding-bottom: 32px;
}
.business__item {
  position: relative;
  z-index: 0;
  padding: 0 5.33%;
}
.business__item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: calc(100% + 12px);
  background-color: #fff;
  z-index: -1;
}
.business__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business__head-sub {
  color: #C2240F;
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}
.business__head-main {
  font-size: 1.25rem;
  font-weight: 600;
  margin-left: 10px;
}
.business__contents-name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
}
.business__contents-text {
  display: block;
  margin-top: 12px;
  padding-right: 5.33%;
}

@media (min-width: 1080px) {
  .business__inner {
    padding-right: 5.33%;
  }
  .business__contents-list {
    gap: 84px;
    padding-bottom: 52px;
  }
  .business__contents-item::before {
    top: 48px;
  }
  .business__contents-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .business__contents-head-sub {
    font-size: 6rem;
  }
  .business__contents-head-main {
    font-size: 1.5rem;
  }
  .business__contents-name {
    font-size: 1.25rem;
  }
}
.divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.divider__image {
  width: 33.3333%;
  display: block;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media (min-width: 1080px) {
  .divider__image {
    height: 220px;
  }
}

.record {
  background-color: #F5F5F5;
}
.record__inner {
  padding: 0 5.33%;
}
.record__list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.record__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 32px 10.67%;
  width: 100%;
}
.record__name {
  font-weight: 600;
  font-size: 1.25rem;
  position: relative;
}
.record__name::before {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 20px;
  height: 2px;
  background-color: #C2240F;
}
.record__img {
  margin-top: 32px;
}
.record__caption {
  margin-top: 12px;
  display: block;
}

@media (min-width: 768px) {
  .record__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5.33%;
    gap: 24px;
  }
  .record__item {
    padding: 44px 10.67%;
  }
  .record__caption {
    margin-left: 5.33%;
  }
}
.voice {
  background-image: url(../img/voice-bg.jpg);
  background-position: center center;
}
.voice__inner {
  padding-left: 5.33%;
}
.voice__list {
  padding-bottom: 24px;
}
.voice__item {
  position: relative;
  z-index: 0;
  padding: 0 5.33%;
}
.voice__item + .voice__item {
  margin-top: 60px;
}
.voice__item::before {
  position: absolute;
  content: "";
  background-color: #fff;
  top: 16px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 16px);
}
.voice__head {
  font-size: 1.25rem;
  font-weight: 600;
}
.voice__customer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.voice__customer-img {
  width: 80px;
}
.voice__customer-info-main {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
.voice__customer-info-sub {
  display: block;
  color: #666666;
  font-size: 0.875rem;
}
.voice__text {
  display: block;
  margin-top: 20px;
  padding-right: 5.33%;
}

@media (min-width: 1080px) {
  .voice__inner {
    padding-right: 5.33%;
  }
  .voice__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .voice__item {
    width: 50%;
  }
  .voice__item + .voice__item {
    margin-top: 0;
  }
  .voice__item::before {
    width: 94%;
  }
}
.people__inner {
  padding-left: 5.33%;
}
.people__interview-inner {
  padding-left: 5.33%;
}
.people__image {
  width: 100%;
  border-radius: 60px 0 0 0;
}
.people__image-pc {
  display: none;
}
.people__text-wrap {
  margin-top: 32px;
  padding-right: 5.33%;
}
.people__text {
  display: block;
}
.people__text + .people__text {
  margin-top: 20px;
}
.people__text-bold {
  font-weight: 600;
}
.people__message {
  position: relative;
  padding: 0 5.33%;
  margin-top: 40px;
  margin-bottom: 32px;
}
.people__message:before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #F5F5F5;
  top: 16px;
  left: 0;
  width: 100%;
  height: calc(100% + 16px);
}
.people__message-head {
  font-size: 1.25rem;
  font-weight: 600;
}
.people__message-text {
  display: block;
  margin-top: 12px;
}

@media (min-width: 1080px) {
  .people__interview-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .people__image {
    display: none;
  }
  .people__image-pc {
    display: block;
    border-radius: 100px 0 0 0;
    width: 50%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .people__pc-wrap {
    padding-right: 80px;
  }
  .people__text-bold {
    font-size: 1.25rem;
  }
}
.recruit {
  background-image: url(../img/recruit.jpg);
  background-position: center center;
  padding: 40px 0 0 0 !important;
}
.recruit__inner {
  padding: 0 5.33%;
}
.recruit__container {
  background-color: #fff;
  padding: 40px 10.67% 60px 10.67%;
}
.recruit__head {
  text-align: center;
  color: #fff;
}
.recruit__head-sub {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
}
.recruit__head-main {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
}
.recruit__text {
  display: block;
}
.recruit__text + .recruit__text {
  margin-top: 20px;
}
.recruit__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 1080px) {
  .recruit {
    padding: 80px 0 0 0 !important;
  }
  .recruit__container {
    padding: 60px 0;
  }
  .recruit__text {
    text-align: center;
  }
  .recruit__head-main {
    font-size: 1.75rem;
  }
  .recruit__button-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.application__wrap + .application__wrap {
  margin-top: 60px;
}
.application__inner {
  padding: 0 5.33% 0 10.67%;
}
.application__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D0D0D0;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.application__label {
  font-weight: 600;
  width: 88px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.875rem;
}
.application__caption {
  font-size: 0.875rem;
}
.application__contact-link {
  color: #C2240F;
  text-decoration: underline;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.application__contact-link:hover {
  color: #D0D0D0;
}

@media (min-width: 1080px) {
  .application__wrap + .application__wrap {
    margin-top: 100px;
  }
  .application__list {
    max-width: 440px;
  }
}
.contact-section {
  background-color: #F5F5F5;
}
.contact-section__inner {
  padding: 0 5.33% 0 10.67%;
}

@media (min-width: 1080px) {
  .contact-section__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.company__inner {
  padding: 0 5.33% 0 10.67%;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  color: #222222;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}
@media (min-width: 1080px) {
  body {
    font-size: 1rem;
  }
}
body.is-fixed {
  overflow: hidden;
}

.section {
  padding: 60px 0;
}
@media (min-width: 1080px) {
  .section {
    padding: 100px 0;
  }
}

.js-fade {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.js-fade.is-visible {
  opacity: 1;
}

.section__head {
  margin-bottom: 28px;
}
.section__head-sub {
  color: #C2240F;
  font-size: 0.875rem;
  display: block;
  font-weight: 700;
}
.section__head-main {
  color: #222222;
  font-size: 1.25rem;
  display: block;
  font-weight: 600;
  margin-top: 4px;
}
@media (min-width: 1080px) {
  .section__head-main {
    font-size: 1.5rem;
  }
}
.section__head-inner {
  padding-left: 5.33%;
}

.button {
  width: 100%;
  max-width: 240px;
  padding: 12px 20px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: inherit;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (min-width: 1080px) {
  .button {
    width: 240px;
  }
}
.button__text {
  font-weight: 600;
}
.button__icon-next, .button__icon-plane {
  width: 18px;
  height: 18px;
}
.button__icon-next:hover {
  color: #fff;
}
.button__white {
  margin: auto;
  border: 1.5px solid #C2240F;
  color: #C2240F;
}
.button__white:hover {
  background-color: #C2240F;
  color: #fff;
}
.button__red {
  color: #fff;
  background-color: #C2240F;
}
.button__red:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.button__red-l {
  margin-left: 0;
}
@media (min-width: 1080px) {
  .button__red-l {
    margin: auto;
  }
}
.button__red-l, .button__red-back {
  margin-top: 32px;
}
.button__red-head {
  margin-top: 20px;
  max-width: 500px;
}
@media (min-width: 1080px) {
  .button__red-head {
    border-radius: 0 0 0 20px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100px;
    width: 280px;
    margin-top: 0;
  }
  .button__red-head.is-scrolled {
    height: 76px;
    border-radius: 0;
  }
}

@media (min-width: 1080px) {
  .br__pc-toggle {
    display: none;
  }
}

.br__sp-toggle {
  display: none;
}
@media (min-width: 1080px) {
  .br__sp-toggle {
    display: inline;
  }
}

@media (min-width: 1080px) {
  .header__sp {
    display: none;
  }
}

.header__pc {
  display: none;
}
@media (min-width: 1080px) {
  .header__pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}
.header.is-visible {
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__logo {
  display: inline-block;
  padding: 26px 32px 26px 5.33%;
}
.header__logo img {
  width: 100px;
}
.header__menu-button {
  border: none;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  color: transparent;
  background-color: transparent;
  background-image: url(../img/icon-menu.svg);
  background-size: 100% auto;
  z-index: 1000;
}
.header__menu-button.is-checked {
  background-image: url(../img/icon-menu-close.svg);
}
.header__contents {
  height: 100vh;
  background-color: #F5F5F5;
  padding: 0 20px;
  padding-top: 100px;
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.header__nav-list {
  border-bottom: 1px solid #D0D0D0;
}
.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #D0D0D0;
  padding: 16px 0;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.header__nav-link:hover {
  color: #C2240F;
}
.header__nav-link-text {
  font-size: 0.875rem;
  font-weight: 600;
}
.header__nav-link-icon {
  width: 24px;
  height: 24px;
}

@media (min-width: 1080px) {
  .header img {
    width: 120px;
  }
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    border: none;
    margin-top: 6px;
  }
  .header__nav-link {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
  }
  .header.is-scrolled {
    background: #fff;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .header__nav-link.is-scrolled {
    color: #222222;
  }
  .header__nav-link.is-scrolled:hover {
    color: #C2240F;
  }
}
body.is-no-scroll-effect .header {
  background-color: #fff !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  -webkit-animation: none !important;
          animation: none !important;
}
body.is-no-scroll-effect .header__logo-image {
  content: url("../img/logo-a.png") !important;
}
body.is-no-scroll-effect .header__nav-link {
  color: #222222 !important;
}
body.is-no-scroll-effect .header__nav-link:hover {
  color: #C2240F !important;
}

.privacy-policy__inner {
  padding: 100px 0 100px 5.33%;
}
@media (min-width: 1080px) {
  .privacy-policy__inner {
    padding: 120px 10.67%;
  }
}
.privacy-policy__text {
  display: block;
}
.privacy-policy__text + .privacy-policy__text {
  margin-top: 20px;
}
.privacy-policy__wrap {
  position: relative;
}
.privacy-policy__wrap::before {
  position: absolute;
  content: "";
  background-color: #F5F5F5;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.privacy-policy__text-contents {
  padding: 0 10.67% 0 5.33%;
}
.privacy-policy__link {
  font-size: 0.875rem;
  color: #666666;
  text-decoration: underline;
}

.contact__inner {
  padding: 100px 0 100px 5.33%;
}
@media (min-width: 1080px) {
  .contact__inner {
    padding: 120px 10.67%;
  }
}
.contact__contents {
  position: relative;
}
.contact__contents::before {
  content: "";
  position: absolute;
  background-color: #F5F5F5;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 10.67% 0 5.33%;
}
form .privacy-policy-text {
  text-align: center;
}
form .privacy-policy-link {
  text-decoration-line: underline;
  color: #C2240F;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea {
  padding: 12px;
  font-size: 0.875rem;
  margin-top: 6px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #666666;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #666666;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #666666;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #666666;
}

input::placeholder,
textarea::placeholder {
  color: #666666;
}

.thanks {
  margin-top: 60px;
  padding: 60px 0;
}
.thanks__inner {
  padding: 0 5.33%;
}
.thanks__container {
  background-color: #F5F5F5;
  padding: 40px 5.33%;
}
.thanks__container-name {
  color: #C2240F;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.thanks__container-text {
  display: block;
  margin-top: 20px;
}
.thanks__container-address {
  background-color: #fff;
  border: 1px solid #D0D0D0;
  padding: 24px;
  width: 100%;
  max-width: 720px;
  margin: auto;
  margin-top: 32px;
}
.thanks__container-address-bold {
  display: block;
  font-weight: 600;
}
.thanks__container-address-text {
  display: block;
  margin-top: 12px;
}

.break-word {
  overflow-wrap: break-word;
  word-break: break-all;
}

@media (min-width: 1080px) {
  .thanks__container-name {
    font-size: 1.75rem;
  }
  .thanks__container-text {
    text-align: center;
  }
}
.footer {
  background-color: #F5F5F5;
}
.footer__inner {
  padding: 60px 10.67%;
}
.footer__logo {
  width: 160px;
}
.footer__company-info-wrap {
  margin-top: 20px;
}
.footer__company-info-main {
  font-weight: 600;
  display: block;
}
.footer__company-info-sub {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.footer__nav__item + .footer__nav__item {
  margin-top: 20px;
}
.footer__nav-link {
  font-weight: 600;
}
.footer__copyright {
  border-top: 1px solid #D0D0D0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  gap: 12px;
  color: #535353;
}
.footer__privacy-policy, .footer__copyright-text {
  font-size: 12px;
}

@media (min-width: 1080px) {
  .footer__inner {
    padding: 100px 10.67%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer__nav-link {
    font-weight: 600;
    font-size: 0.875rem;
  }
}
/* reCAPTCHAのスタイル */
.g-recaptcha {
  margin-top: 20px;
}