@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #E0E0E0;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ===============================================
# ページ内遷移で行き過ぎるのを制御
=============================================== */
[id] {
  scroll-margin-top: 20px;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-contact-text__text {
  border: 1px solid #333;
}

.c-cv a {
  padding: 14px 40px;
  padding: 0.875rem 2.5rem;
  background-color: #FF7043;
  font-weight: 600;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .c-cv a {
    font-size: 1.125rem;
    padding: 1.25rem 5rem;
  }
}

.c-test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #333;
  color: #fff;
  padding: 50px 0;
  padding: 3.125rem 0;
}

.c-titleBlock {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .c-titleBlock {
    margin-bottom: 5rem;
  }
}

.c-titleBlock::after {
  content: "";
  position: absolute;
  bottom: -12px;
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 64px;
  width: 4rem;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .c-titleBlock::after {
    bottom: -1.5rem;
  }
}

.c-titleBlock__title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-titleBlock__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

.c-titleBlock__subTitle {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-titleBlock__subTitle {
    font-size: 1rem;
  }
}

.l-404 {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-404 {
    padding: 12.5rem;
  }
}

.l-footer {
  background-color: #E0E0E0;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 6.25rem 0;
  }
}

/* ===============================================
    ヘッダーのスタイリング
    =============================================== */
.header {
  background-color: #E0E0E0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 64px;
  height: 4rem;
  -webkit-box-shadow: 0 1px 5px gray;
          box-shadow: 0 1px 5px gray;
}

.header__container {
  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;
  height: inherit;
  color: #fff;
  padding: 0 16px;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding: 0 1.5rem;
  }
}

.header__logo {
  width: 160px;
  width: 10rem;
  height: auto;
}

.header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: #E0E0E0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 65px;
  top: 4.0625rem;
  right: -100%;
  background-color: #E0E0E0;
  padding: 32px 0;
  padding: 2rem 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -1px 0 5px gray;
          box-shadow: -1px 0 5px gray;
}
@media screen and (min-width: 768px) {
  .nav {
    display: none;
  }
}

.nav__item a {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  padding: 16px 0 16px 32px;
  padding: 1rem 0 1rem 2rem;
  text-transform: uppercase;
}

.nav.open {
  right: 0;
}

.nav__item--cv a {
  background-color: #FF7043;
  text-align: center;
  padding: 16px 32px;
  padding: 1rem 2rem;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-middle-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-middle-inner {
    max-width: 950px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-small-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .l-small-inner {
    max-width: 650px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-test {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 0;
  padding: 2.5rem 0;
  background-color: aquamarine;
}
@media screen and (min-width: 768px) {
  .l-test {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
    padding: 2.5rem 0;
    background-color: aquamarine;
  }
}

.l-top-about {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-top-about {
    padding: 6.25rem 0;
  }
}

.l-top-contact {
  padding: 40px 0;
  padding: 2.5rem 0;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .l-top-contact {
    padding: 6.25rem 0;
  }
}

.l-top-mv {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 160px 0;
  padding: 10rem 0;
  background-image: url(../../assets/images/top/mv-bg7--sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .l-top-mv {
    background-image: url(../../assets/images/top/mv-bg7.jpg);
    margin-top: 4rem;
    padding: 15rem 0;
  }
}

.l-top-news {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-top-news {
    padding: 6.25rem 0;
  }
}

.l-top-service {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-top-service {
    padding: 6.25rem 0;
  }
}

.l-top-works {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .l-top-works {
    padding: 6.25rem 0;
  }
}

.p-404__title {
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 4rem;
  }
}

.p-404__text {
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    margin-bottom: 3rem;
  }
}

.p-404__button a {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-cards__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem 1.5rem;
  }
}

.p-cards__item {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-cards__item {
    margin-bottom: 0rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33333% - 24px);
            flex: 0 0 calc(33.33333% - 24px);
  }
}

.p-cards__image {
  width: 100%;
  height: 240px;
  height: 15rem;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-cards__image {
    margin-bottom: 1.625rem;
  }
}

.p-cards__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cards__title {
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-cards__title {
    margin-bottom: 1.375rem;
    font-size: 1.25rem;
  }
}

.p-cards__text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-cards__text {
    font-size: 1rem;
  }
}

.p-cards__url {
  color: gray;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-contact__item {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    margin-bottom: 2rem;
  }
}

.p-contact__item--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  color: #E0E0E0;
}
@media screen and (min-width: 768px) {
  .p-contact__item--head {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.p-contact__item--head div {
  margin-left: 4px;
  margin-left: 0.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #FF7043;
}

.p-contact__item input {
  width: 100%;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  color: #E0E0E0 !important;
  border-color: #E0E0E0;
}
@media screen and (min-width: 768px) {
  .p-contact__item input {
    padding: 0.625rem 1rem;
  }
}

.p-contact__item textarea {
  width: 100%;
  border: 1px solid #E0E0E0;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  color: #fff !important;
  resize: none;
  height: 220px;
  height: 13.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item textarea {
    padding: 0.625rem 1rem;
  }
}

.p-contact__item .wpcf7-submit {
  width: 240px;
  width: 15rem;
  padding: 14px 0;
  padding: 0.875rem 0;
  background-color: #FF7043;
  font-weight: 600;
  margin: 0 auto;
  display: block;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .p-contact__item .wpcf7-submit {
    width: 20rem;
    padding: 1.25rem 0;
    font-size: 1.125rem;
  }
}

.p-contact__item .wpcf7-submit:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wpcf7-not-valid-tip {
  font-weight: 700;
}

.p-top-contact__titleBlock {
  color: #E0E0E0;
}

.p-top-contact__titleBlock::after {
  background-color: #E0E0E0;
}

.p-contact__item--last {
  margin-bottom: 0px;
  margin-bottom: 0rem;
}

.wpcf7-response-output {
  color: #E0E0E0 !important;
}

.wpcf7-not-valid-tip {
  color: #FF7043 !important;
}

.p-footer__logo {
  width: 240px;
  width: 15rem;
  height: auto;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 21.25rem;
    margin-bottom: 1.5rem;
  }
}

.p-footer__company {
  text-align: center;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__company {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
}

.p-footer__address {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.p-footer__copyright {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 0.875rem;
  }
}

.p-header-list-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header-list-pc {
    display: block;
  }
}

.p-header-list-pc__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}

.p-header-list-pc__item {
  color: #333;
}

.p-header-list-pc__item--cv a {
  background-color: #FF7043;
  padding: 10px 18px;
  padding: 0.625rem 1.125rem;
  border-radius: 50px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.p-test {
  font-size: 30px;
  font-size: 1.875rem;
  color: yellow;
  background-color: aqua;
}

.p-top-mv__textBlock {
  margin: 0 auto;
  font-weight: 600;
  color: #333;
}
.p-top-mv__text {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-top-mv__text {
    font-size: 3.5rem;
  }
}

.p-top-mv__text span {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__text span {
    font-size: 2rem;
  }
}

.p-top-mv__subText {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__subText {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}

.p-top-news__item {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__item {
    margin-bottom: 3rem;
  }
}

.p-top-news__date {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: gray;
}
@media screen and (min-width: 768px) {
  .p-top-news__date {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}

.p-top-news__title {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__title {
    margin-bottom: 1.5rem;
  }
}

.p-top-news__text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__text {
    font-size: 1rem;
  }
}

.grecaptcha-badge {
    visibility: hidden !important;
}
/*# sourceMappingURL=styles.css.map */
