@charset "UTF-8";
html {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #282828;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  overflow: scroll;
}

.l-footer {
  width: 100%;
}
.l-footer__top {
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-footer__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.l-footer__info {
  font-size: 1.3rem;
  text-align: center;
}
.l-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ed6c00;
  color: white;
}

.l-header {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 100;
}
.l-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    padding: 1rem;
  }
}
.l-header__logo__image {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  .l-header__logo__image {
    max-width: 160px;
  }
}
.l-header__logo__tagline {
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .l-header__logo__tagline {
    font-size: 1.3rem;
  }
}
.l-header__logo__title {
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .l-header__logo__title {
    font-size: 2.4rem;
    margin-top: -0.5rem;
  }
}
.l-header__right {
  display: flex;
}
.l-header__navList {
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: 600;
  font-size: 1.6rem;
  gap: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l-header__navList {
    display: none;
  }
}
.l-header__navItem {
  position: relative;
}
.l-header__navItem:hover {
  color: #ed6c00;
}
.l-header__navItem::before {
  background: #ed6c00;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.l-header__navItem:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.l-header__btn--tel {
  background-color: #ed6c00;
  padding: 0.5rem 2rem;
  color: white;
  border-radius: 45px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.7rem;
  letter-spacing: 0.125em;
}
.l-header__btn--tel:hover {
  opacity: 0.9;
}
.l-header__btn--tel img {
  display: inline-block;
  width: 1.6rem;
}
.l-header__btn--form {
  background-color: white;
  padding: 0.5rem 2rem;
  color: #ed6c00;
  border-radius: 45px;
  border: 1px solid #ed6c00;
}
.l-header__btn--form:hover {
  opacity: 0.9;
}
.l-header__mobileMenu {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .l-header__mobileMenu {
    display: block;
  }
}
.l-header__menubar, .l-header__menubar::before, .l-header__menubar::after {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #333;
  cursor: pointer;
  transition: all 0.5s;
}
.l-header__menubar::before {
  top: -10px;
}
.l-header__menubar::after {
  top: 10px;
}
.l-header__mobileMenu.open > .l-header__menubar {
  background-color: transparent;
}
.l-header__mobileMenu.open > .l-header__menubar::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}
.l-header__mobileMenu.open > .l-header__menubar::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}
.l-header__mobileNav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #ed6c00;
  padding: 50px 0;
  transition: all 0.5s;
}
.l-header__mobileNavList {
  margin: 20px 20px;
}
.l-header__mobileNavItem {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.l-header__mobileNavItem a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__mobileNav.open {
  right: 0;
}
.l-header__mobileNavInfo {
  margin: 40px auto;
  text-align: center;
}
.l-header__mobileNavContact {
  margin: 30px 30px;
  font-size: 0.8rem;
  color: #fff;
}

.c-btn {
  background-color: #ed6c00;
  color: white;
  font-weight: 500;
  width: 280px;
  height: 60px;
  padding: 8px 36px;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.c-btn:hover {
  box-shadow: unset;
  transform: translateY(4px);
}
.c-btn__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.c-btn__inner img {
  display: inline-block;
  width: 2.4rem;
}
.c-btn__left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-btn__right__top {
  font-size: 1.4rem;
}
.c-btn__right__bottom {
  font-size: 1.8rem;
  margin-top: -0.5rem;
}

.c-btn--white {
  color: #ed6c00;
  border: 1px solid #ed6c00;
  background-color: white;
}

.c-contact {
  padding: 80px 20px 120px;
  background-color: #feffdd;
}
.c-contact__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.c-contact__text {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
.c-contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .c-contact__btn {
    flex-direction: column;
  }
}

.c-h2 {
  font-size: 2.4rem;
  font-weight: 600;
  border-left: 8px solid #ed6c00;
  padding-left: 8px;
  margin-bottom: 3rem;
}

.c-h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.c-pageHeader {
  background-color: #feffdd;
  padding: 60px 20px;
  text-align: center;
}
.c-pageHeader__enTitle {
  font-size: 4.8rem;
  font-weight: 600;
}
.c-pageHeader__jaTitle {
  margin-top: -1rem;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.c-pageHeader__green {
  color: #ed6c00;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.c-scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-scroll-infinity__wrap {
    display: none;
  }
}

.c-scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  /* 横に2倍並べる */
  width: -moz-max-content;
  width: max-content;
  animation: infinity-scroll-left 60s linear infinite;
}

.c-scroll-infinity__list::after {
  content: attr(data-duplicate);
}

.c-scroll-infinity__item {
  max-width: 500px;
  flex-shrink: 0;
}

.c-scroll-infinity__item > img {
  width: 100%;
  height: auto;
}

.c-scroll-slide {
  display: none;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-scroll-slide {
    display: block;
  }
}

.c-scroll-slide__wrap {
  width: 100%;
}

.c-scroll-slide__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.5s ease-in-out;
  /* スライドアニメーション */
}

.c-scroll-slide__item {
  min-width: 100%;
  /* 1枚ずつ表示 */
}

.c-scroll-slide__item img {
  width: 100%;
  display: block;
}

.p-toppage__concept {
  background-color: #feffdd;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-toppage__concept__copy {
  margin-top: 2rem;
  font-size: 5.6rem;
  font-weight: 600;
  color: #ed6c00;
  text-shadow: 0 0 12px #ffd000;
}
@media screen and (max-width: 1024px) {
  .p-toppage__concept__copy {
    font-size: 5rem;
    text-align: center;
    line-height: 1.4;
    margin-top: -100px;
    z-index: 5;
    color: white;
    text-shadow: 0 0 12px #ff6600;
  }
}
.p-toppage__concept__text {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .p-toppage__concept__text {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.p-toppage__concept__info {
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.p-toppage__concept__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1024px) {
  .p-toppage__concept__btn {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-toppage__mvBottom {
  margin: 0 auto;
  width: 100%;
  height: 200px;
  border-radius: 50%;
  background-color: #feffdd;
  position: relative;
  z-index: -5;
  margin-top: -100px;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mvBottom {
    width: 100%;
    height: 150px;
  }
}
.p-toppage__service {
  margin-top: -200px;
  padding: 160px 20px 80px;
  overflow: hidden;
}
.p-toppage__service__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-toppage__service__text {
  margin-bottom: 3rem;
  text-align: center;
}
.p-toppage__service__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 576px) {
  .p-toppage__service__content {
    flex-direction: column;
  }
}
.p-toppage__service__left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}
.p-toppage__service__left img {
  display: block;
  width: 100%;
}
.p-toppage__service__right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  position: relative;
}
.p-toppage__service__right::after {
  content: "";
  width: 400px; /*幅*/
  height: 400px; /*高さ*/
  border-radius: 50%; /*角丸*/
  background-color: #F7FFEB;
  position: absolute;
  z-index: -10;
}
.p-toppage__service__item {
  margin-bottom: 2rem;
}
.p-toppage__service__category {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ed6c00;
}
.p-toppage__service__name {
  font-weight: 600;
}
.p-toppage__staff {
  padding: 80px 20px 120px;
}
.p-toppage__staff__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-toppage__staff__content {
  margin-top: 20px;
  display: flex;
  width: 100%;
  max-width: 1000px;
  gap: 32px;
}
@media screen and (max-width: 576px) {
  .p-toppage__staff__content {
    flex-direction: column;
  }
}
.p-toppage__staff__left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  position: relative;
}
.p-toppage__staff__left::after {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #feffdd;
  position: absolute;
  z-index: -10;
  left: -100px;
  top: -80px;
}
.p-toppage__staff__left img {
  display: block;
  width: 100%;
}
.p-toppage__staff__right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}
.p-toppage__staff__heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
}
.p-toppage__staff__text {
  margin-bottom: 2.4rem;
}
.p-toppage__news {
  padding: 80px 20px 80px;
  background-color: #F7FFEB;
}
.p-toppage__news__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-toppage__news__content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  gap: 32px;
}
@media screen and (max-width: 576px) {
  .p-toppage__news__content {
    flex-direction: column;
  }
}
.p-toppage__news__left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
}
.p-toppage__news__link {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .p-toppage__news__link {
    flex-direction: column;
    align-items: start;
    justify-content: left;
    gap: 8px;
  }
}
.p-toppage__news__date {
  padding: 2px 8px;
  background-color: #ed6c00;
  color: white;
  border-radius: 8px;
}
@media screen and (max-width: 1200px) {
  .p-toppage__news__date {
    font-size: 1.3rem;
  }
}
.p-toppage__news__right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
.p-toppage__recruit {
  padding: 80px 20px 120px;
}
.p-toppage__recruit__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-toppage__recruit__content {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  gap: 32px;
}
@media screen and (max-width: 576px) {
  .p-toppage__recruit__content {
    flex-direction: column;
  }
}
.p-toppage__recruit__left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}
.p-toppage__recruit__left img {
  display: block;
  width: 100%;
}
.p-toppage__recruit__right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}
.p-toppage__recruit__heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
}
.p-toppage__recruit__text {
  margin-bottom: 2.4rem;
}
.p-toppage__about {
  padding: 80px 20px 120px;
  background-color: #f7f7f7;
}
.p-toppage__about__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-toppage__about__text {
  text-align: center;
  margin-bottom: 30px;
}
.p-toppage__enTitle {
  font-size: 4.8rem;
  font-weight: 600;
}
.p-toppage__jaTitle {
  margin-top: -1rem;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-toppage__green {
  color: #ed6c00;
}

.p-staff__container {
  padding: 0 20px;
  margin-bottom: -100px;
}
.p-staff__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0px;
}
.p-staff__content {
  margin-bottom: 40px;
}
.p-staff__article {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-staff__article {
    flex-direction: column;
  }
}
.p-staff__article__left {
  flex: 1;
}
.p-staff__article__left img {
  width: 100%;
}
.p-staff__article__right {
  flex: 1;
}
.p-staff__article--reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-staff__article--reverse {
    flex-direction: column;
  }
}
.p-staff__article--reverse__left {
  flex: 1;
}
.p-staff__article--reverse__left img {
  width: 100%;
}
.p-staff__article--reverse__right {
  flex: 1;
}

.p-staff__temp {
  text-align: center;
  font-size: 2rem;
}

.p-service__container {
  padding: 0 20px;
}
.p-service__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0px;
}
.p-service__content {
  margin-bottom: 40px;
}
.p-service__article {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-service__article {
    flex-direction: column;
  }
}
.p-service__article__left {
  flex: 1;
}
.p-service__article__left img {
  width: 100%;
}
.p-service__article__right {
  flex: 1;
}

.p-about__container {
  padding: 0 20px;
}
.p-about__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0px;
}
.p-about__content {
  margin-bottom: 40px;
}

.item-row {
  display: flex;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .item-row {
    flex-direction: column;
  }
}
.item-row dt {
  margin: 0;
  padding: 16px 16px;
  width: 36%;
  flex-shrink: 0;
  background-color: #f7f7f7;
  font-weight: bold;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .item-row dt {
    width: 100%;
    border-right: none;
    padding: 16px 16px;
  }
}
.item-row dd {
  margin: 0;
  padding: 16px 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.p-news__container {
  padding: 0 20px;
}
.p-news__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0px;
}
.p-news__content {
  margin-bottom: 40px;
}
.p-news__article {
  margin-top: 8rem;
  margin-bottom: 10rem;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(207, 207, 207);
  scroll-margin-top: 100px;
}
.p-news__date {
  font-weight: 600;
  margin-bottom: 12px;
  padding: 2px 8px;
  background-color: #ed6c00;
  color: white;
  border-radius: 8px;
}
@media screen and (max-width: 1200px) {
  .p-news__date {
    font-size: 1.3rem;
  }
}
.p-news__title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.p-news__image {
  width: 100%;
  margin-bottom: 2rem;
}
.p-news__entry p {
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.p-news__entry strong,
.p-news__entry b {
  font-weight: bold;
}
.p-news__entry h2,
.p-news__entry h3,
.p-news__entry h4 {
  line-height: 1.4;
  font-weight: bold;
  margin: 3rem 0 1.5rem;
}
.p-news__entry h2 {
  font-size: 1.75rem;
  border-left: 4px solid #333;
  padding: 0.5rem 1rem;
}
.p-news__entry h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}
.p-news__entry ul,
.p-news__entry ol {
  margin: 0 0 1.6rem 1.5rem;
}
.p-news__entry ul li,
.p-news__entry ol li {
  margin-bottom: 0.5rem;
  list-style: inherit;
}
.p-news__entry ul ul,
.p-news__entry ul ol,
.p-news__entry ol ul,
.p-news__entry ol ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.p-news__entry figure {
  margin: 0 0 1.6rem;
}
.p-news__entry img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.p-news__entry figcaption {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: 5px;
}
.p-news__entry blockquote {
  margin: 0 0 1.6rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ccc;
  background: #f9f9f9;
  font-style: italic;
}
.p-news__entry blockquote p:last-child {
  margin-bottom: 0;
}
.p-news__entry table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.6rem;
}
.p-news__entry table th,
.p-news__entry table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}
.p-news__entry table th {
  background-color: #f2f2f2;
}

.p-recruite__container {
  padding: 0 20px;
  margin-bottom: -100px;
}
.p-recruite__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0px;
}
.p-recruite__content {
  margin-bottom: 40px;
}
.p-recruite__article {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-recruite__article {
    flex-direction: column;
  }
}
.p-recruite__article__left {
  flex: 1;
}
.p-recruite__article__left img {
  width: 100%;
}
.p-recruite__article__right {
  flex: 1;
}
.p-recruite__article--reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-recruite__article--reverse {
    flex-direction: column;
  }
}
.p-recruite__article--reverse__left {
  flex: 1;
}
.p-recruite__article--reverse__left img {
  width: 100%;
}
.p-recruite__article--reverse__right {
  flex: 1;
}

.p-contact__container {
  padding: 0 20px;
}
.p-contact__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0px;
}
.p-contact__content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.p-contact__text {
  text-align: center;
  margin-bottom: 1.6rem;
}

.p-contact__content__form-row {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__form-row {
    flex-direction: column;
  }
}
.p-contact__content__left {
  width: 220px;
  padding: 12px 0;
}
.p-contact__content__left label {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 2px 6px;
  vertical-align: middle;
}
.p-contact__content__left span {
  display: inline-block;
  padding: 2px 6px;
  font-size: 1.2rem;
  background-color: rgb(202, 0, 0);
  color: #fff;
  font-weight: 500;
}
.p-contact__content__left p {
  margin: 0;
  font-size: 1.6rem;
}
.p-contact__content__right {
  flex-grow: 1;
}
.p-contact__content__right input {
  width: 100%;
  padding: 12px;
  background-color: #e7e7e7;
}
.p-contact__content__right textarea {
  width: 100%;
  padding: 12px;
  background-color: #e7e7e7;
}
.p-contact__content__right p {
  padding: 12px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__right p {
    padding: 0;
  }
}
.p-contact__content__btn {
  text-align: center;
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__next {
    margin-top: 32px;
  }
}
.p-contact__content__confirm {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__confirm {
    flex-direction: column;
  }
}
.p-contact__content__text {
  margin-bottom: 30px;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.c-button {
  padding: 16px 96px;
  background-color: #ed6c00;
  font-weight: 600;
  color: #fff;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button--second {
  padding: 16px 96px;
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  font-weight: 600;
}
.c-button--second:hover {
  opacity: 0.7;
}

.p-contact__thanksMessage {
  text-align: center;
}

.p-contact__thanksButton {
  margin-top: 60px;
}

.p-notfound__container {
  padding: 0 20px;
}
.p-notfound__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0px;
}
.p-notfound__text {
  text-align: center;
  margin-bottom: 1.6rem;
}
.p-notfound__link {
  display: block;
  text-align: center;
  color: #0000ee;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-bold {
  font-weight: bold;
}

.u-pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-pc-none {
    display: block;
  }
}

.u-sp-none {
  display: block;
}
@media screen and (max-width: 1024px) {
  .u-sp-none {
    display: none;
  }
}

.u-flex-reverse {
  flex-direction: column-reverse;
}

.u-bg-gray {
  background-color: #f7f7f7;
}

.u-none {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .u-none {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */