@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.contact input[type=submit],
.contact input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}
.contact input[type=submit]::-webkit-search-decoration,
.contact input[type=button]::-webkit-search-decoration {
  display: none;
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
@media (min-width: 767px) {
  html {
    scroll-padding-top: 180px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

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

.about-layout {
  padding-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .about-layout {
    padding-top: 3.625rem;
  }
}

.area-layout {
  padding-top: 3rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .area-layout {
    padding-top: 5.875rem;
    padding-bottom: 8.8125rem;
  }
}

.construction-layout {
  margin-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .construction-layout {
    margin-top: 7.75rem;
  }
}

.decouple-layout {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .decouple-layout {
    padding-bottom: 10rem;
  }
}

.example-layout {
  padding-top: 4.5625rem;
  padding-bottom: 5.25rem;
}
@media screen and (min-width: 768px) {
  .example-layout {
    padding-top: 9.125rem;
    padding-bottom: 10.5rem;
  }
}

.faq-layout {
  padding-top: 2.5rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 768px) {
  .faq-layout {
    padding-top: 5.125rem;
    padding-bottom: 8.625rem;
  }
}

.flow-layout {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .flow-layout {
    padding-top: 7.5rem;
    padding-bottom: 7.875rem;
    margin-bottom: 7.25rem;
  }
}

.header-layout {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.hero-layout {
  padding-top: 7.125rem;
}
@media screen and (min-width: 768px) {
  .hero-layout {
    padding-top: 15.125rem;
  }
}

.inner {
  padding-inline: 20px;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1260px;
    padding-inline: 30px;
  }
}

.news-layout {
  padding-top: 6.5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .news-layout {
    padding-top: 13.75rem;
    padding-bottom: 10rem;
  }
}

.promise-layout {
  padding-top: 1.875rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .promise-layout {
    padding-top: 3.4375rem;
    padding-bottom: 4.875rem;
  }
}

.reason-layout {
  padding-top: 2.25rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .reason-layout {
    padding-top: 4.5rem;
    padding-bottom: 10rem;
  }
}

.single-layout {
  padding-block: 7.125rem 4rem;
}
@media screen and (min-width: 768px) {
  .single-layout {
    padding-block: 15.125rem 10.25rem;
  }
}

.sub-example-layout {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-example-layout {
    padding-bottom: 10rem;
  }
}

.sub-news-layout {
  margin-top: 3.125rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-news-layout {
    margin-top: 6.875rem;
    padding-bottom: 10rem;
  }
}

.tab-list-layout {
  padding-top: 2.1875rem;
}

.common-btn {
  max-width: 19.375rem;
}

.common-btn__item {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem 1.5rem 2.1875rem;
  background-color: #005abc;
  border-radius: 15px;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.24em;
  transition: all 0.5s;
  justify-content: center;
  gap: 2.625rem;
}
.common-btn__item:hover {
  opacity: 1;
}
.common-btn__item:hover::after {
  transform: translateX(10px);
}
.common-btn__item::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 6px;
  height: 12px;
  background: url(../images/common/arrow-icon.svg) no-repeat center center/cover;
  transition: transform 0.3s;
}

.common-title {
  padding-bottom: 1rem;
  position: relative;
}
.common-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 3.9375rem;
  height: 1px;
  background-color: #005abc;
}
@media screen and (min-width: 768px) {
  .common-title {
    padding-bottom: 1.25rem;
  }
}
.common-title.common-title--center {
  text-align: center;
}
.common-title.common-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.common-title__english {
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2142857143;
  letter-spacing: 0.06em;
}

.common-title__japanese {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 2.551vw + 0.902rem, 2.125rem); /* 24 ~ 34 | 375 ~ 767 */
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3823529412;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .common-title__japanese {
    margin-top: 1.5rem;
    font-size: 2.125rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50%;
  padding-bottom: 0.125rem;
}

.page-numbers.current {
  color: #ffffff;
  background-color: #000000;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  min-width: 0.6875rem;
  height: 1.125rem;
}

.page-numbers.prev,
.page-numbers.next {
  width: 2.5rem;
  height: 0.9375rem;
  padding-inline: 0.625rem;
}

.about {
  background-color: #f5f5f5;
}

.about__inner {
  position: relative;
}
.about__inner.inner {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .about__inner.inner {
    max-width: 1260px;
    width: 100%;
    padding: 0 30px;
    margin: auto;
  }
}

.about__content {
  width: calc(100% + (100vw - 100%) / 2);
  margin-left: calc((100vw - 100%) / 2 * -1);
  border-radius: 0 1.5625rem 1.5625rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__content {
    border-radius: 0 3.125rem 3.125rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .about__content {
    width: calc(100% + 60px);
    margin-left: -60px;
    border-radius: 3.125rem;
  }
}

.hero__character.hero__character--03 {
  max-width: 160px;
  width: 12.6984126984%;
  bottom: 0.25rem;
  right: 1.5873015873%;
}
@media screen and (min-width: 500px) {
  .hero__character.hero__character--03 {
    max-width: 200px;
    width: 15.873015873%;
    bottom: 0.25rem;
    right: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .hero__character.hero__character--03 {
    max-width: 265px;
    width: 21.0317460317%;
    bottom: 2.5rem;
    right: 7.5rem;
  }
}

.about__bg-img {
  width: 100%;
}
.about__bg-img img {
  width: 100%;
  aspect-ratio: 1321/591;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 1.5625rem 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .about__bg-img img {
    border-radius: 0 3.125rem 3.125rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .about__bg-img img {
    border-radius: 3.125rem;
  }
}
.about__bg-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e62c4;
  opacity: 0.45;
  border-radius: 0 1.5625rem 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .about__bg-img::before {
    border-radius: 0 3.125rem 3.125rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .about__bg-img::before {
    border-radius: 3.125rem;
  }
}

.about__content-wrap {
  position: absolute;
  content: "";
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1.875rem;
  justify-content: space-between;
}

.about__img-logo {
  max-width: 375px;
  width: 35.6%;
  position: relative;
}
.about__img-logo img {
  width: 100%;
  aspect-ratio: 374.752/384.676;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__content-line {
  position: absolute;
  right: -25%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}

.about__text-block {
  width: 48.5%;
  padding-top: 0.625rem;
}
@media screen and (min-width: 500px) {
  .about__text-block {
    padding-top: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .about__text-block {
    padding-top: 2.625rem;
  }
}

.about__text {
  font-size: 1.6875rem;
  font-size: clamp(10px, 1.875vw, 27px);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2962962963;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: clamp(14px, 1.875vw, 27px);
    line-height: 1.7407407407;
  }
}

.about__note {
  margin-top: 0.5rem;
  font-size: max(10px, 0.625rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.36;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .about__note {
    margin-top: 1.25rem;
    font-size: 0.78125rem;
  }
}

.all-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.area__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .area__inner {
    align-items: center;
    flex-direction: row;
    gap: 2.125rem;
    max-width: 838px;
  }
}

.area__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .area__content {
    display: block;
    width: 31.233933162%;
  }
}

.area__heading {
  order: 1;
}

.area__text {
  order: 3;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.08em;
}
.area__text:first-of-type {
  margin-top: 1.75rem;
}
.area__text:not(:first-of-type) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .area__text:first-of-type {
    margin-top: 2.8125rem;
  }
  .area__text:not(:first-of-type) {
    margin-top: 1.875rem;
  }
}

.area__image {
  order: 2;
  width: 100%;
  margin-top: -1.25rem;
}
.area__image img {
  width: 100%;
  aspect-ratio: 501.104/472.602;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .area__image {
    margin-top: 0;
    max-width: 501px;
  }
}

.company {
  padding-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .company {
    padding-bottom: 16rem;
  }
}

.company__content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .company__content {
    margin-top: 7.875rem;
    flex-direction: row;
    gap: 3.375rem;
  }
}

.company__image {
  margin-top: 1.25rem;
  width: 100%;
}
.company__image img {
  width: 100%;
  aspect-ratio: 514.683/329.041;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .company__image {
    margin-top: 0;
    max-width: 450px;
    width: 37.5%;
    flex: auto;
  }
}
@media screen and (min-width: 1025px) {
  .company__image {
    max-width: 514px;
  }
}

.company__license {
  margin-top: 0.5rem;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company__license {
    margin-top: 1.25rem;
    padding-left: 1.375rem;
  }
}

.company__license-number {
  display: inline-block;
  font-weight: 500;
}

.company__info {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .company__info {
    margin-top: -1.25rem;
    flex: 1 0 465px;
  }
}

.company__item {
  padding-block: 0.75rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-left: 0;
    padding-block: 0.4375rem;
  }
}
.company__item:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .company__item.company__item--license {
    margin-top: 0.75rem;
  }
}

.company__term {
  font-size: 1.125rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company__term {
    font-size: max(12px, 0.875rem);
    line-height: 1.75;
    width: 26.3492063492%;
  }
}
.company__term.company__term--license {
  line-height: 1.4285714286;
}

.company__desc {
  margin-top: 0.5rem;
  font-size: max(11px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .company__desc {
    margin-top: 0;
    line-height: 1.75;
  }
}

.company__desc--license {
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
}
.company__desc--license:not(:first-of-type) {
  margin-top: 0.625rem;
}

.construction {
  padding-block: 4.625rem 4.5rem;
  background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .construction {
    padding-block: 4.625rem 9rem;
  }
}

.construction-items {
  margin-top: 2rem;
  max-width: 770px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .construction-items {
    margin-top: 6.25rem;
  }
}

.construction-item {
  display: flex;
  flex-direction: column;
}
.construction-item:not(:first-of-type) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .construction-item {
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
  .construction-item:not(:first-of-type) {
    margin-top: 3.375rem;
  }
}

.construction-item__image {
  margin-top: 1.875rem;
  max-width: 100%;
  width: 100%;
  order: 2;
}
.construction-item__image img {
  width: 100%;
  aspect-ratio: 375.969/200.36;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .construction-item__image {
    margin-top: 0;
    max-width: 375px;
  }
  .construction-item__image img {
    aspect-ratio: 375.969/240.36;
  }
}

.construction-item__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .construction-item__content {
    display: block;
    padding-top: 0.3125rem;
    width: 43.5064935065%;
  }
}

.construction-item__title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-bottom: 0.5rem;
  position: relative;
  order: 1;
}
.construction-item__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-color: #005abc;
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .construction-item__title {
    padding-bottom: 0.75rem;
    font-feature-settings: "palt";
  }
}

.construction-item__text {
  margin-top: 1.875rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
  order: 3;
  text-align: justify;
}

.construction-item__button {
  margin-top: 1.75rem;
  margin-inline: auto;
  order: 4;
}
@media screen and (min-width: 768px) {
  .construction-item__button {
    margin-inline: 0;
  }
}

.contact-cta {
  padding-block: 3.5rem 4rem;
  background-color: #005abc;
}

.contact-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-cta__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-cta__title {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.1951219512;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .contact-cta__title {
    font-size: 2.5625rem;
  }
}

.contact-cta__subtitle {
  margin-top: 0.5rem;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contact-cta__subtitle {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.contact-cta__labels {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__labels {
    gap: 0.4375rem;
  }
}

.contact-cta__label {
  display: inline-block;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #052038;
  line-height: 1.1428571429;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.6);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__label {
    font-size: 1.3125rem;
    padding: 0.625rem 1.25rem;
  }
}

.contact-cta__free {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffe000;
  line-height: 1.4385964912;
  letter-spacing: 0.14em;
  padding-bottom: 0.1875rem;
  position: relative;
}
.contact-cta__free::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 47%;
  transform: translateX(-50%);
  background-color: #ffe000;
  width: 90%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .contact-cta__free {
    font-size: 3.5625rem;
  }
}

.contact-cta__tel-block {
  margin-top: 0.3125rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.contact-cta__tel-img {
  max-width: 30px;
  width: 100%;
}
.contact-cta__tel-img img {
  width: 100%;
  aspect-ratio: 49/49;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .contact-cta__tel-img {
    max-width: 49px;
  }
}

.contact-cta__tel {
  display: block;
  font-size: 2.125rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .contact-cta__tel {
    font-size: 4rem;
    pointer-events: none;
  }
}

.contact-cta__time {
  margin-top: 0.3125rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.5375;
  letter-spacing: 0.22em;
}
@media screen and (min-width: 768px) {
  .contact-cta__time {
    font-size: 1rem;
  }
}

.contact-cta__button {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__button {
    width: max(420px, 42.9166666667%);
  }
}

.contact-cta__link {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.12em;
  padding: 1.25rem 1.5rem;
  border-radius: 100vmax;
  background: url(../images/top/top-contact-cta-btn.png) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .contact-cta__link {
    font-size: 2.25rem;
    padding: 2rem 2.5rem;
  }
}
.contact-cta__link:hover {
  opacity: 1;
}
.contact-cta__link::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  transition: 1s;
}
.contact-cta__link:hover::before {
  left: 100%;
}
.contact-cta__link span {
  padding-right: 2.1875rem;
  position: relative;
}
.contact-cta__link span::after {
  position: absolute;
  content: "";
  top: 53%;
  right: 0;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.25rem;
  background: url(../images/top/mail-icon.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .contact-cta__link span {
    padding-right: 3.125rem;
  }
  .contact-cta__link span::after {
    width: 2.3125rem;
    height: 1.75rem;
    background: url(../images/top/mail-icon.png) no-repeat center center/cover;
  }
}

.contact {
  overflow: hidden;
  background-color: #e6f3ff;
  padding-top: 3.25rem;
  padding-bottom: 6rem;
}

.contact__form {
  margin-top: 2.875rem;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__form {
    width: 83.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .decouple__inner {
    max-width: 1000px;
  }
}

.decouple__content {
  display: flex;
  flex-direction: column;
}

.decouple__title .common-title__japanese {
  font-size: clamp(1.1875rem, 3.827vw + 0.291rem, 2.125rem);
}
@media screen and (min-width: 768px) {
  .decouple__title .common-title__japanese {
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 768px) {
  .decouple__title {
    margin-top: 1rem;
  }
}

.decouple__image {
  margin-top: 1.25rem;
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.decouple__image img {
  width: 100%;
  aspect-ratio: 353.672/171.716;
  -o-object-fit: cover;
     object-fit: cover;
}

.decouple__text-wrap {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .decouple__text-wrap {
    margin-top: 3rem;
  }
}

.decouple__text {
  font-size: max(14px, 1rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.05em;
}

.decouple__text:not(:first-of-type) {
  margin-top: 1em;
}

.example {
  overflow: hidden;
}

.example__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .example__list {
    margin-top: 5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1875rem;
  }
}

.example__item {
  display: grid;
  margin-bottom: auto;
  gap: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}

@media (any-hover: hover) {
  .example__item:hover {
    opacity: 1;
  }
  .example__item:hover .example__img img {
    transform: scale(1.1);
  }
}
.example__img {
  max-width: 100%;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.example__img img {
  width: 100%;
  aspect-ratio: 375.969/200.36;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .example__img {
    max-width: 376px;
  }
  .example__img img {
    aspect-ratio: 375.969/240.36;
  }
}

.example__content {
  margin-top: 1rem;
  padding-inline: 0.75rem;
}
@media screen and (min-width: 768px) {
  .example__content {
    margin-top: 1.625rem;
    padding-inline: 1rem;
  }
}

.example__name {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.example__area {
  margin-top: 0.75rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .example__area {
    margin-top: 1rem;
  }
}

.example__price {
  margin-top: 0.75rem;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2142857143;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .example__price {
    margin-top: 1.25rem;
  }
}

.example__price-number {
  font-size: 1.1875rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #052038;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.example__text {
  margin-top: 0.75rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .example__text {
    margin-top: 1.125rem;
  }
}

.example__button {
  margin-top: 3.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .example__button.common-btn {
    max-width: 25rem;
  }
}
.example__button.common-btn .common-btn__item {
  padding: 1.125rem 1.5625rem;
  justify-content: space-between;
  gap: 0rem;
}
@media screen and (min-width: 768px) {
  .example__button.common-btn .common-btn__item {
    padding: 1.5rem 1.375rem;
    justify-content: center;
    gap: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .example__button.common-btn .common-btn__item {
    padding: 1.5rem 1.75rem;
    gap: 2.625rem;
  }
}

.example__bg-img {
  margin-top: 4.5rem;
  width: calc(100% + (100vw - 100%) / 2);
}
.example__bg-img img {
  width: 100%;
  aspect-ratio: 1321.4/591.156;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5625rem 0 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .example__bg-img {
    margin-top: 8.75rem;
  }
  .example__bg-img img {
    border-radius: 3.125rem 0 0 3.125rem;
  }
}
@media screen and (min-width: 1441px) {
  .example__bg-img {
    width: 100%;
  }
  .example__bg-img img {
    border-radius: 3.125rem;
  }
}

.faq {
  background-color: #f5f5f5;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    grid-template-columns: 22rem auto;
    gap: 40px;
    align-items: start;
  }
}

.faq__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .faq__list {
    margin-top: 0.875rem;
  }
}

.faq__item {
  background-color: #ffffff;
  padding: 1.125rem 1.25rem;
}
.faq__item:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding: 1.6875rem 1.875rem 1.6875rem 2.625rem;
  }
  .faq__item:not(:first-of-type) {
    margin-top: 2.5rem;
  }
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8e8e8;
}

.faq__question-icon {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.1923076923;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .faq__question-icon {
    width: 2.5rem;
    font-size: 3.25rem;
  }
}

.faq__question-text {
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.625;
  letter-spacing: 0.08em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .faq__question-text {
    font-size: 1rem;
  }
}

.faq__answer {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  padding-top: 1.25rem;
  padding-left: 0.1875rem;
}

.faq__answer-icon {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #c6461e;
  line-height: 1.1923076923;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .faq__answer-icon {
    width: 2.5rem;
    font-size: 3.25rem;
  }
}

.faq__answer-text {
  font-size: max(12px, 0.75rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .faq__answer-text {
    font-size: max(12px, 0.875rem);
  }
}

.faq__button {
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .faq__button {
    margin-top: 4.375rem;
  }
}
.faq__button.common-btn {
  max-width: 19.375rem;
}
@media screen and (min-width: 768px) {
  .faq__button.common-btn {
    max-width: 21.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .faq__button.common-btn {
    max-width: 19.375rem;
  }
}

.feature__inner {
  padding-bottom: 5.375rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .feature__inner {
    padding-bottom: 8rem;
    flex-direction: row;
    gap: 6.8333333333%;
  }
}

.feature__text-block {
  display: contents;
}
@media screen and (min-width: 768px) {
  .feature__text-block {
    display: block;
    padding-top: 0.625rem;
    flex: 1 0 380px;
  }
}

.feature__heading {
  order: 1;
}
.feature__heading .common-title__japanese {
  font-size: clamp(1.375rem, 3.061vw + 0.658rem, 2.125rem);
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .feature__heading .common-title__japanese {
    font-size: 2.125rem;
  }
}

.feature__text {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  order: 3;
  font-feature-settings: "palt";
  text-align: justify;
}

.feature__text:first-of-type {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .feature__text:first-of-type {
    margin-top: 3.25rem;
  }
}

.feature__text:not(:first-of-type) {
  margin-top: 1.375rem;
}

.feature__img {
  margin-top: 2rem;
  width: 100%;
  order: 2;
}
.feature__img img {
  width: 100%;
  aspect-ratio: 560/358;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .feature__img {
    order: 0;
    margin-top: 0;
    max-width: 468px;
    width: 39%;
    flex: auto;
  }
  .feature__img img {
    aspect-ratio: 468/298;
  }
}

.sub-business__example {
  padding-bottom: 4.5rem;
}

.sub-business__company {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-business__company {
    margin-top: 12rem;
  }
}

.flow-promise__heading {
  order: 1;
}
@media screen and (min-width: 768px) {
  .flow-promise__heading {
    order: 0;
  }
}

.flow-promise__block {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flow-promise__block {
    flex-direction: row;
    gap: min(85px, 7.0833333333%);
  }
}

@media screen and (min-width: 768px) {
  .flow-promise__block:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.flow-promise__block:not(:first-of-type) {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .flow-promise__block:not(:first-of-type) {
    margin-top: 7rem;
  }
}

.flow-promise__image {
  order: 2;
  max-width: 594px;
  width: 100%;
}
.flow-promise__image img {
  width: 100%;
  aspect-ratio: 593.575/336.892;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow-promise__image {
    margin-top: 0;
    order: 0;
    width: 49.5%;
  }
  .flow-promise__image img {
    aspect-ratio: 593.575/436.892;
  }
}

.flow-promise__block:first-of-type .flow-promise__image {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow-promise__block:first-of-type .flow-promise__image {
    margin-top: 0;
  }
}

.flow-promise__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .flow-promise__content {
    display: block;
    width: 43.4166666667%;
  }
}

.flow-promise__text {
  order: 3;
  margin-top: 2.3125rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .flow-promise__text {
    order: 0;
  }
}

.flow-promise__text:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .flow-promise__text:not(:first-of-type) {
    margin-top: 1.375rem;
  }
}

.flow-step {
  display: grid;
  align-items: center;
  grid-template-rows: 4.375rem 1fr;
  grid-template-columns: 4.375rem 1fr;
  grid-template-rows: minmax(70px, auto) 1fr;
  background-color: #ffffff;
  position: relative;
  counter-increment: step;
}
@media screen and (min-width: 768px) {
  .flow-step {
    min-height: 94px;
    grid-template-columns: 5.875rem 31.3725490196% 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .flow-step {
    min-height: 136px;
  }
}
.flow-step:not(:first-of-type) {
  margin-top: 53px;
}
.flow-step:not(:last-of-type)::after {
  position: absolute;
  content: "";
  bottom: -38px;
  left: 50%;
  width: 1.125rem;
  height: 1.125rem;
  border-bottom: 2px solid #005abc;
  border-right: 2px solid #005abc;
  transform: rotate(45deg) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .flow-step:not(:last-of-type)::after {
    left: 56%;
  }
}

.flow-step__number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  letter-spacing: 0.08em;
  background-color: #005abc;
}
@media screen and (min-width: 768px) {
  .flow-step__number {
    font-size: 2.28125rem;
  }
}
.flow-step__number::before {
  content: "0" counter(step);
}

.flow-step__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.375rem;
  padding-block: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .flow-step__title-wrap {
    gap: 1rem;
  }
}

.flow-step__title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding-left: 2.5rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow-step__title {
    padding-left: 1.25rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .flow-step__title {
    padding-left: 2.5rem;
  }
}

.flow-step__time {
  font-size: max(10px, 0.75rem);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.5333333333;
  letter-spacing: 0.11em;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow-step__time {
    padding-left: 1.25rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1025px) {
  .flow-step__time {
    padding-left: 2.5rem;
  }
}

.flow-step__text {
  grid-area: 2/1/3/3;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.11em;
  padding: 1.25rem;
  font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .flow-step__text {
    padding: 1.25rem 1.25rem 0.75rem 1.875rem;
    grid-area: auto;
  }
}
@media screen and (min-width: 1025px) {
  .flow-step__text {
    padding: 1.625rem 1.875rem 1rem 3.1875rem;
  }
}

.flow-step.flow-step--green .flow-step__number {
  background-color: #00aa51;
}
.flow-step.flow-step--green .flow-step__title {
  color: #00aa51;
}

.flow-step.flow-step--orange .flow-step__number {
  background-color: #e27b00;
}
.flow-step.flow-step--orange .flow-step__title {
  color: #e27b00;
}

.flow {
  background-color: #e8e8e8;
}

.flow__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    grid-template-columns: auto 63.75%;
    gap: 40px;
    align-items: start;
  }
}

@media screen and (min-width: 768px) {
  .flow__heading {
    padding-top: 0.3125rem;
  }
}

.flow__list {
  margin-top: 2rem;
  counter-reset: step;
}
@media screen and (min-width: 768px) {
  .flow__list {
    margin-top: 0;
  }
}

.footer {
  background-color: #052038;
  padding-block: 2.1875rem 4rem;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.75rem;
  padding-bottom: 4.1875rem;
}
@media screen and (min-width: 1025px) {
  .footer__top {
    flex-direction: row;
    -moz-column-gap: clamp(1rem, 3.855vw - 1.47rem, 2rem);
         column-gap: clamp(1rem, 3.855vw - 1.47rem, 2rem);
  }
}

.footer__info {
  display: contents;
}
@media screen and (min-width: 1025px) {
  .footer__info {
    display: block;
  }
}

.footer__name {
  order: 1;
}

.footer__name-link {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.14em;
  padding-block: 0.9375rem;
}
@media screen and (min-width: 1025px) {
  .footer__name-link {
    font-size: 1.25rem;
  }
}

.footer__address {
  margin-top: 0.3125rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
  order: 3;
}
@media screen and (min-width: 1025px) {
  .footer__address {
    margin-top: 1.0625rem;
  }
}

.footer__item {
  display: flex;
  align-items: flex-end;
}

.footer__item:not(:first-of-type) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__item:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}

.footer__item:nth-of-type(2) {
  align-items: flex-start;
}

.footer__term {
  flex-basis: 80px;
  flex-shrink: 0;
}

.footer__tel {
  display: block;
  margin-top: 1.125rem;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.21875;
  letter-spacing: 0.14em;
  order: 4;
}
@media screen and (min-width: 768px) {
  .footer__tel {
    pointer-events: none;
  }
}
@media screen and (min-width: 1025px) {
  .footer__tel {
    font-size: 2rem;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 2;
}
@media screen and (min-width: 1025px) {
  .footer__nav {
    align-items: flex-end;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.125rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .footer__nav-list {
    display: flex;
    gap: 1.125rem;
    align-items: center;
  }
}

.footer__nav__link {
  display: block;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding-block: 0.3125rem;
}
@media screen and (min-width: 1025px) {
  .footer__nav__link {
    font-size: clamp(0.6875rem, 0.723vw + 0.224rem, 0.875rem);
    padding-block: 0.9375rem;
  }
}

.footer__btns {
  margin-top: 1.375rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__btn {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  border-radius: 2.5rem;
  padding: 0.5rem 0.75rem;
  width: 10rem;
  text-align: center;
}

.footer__btn--recruit {
  color: #0067a0;
  background-color: #ffffff;
}

.footer__btn--contact {
  color: #ffffff;
  background-color: #0067a0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.footer__btn--contact::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 1px;
  right: 0;
  width: 1.0625rem;
  height: 0.8125rem;
  background: url(../images/top/mail-icon.png) no-repeat center center/cover;
}

.footer__privacy {
  display: block;
  margin-top: 1.625rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
}

.footer__sns {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .footer__sns {
    margin-top: 2.25rem;
  }
}

.footer__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.footer__sns-icon img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__copyright {
  display: block;
  padding-top: 2.875rem;
  text-align: center;
  color: #ffffff;
  font-size: max(10px, 0.75rem);
  line-height: 1.1666666667;
  border-top: 0.25px solid #b3b3b3;
}

.form__field {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.form__field:first-child .form__item {
  border-top: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .form__field {
    grid-template-columns: 17rem 1fr;
  }
  .form__field:first-child .form__item {
    border-top: 1px solid #cccccc;
  }
  .form__field:first-child .form__body {
    border-top: 1px solid #cccccc;
  }
}
.form__field.form__field--policy {
  margin-top: 1.625rem;
  border-top: 1px solid #cccccc;
}

.form__item {
  padding: 0.75rem 0.9375rem 0.75rem 0.9375rem;
  background-color: #ededed;
  height: 100%;
  border: 1px solid #cccccc;
  border-top: none;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form__item {
    padding: 2.5rem 0.5rem 1.875rem 0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .form__item {
    padding: 2.5rem 0.875rem 1.875rem 1.25rem;
  }
}

.form__label {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: max(10px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2571428571;
}
@media screen and (min-width: 1025px) {
  .form__label {
    letter-spacing: 0.08em;
  }
}

.form__badge {
  font-size: 0.5rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.375;
  letter-spacing: 0.08em;
  padding: 1px 0.4375rem;
  background-color: #9b1e1e;
  border-radius: 0.3125rem;
}

.form__body {
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-top: none;
  display: flex;
  align-items: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .form__body {
    padding: 0 0 0 1.875rem;
    border-left: none;
  }
}
.form__body.form__body--textarea {
  display: block;
  padding-block: 1.375rem 2rem;
}

@media screen and (min-width: 768px) {
  .wpcf7-form-control-wrap {
    flex: auto;
  }
}

.form__body--name {
  display: flex;
  gap: 0.625rem;
  padding: 1rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .form__body--name {
    align-items: center;
    gap: 2.3125rem;
    padding: 0 0 0 1.875rem;
  }
}
.form__body--name.form__body--name--kana {
  gap: 0.625rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .form__body--name.form__body--name--kana {
    gap: 1.5625rem;
    padding: 0 0 0 0.9375rem;
  }
}

.form__name-block {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .form__name-block {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
}

.form__name-label {
  font-size: max(12px, 0.75rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4166666667;
  letter-spacing: 0.08em;
}

.form__form-text {
  width: 100%;
  height: 2.625rem;
  border: 1px solid #cccccc;
  border-radius: 0.3125rem;
  padding-inline: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form__form-text {
    width: 13rem;
    padding-inline: 1rem;
  }
}
.form__form-text.form__form-text--phone {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form__form-text.form__form-text--phone {
    width: 26.217765043%;
  }
}
.form__form-text.form__form-text--address {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form__form-text.form__form-text--address {
    width: 74.212034384%;
  }
}
.form__form-text.form__form-text--email {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form__form-text.form__form-text--email {
    width: 94.9856733524%;
  }
}

.form__checkbox-list {
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-top: none;
  gap: 1rem 0.625rem;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .form__checkbox-list {
    border-left: none;
    padding: 0.9375rem 0 0.9375rem 1.875rem;
    gap: 6px 2rem;
  }
}

.form__checkbox-list label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .form__checkbox-list label {
    font-size: max(12px, 0.75rem);
  }
}

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

.form__checkbox-text {
  font-size: 0.875rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .form__checkbox-text {
    font-size: max(12px, 0.75rem);
  }
}

.wpcf7-not-valid-tip {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
}

.form__form-textarea {
  height: 10.625rem;
  border: 1px solid #cccccc;
  border-radius: 0.625rem;
  width: 100%;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .form__form-textarea {
    width: 94.9856733524%;
  }
}

.form__privacy {
  margin-top: 2rem;
}

.form__privacy-text {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
}

.form__privacy-link {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #0000ff;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .form__privacy-link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.form__body--policy label {
  display: flex;
  align-items: center;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] + span {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 20px;
}
input[type=checkbox] + span::before {
  border-radius: 2.5px;
  border: 1px solid #999999;
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
  width: 14px;
  height: 7px;
  top: 4px;
  left: 2px;
  opacity: 0;
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  input[type=checkbox] + span::after {
    top: 3px;
  }
}

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

.form__checkbox {
  font-size: max(12px, 0.75rem);
}
@media screen and (min-width: 376px) {
  .form__checkbox {
    font-size: max(12px, 0.875rem);
    letter-spacing: 0.15em;
  }
}

.form__submit {
  margin-top: 2rem;
  text-align: center;
}

.form__button {
  display: inline-block;
  width: 19.375rem;
  padding: 1.5rem 2.1875rem;
  background-color: #005abc;
  border-radius: 15px;
  font-size: max(12px, 0.875rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.24em;
  transition: all 0.5s;
}

@media (any-hover: hover) {
  .form__button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
.greeting__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .greeting__wrapper {
    flex-direction: row;
    gap: 3.375rem;
  }
}

.greeting__img {
  margin-top: 2rem;
  width: 100%;
  order: 2;
}
.greeting__img img {
  width: 100%;
  aspect-ratio: 560/358;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.375rem;
}
@media screen and (min-width: 768px) {
  .greeting__img {
    order: 0;
    margin-top: 0;
    max-width: 450px;
    width: 37.5%;
    flex: auto;
  }
  .greeting__img img {
    aspect-ratio: 536.198/557.273;
  }
}
@media screen and (min-width: 1025px) {
  .greeting__img {
    max-width: 514px;
  }
}

.greeting__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .greeting__content {
    display: block;
    padding-top: 0.625rem;
    flex: 1 0 465px;
  }
}

.greeting__heading {
  order: 1;
}
@media screen and (min-width: 768px) {
  .greeting__heading {
    order: 0;
  }
}

.greeting__message {
  margin-top: 1.875rem;
  order: 3;
}
@media screen and (min-width: 768px) {
  .greeting__message {
    order: 0;
  }
}

.greeting__text {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}

.greeting__text:not(:first-child) {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .greeting__text:not(:first-child) {
    margin-top: 1.375rem;
  }
}

.greeting__name {
  margin-top: 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3529411765;
  letter-spacing: 0.14em;
  text-align: right;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .greeting__name {
    margin-top: 3.5rem;
    text-align: left;
  }
}

.header-contact__item {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.header-contact__info {
  display: flex;
  flex-direction: column;
  line-height: 1;
  align-items: center;
  font-weight: 800;
}

.header-contact__text {
  font-size: 1.125rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.4444444444;
  letter-spacing: 0.12em;
}

.header-contact__phone {
  margin-top: 0.75rem;
  font-size: 3.4375rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #f15a24;
  line-height: 1.2727272727;
  letter-spacing: 0.04em;
  position: relative;
  pointer-events: none;
  transition: all 0.3s;
}
.header-contact__phone::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -46px;
  width: 2.625rem;
  height: 2.625rem;
  background: url("../images/top/phone-icon.svg") no-repeat center center/cover;
}

.header-contact__phone-ruby {
  position: relative;
  display: inline-block;
}
.header-contact__phone-ruby::before {
  content: attr(data-ruby);
  position: absolute;
  top: -0.55em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.4em;
  line-height: 1.2;
  color: #f15a24;
  pointer-events: none;
  white-space: nowrap;
}

.header-contact__hours {
  width: 100%;
  text-align: center;
  font-size: max(10px, 0.8125rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.3846153846;
  letter-spacing: 0.18em;
  background-color: #f15a24;
  padding: 0.1875rem 0.625rem;
  border-radius: 100vmax;
}

.header-contact__button-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  align-items: center;
  justify-content: center;
  width: 11.6875rem;
  text-align: center;
}

.header-contact__recruit-button {
  width: 100%;
  display: block;
  padding: 0.875rem 1.25rem;
  background-color: #4c4c4c;
  font-size: 1.1875rem;
  font-weight: 800;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3684210526;
  border-radius: 100vmax;
  transition: all 0.5s;
}

.header-contact__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background-color: #0067a0;
  font-size: 1.1875rem;
  font-weight: 800;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3684210526;
  border-radius: 100vmax;
  position: relative;
  transition: all 0.5s;
}
.header-contact__button::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  width: 1.0625rem;
  height: 0.8125rem;
  background: url(../images/top/mail-icon.png) no-repeat center center/cover;
}

.header__sp-wrap {
  display: flex;
  align-items: center;
  gap: max(10px, 3.9113428944%);
}

.header__sp-phone {
  display: block;
  position: relative;
  width: 2.1875rem;
  height: 2.1875rem;
}
.header__sp-phone::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/top/phone-icon.svg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .header__sp-phone {
    display: none;
  }
}

.drawer {
  padding-bottom: 9.375rem;
  overflow-y: scroll;
  background-color: #ffffff;
}

.drawer-nav {
  padding: 1.25rem 3.125rem 9.375rem;
  margin-inline: auto;
  max-width: 500px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.7s ease;
}
.drawer-nav.is-open {
  opacity: 1;
  transform: translateY(0);
}

.drawer__logo {
  max-width: 16.875rem;
  width: 100%;
}
.drawer__logo img {
  width: 100%;
  aspect-ratio: 351.09/104.01;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .drawer__logo {
    max-width: 21.943125rem;
  }
}

.drawer-nav__items {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer-nav__link {
  display: block;
  padding-block: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.drawer-nav__button-wrap {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.drawer-nav__recruit-button {
  width: 80%;
  display: block;
  margin-inline: auto;
  text-align: center;
  padding: 0.625rem 1.25rem;
  background-color: #4c4c4c;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3684210526;
  border-radius: 100vmax;
}

.drawer-nav__button {
  width: 80%;
  display: flex;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: #0067a0;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3684210526;
  border-radius: 100vmax;
  position: relative;
}
.drawer-nav__button::after {
  content: "";
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  width: 1.0625rem;
  height: 0.8125rem;
  background: url(../images/top/mail-icon.png) no-repeat center center/cover;
}

.hamburger {
  position: relative;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #0067a0;
  border-radius: 100vmax;
  z-index: 999;
}
.hamburger .hamburger__bar {
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 0.09375rem;
  background-color: #ffffff;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.hamburger .hamburger__bar:nth-of-type(1) {
  top: 38%;
}
.hamburger .hamburger__bar:nth-of-type(2) {
  top: 50%;
}
.hamburger .hamburger__bar:nth-of-type(3) {
  top: 62%;
}
.hamburger.is-open {
  background-color: #ffffff;
  border: 1px solid #0067a0;
}
.hamburger.is-open .hamburger__bar:nth-of-type(1), .hamburger.is-open .hamburger__bar:nth-of-type(3) {
  top: 50%;
  background-color: #0067a0;
  width: 1.25rem;
}
.hamburger.is-open .hamburger__bar:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(47deg);
}
.hamburger.is-open .hamburger__bar:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__bar:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-47deg);
}

.header-nav__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.0681818182%;
}

.header-nav__link {
  display: block;
  padding-block: 1.6875rem 0.4375rem;
  font-size: max(11px, 0.9375rem);
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 0.2em;
  position: relative;
  transition: all 0.5s;
}
.header-nav__link::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #005abc;
  scale: 0;
  transform-origin: left center;
  transition: scale 0.5s ease;
}

@media (any-hover: hover) {
  .header-nav__link:hover {
    opacity: 1;
  }
  .header-nav__link:hover::after {
    scale: 1;
  }
}
.header.is-shrink {
  padding-block: 0.625rem 0.625rem;
}
.header.is-shrink .header-contact__text {
  font-size: max(11px, 0.875rem);
}
.header.is-shrink .header-contact__phone {
  font-size: max(18px, 1.5rem);
}
.header.is-shrink .header-contact__phone::after {
  width: 1.75rem;
  height: 1.75rem;
  left: -2.125rem;
}
.header.is-shrink .header-contact__hours {
  margin-top: 0.5rem;
}
.header.is-shrink .header-nav__link {
  padding-block: 0.625rem 0.4375rem;
}
.header .header-contact__button {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
}
.header .header-contact__recruit-button {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .header .header__nav {
    margin-top: 0.75rem;
  }
}

.header {
  padding-block: 1.25rem 1.25rem;
  background-color: #ffffff;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 1.75rem 1rem;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1310px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: block;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  max-width: 15.625rem;
  width: 100%;
}
.header__logo img {
  width: 100%;
  aspect-ratio: 351.09/104.01;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 21.943125rem;
  }
}

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

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    margin-top: 1.375rem;
    display: block;
  }
}

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

.header__drawer {
  position: fixed;
  z-index: 998;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  overflow: hidden;
  background-color: #f5f5f5;
  position: relative;
}

.hero__inner.inner {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__inner.inner {
    max-width: 1260px;
    width: 100%;
    padding: 0 30px;
    margin: auto;
  }
}

.hero__heading {
  padding-top: 3.125rem;
}

.hero__title {
  font-size: clamp(1.5625rem, 3.827vw + 0.666rem, 2.5rem); /* 25 ~ 40 | 375 ~ 767 */
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.186440678;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 3.6875rem;
  }
}

.hero__text {
  margin-top: 1.375rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.1875;
  letter-spacing: 0.04em;
}

.hero__container {
  width: calc(100% + (100vw - 100%) / 2);
  margin-left: calc((100vw - 100%) / 2 * -1);
  border-radius: 0 1.5625rem 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .hero__container {
    border-radius: 0 3.125rem 3.125rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .hero__container {
    width: calc(100% + 60px);
    margin-left: -60px;
    border-radius: 3.125rem;
  }
}

.hero__image {
  margin-top: 2rem;
  border-radius: 0 1.5625rem 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .hero__image {
    margin-top: 3.375rem;
    border-radius: 0 3.125rem 3.125rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .hero__image {
    border-radius: 3.125rem;
  }
}

.hero__bg-img {
  position: relative;
  width: 100%;
}
.hero__bg-img img {
  width: 100%;
  aspect-ratio: 1321/591;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 1.5625rem 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .hero__bg-img img {
    border-radius: 0 3.125rem 3.125rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .hero__bg-img {
    width: 100%;
  }
  .hero__bg-img img {
    border-radius: 3.125rem;
  }
}

.hero__badges {
  position: absolute;
  content: "";
  display: flex;
  gap: 0.375rem;
  bottom: 5px;
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .hero__badges {
    gap: 1.4375rem;
    left: clamp(1.875rem, 12.5vw - 7.5rem, 3.75rem);
  }
}
@media screen and (min-width: 1441px) {
  .hero__badges {
    left: 3.75rem;
  }
}

.hero__badge {
  min-width: 40px;
  width: 16.0472972973%;
}
.hero__badge img {
  width: 100%;
  aspect-ratio: 190.902/245.055;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hero__badge {
    min-width: 110px;
  }
}

.hero__character {
  position: absolute;
  content: "";
  max-width: 265px;
  width: 21.0317460317%;
}

.hero__character.hero__character--01 {
  top: 2.1875rem;
  left: 5.5555555556%;
}
@media screen and (min-width: 768px) {
  .hero__character.hero__character--01 {
    top: 5.625rem;
    left: 5.5555555556%;
  }
}

.hero__character.hero__character--02 {
  bottom: 1.25rem;
  right: 1.25rem;
}
@media screen and (min-width: 500px) {
  .hero__character.hero__character--02 {
    bottom: 1.875rem;
    right: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .hero__character.hero__character--02 {
    bottom: 2.5rem;
    right: 3.125rem;
  }
}

.hero__character img {
  width: 100%;
  aspect-ratio: 265/285;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-section {
  padding-block: 4.1875rem 3.9375rem;
  background-color: #ffffff;
}

.info-cards {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.5789473684%;
}
@media screen and (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.info-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 0.75rem 3rem;
  z-index: 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .info-card__link {
    padding-block: 1.5rem 3.75rem;
  }
}
.info-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
  transition: transform 0.4s ease;
  z-index: -2;
}
.info-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: -1;
}
@media (any-hover: hover) {
  .info-card__link:hover::after {
    transform: scale(1.15);
  }
}
@media (any-hover: hover) {
  .info-card__link:hover {
    opacity: 1;
  }
}
.info-card__link > * {
  position: relative;
  z-index: 1;
}

.info-card:nth-of-type(1) .info-card__link::after {
  background-image: url(../images/top/tab-img04.png);
}

.info-card:nth-of-type(2) .info-card__link::after {
  background-image: url(../images/top/tab-img05.png);
}

.info-card__label {
  display: block;
  font-size: max(12px, 0.75rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.info-card__title {
  font-size: 1.25rem;
  margin-top: 1rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2068965517;
  letter-spacing: 0.22em;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .info-card__title {
    font-size: 1.8125rem;
    margin-top: 1.5rem;
  }
}

.info-card__line {
  position: absolute;
  content: "";
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .info-card__line {
    bottom: 2.5rem;
  }
}

.intro {
  padding-block: 4rem;
  background: url(../images/company/company-img.jpg) no-repeat center center/cover;
  position: relative;
}
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 0.51%, rgba(255, 255, 255, 0.9) 50.64%, rgba(255, 255, 255, 0.8) 99.83%, rgba(255, 255, 255, 0.8) 100%);
}
@media screen and (min-width: 768px) {
  .intro {
    padding-block: 6.875rem;
  }
}

.intro__heading {
  position: relative;
  z-index: 1;
}

.intro__body {
  margin-top: 2rem;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .intro__body {
    margin-top: 3.25rem;
  }
}

.intro__text {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}

.intro__text:not(:first-child) {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .intro__text:not(:first-child) {
    margin-top: 1.375rem;
  }
}

.modal {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-layout {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modal__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  inset: 0;
  z-index: 1;
}

.modal__content {
  position: relative;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  width: 80%;
  height: 85dvh;
  max-width: 31.25rem;
  margin-inline: auto;
  padding-block: 1.5rem;
  z-index: 2;
}
@media screen and (min-width: 376px) {
  .modal__content {
    padding-block: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .modal__content {
    padding-block: 2.5rem;
    max-width: 67.5rem;
  }
}

.modal__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 0.625rem;
  position: relative;
}
@media screen and (min-width: 376px) {
  .modal__header {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .modal__header {
    padding-inline: 1.25rem;
  }
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
}
@media screen and (min-width: 376px) {
  .modal__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .modal__title {
    font-size: 1.625rem;
  }
}

.modal__close {
  color: #000000;
  font-size: 1.25rem;
  transition: opacity 0.3s;
  padding: 0.625rem;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 376px) {
  .modal__close {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .modal__close {
    padding: 0.625rem 1.875rem 0.625rem 0.625rem;
    font-size: 1.25rem;
  }
}

.modal__close-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .modal__close-text {
    display: inline-block;
  }
}

.modal__close:hover,
.modal__close:focus {
  cursor: pointer;
  opacity: 0.7;
}

.modal__body {
  margin-top: 1.875rem;
  height: auto;
  max-height: 60dvh;
  overflow-y: scroll;
  padding-inline: 1.5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 376px) {
  .modal__body {
    padding-inline: 2rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .modal__body {
    padding-inline: 2.5rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-height: 600px) {
  .modal__body {
    max-height: 70vh;
  }
}

.modal__subtitle {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3333333333;
}
@media screen and (min-width: 768px) {
  .modal__subtitle {
    font-size: 1.375rem;
  }
}

.modal__text {
  margin-top: 0.5rem;
  font-size: max(14px, 1rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3125;
  text-align: justify;
}

.modal__text-link {
  text-decoration: underline;
}

.modal__list {
  margin-top: 0.75rem;
}

.modal__item {
  font-size: max(14px, 1rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3125;
  text-align: justify;
}

.news {
  background-color: #ffffff;
}

.news__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .news__inner {
    grid-template-columns: 22rem auto; /* 左：見出し、右：リスト */
    gap: 40px; /* 間の余白 */
    align-items: start; /* 上揃え */
  }
}

@media screen and (min-width: 768px) {
  .news__heading .common-title__japanese {
    font-size: 2rem;
  }
}

.news__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    margin-top: 0.5rem;
  }
}

.news-item:first-of-type .news__link {
  padding-top: 0;
}

.news-item__link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  padding: 1rem 0.625rem;
  border-bottom: 1px solid #e8e8e8;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-item__link {
    display: flex;
    padding: 1.75rem 0.625rem;
  }
}

.news-item__categories {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .news-item__categories {
    flex: 0;
  }
}

.news-item__category {
  min-width: 73px;
  text-align: center;
  font-size: max(12px, 0.75rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding: 0.4375rem 0.625rem;
  background-color: #005abc;
}

.news-item__date {
  padding-inline: 0.75rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
}

.news-item__title {
  grid-area: 2/1/3/3;
  padding: 0.75rem 0.75rem 0;
  font-size: 1rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-item__title {
    grid-area: auto;
    padding: 0 0 0 1.75rem;
  }
}

.news__button {
  margin-top: 1.875rem;
  margin-inline: auto;
}
.news__button.common-btn {
  max-width: 15.5rem;
}
@media screen and (min-width: 768px) {
  .news__button.common-btn {
    max-width: 19.375rem;
  }
}
@media screen and (min-width: 1025px) {
  .news__button.common-btn {
    max-width: 15.5rem;
  }
}
@media screen and (min-width: 768px) {
  .news__button {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-inline: 0;
  }
}

.sub-business__partial-demolition {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-business__partial-demolition {
    margin-top: 7.125rem;
  }
}

.partial-demolition__content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .partial-demolition__content {
    margin-top: 3rem;
    flex-direction: row;
    gap: 1.375rem;
  }
}

.partial-demolition__label {
  background-color: #005abc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partial-demolition__label-text {
  font-size: clamp(2rem, 4.592vw + 0.924rem, 3.125rem); /* 32 ~ 70 | 375 ~ 767 */
  display: inline-block;
  padding: 1.125rem 2rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .partial-demolition__label-text {
    padding: 1.5rem 2.625rem;
    font-size: 4.375rem;
  }
}

.partial-demolition__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .partial-demolition__price-wrap {
    align-items: flex-start;
    gap: 0.1875rem;
  }
}

.partial-demolition__price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.partial-demolition__price-amount {
  font-size: clamp(3.75rem, 12.755vw + 0.761rem, 6.875rem);
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  color: #005abc;
  line-height: 1;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .partial-demolition__price-amount {
    font-size: 6.875rem;
  }
}

.partial-demolition__price__comma {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: -0.1em;
}

.partial-demolition__price__unit {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .partial-demolition__price__unit {
    padding-bottom: 0.8em;
  }
}

.partial-demolition__price-note {
  font-size: 1rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.08em;
  align-self: flex-start;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .partial-demolition__price-note {
    font-size: 1.125rem;
  }
}

.partial-demolition__price-yen {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .partial-demolition__price-yen {
    font-size: 2.3125rem;
  }
}

.partial-demolition__note {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
}

.partial-demolition__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.625rem;
}
@media screen and (min-width: 768px) {
  .partial-demolition__list {
    margin-top: 5.5rem;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(2rem, 5.655vw - 0.714rem, 4.375rem);
         column-gap: clamp(2rem, 5.655vw - 0.714rem, 4.375rem); /* 32 ~ 70 | 768 ~ 1440*/
    row-gap: 3.75rem;
  }
}

.partial-demolition__img {
  width: 100%;
}
.partial-demolition__img img {
  width: 100%;
  aspect-ratio: 375/210;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .partial-demolition__img {
    max-width: 354px;
  }
  .partial-demolition__img img {
    aspect-ratio: 354/228;
  }
}

.partial-demolition__title {
  margin-top: 0.5rem;
  font-size: 1.4375rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2173913043;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #005abc;
}

.partial-demolition__text {
  margin-top: 0.75rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .partner-form__inner.inner {
    max-width: 1060px;
  }
}

.partner-form__heading.common-title::after {
  display: none;
}
.partner-form__heading .common-title__japanese {
  color: #005cc2;
  font-size: clamp(1.5rem, 0.51vw + 1.38rem, 1.625rem);
}
@media screen and (min-width: 768px) {
  .partner-form__heading .common-title__japanese {
    font-size: 1.625rem;
  }
}

.partner-form__form {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .partner-form__form {
    margin-top: 1.5rem;
  }
}

.price {
  background-color: #f5f5f5;
  padding-block: 3.5rem 5.375rem;
}
@media screen and (min-width: 768px) {
  .price {
    padding-block: 12.5rem 13.75rem;
  }
}

.price__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .price__inner {
    gap: 6.25rem;
  }
}

.price__wrapper {
  padding: 1.25rem 1rem;
  border: 1px solid #005abc;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .price__wrapper {
    padding: 2.625rem 2rem 3.5rem;
    grid-template-columns: 22.9078613694% auto 29rem;
  }
}
@media screen and (min-width: 1025px) {
  .price__wrapper {
    grid-template-columns: 23.897707231% auto 29rem;
  }
}

.price__label {
  background-color: #005abc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__label {
    aspect-ratio: 1/1;
  }
}

.price__label-text {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .price__label-text {
    font-size: 4.375rem;
  }
}

.price__label-small {
  font-size: 1rem;
  font-size: max(9px, clamp(0.625rem, 1.531vw + 0.266rem, 1rem));
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.04;
  letter-spacing: 0.08em;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .price__label-small {
    font-size: clamp(1.375rem, 1.364vw + 0.335rem, 1.5625rem);
  }
}

.price__img {
  max-width: 380px;
  width: 100%;
}
.price__img img {
  width: 100%;
  aspect-ratio: 380/268;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.0625rem;
}

.price__content {
  margin-top: 2rem;
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .price__content {
    margin-top: 0;
    grid-column: auto;
    margin-left: 2.5rem;
  }
}

.price__area {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .price__area {
    font-size: 1.25rem;
  }
}

.price__area-text {
  background-color: #005abc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
  padding: 0.75rem;
  min-width: 7.25rem;
}
@media screen and (min-width: 768px) {
  .price__area-text {
    padding: 1.0625rem;
    font-size: 1.25rem;
  }
}

.price__price {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .price__price {
    margin-top: 0;
    justify-content: start;
  }
}

.price__price-amount {
  font-size: clamp(3.75rem, 12.755vw + 0.761rem, 6.875rem);
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  color: #005abc;
  line-height: 1;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .price__price-amount {
    font-size: 6.875rem;
  }
}

.price__price__comma {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: -0.1em;
}

.price__price__unit {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  padding-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  .price__price__unit {
    padding-bottom: 0.8em;
  }
}

.price__price-note {
  font-size: 1rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.08em;
  align-self: flex-start;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .price__price-note {
    font-size: 1.25rem;
  }
}

.price__price-note.price__price-note--small {
  font-size: 1rem;
}

.price__price-yen {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .price__price-yen {
    font-size: 2.5625rem;
  }
}

.price__price-yen.price__price-yen--small {
  font-size: 1.75rem;
}

.price__note {
  margin-top: 0.5rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .price__note {
    margin-top: 1rem;
  }
}

.price__text {
  margin-top: 2rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  font-feature-settings: "palt";
  text-align: justify;
}

.promise {
  background-color: #f5f5f5;
}

.promise__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .promise__wrapper {
    flex-direction: row;
    gap: min(85px, 7.0833333333%);
  }
}

.promise__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .promise__content {
    display: block;
    width: 43.4166666667%;
  }
}

.promise__title {
  order: 1;
}
@media screen and (min-width: 768px) {
  .promise__title {
    padding-top: 1rem;
  }
}

.promise__text {
  order: 3;
  margin-top: 2.3125rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.04em;
}

.promise__button {
  margin-top: 2.875rem;
  margin-inline: auto;
  order: 4;
}
@media screen and (min-width: 768px) {
  .promise__button {
    margin-inline: 0;
  }
}

.promise__image {
  order: 2;
  margin-top: 1.25rem;
  max-width: 594px;
  width: 100%;
}
.promise__image img {
  width: 100%;
  aspect-ratio: 593.575/336.892;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .promise__image {
    margin-top: 0;
    width: 49.5%;
  }
  .promise__image img {
    aspect-ratio: 593.575/436.892;
  }
}

.reason {
  background-color: #ffffff;
}

.reason__list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .reason__list {
    margin-top: 4.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.reason-item__img {
  width: 100%;
}
.reason-item__img img {
  width: 100%;
  aspect-ratio: 375.969/210.36;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason-item__img {
    max-width: 376px;
  }
  .reason-item__img img {
    aspect-ratio: 375.969/240.36;
  }
}

.reason-item__content {
  margin-top: 1.625rem;
  padding-inline: 1rem;
}

.reason-item__title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .reason-item__title {
    letter-spacing: 0.08em;
  }
}

.reason-item__text {
  margin-top: 1.25rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
}

.safety__heading.common-title::after {
  content: none;
}

.safety__list {
  margin-top: 2rem;
  max-width: 770px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .safety__list {
    margin-top: 2.75rem;
  }
}

.safety__item {
  display: flex;
  flex-direction: column;
}
.safety__item:not(:first-of-type) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .safety__item {
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
  .safety__item:not(:first-of-type) {
    margin-top: 2.75rem;
  }
}

.safety__img {
  margin-top: 1.875rem;
  max-width: 100%;
  width: 100%;
  order: 2;
}
.safety__img img {
  width: 100%;
  aspect-ratio: 375.969/200.36;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .safety__img {
    margin-top: 0;
    max-width: 375px;
  }
  .safety__img img {
    aspect-ratio: 375.969/240.36;
  }
}

.safety__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .safety__content {
    display: block;
    padding-top: 0.3125rem;
    width: 43.5064935065%;
  }
}

.safety__title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-bottom: 0.5rem;
  position: relative;
  order: 1;
}
.safety__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-color: #005abc;
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .safety__title {
    padding-bottom: 0.75rem;
    font-feature-settings: "palt";
  }
}

.safety__text {
  margin-top: 1.875rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
  order: 3;
  text-align: justify;
}

.single__inner.inner {
  padding-inline: 2.125rem;
}
@media screen and (min-width: 768px) {
  .single__inner.inner {
    padding-inline: 3.75rem;
    max-width: 1200px;
  }
}

.single__date-wrap time {
  display: block;
  font-size: max(12px, 1rem);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.75;
}

.single__title {
  font-size: max(24px, 1.5625rem);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4;
}

.single__thumbnail {
  margin-top: 1.5rem;
}
.single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .single__thumbnail {
    margin-top: 2.5rem;
  }
}

.single__post .is-layout-flex {
  display: flex;
  flex-direction: column;
  gap: 5%;
}
.single__post .is-layout-flex > p,
.single__post .is-layout-flex > div,
.single__post .is-layout-flex > figure {
  width: 100%;
}
@media (min-width: 768px) {
  .single__post .is-layout-flex {
    flex-direction: row;
  }
  .single__post .is-layout-flex > p,
  .single__post .is-layout-flex > div {
    width: 50%;
  }
  .single__post .is-layout-flex > figure {
    width: 45%;
  }
}

.single__post {
  font-size: max(14px, 1rem);
  line-height: 1.75;
}

.single__post > *:first-child {
  margin-block-start: 3rem;
}
@media screen and (min-width: 768px) {
  .single__post > *:first-child {
    margin-block-start: 4rem;
  }
}

.single__post h2 {
  font-size: max(21px, 1.375rem);
  color: #000000;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .single__post h2 {
    margin-top: 1.5rem;
  }
}

.single__post h3 {
  font-size: max(19px, 1.25rem);
  color: #000000;
}

.single__post h4 {
  font-size: max(17px, 1.125rem);
  color: #000000;
}

.single__post h5 {
  font-size: max(16px, 1.0625rem);
  color: #000000;
}

.single__post h6 {
  font-size: max(15px, 1rem);
  color: #000000;
}

.single__post figure:nth-child(n+2):not(.wp-block-table) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .single__post figure:nth-child(n+2):not(.wp-block-table) {
    margin-top: 1rem;
  }
}

.wp-block-file,
.single__post h3:nth-child(n+2),
.single__post h4:nth-child(n+2),
.single__post h5:nth-child(n+2),
.single__post h6:nth-child(n+2),
.single__post h2 + ul:nth-of-type(n + 2),
.single__post h2 + ol:nth-of-type(n + 2),
.single__post ol > li > ol:nth-of-type(n + 2),
.single__post figure {
  margin: initial;
  margin-top: 1.875rem;
  max-width: 100%;
}

.single__post p {
  text-align: justify;
}

.single__post p:nth-child(n+2) {
  margin: initial;
  margin-top: 1rem;
  max-width: 100%;
}

.single__post figure.aligncenter,
.single__post img.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

.single__post figure.alignright,
.single__post img.alignright {
  margin-left: auto;
}

.single__post > ol {
  counter-reset: number 0;
}

.single__post > ol > li {
  text-indent: -1rem;
  padding-left: 1.5rem;
}

.single__post > ol > li:nth-child(n+10) {
  text-indent: -1.5rem;
}

.single__post > ol > li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}

.single__post > ol > li > ol {
  counter-reset: number 0;
}

.single__post > ol > li > ol > li {
  text-indent: -1rem;
  padding-left: 1.5rem;
}

.single__post > ol > li > ol > li::before {
  counter-increment: number 1;
  content: counter(number, lower-alpha) ". ";
}

.single__post > ol > li > ol > li > ol {
  counter-reset: number 0;
}

.single__post > ol > li > ol > li > ol > li {
  padding-left: 1.375rem;
}

.single__post > ol > li > ol > li > ol > li:nth-child(1) {
  text-indent: -0.75rem;
}

.single__post > ol > li > ol > li > ol > li:nth-child(2) {
  text-indent: -1rem;
}

.single__post > ol > li > ol > li > ol > li:nth-child(n+3) {
  text-indent: -1.25rem;
}

.single__post > ol > li > ol > li > ol > li::before {
  counter-increment: number 1;
  content: counter(number, lower-roman) ". ";
}

.single__post ul {
  margin-top: 1.375rem;
}

.single__post ul > li {
  text-indent: -1em;
  padding-left: 1em;
}

.single__post ul > li::before {
  content: "・";
}

.single__post ul > li ol {
  counter-reset: number 0;
}

.single__post ul > li ol > li {
  text-indent: -2em;
  padding-left: 2em;
}

.single__post ul > li ol > li::before {
  counter-increment: number 1;
  content: "(" counter(number) ") ";
}

.single__post table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.single__post tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.single__post th,
.single__post td {
  padding: 0.5rem 1rem;
  border: none;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.single__post td:nth-child(1) {
  vertical-align: baseline;
}

.single__post td {
  text-align: left;
}

.single__post .wp-block-table thead {
  border-bottom: none;
}

.single__post figure.aligncenter,
.single__post img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  float: none;
}

.single__post figure.alignright,
.single__post img.alignright {
  margin-left: auto;
  float: none;
}

.single__post a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-decoration: underline;
}

.single__post .wp-block-group {
  border-radius: 1rem;
  font-size: max(14px, 1rem);
  font-weight: 400;
  line-height: 1.75;
}

.single__post cite {
  font-style: normal;
}

.wp-block-file:not(.wp-element-button) a {
  display: flex;
  align-content: flex-start;
  text-decoration: underline;
}

.wp-block-file:not(.wp-element-button) a::before {
  margin-top: 0.5rem;
  margin-right: 0.25rem;
  flex-shrink: 0;
  transform: translateY(-0.5rem);
  display: inline-block;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1/1;
  content: "";
}
@media screen and (min-width: 768px) {
  .wp-block-file:not(.wp-element-button) a::before {
    margin-top: 1rem;
    margin-right: 0.5rem;
    width: 2rem;
  }
}

.single__pagination {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .single__pagination {
    margin-top: 5.625rem;
  }
}

.single-pagination {
  display: flex;
  justify-content: space-between;
}

.single-pagination__btn .prev-btn__item {
  width: 8.25rem;
  padding: 0.625rem 0;
}
.single-pagination__btn .common-btn__item {
  width: 8.25rem;
  padding: 0.625rem 0;
}

.single-pagination__btn-link {
  font-size: max(12px, 1rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  position: relative;
}

.single-pagination__btn-link.single-pagination__btn-link--prev {
  padding-left: 1.25rem;
}
.single-pagination__btn-link.single-pagination__btn-link--prev::before {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 0.625rem;
  background: url(../images/common/navigate-prev.png) no-repeat center center/cover;
}

.single-pagination__btn-link.single-pagination__btn-link--next {
  padding-right: 1.25rem;
}
.single-pagination__btn-link.single-pagination__btn-link--next::before {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  right: 0;
  transform: translateY(-50%);
  width: 0.5625rem;
  height: 0.625rem;
  background: url(../images/common/navigate-next.png) no-repeat center center/cover;
}

.single__button-wrap {
  margin-top: 2.8125rem;
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .single__button-wrap {
    margin-top: 7rem;
    flex-direction: row;
    gap: 3.5rem;
  }
}

.sub-business__lead {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-business__lead {
    margin-top: 5.75rem;
  }
}

.sub-business__catch {
  font-size: clamp(1.5rem, 2.551vw + 0.902rem, 2.125rem); /* 24 ~ 34 | 375 ~ 767 */
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.3823529412;
  letter-spacing: 0.12em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sub-business__catch {
    font-size: 2.125rem;
  }
}

.sub-business__feature {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-business__feature {
    margin-top: 7.875rem;
  }
}

.sub-business__text-block {
  display: contents;
}
@media screen and (min-width: 768px) {
  .sub-business__text-block {
    display: block;
    padding-top: 0.625rem;
    flex: 1 0 380px;
  }
}

.sub-business__heading {
  order: 1;
}
.sub-business__heading .common-title__japanese {
  font-size: clamp(1.375rem, 3.061vw + 0.658rem, 2.125rem);
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sub-business__heading .common-title__japanese {
    font-size: 2.125rem;
  }
}

.sub-business__text {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.14em;
  order: 3;
  font-feature-settings: "palt";
  text-align: justify;
}

.sub-business__text:first-of-type {
  margin-top: 2.5rem;
}

.sub-business__text:not(:first-of-type) {
  margin-top: 1.375rem;
}

.sub-business__img {
  margin-top: 2rem;
  width: 100%;
  order: 2;
}
.sub-business__img img {
  width: 100%;
  aspect-ratio: 560/358;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-business__img {
    order: 0;
    margin-top: 0;
    max-width: 468px;
    width: 39%;
    flex: auto;
  }
  .sub-business__img img {
    aspect-ratio: 468/298;
  }
}

.sub-business__example {
  padding-bottom: 4.5rem;
}

.sub-business__company {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-business__company {
    margin-top: 12rem;
  }
}

.sub-company__intro {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .sub-company__intro {
    margin-top: 6.25rem;
  }
}

.sub-company__greeting {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .sub-company__greeting {
    margin-top: 9.625rem;
  }
}

.sub-company__company {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .sub-company__company {
    margin-top: 8.375rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-company__company.company {
    padding-bottom: 10.625rem;
  }
}

.sub-company__map {
  margin-top: 4rem;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 600px;
  width: 100%;
  height: auto;
}
.sub-company__map iframe {
  width: 100%;
  height: inherit;
  aspect-ratio: 1200/628;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-company__map {
    margin-top: 12.5rem;
    max-width: 1260px;
    padding-inline: 30px;
  }
}

.sub-example__inner {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-example__inner {
    margin-top: 10rem;
  }
}

.sub-example__content .example__list {
  margin-top: 0rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sub-example__content .example__list {
    grid-template-columns: repeat(2, minmax(0, 376px));
    justify-content: center;
    gap: 4rem;
  }
}
.sub-example__content .example__pagination {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .sub-example__content .example__pagination {
    margin-top: 3.25rem;
  }
}

.sub-faq__inner {
  margin-top: 3.125rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-faq__inner {
    margin-top: 6.875rem;
    padding-bottom: 10rem;
    max-width: 1000px;
  }
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.sub-faq__summary {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  border-bottom: 1px solid #e8e8e8;
  padding: 1.125rem 1.25rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sub-faq__summary {
    padding: 1.5rem 1.875rem;
  }
}

@media (any-hover: hover) {
  .sub-faq__summary:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.sub-faq__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .sub-faq__list {
    margin-top: 0.875rem;
  }
}

.sub-faq__item {
  background-color: #ffffff;
}

@media (any-hover: hover) {
  .sub-faq__question:hover {
    cursor: pointer;
  }
}
.sub-faq__question-icon {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.1923076923;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .sub-faq__question-icon {
    width: 2.5rem;
    font-size: 2.625rem;
  }
}

.sub-faq__question-text {
  display: block;
  flex: 1;
  font-size: max(14px, 1rem);
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.625;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .sub-faq__question-text {
    font-size: 1rem;
  }
}

.sub-faq__icon {
  display: block;
  position: relative;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background-color: #005abc;
  transform-origin: center;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sub-faq__icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.sub-faq__icon::before,
.sub-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.125rem;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sub-faq__icon::before,
  .sub-faq__icon::after {
    width: 0.875rem;
  }
}

.sub-faq__icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sub-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .sub-faq__icon::before {
  transform: translate(-50%, -50%) rotate(0);
}

details[open] .sub-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sub-faq__answer {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  border-bottom: 1px solid #e8e8e8;
  padding: 1.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-faq__answer {
    padding: 1.5rem 1.875rem;
  }
}

.sub-faq__answer-icon {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #c6461e;
  line-height: 1.1923076923;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .sub-faq__answer-icon {
    width: 2.5rem;
    font-size: 2.625rem;
  }
}

.sub-faq__answer-text {
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6285714286;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px) {
  .sub-faq__answer-text {
    font-size: max(12px, 0.875rem);
  }
}

.sub-faq__pagination {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .sub-faq__pagination {
    margin-top: 3.25rem;
  }
}
.sub-faq__pagination.is-active {
  animation: fadeIn 1s ease-out forwards;
}

.sub-flow__promise {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-flow__promise {
    margin-top: 10.75rem;
  }
}

.sub-flow__flow {
  margin-top: 5.375rem;
  padding-top: 3.5rem;
  padding-bottom: 5.375rem;
}
@media screen and (min-width: 768px) {
  .sub-flow__flow {
    margin-top: 10.625rem;
    padding-top: 5rem;
    padding-bottom: 8.375rem;
  }
}

.sub-flow__safety {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-flow__safety {
    margin-top: 7.5rem;
  }
}

.sub-flow__company {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-flow__company {
    margin-top: 6.5rem;
  }
}

.sub-mv__inner {
  position: relative;
}

.sub-mv__img {
  width: 100%;
  height: 500px;
}
.sub-mv__img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-mv__img {
    height: 750px;
  }
}
@media screen and (min-width: 1441px) {
  .sub-mv__img {
    height: 900px;
  }
}
@media screen and (min-width: 2001px) {
  .sub-mv__img {
    height: 1050px;
  }
}

.sub-mv__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.sub-mv__title-wrap {
  position: absolute;
  top: calc(50% + 2.1875rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-mv__title-wrap {
    top: calc(50% + 5.5rem);
  }
}

.sub-mv__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.sub-mv__subtitle {
  text-transform: capitalize;
  font-size: 1rem;
  font-size: 16px;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.1875;
  letter-spacing: 0.12em;
  text-align: center;
}

.sub-mv__title,
.sub-mv__subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.sub-recruit__mv .sub-mv__img,
.sub-business__mv .sub-mv__img,
.sub-partner__mv .sub-mv__img,
.sub-example-mv .sub-mv__img,
.sub-faq__mv .sub-mv__img,
.sub-news__mv .sub-mv__img {
  height: 360px;
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .sub-recruit__mv .sub-mv__img,
  .sub-business__mv .sub-mv__img,
  .sub-partner__mv .sub-mv__img,
  .sub-example-mv .sub-mv__img,
  .sub-faq__mv .sub-mv__img,
  .sub-news__mv .sub-mv__img {
    margin-top: 12.5rem;
  }
}
.sub-recruit__mv .sub-mv__img::after,
.sub-business__mv .sub-mv__img::after,
.sub-partner__mv .sub-mv__img::after,
.sub-example-mv .sub-mv__img::after,
.sub-faq__mv .sub-mv__img::after,
.sub-news__mv .sub-mv__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 59, 112, 0.5);
  z-index: 1;
}
.sub-recruit__mv .sub-mv__title-wrap,
.sub-business__mv .sub-mv__title-wrap,
.sub-partner__mv .sub-mv__title-wrap,
.sub-example-mv .sub-mv__title-wrap,
.sub-faq__mv .sub-mv__title-wrap,
.sub-news__mv .sub-mv__title-wrap {
  top: 50%;
}

.sub-news {
  background-color: #ffffff;
}
.sub-news .news__list {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .sub-news__inner {
    max-width: 1000px;
  }
}

.news-content__pagination {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .news-content__pagination {
    margin-top: 3.25rem;
  }
}

.sub-news__button {
  margin-top: 3.25rem;
  margin-inline: auto;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .sub-news__button {
    margin-top: 5.625rem;
  }
}
.sub-news__button.is-active {
  animation: fadeIn 1s ease-out forwards;
}

.sub-partner {
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-partner {
    padding-bottom: 5rem;
  }
}

.sub-partner__inner {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-partner__inner {
    margin-top: 5.5rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-partner__inner.inner {
    max-width: 1060px;
  }
}

.sub-partner__heading {
  text-align: center;
}

.sub-partner__lead {
  font-size: clamp(1.25rem, 1.276vw + 0.951rem, 1.5625rem); /* 20 ~ 25 | 375 ~ 767 */
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005cc2;
  line-height: 1.76;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sub-partner__lead {
    font-size: 1.5625rem;
  }
}

.sub-partner__body {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .sub-partner__body {
    margin-top: 7.125rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 2.75rem;
  }
}

.sub-partner__intro {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.75;
}

.sub-partner__intro:not(:first-child) {
  margin-top: 1.25rem;
}

.sub-partner__requirements {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .sub-partner__requirements {
    margin-top: 4.5rem;
  }
}

.sub-partner__title {
  padding: 0.625rem 1.25rem;
  background-color: #005cc2;
  font-size: clamp(1.25rem, 1.276vw + 0.951rem, 1.5625rem); /* 20 ~ 25 | 375 ~ 767 */
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.76;
}
@media screen and (min-width: 768px) {
  .sub-partner__title {
    padding: 1.125rem 2.5rem;
    font-size: 1.5625rem;
  }
}

.sub-partner__list {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .sub-partner__list {
    margin-top: 1.5rem;
  }
}

.sub-partner__item {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.75;
}

.sub-partner__image-block {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .sub-partner__image-block {
    margin-top: 0;
    width: 35.7%;
    flex-shrink: 0;
  }
}

.sub-partner__img {
  width: 100%;
}
.sub-partner__img img {
  width: 100%;
  aspect-ratio: 355/220;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-partner__img {
    max-width: 357px;
  }
  .sub-partner__img img {
    aspect-ratio: 357/404;
  }
}

.sub-partner__name {
  margin-top: 0.75rem;
  text-align: center;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4285714286;
  letter-spacing: 0.14em;
}

.sub-partner__form {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .sub-partner__form {
    margin-top: 11.25rem;
  }
}

.sub-reason__promise {
  margin-top: 3.375rem;
  padding-top: 3.375rem;
  padding-bottom: 3.375rem;
}
@media screen and (min-width: 768px) {
  .sub-reason__promise {
    padding-top: 8rem;
    padding-bottom: 9.25rem;
  }
}

.sub-promise {
  background-color: #f5f5f5;
}

.sub-promise__wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sub-promise__wrapper {
    flex-direction: row;
    gap: min(85px, 7.0833333333%);
  }
}

.sub-promise__img {
  order: 2;
  margin-top: 1.25rem;
  max-width: 594px;
  width: 100%;
}
.sub-promise__img img {
  width: 100%;
  aspect-ratio: 593.575/336.892;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-promise__img {
    margin-top: 0;
    order: 0;
    width: 49.5%;
  }
  .sub-promise__img img {
    aspect-ratio: 593.575/436.892;
  }
}

.sub-promise__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .sub-promise__content {
    display: block;
    width: 43.4166666667%;
  }
}

.sub-promise__heading {
  order: 1;
}
@media screen and (min-width: 768px) {
  .sub-promise__heading {
    padding-top: 1.25rem;
    order: 0;
  }
}

.sub-promise__heading .common-title__japanese {
  font-size: clamp(1.375rem, 3.061vw + 0.658rem, 2.125rem);
}
@media screen and (min-width: 768px) {
  .sub-promise__heading .common-title__japanese {
    font-size: 2.125rem;
  }
}

.sub-promise__text-block {
  order: 3;
}
@media screen and (min-width: 768px) {
  .sub-promise__text-block {
    order: 0;
  }
}

.sub-promise__text {
  margin-top: 2.3125rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

.sub-promise__text:not(:first-child) {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .sub-promise__text:not(:first-child) {
    margin-top: 1.375rem;
  }
}

.promise__list {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .promise__list {
    margin-top: 6.75rem;
  }
}

.promise-card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .promise-card {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 3.5rem;
  }
}

.promise-card__img {
  width: 100%;
}
.promise-card__img img {
  width: 100%;
  aspect-ratio: 375.969/210.36;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .promise-card__img {
    max-width: 376px;
  }
  .promise-card__img img {
    aspect-ratio: 375.969/240.36;
  }
}

.promise-card__content {
  margin-top: 1rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .promise-card__content {
    margin-top: 1.625rem;
  }
}

.promise-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .promise-card__title {
    letter-spacing: 0.08em;
  }
}

.promise-card__text {
  margin-top: 1.25rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6428571429;
  letter-spacing: 0.08em;
}

.sub-reason__info-section {
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .sub-reason__info-section {
    margin-top: 6.25rem;
  }
}

.sub-reason__company {
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .sub-reason__company {
    margin-top: 8.75rem;
  }
}

.sub-recruit {
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-recruit {
    padding-bottom: 5rem;
  }
}

.sub-recruit__content {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .sub-recruit__content {
    margin-top: 5.5rem;
  }
}

.recruit-content__lead {
  text-align: center;
}

.recruit-content__lead-title {
  font-size: clamp(1.25rem, 1.276vw + 0.951rem, 1.5625rem); /* 20 ~ 25 | 375 ~ 767 */
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #4d4d4d;
  line-height: 1.76;
  position: relative;
  display: inline-block;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .recruit-content__lead-title {
    font-size: 1.5625rem;
    padding-inline: 1.875rem;
  }
}

.recruit-content__lead-title::before,
.recruit-content__lead-title::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #4d4d4d;
  top: 50%;
}

.recruit-content__lead-title::before {
  transform: translateY(-50%) rotate(-35deg);
  left: 0;
}

.recruit-content__lead-title::after {
  transform: translateY(-50%) rotate(35deg);
  right: 0;
}

.recruit-content__table-wrapper {
  margin-top: 3.5rem;
  max-width: 1000px;
  margin-inline: auto;
  background-color: #f5f5f5;
  padding: 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .recruit-content__table-wrapper {
    margin-top: 7rem;
    padding: 2.5rem 3.75rem;
  }
}

.recruit-content__table-wrapper.recruit-content__table-wrapper--second {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .recruit-content__table-wrapper.recruit-content__table-wrapper--second {
    margin-top: 7.5rem;
  }
}

.recruit-content__table {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
}

.recruit-content__row {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: max(14px, 1rem);
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .recruit-content__row {
    flex-direction: row;
  }
}

.recruit-content__title {
  width: 100%;
  font-weight: bold;
  padding: 0.75rem 0.625rem 0;
  font-size: max(14px, 1rem);
}
@media screen and (min-width: 768px) {
  .recruit-content__title {
    padding: 1rem 0.375rem;
    flex-basis: 160px;
  }
}

.recruit-content__desc {
  width: 100%;
  line-height: 1.6;
  padding: 0 0.625rem 0.75rem 0.9375rem;
  margin-top: 0.5rem;
  font-size: max(12px, 0.875rem);
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .recruit-content__desc {
    font-weight: 700;
    margin-top: 0;
    border-left: 1px solid #cccccc;
    flex: 1;
    padding: 1rem 0.375rem;
    font-size: max(14px, 1rem);
  }
}

.recruit-content__contact-link {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .recruit-content__contact-link {
    margin-top: 3.5rem;
  }
}

.recruit-content__contact-anchor {
  display: block;
  text-align: center;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .recruit-content__contact-anchor:hover {
    opacity: 0.7;
  }
}
.recruit-content__contact-text {
  font-size: clamp(1.25rem, 1.276vw + 0.951rem, 1.5625rem); /* 20 ~ 25 | 375 ~ 767 */
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #4d4d4d;
  color: #ffffff;
  line-height: 1.76;
  display: block;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .recruit-content__contact-text {
    font-size: 1.5625rem;
    padding: 1.5625rem;
  }
}

.recruit-content__contact-note {
  margin-top: 2.625rem;
  font-size: clamp(1.25rem, 1.276vw + 0.951rem, 1.5625rem); /* 20 ~ 25 | 375 ~ 767 */
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #4d4d4d;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-content__contact-note {
    margin-top: 3.625rem;
    font-size: 1.5625rem;
  }
}

.sub-business__support-menu {
  margin-top: 7.125rem;
  padding-bottom: 5.375rem;
}
@media screen and (min-width: 768px) {
  .sub-business__support-menu {
    margin-top: 6.25rem;
    padding-bottom: 14.875rem;
  }
}

.support-menu__list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .support-menu__list {
    margin-top: 5.75rem;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(2rem, 5.655vw - 0.714rem, 4.375rem);
         column-gap: clamp(2rem, 5.655vw - 0.714rem, 4.375rem); /* 32 ~ 70 | 768 ~ 1440*/
    row-gap: 2rem;
  }
}

.support-menu__img {
  width: 100%;
}
.support-menu__img img {
  width: 100%;
  aspect-ratio: 375/210;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .support-menu__img {
    max-width: 354px;
  }
  .support-menu__img img {
    aspect-ratio: 354/228;
  }
}

.support-menu__title {
  margin-top: 0.5rem;
  font-size: 1.4375rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #005abc;
  line-height: 1.2173913043;
  letter-spacing: 0.08em;
}

.tab-list {
  background-color: #f5f5f5;
}

.tab-list__list {
  max-width: 400px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .tab-list__list {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
  }
}

.tab-list__item {
  border-radius: 0.625rem;
}

.tab-list__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem 0.625rem;
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 0;
}
.tab-list__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.4s ease;
  z-index: -2;
}
.tab-list__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0, 90, 188) 48.65%, rgba(0, 90, 188, 0.3) 99.88%);
  z-index: -1;
}
.tab-list__link > * {
  position: relative;
  z-index: 1;
}
.tab-list__link--01::after {
  background-image: url(../images/top/tab-img01.png);
}
.tab-list__link--02::after {
  background-image: url(../images/top/tab-img02.png);
}
.tab-list__link--03::after {
  background-image: url(../images/top/tab-img03.png);
}
@media screen and (min-width: 768px) {
  .tab-list__link {
    gap: 0.1875rem;
    padding: 1.5rem 0.625rem;
  }
}
@media (any-hover: hover) {
  .tab-list__link:hover::after {
    transform: scale(1.15);
  }
}
@media (any-hover: hover) {
  .tab-list__link:hover {
    opacity: 1;
  }
}

.tab-list__img-wrapper {
  max-width: 40px;
  width: 100%;
}
.tab-list__img-wrapper img {
  width: 100%;
  aspect-ratio: 51/51;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .tab-list__img-wrapper {
    max-width: 51px;
  }
}

.tab-list__label {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.3571428571;
  letter-spacing: 0.12em;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .tab-list__label {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
.inline-block {
  display: inline-block;
}

.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}
/*# sourceMappingURL=style.css.map */
