* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 2.5vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.site-header {
  display: none;
}
@media screen and (min-width: 1441px) {
  .site-header {
    display: block;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .site-header {
    display: block;
  }
}
.site-header {
  width: 100%;
  height: 100px;
  background-color: #ffffff;
}
.site-header__inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #000000;
}
.site-header__logo img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__company-name {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  white-space: nowrap;
  color: #000000;
}
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.site-header__nav a {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  color: #000000;
  text-decoration: none;
}
.site-header__nav a:hover {
  opacity: 0.7;
}
.site-header__tel a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 229px;
  height: 50px;
  padding: 10px 20px;
  background-color: #d53a46;
  text-decoration: none;
}
.site-header__tel span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  white-space: nowrap;
  color: #ffffff;
}

.site-header-mobile {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .site-header-mobile {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .site-header-mobile {
    display: block;
  }
}
.site-header-mobile {
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 70px;
  background-color: #ffffff;
}
.site-header-mobile__inner {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header-mobile__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000000;
}
.site-header-mobile__logo img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header-mobile__company-name {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  color: #000000;
}
.site-header-mobile__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header-mobile__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d53a46;
  text-decoration: none;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #000000;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu-overlay {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .menu-overlay {
    width: 80%;
  }
}
.menu-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
.menu-overlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  z-index: 999999;
  height: 50px;
  background-color: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.menu-overlay__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 180px;
}
.menu-overlay__nav li {
  display: flex;
  flex-direction: column;
}
.menu-overlay__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-decoration: none;
  color: #ffffff;
  padding-bottom: 20px;
}
.menu-overlay__nav a span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
  flex: 1;
}
.menu-overlay__nav a:hover {
  opacity: 0.7;
}
.menu-overlay__divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv {
    height: calc(100vh - 70px);
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: calc(100vh - 70px);
  }
}
.mv__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mv__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.mv__slide.is-active {
  opacity: 1;
}
.mv__slide--1 {
  background-image: url("./img/mv01.png");
}
@media screen and (max-width: 768px) {
  .mv__slide--1 {
    background-image: url("./img/mv01_sp.png");
  }
}
.mv__slide--2 {
  background-image: url("./img/mv02.png");
}
@media screen and (max-width: 768px) {
  .mv__slide--2 {
    background-image: url("./img/mv02_sp.png");
  }
}
.mv__slide--3 {
  background-image: url("./img/mv03.png");
}
@media screen and (max-width: 768px) {
  .mv__slide--3 {
    background-image: url("./img/mv03_sp.png");
  }
}
.mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.mv__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.mv__text-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  .mv__text-wrapper {
    margin-top: 80vw;
  }
}
.mv__text-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  filter: blur(100px);
  z-index: 0;
}
.mv__heading {
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 4px 4px 20px rgb(0, 0, 0);
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .mv__heading {
    font-size: 24px;
    white-space: normal;
    text-align: center;
  }
}
.mv__subheading {
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-shadow: 4px 4px 20px rgb(0, 0, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__subheading {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .mv__subheading {
    font-size: 14px;
  }
}

.news {
  position: relative;
}
.news .top_news_bg {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news .top_news_bg {
    height: 80vw;
  }
}
.news .top_news_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__inner {
  max-width: 1440px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 100px;
  width: 90%;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news__inner {
    padding: 50px 40px;
    gap: 60px;
    top: -30%;
  }
}
@media screen and (max-width: 768px) {
  .news__inner {
    flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
    top: -20%;
  }
}
.news__inner ul {
  list-style: none;
}
.news__inner ul a {
  text-decoration: none;
  color: #000000;
}
.news__inner ul a li {
  border-bottom: 1px solid #000000;
  padding-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  .news__inner ul a li {
    padding-bottom: 1vw;
  }
}
.news__inner ul a .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .news__inner ul a .outline {
    gap: 4vw;
    flex-flow: column;
    justify-content: center;
  }
}
.news__inner ul a .outline .date, .news__inner ul a .outline .title {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news__inner ul a .outline .date, .news__inner ul a .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .news__inner ul a .outline .date, .news__inner ul a .outline .title {
    font-size: 3.4vw;
  }
}
.news__heading {
  display: flex;
  align-items: center;
  gap: 21px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news__heading {
    flex-flow: column;
    align-items: center;
    gap: 2vw;
    margin-bottom: 4vw;
  }
}
.news__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.2;
  color: #d53a46;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news__en {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .news__en {
    font-size: 40px;
  }
}
.news__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news__ja {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .news__ja {
    font-size: 18px;
  }
}
.news__list {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .news__list {
    width: 100%;
    text-align: center;
  }
}
.news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
  text-decoration: none;
  color: #000000;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.news__date {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 16px;
  }
}
.news__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 14px;
  }
}
.news a.news__item:hover {
  opacity: 0.7;
}

.about {
  position: relative;
  width: 100%;
  min-height: 938px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    min-height: 719px;
  }
}
.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .about__bg .pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  .about__bg .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .about__bg .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about__bg .sp {
    display: none;
  }
}
.about__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.about__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about__accent {
  position: absolute;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 768px) {
  .about__accent {
    display: block;
  }
}
.about__accent--tr {
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #ffe500;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.about__accent--bl {
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: #ffe500;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.about__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 200px 80px;
  min-height: 938px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about__inner {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding: 120px 20px;
    min-height: 719px;
    align-items: flex-start;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about__content {
    max-width: 560px;
  }
}
@media screen and (max-width: 768px) {
  .about__content {
    gap: 20px;
    max-width: 100%;
  }
}
.about__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about__en {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .about__en {
    font-size: 48px;
  }
}
.about__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .about__ja {
    font-size: 20px;
  }
}
.about__body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .about__body p {
    font-size: 14px !important;
  }
}
.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #d53a46;
  padding: 10px 20px;
  width: 229px;
  margin: auto;
  height: 50px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .about__btn {
    gap: 10px;
    width: 60%;
    height: auto;
    padding: 12px 20px;
  }
}
.about__btn span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about__btn span {
    font-size: 18px;
  }
}
.about__btn svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .about__btn svg {
    width: 23px;
    height: 23px;
  }
}
.about__btn:hover {
  opacity: 0.85;
}

.business__header {
  background-color: #ffffff;
  padding: 80px 80px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business__header {
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .business__header {
    padding: 60px 20px 40px;
  }
}
.business__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 1.2;
  color: #d53a46;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business__en {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .business__en {
    font-size: 48px;
  }
}
.business__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .business__ja {
    font-size: 24px;
  }
}
.business__cards {
  display: flex;
}
@media screen and (max-width: 768px) {
  .business__cards {
    flex-direction: column;
  }
}
.business__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  min-height: 400px;
  width: 50%;
  height: 35vw;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .business__card {
    width: 100%;
    height: 70vw;
  }
}
.business__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
  height: 8vw;
  background-color: #B3B2AA;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .business__card::before {
    width: 12vw;
    height: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business__card {
    padding: 50px 40px;
    min-height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .business__card {
    padding: 40px 20px;
    min-height: 220px;
  }
}
.business__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.business__card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.business__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}
.business__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .business__card-inner {
    gap: 20px;
  }
}
.business__card-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business__card-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .business__card-title {
    font-size: 28px;
  }
}
.business__card svg {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .business__card svg {
    width: 40px;
    height: 40px;
  }
}
.business__card:hover .business__card-overlay {
  background-color: rgba(0, 0, 0, 0.65);
}

.area {
  position: relative;
  overflow: hidden;
}
.area__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
}
.area__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.area__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .area__inner {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 768px) {
  .area__inner {
    flex-direction: column;
    padding: 0px;
  }
}
.area__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  width: 50%;
  height: 40vw;
  flex-shrink: 0;
  background-image: url("./img/top_area_bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .area__text {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .area__text {
    gap: 30px;
    width: 100%;
    height: 75vw;
  }
}
.area__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .area__heading {
    gap: 16px;
  }
}
.area__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 1.2;
  color: #d53a46;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .area__en {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .area__en {
    font-size: 48px;
  }
}
.area__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .area__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .area__ja {
    font-size: 24px;
  }
}
.area__body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .area__body {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .area__body {
    font-size: 14px !important;
  }
}
.area__map {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  width: 50%;
  height: 40vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .area__map {
    min-height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .area__map {
    width: 100%;
    min-height: 260px;
  }
}
.area__map img {
  width: 100%;
  height: 100%;
}

@keyframes works-scroll-pc {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3360px);
  }
}
@keyframes works-scroll-sp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2176px);
  }
}
.works {
  background-color: #ffffff;
  padding-top: 80px;
  overflow: hidden;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 60px;
    margin-bottom: 8vw;
  }
}
.works__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 80px 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works__header {
    padding: 0 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  .works__header {
    padding: 0 20px 40px;
    gap: 20px;
  }
}
.works__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 1.2;
  color: #d53a46;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works__en {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .works__en {
    font-size: 48px;
  }
}
.works__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  align-self: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .works__ja {
    font-size: 24px;
  }
}
.works__slider-wrap {
  overflow: hidden;
  width: 100%;
}
.works__slider-track {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  animation: works-scroll-pc 25s linear infinite;
}
@media screen and (max-width: 768px) {
  .works__slider-track {
    gap: 12px;
    animation: works-scroll-sp 20s linear infinite;
  }
}
.works__slide {
  width: 400px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works__slide {
    width: 340px;
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .works__slide {
    width: 260px;
    height: 180px;
  }
}
.works__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.recruit {
  position: relative;
  overflow: hidden;
  background-image: url("./img/top_recruit_bg.png");
  background-position: center;
  background-size: contain;
  padding: 2vw 0;
}
.recruit__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 600px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit__inner {
    min-height: 480px;
  }
}
@media screen and (max-width: 768px) {
  .recruit__inner {
    flex-direction: column;
    min-height: auto;
  }
}
.recruit__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit__content {
    padding: 60px 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .recruit__content {
    width: 100%;
    padding: 60px 20px;
    gap: 32px;
  }
}
.recruit__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .recruit__heading {
    gap: 16px;
  }
}
.recruit__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 1.2;
  color: #d53a46;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit__en {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .recruit__en {
    font-size: 48px;
  }
}
.recruit__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .recruit__ja {
    font-size: 24px;
  }
}
.recruit__body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 2;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .recruit__body {
    font-size: 14px !important;
    white-space: normal;
  }
}
.recruit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #d53a46;
  padding: 10px 20px;
  height: 50px;
  text-decoration: none;
}
.recruit__btn:hover {
  opacity: 0.85;
}
.recruit__btn span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .recruit__btn span {
    font-size: 18px;
  }
}
.recruit__btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.recruit__photo {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit__photo {
    width: 95%;
    margin-left: auto;
    margin-right: 0;
    clip-path: none;
    height: 60vw;
  }
}
.recruit__photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
  height: 8vw;
  background-color: #B3B2AA;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit__photo::before {
    width: 12vw;
    height: 12vw;
  }
}
.recruit__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service-section {
  padding: 80px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-section {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .service-section {
    padding: 50px 0 0;
  }
}
.service-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 11.11vw 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1441px) {
  .service-section__inner {
    padding: 0 160px 60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-section__inner {
    padding: 0 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  .service-section__inner {
    padding: 0 20px 40px;
    gap: 30px;
  }
}
.service-section__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .service-section__desc {
    font-size: 14px;
  }
}
.service-section .service_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  .service-section .service_contents {
    flex-flow: column;
  }
}
.service-section .service_contents .service-row__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service-section .service_contents .service-row__image {
    width: 100%;
  }
}
.service-section .service_contents .service-row__image img {
  width: 100%;
}

.service-row {
  display: flex;
  align-items: center;
  padding: 0 11.11vw;
  margin-bottom: 8vw;
  overflow: visible;
}
@media screen and (min-width: 1441px) {
  .service-row {
    padding: 0 160px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-row {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .service-row {
    flex-direction: column;
    padding: 0;
    margin-bottom: 4vw;
  }
  .service-row:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
.service-row__image {
  width: 36.11vw;
  aspect-ratio: 13/9;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .service-row__image {
    width: 520px;
    height: 360px;
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-row__image {
    width: 38vw;
    aspect-ratio: 13/9;
  }
}
@media screen and (max-width: 768px) {
  .service-row__image {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
  }
}
.service-row__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.service-row__panel {
  width: 52.78vw;
  flex-shrink: 0;
  background-color: #000000;
  margin-left: -11.11vw;
  margin-top: 12vw;
  position: relative;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 4.17vw 2.78vw 4.17vw 13.89vw;
}
@media screen and (min-width: 1441px) {
  .service-row__panel {
    width: 760px;
    margin-left: -160px;
    padding: 60px 40px 60px 200px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-row__panel {
    width: 62vw;
    margin-left: -10vw;
    padding: 40px 20px 40px 95px;
  }
}
@media screen and (max-width: 768px) {
  .service-row__panel {
    width: 100%;
    margin-left: 0;
    padding: 40px 20px;
    margin-top: 0;
  }
}
.service-row__panel--flip {
  margin-left: 0;
  margin-right: -11.11vw;
  padding: 4.17vw 13.89vw 4.17vw 2.78vw;
}
@media screen and (min-width: 1441px) {
  .service-row__panel--flip {
    margin-right: -160px;
    padding: 60px 200px 60px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-row__panel--flip {
    margin-right: -10vw;
    padding: 40px 95px 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .service-row__panel--flip {
    margin-right: 0;
    padding: 40px 20px;
  }
}
.service-row__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 2.78vw;
  line-height: 1.2;
  color: #ffffff;
}
@media screen and (min-width: 1441px) {
  .service-row__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-row__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .service-row__title {
    font-size: 26px;
  }
}
.service-row__divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.service-row__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
  max-width: 36.11vw;
}
@media screen and (min-width: 1441px) {
  .service-row__desc {
    max-width: 520px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-row__desc {
    font-size: 14px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service-row__desc {
    font-size: 14px;
    max-width: 100%;
  }
}

.service-area {
  display: flex;
  height: 44.44vw;
}
@media screen and (min-width: 1441px) {
  .service-area {
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .service-area {
    flex-direction: column;
    height: auto;
  }
}
.service-area__left {
  width: 50%;
  background-color: #d53a46;
  display: flex;
  align-items: center;
  padding: 0 4.17vw 0 11.11vw;
}
@media screen and (min-width: 1441px) {
  .service-area__left {
    padding: 0 60px 0 160px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-area__left {
    padding: 0 40px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .service-area__left {
    width: 100%;
    padding: 60px 20px;
  }
}
.service-area__text {
  display: flex;
  flex-direction: column;
  gap: 4.17vw;
}
@media screen and (min-width: 1441px) {
  .service-area__text {
    gap: 60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-area__text {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .service-area__text {
    gap: 30px;
  }
}
.service-area__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-area__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .service-area__title {
    font-size: 32px;
  }
}
.service-area__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .service-area__desc {
    font-size: 14px;
  }
}
.service-area__right {
  width: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-area__right {
    width: 100%;
  }
}
.service-area__right img {
  width: 100%;
  vertical-align: bottom;
}

.works-section {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .works-section {
    padding: 50px 0;
  }
}
.works-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.56vw;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1441px) {
  .works-section__inner {
    padding: 0 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works-section__inner {
    padding: 0 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .works-section__inner {
    padding: 0 20px;
    gap: 24px;
  }
}
.works-section__empty {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.78vw;
}
@media screen and (min-width: 1441px) {
  .works-grid {
    gap: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.works-card__link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.works-card__link:hover .works-card__image img {
  transform: scale(1.04);
}
.works-card__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works-card__image {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .works-card__image {
    height: 220px;
  }
}
.works-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.works-card__label {
  background-color: #d53a46;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  min-height: 52px;
}
.works-card__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works-card__title {
    font-size: 16px;
  }
}

.section-heading--lora .section-heading__text {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 56px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section-heading--lora .section-heading__text {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .section-heading--lora .section-heading__text {
    font-size: 30px;
  }
}

.company-subtitle {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company-subtitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .company-subtitle {
    font-size: 24px;
  }
}

.greeting-section {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .greeting-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .greeting-section {
    padding: 50px 0;
  }
}
.greeting-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.56vw;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1441px) {
  .greeting-section__inner {
    padding: 0 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .greeting-section__inner {
    padding: 0 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .greeting-section__inner {
    padding: 0 20px;
    gap: 24px;
  }
}
.greeting-section__content {
  display: flex;
  gap: 5.56vw;
  align-items: flex-start;
}
@media screen and (min-width: 1441px) {
  .greeting-section__content {
    gap: 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .greeting-section__content {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .greeting-section__content {
    flex-direction: column;
    gap: 24px;
  }
}
.greeting-section__text {
  width: 38.89vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1441px) {
  .greeting-section__text {
    width: 560px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .greeting-section__text {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .greeting-section__text {
    width: 100%;
    gap: 20px;
  }
}
.greeting-section__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .greeting-section__desc {
    font-size: 14px;
  }
}
.greeting-section__name {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
  text-align: right;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .greeting-section__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .greeting-section__name {
    font-size: 18px;
  }
}
.greeting-section__image {
  flex: 1;
}
.greeting-section__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 640/400;
}

.company-section {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .company-section {
    padding: 50px 0;
  }
}
.company-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.56vw;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1441px) {
  .company-section__inner {
    padding: 0 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company-section__inner {
    padding: 0 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .company-section__inner {
    padding: 0 20px;
    gap: 30px;
  }
}
.company-section__map {
  margin: 0 5.56vw;
}
@media screen and (min-width: 1441px) {
  .company-section__map {
    margin: 0 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company-section__map {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .company-section__map {
    margin: 0;
  }
}
.company-section__map iframe {
  width: 100%;
  height: 38.89vw;
  display: block;
  border: 0;
}
@media screen and (min-width: 1441px) {
  .company-section__map iframe {
    height: 560px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company-section__map iframe {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .company-section__map iframe {
    height: 250px;
  }
}

.recruit-about {
  position: relative;
  overflow: hidden;
  padding: 9.72vw 0;
}
@media screen and (min-width: 1441px) {
  .recruit-about {
    padding: 140px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-about {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-about {
    padding: 60px 0;
  }
}
.recruit-about__bg {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
}
.recruit-about__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.4;
}
.recruit-about__accent {
  position: absolute;
  z-index: 1;
  width: 49.93vw;
  height: 8.33vw;
  background-color: #ffe500;
}
@media screen and (min-width: 1441px) {
  .recruit-about__accent {
    width: 719px;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-about__accent {
    width: 60vw;
    height: 10vw;
  }
}
.recruit-about__accent--tl {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.recruit-about__accent--br {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.recruit-about__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 18.06vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1441px) {
  .recruit-about__inner {
    padding: 0 260px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-about__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-about__inner {
    padding: 0 20px;
    gap: 20px;
  }
}
.recruit-about__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 36x;
  line-height: 1.2;
  color: #d53a46;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-about__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-about__title {
    font-size: 22px;
  }
}
.recruit-about__divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}
.recruit-about__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .recruit-about__desc {
    font-size: 14px;
  }
}
.recruit-about__photo {
  width: 100%;
}
.recruit-about__photo img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 920/380;
}

.recruit-table-section {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-table-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-table-section {
    padding: 50px 0;
  }
}
.recruit-table-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.56vw;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1441px) {
  .recruit-table-section__inner {
    padding: 0 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-table-section__inner {
    padding: 0 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-table-section__inner {
    padding: 0 20px;
    gap: 30px;
  }
}

.recruit-table {
  margin: 0 10.42vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1441px) {
  .recruit-table {
    margin: 0 150px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-table {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-table {
    margin: 0;
  }
}
.recruit-table__row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .recruit-table__row {
    flex-direction: column;
  }
}
.recruit-table__label {
  width: 22.22vw;
  flex-shrink: 0;
  background-color: #d53a46;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 1vw 0.5vw;
}
@media screen and (min-width: 1441px) {
  .recruit-table__label {
    width: 320px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-table__label {
    width: 140px;
    font-size: 15px;
    padding: 15px 8px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-table__label {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
    justify-content: flex-start;
  }
}
.recruit-table__value {
  flex: 1;
  background-color: #ecebea;
  padding: 15px 40px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin: 1vw 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-table__value {
    padding: 15px 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-table__value {
    padding: 12px 20px;
    font-size: 15px;
  }
}
.recruit-table__value--multi {
  align-items: flex-start;
  flex-direction: column;
}
.recruit-table__value p {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-table__value p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-table__value p {
    font-size: 15px;
  }
}

.recruit-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .recruit-cta {
    margin-top: 10px;
  }
}
.recruit-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #000000;
  padding: 10px 20px;
  width: 330px;
  height: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .recruit-cta__btn {
    width: 90%;
    max-width: 330px;
  }
}
.recruit-cta__btn:hover {
  opacity: 0.7;
}
.recruit-cta__btn span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .recruit-cta__btn span {
    font-size: 18px;
  }
}
.recruit-cta__btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page-hero {
    height: 260px;
  }
}
@media screen and (max-width: 768px) {
  .page-hero {
    height: 200px;
  }
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 4px 4px 20px #000000;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page-hero__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .page-hero__title {
    font-size: 36px;
  }
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section-heading {
    gap: 16px;
  }
}
.section-heading__line {
  flex: 1;
  height: 1px;
  background-color: #d53a46;
  display: block;
}
.section-heading__text {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #d53a46;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section-heading__text {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .section-heading__text {
    font-size: 24px;
  }
}

.contact-about {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-about {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-about {
    padding: 50px 0;
  }
}
.contact-about__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-about__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact-about__inner {
    padding: 0 20px;
    gap: 30px;
  }
}
.contact-about__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-about__desc {
    font-size: 14px;
    text-align: left;
  }
}

.contact-form-wrap {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-form-wrap {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-form-wrap {
    padding: 50px 0;
  }
}
.contact-form-wrap__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact-form-wrap__inner {
    padding: 0 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form-wrap__inner {
    padding: 0 20px;
    gap: 30px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  align-items: center;
  margin: 2vw 0;
}
@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 4vw 0;
  }
}
.form-row--textarea {
  align-items: flex-start;
}
.form-row__label {
  width: 33.33%;
}
@media screen and (max-width: 768px) {
  .form-row__label {
    width: 100%;
  }
}
.form-row__label p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .form-row__label p {
    width: 100%;
    padding-right: 0;
  }
}
.form-row__badge {
  background-color: #d53a46;
  color: #ecebea;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  padding: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .form-row__badge {
    font-size: 16px;
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .form-row__badge {
    font-size: 14px;
    padding: 6px 8px;
  }
}
.form-row__name {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .form-row__name {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .form-row__name {
    font-size: 16px;
  }
}
.form-row__input {
  flex: 1;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .form-row__input {
    width: 100%;
  }
}
.form-row__input input,
.form-row__input textarea {
  width: 100%;
  background-color: #f0f0f0;
  border: none;
  outline: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  color: #000000;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-row__input input {
  height: 80px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .form-row__input input {
    height: 64px;
  }
}
@media screen and (max-width: 768px) {
  .form-row__input input {
    height: 56px;
  }
}
.form-row__input textarea {
  height: 309px;
  padding: 20px;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .form-row__input textarea {
    height: 200px;
  }
}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.form-submit {
  width: 100%;
  margin: auto;
  cursor: pointer;
  background: url("./img/btn01.png") no-repeat center;
  background-size: contain;
  transition: all 0.2s;
  padding: 3vw;
  border: none;
  overflow: hidden;
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
  .form-submit {
    padding: 4vw;
  }
}
.form-submit:hover {
  background: url("./img/btn02.png") no-repeat center;
  background-size: contain;
}
.form-submit span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .form-submit span {
    font-size: 20px;
  }
}
.form-submit svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.privacy {
  background-color: #ecebea;
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .privacy {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .privacy {
    padding: 50px 0;
  }
}
.privacy__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .privacy__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .privacy__inner {
    padding: 0 20px;
    gap: 30px;
  }
}
.privacy__subtitle {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: #000000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .privacy__subtitle {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .privacy__subtitle {
    font-size: 24px;
  }
}
.privacy__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
.privacy__text p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .privacy__text {
    font-size: 14px;
  }
}

#news_single {
  width: 60%;
  margin: 8vw auto;
}
@media screen and (max-width: 768px) {
  #news_single {
    width: 80%;
    margin: 16vw auto;
  }
}
#news_single ul {
  list-style: none;
}
#news_single ul li .date, #news_single ul li .title {
  font-size: 1vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single ul li .date, #news_single ul li .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single ul li .date, #news_single ul li .title {
    font-size: 3.4vw;
  }
}

.contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }
}
.contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 0 20px;
    gap: 24px;
  }
}
.contact__en {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 96px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact__en {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .contact__en {
    font-size: 48px;
  }
}
.contact__ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .contact__ja {
    font-size: 24px;
  }
}
.contact__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__desc {
    font-size: 13px;
  }
}
.contact__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact__btns {
    flex-direction: column;
    width: 100%;
  }
}
.contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
}
.contact__btn span {
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
}
.contact__btn--tel {
  background-color: #d53a46;
  padding: 20px 60px;
}
.contact__btn--tel span {
  font-size: 32px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact__btn--tel {
    padding: 16px 40px;
  }
  .contact__btn--tel span {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn--tel {
    width: 100%;
    padding: 16px 20px;
  }
  .contact__btn--tel span {
    font-size: 22px;
  }
}
.contact__btn--mail {
  background-color: #000000;
  padding: 20px 40px;
}
.contact__btn--mail span {
  font-size: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact__btn--mail {
    padding: 16px 30px;
  }
  .contact__btn--mail span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn--mail {
    width: 100%;
    padding: 16px 20px;
  }
  .contact__btn--mail span {
    font-size: 18px;
  }
}

.footer-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-map {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .footer-map {
    height: 220px;
  }
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.footer-body {
  background-color: #ffffff;
  padding: 40px 0;
}
.footer-body__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-body__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer-body__inner {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000000;
}
.footer-logo img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.footer-logo span {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-logo span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo span {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }
}
.footer-nav a {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-nav a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav a {
    font-size: 14px;
  }
}

.footer-copyright {
  background-color: #000000;
  padding: 30px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copyright p {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 14px !important;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
}/*# sourceMappingURL=style.css.map */