@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #800373;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #800373;
}

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

ul, ol {
  padding-left: 1.5em;
  margin-top: 0;
  margin-bottom: 1em;
}

.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

.aligncenter {
  display: block;
  margin: 0 auto 1em;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  clip: auto;
  white-space: normal;
  background-color: #800373;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid #800373;
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.l-main {
  flex: 1;
  padding: 60px 0;
}
.l-main--front {
  padding: 0;
}

.l-container {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 1024px) {
  .l-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
  }
}
.l-content__main {
  min-width: 0;
}
.l-content__side {
  min-width: 0;
}

.l-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .l-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}

.l-header__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 60px;
  }
}

.l-header__branding {
  margin: 0;
}

.l-header__logo {
  display: block;
  height: 68px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    height: 40px;
  }
}

.l-header__nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav a {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.l-header__nav a:hover {
  color: #800373;
}

.l-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.l-header__toggle-icon, .l-header__toggle-icon::before, .l-header__toggle-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: 0.3s ease;
}
.l-header__toggle-icon {
  position: relative;
}
.l-header__toggle-icon::before, .l-header__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.l-header__toggle-icon::before {
  top: -7px;
}
.l-header__toggle-icon::after {
  top: 7px;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-icon {
  background-color: transparent;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.l-header__toggle[aria-expanded=true] .l-header__toggle-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media screen and (max-width: 767px) {
  .l-header__toggle {
    display: flex;
  }
  .l-header__nav #primary-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
  }
  .l-header__nav #primary-menu.is-open {
    display: block;
  }
  .l-header__nav #primary-menu ul {
    flex-direction: column;
    gap: 0;
  }
  .l-header__nav #primary-menu li a {
    display: block;
    padding: 1rem 20px;
    border-top: 1px solid #dddddd;
  }
}
.l-footer {
  background-color: #800373;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 40px;
  }
}
.home .l-footer, .front-page .l-footer {
  margin-top: 0;
}
.l-footer a {
  color: #800373;
}
.l-footer a:hover {
  opacity: 0.7;
}

.l-footer__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.l-footer__content {
  background-color: #ffffff;
  border-radius: 0;
  padding: 40px 60px;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}

.l-footer__company {
  flex-shrink: 0;
}

.l-footer__logo {
  display: block;
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    height: 48px;
  }
}

.l-footer__company-name {
  font-size: 1.25rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0.25em;
}

.l-footer__address {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 1rem;
  }
}

.l-footer__tel {
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .l-footer__tel {
    font-size: 1.2rem;
  }
}
.l-footer__tel a {
  color: #000000;
}

.l-footer__hours {
  font-size: 1.25rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .l-footer__hours {
    font-size: 1rem;
  }
}

.l-footer__links {
  display: flex;
  gap: 60px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
  }
}

.l-footer__links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-footer__links-col li {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer__links-col li {
    margin-bottom: 6px;
  }
}
.l-footer__links-col a {
  color: #800373;
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-footer__links-col a {
    font-size: 1rem;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}
.c-btn--primary {
  background-color: #800373;
  color: #fff;
}
.c-btn--primary:hover {
  background-color: rgb(78.1679389313, 1.8320610687, 70.2290076336);
  color: #fff;
}
.c-btn--outline {
  background-color: transparent;
  border-color: #800373;
  color: #800373;
}
.c-btn--outline:hover {
  background-color: #800373;
  color: #fff;
}

.c-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #dddddd;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.c-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.c-card__thumbnail {
  position: relative;
}
.c-card__thumbnail::before {
  content: "";
  display: block;
  padding-top: calc(9 / 16 * 100%);
}
.c-card__thumbnail > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.c-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0.75rem;
}
.c-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.c-card__title a {
  color: #000000;
}
.c-card__title a:hover {
  color: #800373;
}
.c-card__excerpt {
  font-size: 0.9375rem;
  color: #666666;
  flex: 1;
  margin-bottom: 1rem;
}
.c-card__link {
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 600;
  color: #800373;
}

input[type=text],
input[type=email],
input[type=search],
input[type=tel],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #800373;
}

.c-search {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
}
.c-search input[type=search] {
  flex: 1;
}
.c-search input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  background-color: #800373;
  color: #fff;
  width: auto;
}
.c-search input[type=submit]:hover {
  background-color: rgb(78.1679389313, 1.8320610687, 70.2290076336);
}

.c-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.c-pagination a, .c-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 0.9375rem;
}
.c-pagination .current {
  background-color: #800373;
  border-color: #800373;
  color: #fff;
}
.c-pagination a:hover {
  border-color: #800373;
  color: #800373;
}

.c-page-header {
  margin-bottom: 3rem;
}
.c-page-header__title {
  font-size: 2rem;
  border-left: 4px solid #800373;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .c-page-header__title {
    font-size: 1.5rem;
  }
}
.c-page-header__description {
  margin-top: 0.75rem;
  color: #666666;
}

.c-widget {
  margin-bottom: 2rem;
}
.c-widget__title {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #800373;
  margin-bottom: 1rem;
}
.c-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dddddd;
}

.l-footer__widgets .c-widget__title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.c-section-heading {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
.c-section-heading span {
  position: relative;
  display: inline;
}
.c-section-heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 24px;
  background-color: rgba(77, 0, 69, 0.2);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-section-heading span::after {
    height: 16px;
  }
}

.p-hero {
  position: relative;
  width: 100%;
  height: 652px;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .p-hero {
    height: auto;
  }
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media screen and (max-width: 1279px) {
  .p-hero__bg {
    position: unset;
  }
}
.p-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hero__copy {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    position: unset;
    transform: none;
    padding: 16px;
  }
}
.p-hero__title-wrap {
  background-color: #ffffff;
  padding: 16px 60px 16px 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-hero__title-wrap {
    padding: 0;
  }
}
.p-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #800373;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 1.5rem;
    white-space: normal;
  }
}
.p-hero__desc-wrap {
  background-color: #ffffff;
  padding: 16px 60px 16px 40px;
}
@media screen and (max-width: 767px) {
  .p-hero__desc-wrap {
    padding: 0;
  }
}
.p-hero__description {
  font-size: 1.5rem;
  color: #800373;
  line-height: 1.7;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-hero__description {
    font-size: 1rem;
  }
}

.p-about {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-about {
    margin-top: 8px;
    padding: 0;
  }
}
.p-about__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-about__heading {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-about__heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.p-about-values {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
  min-height: 780px;
}
@media screen and (max-width: 767px) {
  .p-about-values {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }
}

.p-about-value__image {
  text-align: center;
}
.p-about-value__image img {
  width: 100%;
}
.p-about-value__title {
  display: none;
}
.p-about-value__text {
  display: none;
}

.p-about-desc {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 900px;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-about-desc {
    font-size: 1rem;
  }
}
.p-about-desc p {
  margin-bottom: 1em;
}
.p-about-desc p:last-child {
  margin-bottom: 0;
}

.p-gallery {
  display: flex;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    margin-bottom: 40px;
  }
}
.p-gallery__item {
  flex: 1;
}
.p-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-service {
  position: relative;
  margin: 360px 0 460px;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 0;
    margin: 160px 0;
  }
}
.p-service__bg {
  position: absolute;
  inset: -40px 0 -210px;
  background-color: #800373;
  transform: skewY(-6deg);
  transform-origin: top left;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-service__bg {
    inset: -40px 0 -120px;
  }
}
.p-service__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.p-service__heading {
  font-size: 4rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-service__heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.p-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-service-card {
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
}
.p-service-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .p-service-card__icon {
    width: 80px;
    height: 80px;
  }
}
.p-service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
}
.p-service-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}
.p-service-card__link {
  display: inline-block;
  background-color: #800373;
  color: #fff;
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  align-self: flex-start;
}
.p-service-card__link:hover {
  opacity: 0.8;
  color: #fff;
}

.p-cta-links {
  aspect-ratio: 1280/400;
  background: url("/wp-content/themes/kagetora/assets/images/top/company-cta-link.png") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-cta-link__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 0;
  text-decoration: none;
  font-size: 5rem;
  color: #fff;
}
.p-cta-link__title:hover {
  color: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 1279px) {
  .p-cta-link__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-link__title {
    font-size: 1.6rem;
  }
}

.p-page-hero {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-page-hero {
    margin-bottom: 0;
  }
}
.p-page-hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1280/526;
  max-height: 526px;
  overflow: hidden;
}
.p-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(217, 217, 217, 0.5);
  z-index: 1;
}
.p-page-hero__title-bar {
  background-color: #800373;
  width: 100%;
  padding: 30px 80px;
}
@media screen and (max-width: 767px) {
  .p-page-hero__title-bar {
    padding: 12px;
  }
}
.p-page-hero__title {
  font-size: 4rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-hero__title {
    font-size: 1.5rem;
  }
}

.p-fire {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-fire {
    padding: 20px 0;
  }
}
.p-fire__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-fire__lead {
  max-width: 870px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-fire__lead {
    font-size: 1rem;
  }
}
.p-fire__lead p {
  margin-bottom: 1em;
}
.p-fire__lead p:last-child {
  margin-bottom: 0;
}

.p-fire-section {
  padding: 40px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-fire-section {
    padding: 20px 0;
  }
}
.p-fire-section__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-fire-section__body {
  max-width: 900px;
  margin: 0 auto;
}
.p-fire-section__body--text-image {
  display: flex;
  gap: 60px;
  max-width: 1060px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-fire-section__body--text-image {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.p-fire-section__body--image-text {
  display: flex;
  gap: 60px;
  max-width: 1060px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-fire-section__body--image-text {
    flex-direction: column;
    gap: 24px;
  }
}
.p-fire-section__body--text-only {
  max-width: 1060px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-fire-section__body--text-only {
    justify-content: center;
  }
}
.p-fire-section__body--text-only .p-fire-section__text {
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .p-fire-section__body--text-only .p-fire-section__text {
    max-width: 100%;
  }
}
.p-fire-section__image {
  flex-shrink: 0;
  width: 416px;
}
@media screen and (max-width: 767px) {
  .p-fire-section__image {
    width: 100%;
  }
}
.p-fire-section__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.p-fire-section__text {
  font-size: 1.5rem;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-fire-section__text {
    font-size: 1rem;
  }
}
.p-fire-section__text--center {
  text-align: center;
}
.p-fire-section__text p {
  margin-bottom: 1em;
}
.p-fire-section__text p:last-child {
  margin-bottom: 0;
}
.p-fire-section__text ul {
  padding-left: 2em;
  margin-bottom: 1em;
  list-style: disc;
}
.p-fire-section__text ul li {
  margin-bottom: 0.25em;
}

.p-fire-facilities {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-fire-facilities {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.p-fire-facility {
  text-align: center;
}
.p-fire-facility__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
}
@media screen and (max-width: 767px) {
  .p-fire-facility__icon {
    width: 60px;
    height: 60px;
  }
}
.p-fire-facility__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-fire-facility__name {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-fire-facility__name {
    font-size: 0.875rem;
  }
}

.p-entry__header {
  margin-bottom: 2rem;
}
.p-entry__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-entry__title {
    font-size: 1.375rem;
  }
}
.p-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #666666;
}
.p-entry__thumbnail {
  margin-bottom: 2rem;
}
.p-entry__content {
  line-height: 1.9;
}
.p-entry__content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}
.p-entry__content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
}
.p-entry__content a {
  text-decoration: underline;
  text-decoration-color: #800373;
}
.p-entry__content img {
  display: block;
  margin: 2rem auto;
}
.p-entry__footer {
  margin-top: 2rem;
}

.p-post-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #dddddd;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.p-contact {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 20px 0;
    margin-top: 0;
  }
}
.p-contact__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 720px;
}
.p-contact__lead {
  margin-bottom: 120px;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
}
.p-contact__lead p {
  margin-bottom: 1em;
}
.p-contact__lead p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__lead p {
    margin-bottom: 0.5em;
  }
}

.p-contact-form__group {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__group {
    margin-bottom: 12px;
  }
}
.p-contact-form__group br {
  display: none;
}
.p-contact-form__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__label {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.p-contact-form__input, .p-contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0;
  background-color: #fff;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  transition: border-color 0.3s ease;
}
.p-contact-form__input:focus, .p-contact-form__textarea:focus {
  outline: none;
  border-color: #800373;
}
.p-contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}
.p-contact-form__radio-wrap {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    margin-bottom: 16px;
  }
}
.p-contact-form__radio-wrap .wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-bottom: 12px;
}
.p-contact-form__radio-wrap .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.p-contact-form__radio-wrap .wpcf7-list-item-label {
  margin-left: 8px; /* ラジオボタンとテキストの間の余白 */
  cursor: pointer;
}
.p-contact-form__agreement {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agreement {
    margin: 20px 0;
  }
}
.p-contact-form__agreement .wpcf7-list-item {
  margin-left: 0;
}
.p-contact-form__agreement label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  cursor: pointer;
}
.p-contact-form__agreement input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.p-contact-form__submit {
  text-align: left;
}
.p-contact-form__btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: #800373;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.p-contact-form__btn:hover {
  opacity: 0.8;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .wpcf7 .wpcf7-submit {
    min-width: 200px;
  }
}
.wpcf7 .wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid #dddddd;
  font-size: 0.9375rem;
}
.wpcf7.sent .wpcf7-response-output {
  border-color: #27ae60;
  color: #27ae60;
  background-color: #eafaf1;
}
.wpcf7.failed .wpcf7-response-output, .wpcf7.invalid .wpcf7-response-output {
  border-color: #c0392b;
  color: #c0392b;
  background-color: #fdedec;
}

.p-solar {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-solar {
    padding: 40px 0;
  }
}
.p-solar__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-solar__lead {
  max-width: 870px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-solar__lead {
    font-size: 1rem;
  }
}
.p-solar__lead p {
  margin-bottom: 1em;
}
.p-solar__lead p:last-child {
  margin-bottom: 0;
}

.p-solar-section {
  padding: 40px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-solar-section {
    padding: 30px 0 40px;
  }
}
.p-solar-section__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-solar-section__body {
  max-width: 900px;
  margin: 0 auto;
}
.p-solar-section__text {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-solar-section__text {
    font-size: 1rem;
  }
}
.p-solar-section__text--center {
  text-align: center;
}
.p-solar-section__text p {
  margin-bottom: 1em;
}
.p-solar-section__text p:last-child {
  margin-bottom: 0;
}
.p-solar-section__text ul {
  padding-left: 2em;
  margin-bottom: 1em;
  list-style: disc;
}
.p-solar-section__text ul li {
  margin-bottom: 0.25em;
}

.p-solar-image {
  padding: 20px 0;
}
.p-solar-image__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 900px;
}
.p-solar-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.p-company-section {
  padding: 40px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-company-section {
    padding: 30px 0 40px;
  }
}
.p-company-section__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-company-section__subheading {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-company-section__subheading {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
}
.p-company-section__body {
  max-width: 900px;
  margin: 0 auto;
}

.p-company-philosophy__item {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-company-philosophy__item {
    margin-bottom: 16px;
  }
}
.p-company-philosophy__item:last-child {
  margin-bottom: 0;
}
.p-company-philosophy__title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4px;
  position: relative;
  padding-left: 24px;
}
.p-company-philosophy__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  background-color: #800373;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-company-philosophy__title {
    font-size: 1rem;
    padding-left: 20px;
  }
}
.p-company-philosophy__text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 42px;
}
@media screen and (max-width: 767px) {
  .p-company-philosophy__text {
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-company-greeting {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-company-greeting {
    font-size: 1.1rem;
  }
}
.p-company-greeting p {
  margin-bottom: 1.5em;
}
.p-company-greeting p:last-child {
  margin-bottom: 0;
}
.p-company-greeting__sign {
  text-align: right;
  font-weight: 700;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__sign {
    margin-top: 0;
  }
}

.p-company-table {
  width: 100%;
  border-collapse: collapse;
}
.p-company-table tr {
  border-bottom: 2px solid #800373;
}
.p-company-table td {
  padding: 16px 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-company-table td {
    font-size: 0.9rem;
    display: block;
    padding: 4px 0 8px;
    margin-bottom: 0;
  }
}
.p-company-table td:first-child {
  width: 180px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-company-table td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
}

.p-recruit {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    padding: 20px 0;
    margin-top: 0;
  }
}
.p-recruit__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-recruit__lead {
  max-width: 870px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-recruit__lead {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.p-recruit__lead p {
  margin-bottom: 1em;
}
.p-recruit__lead p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__lead p {
    margin-bottom: 0.5em;
  }
}
.p-recruit__subtitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}

.p-recruit-section {
  padding: 40px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit-section {
    padding: 0 0 40px;
  }
}
.p-recruit-section__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-recruit-section__body {
  max-width: 900px;
  margin: 0 auto;
}
.p-recruit-section__text {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-recruit-section__text {
    font-size: 1rem;
  }
}
.p-recruit-section__text--center {
  text-align: center;
}
.p-recruit-section__text p {
  margin-bottom: 1em;
}
.p-recruit-section__text p:last-child {
  margin-bottom: 0;
}

.p-recruit-cards {
  display: flex;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit-cards {
    flex-direction: column;
    gap: 20px;
  }
}

.p-recruit-card {
  flex: 1;
  border: 2px solid #800373;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit-card {
    padding: 20px 16px;
  }
}
.p-recruit-card__keyword {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-recruit-card__keyword {
    font-size: 1.25rem;
  }
}
.p-recruit-card__title {
  font-size: 1rem;
  margin-bottom: 32px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-recruit-card__title {
    margin-bottom: 16px;
  }
}
.p-recruit-card__text {
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: left;
  color: #666666;
  margin: 0;
}

.p-privacy {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding: 40px 0;
  }
}
.p-privacy__inner {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 900px;
}
.p-privacy__body {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy__body {
    font-size: 1rem;
  }
}
.p-privacy__body p {
  margin-bottom: 2em;
}
.p-privacy__body p:last-child {
  margin-bottom: 0;
}
.p-privacy__subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-privacy__subtitle {
    font-size: 1.2rem;
  }
}
.p-privacy__subtitle:first-child {
  margin-top: 0;
}

.u-hidden {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb8 {
  margin-bottom: 8px !important;
}

.u-mb16 {
  margin-bottom: 16px !important;
}

.u-mb24 {
  margin-bottom: 24px !important;
}

.u-mb32 {
  margin-bottom: 32px !important;
}

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

.u-mb48 {
  margin-bottom: 48px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt8 {
  margin-top: 8px !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt48 {
  margin-top: 48px !important;
}

/*# sourceMappingURL=main.css.map */
