@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* 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: 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;
}

.header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 80px;
  padding: 0px 25px;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
  }
}

.header__logo {
  width: 180px;
}

.header__logo img {
  height: inherit;
}

.header__nav {
  display: flex;
  height: 80px;
  padding: 12px 0px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.header__nav-item a {
  font-family: "$base-font";
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.2px;
  align-items: center;
  cursor: pointer;
}

.header__contact {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  border: 1px solid #711D13;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header__contact-button {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: inherit;
  font-family: "$base-font";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.2px;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.header__contact-icon {
  fill: #000;
  transition: fill 0.3s ease;
}

.header__contact:hover {
  background-color: #711D13;
  color: #fff;
}

.header__contact:hover .header__contact-icon {
  fill: #fff;
}

.clickable-wrapper {
  cursor: pointer;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}

.hamburger.is-active {
  right: 20px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease-in-out;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.hamburger.is-active span:nth-child(2) {
  top: 8px;
  opacity: 0;
  background-color: #fff;
}

.hamburger.is-active span:nth-child(3) {
  top: 16px;
  transform: rotate(45deg);
  background-color: #fff;
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #711D13;
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item a {
  color: #fff;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 50px;
}

.drawer-menu__link {
  font-style: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.drawer-menu__contact {
  margin-top: 48px;
}

.drawer-menu__contact {
  color: #fff;
}

.fv {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 500;
}
  @media screen and (max-width: 768px) {
    .fv {
      height: 400px;
    }
}

.fv__img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv__img {
    height: 400px;
  }
}

.fv__category {
  position: absolute;
  left: 40px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  .fv__category {
    left: 20px;
    top: 60px;
  }
}

.fv__title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4.8px;
  background-color: rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 20px;
  }
}

.fv__text {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.84px;
  width: 600px;
  background-color: rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .fv__text {
    display: none;
  }
}

.about {
  display: flex;
  justify-content: center;
}

.about_container {
  width: 100%;
  margin: 180px 0;
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .about_container {
    margin: 30px 0;
  }
}

.about__logo {
  display: flex;
  flex-direction: column;
  width: 576px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.about__logo__title {
  color: #000;
  display: inline-block;
  font-family: "$base-font";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.2px;
}
@media screen and (max-width: 768px) {
  .about__logo__title {
    font-size: 20px;
  }
}

.about_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto 0;
  width: 530px;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about_message {
    padding: 0;
    height: 100%;
    gap: 30px;
  }
}

.about__title {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 28px;
  }
}

.about__text {
  color: #000;
  font-family: "$base-font";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 12px;
    padding: 0 32px;
  }
}

.about__text p {
  text-indent: 1em;
}

.contact__button {
  display: flex;
  width: 240px;
  height: 40px;
  padding: 10px 16px;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  justify-content: center;
  position: relative;
  background-color: rgba(217, 217, 217, 0.2);
  box-shadow: 0 8px 4px rgba(0, 0, 0, 0.2509803922);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact__button:hover,
.contact__button.touch-hover {
  transform: translateY(4px);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2509803922);
}

.contact__button a {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}

.contact__button span {
  padding-left: 45px;
  position: absolute;
  top: 8px;
}

.business-area {
  display: flex;
  width: 100%;
  padding: 120px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .business-area {
    padding: 60px 0px;
  }
}

.business-area__title {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 768px) {
  .business-area__title {
    font-size: 28px;
  }
}

.business-area__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  width: auto;
  align-self: center;
}

.business-area__item {
  position: relative;
}

.business-area__img {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .business-area__img {
    width: 300px;
    height: 300px;
  }
}

.hover-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2); /* 半透明な黒背景 */
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  outline: 3px dashed #ffffff;
  outline-offset: -30px;
}

.hover-item__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.hover-item__subtitle {
  font-size: 18px;
  margin: 8px 0 20px;
}

.hover-item__button {
  background-color: #922e23;
  color: #fff;
  margin-top: 30px;
  padding: 10px 24px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hover-item__button:hover {
  background-color: #2f2d30;
}

.hover-item:hover .hover-item__overlay {
  opacity: 1;
  transform: translateY(0);
}

.hover-item__overlay.show-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.business-area__link {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}

.sdgs {
  display: flex;
  justify-content: center;
  min-height: 490px;
  margin: 200px 0;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .sdgs {
    min-height: 0px;
    margin: 30px 0;
    gap: 0;
  }
}

.sdgs__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
}
@media screen and (max-width: 1200px) {
  .sdgs__container {
    gap: 0;
  }
}

.sdgs__title {
  max-height: 116px;
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 768px) {
  .sdgs__title {
    font-size: 24px;
  }
}

.sdgs__img-small {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sdgs__img-small {
    display: block;
    width: 400px;
    justify-content: center;
    align-items: center;
  }
}

.sdgs__description {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: "$base-font";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 1200px) {
  .sdgs__description {
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 768px) {
  .sdgs__description {
    font-size: 12px;
  }
}

.sdgs__link {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}

.sdgs__img {
  justify-content: center;
  align-items: center;
  width: 640px;
  height: 450px;
  aspect-ratio: 640/450;
}
@media screen and (max-width: 1200px) {
  .sdgs__img {
    display: none;
    width: 100%;
    height: 100%;
  }
}

.sdgs__img {
  aspect-ratio: 106/75;
  background: cover no-repeat, #D9D9D9;
  -o-object-fit: cover;
  object-fit: cover; /* 画像の切り取り調整（必要なら） */
}

.contact {
  display: flex;
  width: 100%;
  padding: 140px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact {
    padding:30px 0;
  }
}

.contact__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
  z-index: -1;
}

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

.contact__title {
  color: #000;
  font-family: "$base-font";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.2px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 24px;
  }
}

.contact__message {
  color: #000;
  font-family: "$base-font";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__message {
    font-size: 20px;
  }
}

.contact__button--white {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  gap: 4px;
  border-radius: 50px;
  background-color: #ffffff;
  color: #000;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  width: auto;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.contact__button--white a {
  font-family: "$base-font";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  color: #000;
}

.contact__button--white svg {
  height: 24px;
}

.contact-icon {
  width: 18px;
  height: 13px;
  aspect-ratio: 18/13;
  vertical-align: middle;
  transition: fill 0.3s ease;
}

.contact__button--white:hover {
  background-color: #711D13;
  color: #fff;
}

.contact__button--white:hover a {
  color: #fff;
}

.contact__button--white:hover .contact-icon {
  fill: #fff;
}


.footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #f8f9fb;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  gap: 40px;
  width: 100%;
  flex-wrap: nowrap;
}

@media screen and (max-width: 1024px) {
  .footer__container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    padding-left: 0;
  }
}

.footer__info,
.footer__map {
  flex: 1;
  max-width: 50%;
  width: 100%;
  box-sizing: border-box;
}

.footer__info {
  display: flex;
  height: 343px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  width: auto;
}

@media screen and (max-width: 1024px) {
  .footer__info {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

.footer__info img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}

.footer__logo {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}

.footer__company {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  align-self: stretch;
  flex-wrap: wrap;
}

.footer__company__name {
  color: #000;
  font-family: "$base-font";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__address {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__nav {
  display: flex;
  width: 300px;
  height: 90px;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__link {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

@media screen and (max-width: 1024px) {
  .footer__map {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

.map-iframe {
  width: 100%;
  height: 343px;
  border: none;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .map-iframe {
    width: 100%;
  }
}

.footer__copyright {
  align-self: stretch;
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* 会社概要ページ */
main {
  padding-top: 57px;
}


@media screen and (max-width: 768px) {
  #wpadminbar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
    }
}

.title-frame {
  width: 100%;
  height: 140px;
  padding-left: 7.5%;
  background-color: #711D13;
  display: flex;
  align-items: center;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .title-frame {
    height: 100px;
  }
}

.title-frame__title {
  color: #FFF;
  font-family: "$base-font";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .title-frame__title {
    font-size: 28px;
  }
}

.about-detail {
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .about-detail {
    margin-bottom: 30px;
  }
}

.company-info__intro {
  margin: 120px auto 80px;
}
@media screen and (max-width: 768px) {
  .company-info__intro {
    margin: 30px auto;
  }
}

.info__title {
  position: absolute;
  left: 7.5%;
  top: 200px;
  color: #000;
  font-family: "$base-font";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.2px;
}
@media screen and (max-width: 768px) {
  .info__title {
    top: 140px;
    font-size: 20px;
  }
}

.company-info__logo {
  width: 696px;
}
@media screen and (max-width: 1024px) {
  .company-info__logo {
    width: 100%;
    margin-top: 30px;
  }
}

.company-info__description {
  margin: 0 auto;
  max-width: 953px;
  color: #000;
  font-family: "$base-font";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 768px) {
  .company-info__description {
    font-size: 16px;
    margin: 0 7.5%;
  }
}

.company-info__description p {
  text-indent: 1em;
}

.company-info__details {
  margin: 85px auto 0;
}
@media screen and (max-width: 768px) {
  .company-info__details {
    margin: 30px 7.5% 0;
  }
}

.company-info__list {
  color: #000;
  font-family: "$base-font";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 768px) {
  .company-info__list {
    font-size: 16px;
  }
}

.company-info__item {
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px black solid;
}

.company-info__item:not(:first-child) {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .company-info__item:not(:first-child) {
    margin-top: 30px;
  }
}

.company-info__term {
  min-width: 58px;
}

.company-info__desc {
  padding-left: 1rem;
}

.group-company {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  scroll-margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .group-company {
    scroll-margin-top: 80px;
  }
}

.group-company__title {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .group-company__title {
    margin-top: 30px;
  }
}

.group-company__name {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.2px;
}
@media screen and (max-width: 768px) {
  .group-company__name {
    font-size: 24px;
  }
}

.group-company__description {
  margin-top: 50px;
  max-width: 953px;
  color: #000;
  font-family: "$base-font";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
  text-indent: 1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .group-company__description {
    font-size: 16px;
    margin: 30px 7.5% 0;
  }
}

.group-company__category {
  display: flex;
  padding: 64px 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 50px;
  scroll-margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .group-company__category {
    flex-direction: column-reverse;
    scroll-margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .group-company__category {
    margin: 0 7.5%;
    gap: 20px;
    padding: 30px 0;
  }
}

.group-company__category:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .group-company__category:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.group-company__image {
  width: 600px;
  aspect-ratio: 150/107;
}
@media screen and (max-width: 768px) {
  .group-company__image {
    width: 100%;
  }
}

.group-company__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 550px;
}

.group-company__label {
  color: #000;
  font-family: "$base-font";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.2px;
  text-indent: 0.75em;
}
@media screen and (max-width: 768px) {
  .group-company__label {
    font-size: 24px;
  }
}

.group-company__list {
  color: #000;
  font-family: "$base-font";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  padding-left: 1.5em; /* ・の幅＋インデント */
  text-indent: -1em; /* 最初の行だけ戻す */
}
@media screen and (max-width: 768px) {
  .group-company__list {
    font-size: 16px;
  }
}

.group-company__list span {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .group-company__list span {
    font-size: 20px;
  }
}

.contact__button--center {
  display: flex;
  width: 300px;
  height: 60px;
  padding: 10px 16px;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  justify-content: center;
  position: relative;
  background-color: #d9d9d933;
  box-shadow: 0 8px 4px #00000040;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  margin: 0 auto 60px;
}
  @media screen and (max-width: 768px) {
    .contact__button--center {
    margin: 0 auto 30px;
    width: 240px;
    height: 40px;
    }
}

.contact__button--center:hover,
.contact__button--center.touch-hover {
  transform: translateY(4px);
  box-shadow: 0 0px 0px #00000040;
}

.contact__button--center a {
  color: #000;
  text-align: center;
  font-family: "$base-font";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}

.csr {
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.breadcrumb {
  position: absolute;
  left: 7.5%;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    top: 100px;
  }
}

.csr__heading {
  max-width: 1176px;
  margin: 160px auto 20px;
  padding: 60px 120px;
  border: 1px solid #000000;
}
@media screen and (max-width: 1200px) {
  .csr__heading {
    width: 85%;
    padding: 80px 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  .csr__heading {
    padding: 10px 20px;
    margin: 100px auto 30px;
  }
}

.csr__title {
  color: #000;
  font-family: "$base-font";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 768px) {
  .csr__title {
    font-size: 20px;
  }
}

.csr__description {
  margin-top: 20px;
  color: #000;
  font-family: "$base-font";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .csr__description {
    font-size: 16px;
  }
}

.csr__block {
  border-bottom: 1px solid black;
  display: inline-block;
  margin: 0 auto 20px;
  max-width: 1176px;
}
@media screen and (max-width: 768px) {
  .csr__block {
    margin: 0px 7.5% 20px;
  }
}

.csr__icons {
  display: inline-block;
  margin: 140px auto 0;
}
@media screen and (max-width: 768px) {
  .csr__icons {
    margin: 0px auto;
  }
}

.csr__icons img {
  height: 140px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.csr__subtitle {
  color: #000;
  font-family: "$base-font";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.2px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .csr__subtitle {
    font-size: 24px;
    margin: 20px 0;
  }
}

.csr__text {
  margin: 0 auto;
  text-align: left;
  color: #000;
  font-family: "$base-font";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .csr__text {
    font-size: 16px;
  }
}

.csr__list {
  text-align: left;
  margin: 20px auto;
}

.csr__item {
  color: #000;
  font-family: "$base-font";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .csr__item {
    font-size: 16px;
  }
}


.form__list {
  margin-top: 40px;
}

.form__field+ .form__field,
.form__acceptance {
  margin-top: 24px;
}

.form__required {
  color: #e20000;
}

.form__input::placeholder {
  color: #a9a9a9;
}

.form__textarea {
  height: 160px;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
}

.form__acceptance-text {
  overflow-y: auto;
  height: 120px;
  background-color: #f2f2f2;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 46%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #000;
  border-right: solid 2px #000;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__data,
.form__data-radio,
.form__data-select,
.form__data-check {
  margin-top: 4px;
}

.wpcf7-form {
  max-width: 1024px;
  margin: 0 auto;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item+ .wpcf7-list-item {
  margin-left: 20px;
}

.wpcf7-form-control-wrap[data-name="radio-category"] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item-label::before {
  position: absolute;
  top: 56%;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 7px;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item-label::after {
  position: absolute;
  top: 56%;
  left: 3px;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 4px;
  background-color: #000;
}

.wpcf7-form-control-wrap[data-name="radio-category"]
  .wpcf7-list-item
  input:checked+ .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-list-item-label::before {
  position: absolute;
  top: 3.25px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #000;
  border-radius: 3px;
}

.wpcf7-form-control-wrap[data-name="privacy"] .wpcf7-list-item-label::after {
  position: absolute;
  top: 9.25px;
  left: 5px;
  width: 10px;
  height: 5px;
  content: "";
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
}

.wpcf7 form .wpcf7-response-output {
  border: 0px;
}

.form__checkbox:checked+ .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__submit-button {
  margin-top: 40px;
  text-align: center;
}

.form__submit-input {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 16px 20px;
  transition: opacity 0.3s;
  color: #fff;
  border-radius: 4px;
  background-color: #000;
  &:hover {
    transition: opacity 0.3s;
    opacity: 0.7;
  }
}



.contact__inner {
  margin-top: 40px;
}

.contact__text {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact__list {
  width: 100%;
}

.contact__item + .contact__item {
  margin-top: 24px;
}

.contact__term {
  font-weight: bold;
  font-size: 14px;
}

.contact__required {
  color: #e20000;
  margin-left: 4px;
  font-size: 12px;
}

.contact__definition {
  margin-top: 4px;
  font-size: 14px;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
  background-color: #f9f9f9;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact__definition--textarea {
  overflow: visible;
  height: auto;
  min-height: 160px;
  white-space: pre-line;
  margin: 0;
  padding: 0;
}

.contact__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact__buttons > * {
  display: flex;
}

.form__sumbit-input,
.contact__back-button,
.contact__submit-input {
  display: inline-block;
  padding: 16px 20px;
  font-size: 14px;
  border-radius: 40px;
  width: 100%;
  min-width: 200px;
  max-width: 220px;
  transition: opacity 0.3s;
  text-align: center;
}

.contact__back-button {
  background-color: #ccc;
  color: #000;
  border: none;
  margin-right: 40px;
  height: 53px;
  margin-bottom: 40px;
}

.contact__submit-input,
.form__sumbit-input {
  background-color: #711D13;
  color: #fff;
  border: none;
  margin-bottom: 40px;
}

.contact__back-button:hover,
.contact__submit-input:hover {
  opacity: 0.7;
}

.privacy_title_base {
text-align: right;
}

.privacy_container {
  max-width: 953px;
  margin: 0 auto;
}

.privacy_item {
  margin-top: 60px;
}

.privacy_title {
  color: #000;
  font-family: "$base-font";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.2px;
}

.privacy_list {
  padding-top: 20px;
  color: #000;
  font-family: "$base-font";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 1.5em;
  position: relative;
}

.privacy_list li::before {
  position: absolute;
  left: 0;;
  content: "・";
  margin-right: 0.5em;
  color: #000;
}

.privacy_text {
  padding-top: 20px;
  color: #000;
  font-family: "$base-font";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
  text-indent: 1em;
}

.recruit {
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 60px;
}

.recruit__contents {
  margin: 0 7.5% 40px;
  padding: 30px;
  border: 1px solid #711D13;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .recruit__contents {
    margin: 0 2.5% 40px;
    padding: 10px;
  }
}

.recruit__contents:first-child {
  margin-top: 80px;
}

.recruit__description {
  display: flex;
}

@media screen and (max-width: 768px) {
  .recruit__description {
    font-size: 13px;
  }
}

.recruit__description-term {
  width: 18%;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .recruit__description-term {
    width: 60px;
    flex-shrink: 0;
  }
}

.recruit__description-detail {
  width: auto;
  line-height: 1.6;
  flex: 1;
  word-break: break-word;
}

.recruit__description:not(:last-of-type) ,
.recruit__description:not(:last-of-type)  {
  margin-bottom: 20px;
  padding-bottom:20px;
  border-bottom: 1px solid #711D13;
}

.recruit__note {
  text-align: center;
  font-style: 2rem;
}

.recruit__note-lead {
  margin-bottom: 20px;
  margin:0 7.5%;
}

.recruit__note-text {
  margin-top: 20px;
}

.complete {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
  height: 500px;
}

.contact__button--form--inline {
  display: block;
  margin: 30px auto 0;
  text-align: center;
  padding: 6px 16px;
}

/* 追加分 */
.contact-box {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.contact-box__inner {
  background-color: #ffffff;
  border-radius: 20px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.contact-box__title {
  font-size: 28px;
  font-weight: bold;
  color: #711D13;
  margin-bottom: 10px;
}

.contact-box__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 40px;
}

.contact-box__options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-box__option {
  background-color: #f2f4f8;
  border: 2px solid #711D13;
  border-radius: 20px;
  padding: 30px 28px;
  width: 300px;
  text-align: center;
}

.contact-box__label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333333;
}

.contact-box__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: bold;
  color: #711D13;
  margin-bottom: 8px;
}

.contact-box__icon {
  width: 32px;
  height: 32px;
}

.contact-box__tel {
  font-size: 24px;
  font-weight: bold;
  color: #711D13;
  text-decoration: underline;
}

.contact-box__hours {
  font-size: 14px;
  color: #333333;
}

.contact-box__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #ffffff;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-box__button:hover {
  background-color: #711D13;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .contact-box {
    padding: 40px 40px;
  }

  .contact-box__inner {
    padding: 40px 20px;
  }

  .contact-box__title {
    font-size: 22px;
  }

  .contact-box__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-box__option {
    width: 100%;
    max-width: 340px;
    padding: 30px 48px;
  }

  .contact-box__phone {
    font-size: 20px;
  }

  .contact-box__tel {
    font-size: 20px;
  }

  .contact-box__icon {
    width: 24px;
    height: 24px;
  }

  .contact__button--form {
    margin: 0 auto;
    width: 150px;
  }
}

.gyosho {
  font-family: 'Yuji Boku', serif;
  font-size: 50px;
  color: #711D13;
}

  @media screen and (max-width: 768px) {
    .gyosho {
      font-size: 24px;
    }
  }

  .gyosho--white {
    font-family: 'Yuji Boku', serif;
    font-size: 50px;
    color: #fff;
  }

  @media screen and (max-width: 768px) {
    .gyosho--white {
      font-size: 24px;
    }
  }