html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  width: auto;
  height: auto;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 3.6rem;
}
@media (min-width: 960px) {
  h1 {
    font-size: 4.8rem;
  }
}

h2 {
  font-size: 2.2rem;
}
@media (min-width: 960px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p, input, textarea {
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  p, input, textarea {
    font-size: 1.8rem;
  }
}

ul, ol {
  list-style-type: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

dt, dd {
  box-sizing: border-box;
}

.link-color {
  color: #0080D3;
}

.l-main {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

section {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto 100px;
}
@media (min-width: 960px) {
  section {
    margin: 0 auto 200px;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  background-color: rgba(254, 254, 254, 0.9);
  display: flex;
  justify-content: space-between;
  position: fixed;
  font-weight: 500;
  z-index: 90;
}
@media (min-width: 630px) {
  .l-header {
    padding: 0 20px;
  }
}
@media (min-width: 960px) {
  .l-header {
    height: 90px;
  }
}
.l-header__logo img {
  width: auto;
  height: 60px;
  margin-left: 10px;
}
@media (min-width: 960px) {
  .l-header__logo img {
    height: 90px;
  }
}
.l-header__link {
  position: relative;
}

.l-footer {
  position: relative;
  height: 250px;
  background-color: #1e1e1e;
  overflow: hidden;
}
@media (min-width: 960px) {
  .l-footer {
    height: 200px;
  }
}
.l-footer__catch {
  font-size: 10rem;
  line-height: 1.1;
  color: #424141;
}
@media (min-width: 630px) {
  .l-footer__catch {
    font-size: 11rem;
    line-height: 1.8;
  }
}
@media (min-width: 960px) {
  .l-footer__catch {
    font-size: 15rem;
    line-height: 1.5;
    letter-spacing: 5px;
  }
}
.l-footer__info {
  position: absolute;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  color: #FEFEFE;
  top: 0;
  left: 0;
}
@media (min-width: 630px) {
  .l-footer__info {
    padding: 50px 20px;
  }
}
.l-footer__info--wrap {
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 630px) {
  .l-footer__info--wrap {
    flex-direction: row;
    -moz-column-gap: 150px;
         column-gap: 150px;
  }
}
.l-footer__info--img {
  width: 150px;
}
.l-footer__info--tel {
  line-height: 1.1;
}
.l-footer__info--tel h5 {
  font-size: 2.8rem;
}
@media (min-width: 630px) {
  .l-footer__info--tel h5 {
    font-size: 3.6rem;
  }
}
.l-footer__info--tel p {
  font-size: 1.4rem;
}
.l-footer__sns {
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-left: 0;
}
.l-footer__sns--img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.l-footer__sns--sp {
  display: block;
}
@media (min-width: 960px) {
  .l-footer__sns--sp {
    display: none;
  }
}
.l-footer__sns--pc {
  display: none;
}
@media (min-width: 960px) {
  .l-footer__sns--pc {
    display: block;
  }
}

small {
  font-size: 1.6rem;
}

.copyright {
  margin-top: 20px;
}

.c-title {
  overflow: hidden;
}
.c-title span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease-in;
  transition-delay: 0.3s;
}
.c-title.show span {
  opacity: 1;
  transform: translateY(0);
}

.c-underline {
  position: relative;
}
.c-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, rgb(0, 89, 255) 20px, rgb(160, 161, 161));
  transition: 0.5s ease-in;
}
.c-underline.show::after {
  width: 100%;
}

.c-underline__reverse {
  position: relative;
}
.c-underline__reverse::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to left, rgb(0, 89, 255) 20px, rgb(160, 161, 161));
  transition: 0.5s ease-in;
}
.c-underline__reverse.show::after {
  width: 100%;
}

.c-leftline {
  position: relative;
}
.c-leftline::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, rgb(0, 89, 255) 20px, rgb(160, 161, 161));
  transition: 0.5s ease-in;
}
.c-leftline.show::after {
  height: 100%;
}

.c-rightline {
  position: relative;
}
.c-rightline::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, rgb(0, 89, 255) 20px, rgb(160, 161, 161));
  transition: 0.5s ease-in;
}
.c-rightline.show::after {
  height: 100%;
}

.company-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
}
.company-list dt {
  width: 25%;
  padding: 10px 5px;
  font-size: 1.4rem;
}
@media (min-width: 630px) {
  .company-list dt {
    padding: 10px 20px;
    font-size: 1.8rem;
  }
}
.company-list dd {
  display: flex;
  align-items: center;
  margin-left: 0;
  padding: 10px 5px;
  width: 75%;
  font-size: 1.4rem;
}
@media (min-width: 630px) {
  .company-list dd {
    padding: 10px 20px;
    font-size: 1.8rem;
  }
}

.company-list-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  flex-direction: column;
}
@media (min-width: 630px) {
  .company-list-main {
    flex-direction: row;
  }
}
.company-list-main dt {
  width: 50%;
  padding: 5px;
  font-size: 1.4rem;
}
@media (min-width: 630px) {
  .company-list-main dt {
    width: 25%;
    padding: 10px 5px;
    padding: 10px 20px;
    font-size: 1.8rem;
  }
}
.company-list-main dt span {
  font-size: 1.4rem;
}
@media (min-width: 630px) {
  .company-list-main dt span {
    font-size: 1.8rem;
  }
}
.company-list-main dd {
  display: flex;
  align-items: center;
  margin-left: 0;
  padding: 5px 5px 15px 5px;
  width: 100%;
  font-size: 1.4rem;
}
@media (min-width: 630px) {
  .company-list-main dd {
    width: 75%;
    padding: 10px 20px;
    font-size: 1.8rem;
  }
}

.c-btn {
  display: inline-block;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 50px;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn__border {
  border: 1px solid #76BDFF;
  transition: all 0.3s;
}
.c-btn__border:hover {
  background: #76BDFF;
  color: white;
  opacity: 0.7;
}
.c-btn a {
  display: inline-block;
  padding: 12px 50px;
}

.c-card {
  margin: 0 auto 10px;
}
@media (min-width: 630px) {
  .c-card {
    max-width: 400px;
    margin: 0 auto 20px;
  }
}
.c-card__img {
  aspect-ratio: 1.6/1;
}
.c-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.c-textline {
  position: relative;
  height: 25px;
  border-bottom: 8px solid rgba(118, 189, 255, 0.4);
  border-right: 8px solid #fff;
}
.c-textline span {
  position: absolute;
  left: 3px;
  text-shadow: 1px 1px 2px #fff;
}

.p-gmenu > .list {
  transition: all 300ms 0s ease;
  position: fixed;
  padding-top: 60px;
  width: 50vw;
  height: 100vh;
  top: 0;
  left: 100%;
  background: #FEFEFE;
  z-index: 100;
}
@media (min-width: 960px) {
  .p-gmenu > .list {
    display: flex;
    width: inherit;
    height: 90px;
    padding: inherit;
    position: static;
    background: inherit;
    transition: inherit;
  }
}
@media (min-width: 1201px) {
  .p-gmenu > .list {
    margin-right: 30px;
  }
}
@media (min-width: 960px) {
  .p-gmenu__main {
    display: flex;
    align-items: center;
    margin-right: 30px;
  }
}
.p-gmenu__main--contents, .p-gmenu__sns--contents {
  display: block;
  padding: 8px 0 8px 20px;
  line-height: 40px;
  font-size: 2rem;
}
.p-gmenu__main--contents:hover, .p-gmenu__sns--contents:hover {
  background-color: #f5f3f1;
  opacity: 0.7;
  transition: background-color 0.1s;
}
@media (min-width: 960px) {
  .p-gmenu__main--contents {
    padding: 25px;
  }
}
@media (min-width: 960px) {
  .p-gmenu__sns {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1201px) {
  .p-gmenu__sns {
    margin-right: 20px;
  }
}
@media (min-width: 960px) {
  .p-gmenu__sns--contents {
    display: none;
  }
}
.p-gmenu__sns--img {
  display: none;
}
@media (min-width: 960px) {
  .p-gmenu__sns--img {
    display: block;
    max-width: 30px;
    max-height: 30px;
    margin-right: 15px;
    padding: 5px;
  }
}
.p-gmenu__sns--img:hover {
  opacity: 0.8;
  transition: opacity 0.1s;
}
.p-gmenu.is-open > .list {
  left: 50%;
}

.mask {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: gray;
  opacity: 0;
  z-index: 99;
}
@media (min-width: 960px) {
  .mask {
    display: none;
  }
}
.mask.is-open {
  left: 0;
  opacity: 0.7;
  transition: opacity 0.1s;
}

.p-hamburger {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
}
@media (min-width: 960px) {
  .p-hamburger {
    display: none;
  }
}
.p-hamburger:hover {
  cursor: pointer;
  opacity: 0.9;
}
.p-hamburger::before, .p-hamburger::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #1e1e1e;
  position: absolute;
  left: calc(50% - 20px/2);
  display: block;
  transition: transform 0.2s;
}
.p-hamburger::before {
  top: 22px;
}
.p-hamburger::after {
  top: 38px;
}
.p-hamburger > span {
  width: 20px;
  height: 2px;
  font-size: 0;
  background: linear-gradient(to right, #1e1e1e, #1e1e1e) repeat-x #1e1e1e;
  background-size: auto 2px;
  position: absolute;
  left: calc(50% - 20px/2);
  top: 50%;
  transition: transform 0.2s;
}
.p-hamburger.is-open::before {
  transform: rotate(45deg);
  top: 28px;
}
.p-hamburger.is-open::after {
  transform: rotate(-45deg);
  top: 28px;
}
.p-hamburger.is-open > span {
  background: none;
}

.p-mainvisual {
  width: 100%;
  height: 70vh;
  padding-top: 60px;
  margin-bottom: 80px;
  max-height: 100vh;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 960px) {
  .p-mainvisual {
    padding-top: 90px;
    height: 100vh;
  }
}
.p-mainvisual__page {
  position: relative;
  aspect-ratio: 4/1;
  overflow: hidden;
}
@media (min-width: 960px) {
  .p-mainvisual__page {
    aspect-ratio: 5/1;
  }
}
.p-mainvisual__page--simple {
  width: 100%;
  height: 150px;
}

.p-eyecatch {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 21;
}
.p-eyecatch p {
  text-align: center;
  color: #FEFEFE;
  text-shadow: 2px 2px 5px #000;
  font-family: "Anton", sans-serif;
  letter-spacing: 5px;
  padding: 0 20px;
  font-size: 5rem;
}
@media (min-width: 630px) {
  .p-eyecatch p {
    font-size: 6rem;
  }
}
@media (min-width: 960px) {
  .p-eyecatch p {
    font-size: 8rem;
  }
}

.p-pagetitle {
  height: 150px;
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}
@media (min-width: 960px) {
  .p-pagetitle {
    padding-top: 90px;
    aspect-ratio: 4/1;
    height: auto;
  }
}
.p-pagetitle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pagetitle__title {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  padding: 60px 0 0 20px;
}
@media (min-width: 630px) {
  .p-pagetitle__title {
    padding: 90px 0 0 50px;
  }
}
.p-pagetitle__title--color {
  color: #FEFEFE;
  text-shadow: 1px 1px 2px #000;
}
.p-pagetitle__title h1, .p-pagetitle__title h2 {
  font-size: 3.6rem;
}
@media (min-width: 960px) {
  .p-pagetitle__title h1, .p-pagetitle__title h2 {
    font-size: 6rem;
  }
}
.p-pagetitle__title small {
  font-size: 1.8rem;
  margin-left: 20px;
}
@media (min-width: 960px) {
  .p-pagetitle__title small {
    margin-left: 30px;
    font-size: 2.8rem;
  }
}

.p-introduction__title {
  font-size: 5rem;
}
@media (min-width: 630px) {
  .p-introduction__title {
    font-size: 7rem;
  }
}
@media (min-width: 960px) {
  .p-introduction__title {
    font-size: 9rem;
  }
}
.p-introduction__catch {
  font-size: 2.4rem;
}
.p-introduction__top {
  position: relative;
  margin-top: 40px;
  height: 600px;
  overflow: hidden;
}
@media (min-width: 630px) {
  .p-introduction__top {
    height: 500px;
  }
}
.p-introduction__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-introduction__top--info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-introduction__top--info p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 30px 20px;
}
@media (min-width: 960px) {
  .p-introduction__top--info p {
    font-size: 2.4rem;
  }
}
.p-introduction__card {
  padding: 10px 0;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 20px;
}
@media (min-width: 630px) {
  .p-introduction__card {
    flex-direction: row;
  }
}
.p-introduction__card--img {
  height: 200px;
  overflow: hidden;
}
@media (min-width: 630px) {
  .p-introduction__card--img {
    height: 300px;
    flex-basis: 100%;
  }
}
.p-introduction__card--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-introduction__card--text {
  padding: 20px 0;
}
@media (min-width: 630px) {
  .p-introduction__card--text {
    padding: 30px 20px;
    flex-basis: 100%;
  }
}
.p-introduction__card--text p {
  margin-bottom: 20px;
}

.main-title {
  line-height: 1.2;
}

.p-recruit {
  max-width: 1000px;
}
@media (min-width: 630px) {
  .p-recruit__img {
    flex-basis: 60%;
    height: 350px;
  }
}

.p-titlecard {
  padding: 20px 15px;
  max-width: 1200px;
  min-height: 190px;
  margin: 0 auto;
  position: relative;
  color: #FEFEFE;
  overflow: hidden;
}
@media (min-width: 630px) {
  .p-titlecard {
    padding: 30px;
  }
}
.p-titlecard p {
  font-size: 1.6rem;
  padding-bottom: 10px;
  padding-right: 20px;
}
@media (min-width: 630px) {
  .p-titlecard p {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .p-titlecard p {
    font-size: 2rem;
  }
}
.p-titlecard__catch {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.p-titlecard__catch h2 {
  font-size: 12rem;
  color: #424141;
  letter-spacing: 5px;
}
@media (min-width: 960px) {
  .p-titlecard__catch h2 {
    font-size: 16rem;
    letter-spacing: 10px;
  }
}
.p-titlecard__wrap {
  background: #1e1e1e;
  margin-bottom: 30px;
}

.p-business {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@media (min-width: 660px) {
  .p-business {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 960px) {
  .p-business {
    flex-wrap: nowrap;
  }
}
.p-business__card {
  position: relative;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 660px) {
  .p-business__card {
    max-width: 300px;
    height: 400px;
    flex-basis: 100%;
  }
}
.p-business__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-business__title {
  position: absolute;
  left: 10px;
  bottom: 20px;
  padding: 3px 50px 3px 15px;
  background: #f5f3f1;
  background-image: linear-gradient(315deg, rgba(225, 225, 225, 0) 25px, transparent 0);
}
.p-business__title h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: bold;
}

.hover-text {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.5s;
}
.hover-text:hover {
  opacity: 1;
}

.p-recruit__title {
  padding: 10px 0;
  margin-bottom: 30px;
}
.p-recruit__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 10px;
  font-weight: 700;
}
.p-recruit__info {
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .p-recruit__info {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.p-recruit__image {
  position: relative;
  aspect-ratio: 1/1;
  width: 120px;
  height: auto;
  border: 1px solid #f5f3f1;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 630px) {
  .p-recruit__image {
    width: 150px;
  }
}
@media (min-width: 960px) {
  .p-recruit__image {
    width: 200px;
  }
}
.p-recruit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit__image--title {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  background: rgba(238, 238, 238, 0.3);
}
.p-recruit__image--title p {
  color: #FEFEFE;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
}
@media (min-width: 630px) {
  .p-recruit__image--title p {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  .p-recruit__image--title p {
    font-size: 2.6rem;
  }
}
.p-recruit__step p {
  margin: 15px;
  line-height: 1.2;
  border-bottom: 10px solid #76bdff;
  border-right: 10px solid #fff;
}
.p-recruit__step p span {
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 700;
}

.p-recruitment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}
@media (min-width: 630px) {
  .p-recruitment {
    flex-direction: row;
    margin-top: 0;
  }
}
.p-recruitment__card {
  position: relative;
  flex-basis: 100%;
}
@media (min-width: 630px) {
  .p-recruitment__card:nth-child(even) {
    margin-top: 80px;
    margin-right: 15px;
  }
}
.p-recruitment__img {
  aspect-ratio: 2/1;
  transform: skewX(-10deg);
  overflow: hidden;
}
@media (min-width: 630px) {
  .p-recruitment__img {
    aspect-ratio: 1/1.6;
  }
}
.p-recruitment__img img {
  transform: scale(1.3) skewX(10deg);
}
.p-recruitment__info {
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 30px;
  left: 0;
  padding-right: 20px;
}
@media (min-width: 630px) {
  .p-recruitment__info {
    bottom: 50px;
  }
}
.p-recruitment__info h3 {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media (min-width: 630px) {
  .p-recruitment__info h3 {
    font-size: 2.2rem;
  }
}
@media (min-width: 960px) {
  .p-recruitment__info h3 {
    font-size: 2.6rem;
  }
}
.p-recruitment__wrap, .p-recruitment__flow {
  width: 90%;
  margin-bottom: 50px;
}

.treat-list {
  list-style: disc;
  margin-left: 15px;
}

.p-company {
  margin-top: 80px;
}
.p-company__info {
  max-width: 1000px;
}
.p-company__info--card {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 60px;
}
@media (min-width: 630px) {
  .p-company__info--card {
    -moz-column-gap: 20px;
         column-gap: 20px;
    flex-direction: row;
    align-items: end;
  }
}
.p-company__info--card:nth-child(even) {
  align-items: end;
}
@media (min-width: 630px) {
  .p-company__info--card:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.p-company__info--owner {
  align-items: normal;
}
.p-company__card {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.p-company__card a {
  transition: all 0.5s;
}
.p-company__card a:hover {
  opacity: 0.7;
}
.p-company__image {
  width: 200px;
  height: auto;
  border: 1px solid #f5f3f1;
  overflow: hidden;
}
@media (min-width: 630px) {
  .p-company__image {
    width: 250px;
  }
}
@media (min-width: 960px) {
  .p-company__image {
    width: 350px;
  }
}
.p-company__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-company__catch {
  height: 100%;
  padding: 0 5px;
}
@media (min-width: 960px) {
  .p-company__catch {
    padding: 20px 30px;
  }
}
.p-company__catch--title {
  position: relative;
}
.p-company__catch--title .backtitle {
  color: rgba(128, 128, 128, 0.3);
  font-size: 6rem;
}
@media (min-width: 960px) {
  .p-company__catch--title .backtitle {
    font-size: 9rem;
  }
}
.p-company__catch--title h2 {
  font-size: 3.6rem;
  display: inline-block;
  position: absolute;
  bottom: 15px;
  color: #1e1e1e;
  text-shadow: 2px 2px #fff;
}
@media (min-width: 960px) {
  .p-company__catch--title h2 {
    font-size: 6rem;
  }
}
.p-company__catch--title .title-left {
  left: 30px;
}
@media (min-width: 960px) {
  .p-company__catch--title .title-left {
    left: 60px;
  }
}
.p-company__catch--title .title-right {
  right: 30px;
}
@media (min-width: 960px) {
  .p-company__catch--title .title-right {
    right: 60px;
  }
}
.p-company__catch--texteven, .p-company__catch--text {
  padding: 5px 10px;
}
@media (min-width: 960px) {
  .p-company__catch--texteven, .p-company__catch--text {
    padding: 10px 20px;
  }
}
.p-company__catch p {
  font-weight: bold;
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .p-company__catch p {
    font-size: 2.8rem;
  }
}
.p-company__message {
  width: 100%;
}
@media (min-width: 630px) {
  .p-company__message {
    padding: 30px 20px;
    width: 70%;
  }
}
.p-company__message p {
  margin-bottom: 20px;
}

#contact {
  max-width: 1000px;
  margin: 0 auto;
}

#contact dt {
  width: 100%;
}
@media (min-width: 630px) {
  #contact dt {
    width: 15%;
  }
}

#contact dd {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 630px) {
  #contact dd {
    width: 85%;
  }
}

#contact dd input,
#contact dd textarea {
  width: 100%;
  border: solid 1px #c8c8c8;
  padding: 10px;
}

#contact dd textarea {
  height: 20rem;
}

#contact .button {
  text-align: center;
  font-size: 1.5rem;
}

#contact .button input {
  width: 200px;
  background-color: #424141;
  color: #fff;
  padding: 15px 0;
  border: solid 1px #424141;
}

#contact .button input:hover {
  background: #fff;
  color: #1e1e1e;
  transition: background 0.3s ease;
}

.form-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media (min-width: 630px) {
  .form-label {
    flex-direction: row;
    justify-content: center;
  }
}
.form-label dt {
  font-size: 1.7rem;
  font-weight: bold;
}
@media (min-width: 960px) {
  .form-label dt {
    font-size: 2rem;
  }
}

.form-wrap {
  max-width: 1000px;
}

.u-margin__center {
  margin-left: auto;
  margin-right: auto;
}

.u-margin__bottom {
  margin-bottom: 50px;
}
.u-margin__bottom--little {
  margin-bottom: 30px;
}
.u-margin__bottom--large {
  margin-bottom: 100px;
}

.u-padding {
  padding: 20px;
}

.u-text__right {
  text-align: right;
}

.u-text__left {
  text-align: left;
}

.u-text__center {
  text-align: center;
}

.u-text__break {
  word-break: break-word;
}

.swiper,
.swiper-main,
.swiper-bottom {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide-bottom {
  width: 400px;
  height: 250px;
}

.inview,
.inview-back {
  transform: translateY(5px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}

.inview.show {
  transform: translateY(0);
  opacity: 1;
}

.inview-back.show {
  transform: translateY(0);
  opacity: 0.5;
}

.opacity {
  opacity: 0;
  transition: opacity 1.5s;
}

.opacity.show {
  opacity: 1;
}

.zoomIn {
  opacity: 0;
  transform: scale(0.8);
  transition: transform 1s, opacity 1s;
}

.zoomIn.show {
  opacity: 1;
  transform: scale(1);
}

.box-right {
  transform: translateX(30px);
  opacity: 0;
  box-shadow: 3px 2px 10px #000;
  transition: all 1.5s ease-in-out;
}
.box-right.show {
  transform: translatex(0);
  opacity: 1;
  box-shadow: none;
}

.box-left {
  transform: translateX(-30px);
  opacity: 0;
  box-shadow: -3px 2px 10px #000;
  transition: all 1.5s ease-in-out;
}
.box-left.show {
  transform: translatex(0);
  box-shadow: none;
  opacity: 1;
}

.box-under {
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.5s ease-in-out;
}
.box-under.show {
  transform: translateY(0);
  opacity: 1;
}

.circle {
  border-radius: 0;
  overflow: hidden;
  transition: all 0.7s;
}
.circle.show {
  border-radius: 50%;
}

.delay {
  transition-delay: 0.3s;
}
.delay-first {
  transition-delay: 0.3s;
}
.delay-second {
  transition-delay: 0.8s;
}
.delay-third {
  transition-delay: 0.5s;
}
.delay-fourth {
  transition-delay: 1.5s;
}
.delay-slow {
  transition-delay: 2s;
}

.u-flex__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-flex__wrap {
  flex-wrap: wrap;
}
@media (min-width: 630px) {
  .u-flex__wrap {
    flex-wrap: nowrap;
  }
}

.u-flex__column {
  flex-direction: column;
}
@media (min-width: 630px) {
  .u-flex__column {
    flex-direction: row;
  }
}

@media (min-width: 630px) {
  .u-flex__reverse {
    flex-direction: row-reverse;
  }
}
/*# sourceMappingURL=style.css.map */