@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&display=swap");
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --blue: #06c0eb;
  --navy: #004970;
  --green: #01b056;
  --orange: #e58100;
  --main: #006C86;
  --yellow: #ffd800;
  --red: #f51313;
  --text: #333333;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho",
    "MS Mincho", "Meiryo", serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

.text-emphasis {
  color: var(--orange);
  display: inline;
}

.text-danger {
  color: var(--red);
  background-color: var(--yellow);
  display: inline;
}

.color-red {
  color: var(--red);
}

.fz52 {
  font-size: max(5.2rem, 28px);
}
@media screen and (max-width: 768px) {
  .fz52 {
    font-size: 10rem;
  }
}

.fz48, .vision__title {
  font-size: max(4.8rem, 24px);
}
@media screen and (max-width: 768px) {
  .fz48, .vision__title {
    font-size: 1.8rem;
  }
}

.fz42 {
  font-size: max(4.2rem, 22px);
}
@media screen and (max-width: 768px) {
  .fz42 {
    font-size: 7rem;
  }
}

.color-main {
  color: var(--main);
}

@media screen and (max-width: 768px) {
  .sp-fz70 {
    font-size: 7rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  max-width: 192rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  padding-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 1.5rem;
  }
}
.header__logo {
  width: max(30rem, 150px);
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 20rem;
    padding-top: 1.5rem;
  }
}
.header__nav {
  width: fit-content;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 6rem 2rem 4rem;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    width: 100%;
    max-width: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-item {
    width: 100%;
  }
}
.header__nav-item--has-dropdown {
  position: relative;
}
@media (min-width: 769px) {
  .header__nav-item--has-dropdown:hover .header__dropdown-list {
    opacity: 1;
    visibility: visible;
  }
  .header__nav-item--has-dropdown:hover .header__nav-item-label {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .header__nav-item--has-dropdown {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }
  .header__nav-item--has-dropdown.is-expanded .header__dropdown-list {
    max-height: 60vh;
    opacity: 1;
    visibility: visible;
  }
  .header__nav-item--has-dropdown.is-expanded .header__nav-item-label::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.header__nav-item-label {
  color: var(--text);
  cursor: default;
  display: inline-block;
  font-size: max(1.8rem, 14px);
  font-weight: 600;
  padding-block: 0.4rem;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__nav-item-label {
    color: var(--white);
    cursor: pointer;
    position: relative;
    padding-right: 2.4rem;
  }
  .header__nav-item-label::after {
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-top: 0.6rem solid var(--white);
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
  }
}
.header__nav-item--sns {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .header__nav-item--sns {
    justify-content: center;
  }
}
.header__nav-item--sns img[src*=youtube] {
  width: max(4rem, 30px);
}
.header__nav-item--sns img[src*=instagram] {
  width: max(3rem, 20px);
}
.header__nav-item--sns img[src*=tiktok] {
  width: max(4rem, 30px);
}
.header__nav-item a {
  color: var(--text);
  font-size: max(1.8rem, 14px);
  font-weight: 600;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__nav-item a {
    padding: 0;
    background: transparent;
    color: var(--white);
  }
}
.header__nav-item a:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.header__nav-item--form a {
  background: #009dff;
  color: var(--white);
  padding-block: 1.2rem;
  padding-inline: 5.6rem;
  position: relative;
  margin-left: -1.5rem;
}
@media screen and (max-width: 768px) {
  .header__nav-item--form a {
    margin: 0;
    margin-inline: auto;
    display: block;
    width: fit-content;
  }
}
.header__nav-item--form a:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header__nav-item--form a:after {
    display: none;
  }
}
.header__dropdown-list {
  background: var(--white);
  border-radius: 0.4rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  left: 50%;
  list-style: none;
  margin: 0;
  min-width: 20rem;
  opacity: 0;
  padding: 0.8rem 0;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .header__dropdown-list {
    background: transparent;
    box-shadow: none;
    left: 0;
    margin-top: 0.8rem;
    max-height: 0;
    min-width: auto;
    opacity: 0;
    overflow-y: auto;
    padding: 0;
    position: static;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 768px) {
  .header__dropdown-item {
    margin-bottom: 0.8rem;
  }
}
.header__dropdown-item a {
  color: var(--text);
  display: block;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  padding-block: 1rem;
  padding-inline: 1.6rem;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header__dropdown-item a {
    color: var(--white);
    padding-block: 0.8rem;
    padding-inline: 0;
  }
}
.header__dropdown-item a:hover {
  background: rgba(var(--main), 0.08);
}
@media screen and (max-width: 768px) {
  .header__dropdown-item a:hover {
    background: transparent;
    box-shadow: none;
  }
}

.menu-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    transition: top 0.3s ease;
  }
}
.menu-button:focus {
  outline: none;
}
.menu-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 0.4rem;
  border-radius: 0.4rem;
}

.menu-icon {
  width: 4rem;
  height: 2.4rem;
  position: relative;
}
.menu-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 4rem;
  height: 0.2rem;
  background-color: var(--black);
  border-radius: 0.1rem;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
.menu-icon span:nth-child(1) {
  top: 0;
}
.menu-icon span:nth-child(2) {
  transform: translateX(-50%) translateY(-50%);
}
.menu-icon span:nth-child(3) {
  top: 100%;
}

.menu-button.is-active .menu-icon span {
  background-color: var(--white);
}
.menu-button.is-active .menu-icon span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.menu-button.is-active .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0) rotate(-45deg);
}
.menu-button.is-active .menu-icon span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-225deg);
}
.menu-button.is-active .menu-icon__text {
  color: var(--white);
  padding: 0;
}

.footer {
  background: var(--white);
  padding-block: 7rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 2rem;
  }
}
.footer__logo {
  width: max(30rem, 200px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 20rem;
  }
}

.fixed {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 100;
}

.fixed.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: all 0.3s;
  visibility: visible;
}

.floating {
  width: 100cqw;
  max-height: 143px;
}
.floating__inner {
  align-items: center;
  display: flex;
}
.floating__button {
  box-shadow: inset 0 -1rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  padding-block: 3.5rem 4rem;
  transition: opacity 0.3s ease;
  flex: 1;
}
.floating__button--survey {
  background-color: #e58100;
}
.floating__button--tel {
  background-color: #3199df;
}
.floating__button-text {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 600;
}
.floating__icon {
  flex-shrink: 0;
}
.floating__icon img {
  width: 12.6rem;
}

.color-title {
  font-size: max(4.2rem, 22px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .color-title {
    font-size: 5.6rem;
  }
}
.color-title span {
  font-weight: 600;
}

.color-title-underline {
  width: 66.7rem;
  height: 0.6rem;
}
@media screen and (max-width: 768px) {
  .color-title-underline {
    width: 100%;
    max-width: 50rem;
  }
}

.section {
  padding-block: 15rem;
}
@media screen and (max-width: 768px) {
  .section {
    padding-block: 4rem;
  }
}
.section__inner {
  max-width: 192rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 5.6rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .section__inner {
    padding-inline: 1.6rem;
  }
}
.section__inner--column {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media screen and (max-width: 768px) {
  .section__inner--column {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.section__inner--align-center {
  align-items: center;
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .section__head {
    gap: 1.5rem;
  }
}
.section__sub-title {
  font-size: max(4.2rem, 32px);
  font-weight: 500;
  line-height: 1;
  color: var(--main);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .section__sub-title {
    font-size: 2.4rem;
  }
}
.section__title {
  font-size: max(6.4rem, 48px);
  font-weight: 500;
  line-height: 1.53125;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: max(4.8rem, 28px);
  }
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 2.8rem;
  }
}
.section__text {
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 2.3;
  color: var(--main);
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .section__text {
    font-size: 1.6rem;
  }
}

.media {
  display: grid;
  grid-template-columns: 79.4rem 1fr;
  align-items: center;
  gap: 5.6rem;
}
@media screen and (max-width: 768px) {
  .media {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.media .media__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .media .media__body {
    gap: 2rem;
  }
}
.media .media__text {
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 1.8;
  font-family: var(--gothic);
}
.media .media__text b {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .media .media__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.wrapper {
  max-width: min(100%, 192rem);
  margin-inline: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-inline: 3rem;
  }
}

.section-header {
  background-color: var(--main);
  position: relative;
}
.section-header__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-block: 3.5rem;
}
.section-header__title {
  color: var(--white);
  font-size: 4.4rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-header__title {
    font-size: 6.6rem;
  }
}
.section-header::after {
  border-left: 3.2rem solid transparent;
  border-right: 3.2rem solid transparent;
  border-top: 3rem solid var(--main);
  bottom: -2.9rem;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.dib {
  display: inline-block;
}

.fv {
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5.2rem;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 1.5rem;
  }
}
.fv .fv__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3.2rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .fv .fv__content {
    gap: 2rem;
  }
}
.fv .fv__title {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.6129032258;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .fv .fv__title {
    font-size: 2.8rem;
  }
}
.fv .fv__text {
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .fv .fv__text {
    font-size: 1.6rem;
  }
}
.fv .fv__video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fv .fv__video:empty {
  background-image: url("../images/fv-main.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  max-width: 95%;
  width: 78rem;
  position: absolute;
  bottom: 5.2rem;
  padding: 1.4rem 2.8rem;
  border-radius: 0 6.25em 6.25em 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-news {
    width: 100%;
    bottom: 2rem;
    padding: 1rem 2rem;
  }
}
.top-news__link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
}
.top-news__date {
  font-size: max(1.8rem, 16px);
  font-weight: 600;
  line-height: 1;
  color: #007C9A;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .top-news__date {
    font-size: 1.4rem;
  }
}
.top-news__title {
  font-size: max(1.8rem, 16px);
  font-weight: 600;
  line-height: 1;
  color: #007C9A;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .top-news__title {
    font-size: 1.4rem;
  }
}
.top-news__icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-news__icon img {
  width: 2rem;
}
.top-news__icon-text {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1;
  color: #007C9A;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .top-news__icon-text {
    font-size: 1.4rem;
  }
}

.contact__form-wrapper {
  max-width: max(102.4rem, 800px);
  width: 100%;
  margin-inline: auto;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .contact__form {
    gap: 2rem;
  }
}
.contact__form-text {
  font-size: max(2.1rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .contact__form-text {
    font-size: 3.8rem;
    margin-bottom: 5.6rem;
  }
}
.contact__form-submit {
  width: 26rem;
  height: 8rem;
  border-radius: 4rem;
  background: #11B243;
  color: var(--white);
  font-size: max(2.4rem, 20px);
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .contact__form-submit {
    width: 100%;
    height: 5.6rem;
    border-radius: 2.8rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.contact__form-submit:hover {
  opacity: 0.8;
}

.contact__form-item {
  font-family: var(--gothic);
  display: grid;
  grid-template-columns: max(25rem, 200px) 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}
.contact__form-item--checkbox {
  gap: 1.6rem;
}
.contact__form-item-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: max(2.4rem, 16px);
  font-weight: 600;
  line-height: 1;
  font-family: var(--notosans);
}
@media screen and (max-width: 768px) {
  .contact__form-item-label {
    font-size: 1.8rem;
  }
  .contact__form-item-label:empty {
    display: none;
  }
}
.contact__form-item-label:has(+ .contact__form-item-input textarea) {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .contact__form-item-label:has(+ .contact__form-item-input textarea) {
    align-items: center;
  }
}
.contact__form-item-label .hissu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4em 0.5333333333em;
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: #CE0000;
  border-radius: 6.25em;
}
.contact__form-item-label .optional {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4em 0.5333333333em;
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: #137EC1;
  border-radius: 6.25em;
  flex-shrink: 0;
}
.contact__form-item .wpcf7-not-valid-tip {
  font-size: max(1.7rem, 14px);
  font-weight: 600;
  line-height: 1.2941176471;
  color: #EB4920;
  margin-top: 0.9rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-not-valid-tip {
    font-size: 2.5rem;
    margin-top: 1.6rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap {
  width: 100%;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
  display: block;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: max(2.1rem, 16px);
  font-weight: 400;
  line-height: 1.4761904762;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label {
    font-size: max(1.6rem, 14px);
  }
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label input[type=checkbox] {
  display: none;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox]) {
  position: relative;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::before {
  content: "";
  display: block;
  width: 1.0476190476em;
  height: 1.0476190476em;
  border: 0.0952380952em solid #000;
  border-radius: 0.3rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::before {
    width: 5rem;
    height: 5rem;
    border: 0.2rem solid #000;
    border-radius: 0.7rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0.6rem;
  display: block;
  width: 0.5238095238em;
  height: 0.1904761905em;
  border-top: 0.0952380952em solid #000;
  border-right: 0.0952380952em solid #000;
  transform: rotate(135deg);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::after {
    width: 2.6rem;
    height: 1rem;
    top: 2.2rem;
    left: 1.1rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .contact__form-item .contact__form-item-check label {
    font-size: 3.8rem !important;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .contact__form-item .contact__form-item-check label:has(input[type=checkbox])::before {
    width: 4.5rem !important;
    height: 4.5rem !important;
  }
}
.contact__form-item-input input[type=text],
.contact__form-item-input input[type=tel],
.contact__form-item-input input[type=email] {
  max-width: 500px;
}
.contact__form-item-input input[type=text],
.contact__form-item-input input[type=tel],
.contact__form-item-input input[type=email],
.contact__form-item-input select,
.contact__form-item-input textarea {
  width: 100%;
  padding: 0.619047619em 0.619047619em;
  background-color: #fff;
  border: 0.1428571429em solid #d9d9d9;
  border-radius: 3rem;
  font-size: max(2.4rem, 16px);
  font-weight: 600;
  line-height: 1.5238095238;
}
@media screen and (max-width: 768px) {
  .contact__form-item-input input[type=text],
  .contact__form-item-input input[type=tel],
  .contact__form-item-input input[type=email],
  .contact__form-item-input select,
  .contact__form-item-input textarea {
    border-radius: 1.6rem;
    font-size: 16px;
  }
}
.contact__form-item-input input[type=text]::placeholder,
.contact__form-item-input input[type=tel]::placeholder,
.contact__form-item-input input[type=email]::placeholder,
.contact__form-item-input select::placeholder,
.contact__form-item-input textarea::placeholder {
  color: #B1B1B1;
  font-weight: 500;
}
.contact__form-item-input textarea {
  resize: none;
  height: 215px;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1em;
  font-size: max(1.7rem, 14px);
  text-align: center;
}

.error-404 {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 60vh;
}
.error-404__content {
  padding-block: 8rem;
  width: 100%;
}
.error-404__inner {
  margin-top: 10rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  max-width: 144rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .error-404__inner {
    margin-top: 8rem;
  }
}
.error-404__title {
  font-size: max(5rem, 35px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error-404__title {
    font-size: 6rem;
  }
}
.error-404__text {
  font-size: max(2.4rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error-404__text {
    font-size: 3.8rem;
  }
}
.error-404__note {
  color: #666;
  font-size: max(2rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error-404__note {
    font-size: 3.2rem;
  }
}
.error-404__button {
  background: linear-gradient(180deg, rgb(231, 124, 26) 0%, rgb(248, 172, 113) 15%, rgb(229, 129, 0) 50%, rgb(245, 136, 42) 89%, rgb(231, 124, 26) 99%);
  border: 0.5rem solid var(--white);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-block: 1.4rem;
  transition: transform 0.3s ease;
  width: max(58.2rem, 500px);
}
@media screen and (max-width: 768px) {
  .error-404__button {
    padding-block: 3rem;
    width: 100%;
    max-width: 68rem;
  }
}
.error-404__button:hover {
  transform: translateY(0.4rem);
}
.error-404__button-text {
  color: var(--white);
  font-size: max(3rem, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .error-404__button-text {
    font-size: 4.5rem;
    letter-spacing: 0.1em;
  }
}

.page__inner {
  padding-block: 20rem;
}
@media screen and (max-width: 768px) {
  .page__inner {
    padding-block: 10rem 4rem;
  }
}

.page__head {
  display: grid;
  grid-template-columns: 55.2rem 1fr;
  align-items: center;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .page__head {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-inline: 1.6rem;
  }
}

.page__archive {
  display: grid;
  grid-template-columns: 55.2rem 1fr;
  align-items: center;
  padding-inline: 4rem 0;
}
@media screen and (max-width: 768px) {
  .page__archive {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-inline: 1.6rem;
  }
}

.page__thumbnail {
  border-radius: 6.4rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page__thumbnail {
    border-radius: 1.6rem;
  }
}
.page__thumbnail img {
  aspect-ratio: 1339/542;
}
@media screen and (max-width: 768px) {
  .page__thumbnail img {
    aspect-ratio: 375/250;
  }
}

body:has(.about, .works, .welfare) .page__head {
  grid-template-columns: 1fr;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  body:has(.about, .works, .welfare) .page__head {
    gap: 2rem;
  }
}
body:has(.about, .works, .welfare) .page__head .section__head {
  max-width: max(84rem, 600px);
  width: 100%;
  margin-inline: auto;
}
body:has(.about, .works, .welfare) .page__thumbnail {
  width: 100vw;
  border-radius: 0;
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  body:has(.about, .works, .welfare) .page__thumbnail {
    width: 100%;
    margin-inline: 0;
    border-radius: 1.6rem;
  }
}
body:has(.about, .works, .welfare) .page__thumbnail img {
  aspect-ratio: 1920/808;
}
@media screen and (max-width: 768px) {
  body:has(.about, .works, .welfare) .page__thumbnail img {
    aspect-ratio: 375/250;
  }
}

body:has(.recruitment) .page__head {
  grid-template-columns: 1fr;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  body:has(.recruitment) .page__head {
    gap: 2rem;
  }
}
body:has(.recruitment) .page__head .section__head {
  max-width: max(84rem, 600px);
  width: 100%;
  margin-inline: auto;
}

body:has(.contact) .page__head {
  grid-template-columns: 1fr;
}
body:has(.contact) .page__head .section__head {
  max-width: max(84rem, 600px);
  width: 100%;
  margin-inline: auto;
}

.mission {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .mission {
    gap: 4rem;
  }
}
.mission .mission__media {
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__media {
    padding-inline: 1.6rem;
  }
}
.mission .mission__column {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 8rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__column {
    padding-inline: 1.6rem;
    margin-top: 4rem;
    gap: 2rem;
  }
}
.mission .mission__item {
  display: grid;
  grid-template-columns: 1fr 68.6rem;
  align-items: center;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__item {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.mission .mission__item-body {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-body {
    gap: 2rem;
  }
}
.mission .mission__item-head {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head {
    grid-template-columns: 6rem 1fr;
    gap: 0.8rem;
  }
}
.mission .mission__item-head-icon {
  width: 8rem;
  height: 8rem;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head-icon {
    width: 6rem;
    height: 6rem;
  }
}
.mission .mission__item-head-main {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head-main {
    gap: 1.6rem;
  }
}
.mission .mission__item-head-title {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}
.mission .mission__item-head-title .mission__item-head-title-ja {
  font-size: 7.2rem;
  font-weight: 500;
  line-height: 1.1805555556;
  color: #06697B;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head-title .mission__item-head-title-ja {
    font-size: 4.8rem;
    line-height: 1.25;
  }
}
.mission .mission__item-head-title .mission__item-head-title-en {
  font-size: 5.8rem;
  font-weight: 500;
  line-height: 1.1724137931;
  color: rgba(6, 105, 123, 0.5);
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head-title .mission__item-head-title-en {
    font-size: 3.2rem;
    line-height: 1.25;
  }
}
.mission .mission__item-head-text {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.1875;
  color: #06697B;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-head-text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.mission .mission__item-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .mission .mission__item-text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.mission .mission__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:has(.about) .section {
  padding-bottom: 0;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .about {
    gap: 4rem;
  }
}
.about .about__inner {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: max(84rem, 600px);
  width: 100%;
  margin-inline: auto;
}
.about .about__list {
  display: flex;
  flex-direction: column;
}
.about .about__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid #707070;
}
.about .about__item + .about__item {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .about .about__item {
    padding-bottom: 1.6rem;
    gap: 0.8rem;
  }
}
.about .about__item + .about__item {
  margin-top: 1.6rem;
}
.about .about__item-title,
.about .about__item-text {
  font-size: max(2.1rem, 16px);
  font-weight: 400;
  line-height: 1.1428571429;
  color: var(--text);
}
.about .about__item-title span,
.about .about__item-text span {
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .about .about__item-title,
  .about .about__item-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.about .about__item-text-iso {
  width: 14.8rem;
}
.about .about__list--history .about__item {
  display: grid;
  grid-template-columns: max(12rem, 100px) 1fr;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .about .about__list--history .about__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
}
.about .about__location {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  height: max(96rem, 500px);
}
@media screen and (max-width: 768px) {
  .about .about__location {
    height: max(35rem, 300px);
  }
}
.about .about__location iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.internal-link {
  margin-top: 10rem;
  max-width: max(148rem, 1000px);
  padding-inline: 4rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .internal-link {
    padding-inline: 1.6rem;
    margin-top: 4rem;
  }
}
.internal-link__list {
  background: var(--white);
  padding-block: 4.8rem;
  border-radius: 5.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem 0;
  width: 100%;
}
.internal-link__list--works {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.internal-link__list--works .internal-link__item {
  width: fit-content;
  padding-inline: 4.8rem;
}
@media screen and (max-width: 768px) {
  .internal-link__list {
    grid-template-columns: repeat(1, 1fr);
    padding-block: 2.4rem;
    border-radius: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .internal-link__item {
    padding-inline: 2.4rem;
  }
}
.internal-link__item + .internal-link__item {
  border-left: 0.1rem solid #707070;
}
@media screen and (max-width: 768px) {
  .internal-link__item + .internal-link__item {
    border-left: none;
    border-top: 0.1rem solid #707070;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
  }
}
.internal-link__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  width: 100%;
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .internal-link__item a {
    justify-content: space-between;
    padding-inline: 0rem;
  }
}
.internal-link__item a::after {
  content: "";
  display: block;
  width: max(2rem, 16px);
  height: max(1.2rem, 10px);
  background: url(../images/icon-arrow-carrot-down.webp) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .internal-link__item a::after {
    width: 1.6rem;
    height: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .internal-link__item a {
    gap: 2.4rem;
    font-size: max(1.6rem, 14px);
  }
}
.internal-link__item a:hover {
  opacity: 0.7;
}

.recruitment__inner {
  max-width: max(106.4rem, 900px);
  width: 100%;
  margin-inline: auto;
  padding-inline: 4rem;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .recruitment__inner {
    padding-inline: 1.6rem;
    gap: 4rem;
  }
}
.recruitment__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.recruitment__item {
  display: flex;
  background: var(--white);
  border-radius: 4rem;
}
@media screen and (max-width: 768px) {
  .recruitment__item {
    border-radius: 2.4rem;
    flex-direction: column;
  }
}
.recruitment__item-title {
  width: max(23rem, 180px);
  min-height: max(8rem, 60px);
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A1D6E;
  border-radius: 4rem;
  flex-shrink: 0;
  font-family: var(--gothic);
}
.recruitment__item-title--blue {
  background: #105BE8;
}
@media screen and (max-width: 768px) {
  .recruitment__item-title {
    width: 100%;
    min-height: max(6rem, 40px);
    font-size: 1.6rem;
  }
}
.recruitment__item-text {
  padding: 3rem 2rem;
  font-size: max(2rem, 16px);
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .recruitment__item-text {
    padding: 2rem;
    font-size: 1.6rem;
  }
}
.recruitment__form {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .recruitment__form {
    gap: 4rem;
  }
}
.recruitment__form-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.recruitment__form-head-title {
  font-size: max(5rem, 32px);
  font-weight: 500;
  line-height: 1.28;
  text-align: center;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .recruitment__form-head-title {
    font-size: 3.2rem;
  }
}
.recruitment__form-head-text {
  font-size: max(3.2rem, 24px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .recruitment__form-head-text {
    font-size: 2.4rem;
  }
}

.message__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.message__media-image {
  width: 26rem;
  height: 26rem;
}
@media screen and (max-width: 768px) {
  .message__media-image {
    width: 10rem;
    height: 10rem;
  }
}
.message__content {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .message__content {
    gap: 2rem;
  }
}
.message__text {
  font-size: max(2.4rem, 16px);
  font-weight: 600;
  line-height: 3.25;
  color: var(--main);
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .message__text {
    font-size: 1.6rem;
    line-height: 3;
  }
}

.recruit {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .recruit {
    gap: 4rem;
  }
}
.recruit .recruit__content {
  background: var(--white);
  max-width: calc(100% - 4rem);
  width: 100%;
  margin-left: auto;
  padding: 5.6rem 8rem;
  display: grid;
  grid-template-columns: 50rem 1fr;
  align-items: center;
  border-radius: 6.4rem 0 0 6.4rem;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content {
    grid-template-columns: repeat(1, 1fr);
    max-width: calc(100% - 1.6rem);
    padding: 4rem 2rem;
    border-radius: 2.4rem 0 0 2.4rem;
  }
}
.recruit .recruit__content-inner {
  display: flex;
  flex-direction: column;
}
.recruit .recruit__content-sub-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--main);
  font-family: var(--gothic);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content-sub-title {
    font-size: 1.6rem;
  }
}
.recruit .recruit__content-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--main);
  font-family: var(--gothic);
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content-title {
    font-size: 3.2rem;
  }
}
.recruit .recruit__content-logo {
  margin-top: 3.2rem;
  width: 24.5rem;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content-logo {
    margin-top: 1.6rem;
    width: 16rem;
  }
}
.recruit .recruit__content-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content-list {
    margin-top: 2.4rem;
  }
}
.recruit .recruit__content-list-item a {
  font-size: 2rem;
  width: 38rem;
  height: 7.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 3rem;
  background: #014A89;
  border-radius: 2.4rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--gothic);
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content-list-item a {
    width: 100%;
    font-size: 1.6rem;
  }
}
.recruit .recruit__content-list-item a::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../images/arrow-carrot-right-white.webp) no-repeat center center/contain;
}
.recruit .recruit__content-sns {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content-sns {
    margin-top: 2.4rem;
    justify-content: center;
  }
}
.recruit .recruit__content-sns a img[src*=youtube] {
  width: max(4rem, 30px);
}
.recruit .recruit__content-sns a img[src*=instagram] {
  width: max(3rem, 20px);
}
.recruit .recruit__content-sns a img[src*=tiktok] {
  width: max(4rem, 30px);
}
@media screen and (max-width: 768px) {
  .recruit .recruit__content .splide {
    margin-top: 3.2rem;
  }
}

.service .service__content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  width: 100dvw;
  margin-inline: calc(50% - 50dvw);
  padding-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .service .service__content {
    width: 100%;
    margin-inline: 0;
    padding-right: 0;
    gap: 2rem;
  }
}
.service .service__item {
  display: grid;
  grid-template-columns: 17rem 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .service .service__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 0rem;
  }
}
.service .service__item-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12rem;
  background: var(--white);
  padding: 3.2rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .service .service__item-head {
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    padding: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .service .service__item-order {
    width: 4rem;
  }
}
.service .service__item-title {
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--main);
  font-family: var(--gothic);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .service .service__item-title {
    font-size: 2.4rem;
    writing-mode: horizontal-tb;
  }
}
.service .service__item-body {
  display: grid;
  grid-template-columns: 1fr 100rem;
}
@media screen and (max-width: 768px) {
  .service .service__item-body {
    display: flex;
    flex-direction: column-reverse;
  }
}
.service .service__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .service .service__item-image img {
    aspect-ratio: 375/300;
    object-fit: cover;
  }
}
.service .service__item-content {
  padding: 6rem 4rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .service .service__item-content {
    padding: 2rem;
    gap: 2rem;
  }
}
.service .service__item-content-title {
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1.7037037037;
  color: var(--main);
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .service .service__item-content-title {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}
.service .service__item-content-text {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--main);
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .service .service__item-content-text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.service .service__item-content-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .service .service__item-content-list {
    gap: 0.8rem;
  }
}
.service .service__item-content-list-item {
  width: 100%;
}
.service .service__item-content-list-link {
  font-size: 3.2rem;
  width: 100%;
  height: 11.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 4rem;
  background: #014A89;
  border-radius: 2.4rem;
  font-weight: 500;
  color: var(--white);
  font-family: var(--gothic);
  position: relative;
}
@media screen and (max-width: 768px) {
  .service .service__item-content-list-link {
    width: 100%;
    font-size: 1.6rem;
    height: 5.6rem;
    border-radius: 1.6rem;
    padding: 0rem 2rem;
  }
}
.service .service__item-content-list-link::after {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: url(../images/arrow-carrot-right-white.webp) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .service .service__item-content-list-link::after {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.archive__list {
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}
@media screen and (max-width: 768px) {
  .archive__list {
    gap: 4rem;
  }
}
.archive__item {
  background: var(--white);
  padding: 8rem;
  border-radius: 10rem 0 0 10rem;
}
@media screen and (max-width: 768px) {
  .archive__item {
    padding: 3.2rem 2rem;
    border-radius: 2.4rem;
  }
}
.archive__item-title {
  font-size: max(4rem, 32px);
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .archive__item-title {
    font-size: 2.4rem;
  }
}
.archive__item-date {
  font-size: max(3rem, 24px);
  line-height: 1.4;
  font-weight: 700;
  margin-top: 2.4rem;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .archive__item-date {
    font-size: 2rem;
    margin-top: 1.6rem;
  }
}
.archive__item-excerpt {
  font-size: max(2rem, 16px);
  line-height: 2;
  font-weight: 700;
  margin-top: 4.8rem;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .archive__item-excerpt {
    font-size: 1.4rem;
    margin-top: 3.2rem;
  }
}

.page__single {
  max-width: max(110rem, 800px);
  width: 100%;
  margin-inline: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .page__single {
    padding-inline: 2rem;
  }
}

.single__content {
  padding: 8rem;
  background: var(--white);
  border-radius: 8rem;
}
@media screen and (max-width: 768px) {
  .single__content {
    padding: 3.2rem 2rem;
    border-radius: 2.4rem;
  }
}
.single__subtitle {
  font-size: max(4rem, 32px);
  font-weight: 700;
  line-height: 1;
  font-family: var(--gothic);
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .single__subtitle {
    font-size: 2.4rem;
  }
}
.single__title {
  font-size: max(6.4rem, 48px);
  font-weight: 700;
  line-height: 1.53125;
  font-family: var(--gothic);
  color: var(--main);
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__title {
    font-size: 3.2rem;
    margin-top: 2.4rem;
  }
}
.single__body {
  color: var(--text);
  font-family: var(--gothic);
  font-size: max(1.8rem, 16px);
  line-height: 1.7777777778;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .single__body {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 4rem;
  }
}
.single__body .wp-block-heading {
  color: var(--main);
  font-family: var(--gothic);
  font-weight: 700;
  margin-bottom: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading {
    margin-bottom: 1.6rem;
    margin-top: 2.4rem;
  }
}
.single__body .wp-block-heading:first-child {
  margin-top: 0;
}
.single__body .wp-block-heading:has(h1), .single__body .wp-block-heading.has-h1,
.single__body .wp-block-heading h1, .single__body .wp-block-heading[class*=h1] {
  font-size: max(4rem, 32px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading:has(h1), .single__body .wp-block-heading.has-h1,
  .single__body .wp-block-heading h1, .single__body .wp-block-heading[class*=h1] {
    font-size: 2.8rem;
    line-height: 1.4285714286;
  }
}
.single__body .wp-block-heading:has(h2), .single__body .wp-block-heading.has-h2,
.single__body .wp-block-heading h2, .single__body .wp-block-heading[class*=h2] {
  font-size: max(3.2rem, 28px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading:has(h2), .single__body .wp-block-heading.has-h2,
  .single__body .wp-block-heading h2, .single__body .wp-block-heading[class*=h2] {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.single__body .wp-block-heading:has(h3), .single__body .wp-block-heading.has-h3,
.single__body .wp-block-heading h3, .single__body .wp-block-heading[class*=h3] {
  font-size: max(2.8rem, 24px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading:has(h3), .single__body .wp-block-heading.has-h3,
  .single__body .wp-block-heading h3, .single__body .wp-block-heading[class*=h3] {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.single__body .wp-block-heading:has(h4), .single__body .wp-block-heading.has-h4,
.single__body .wp-block-heading h4, .single__body .wp-block-heading[class*=h4] {
  font-size: max(2.4rem, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading:has(h4), .single__body .wp-block-heading.has-h4,
  .single__body .wp-block-heading h4, .single__body .wp-block-heading[class*=h4] {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.single__body .wp-block-heading:has(h5), .single__body .wp-block-heading.has-h5,
.single__body .wp-block-heading h5, .single__body .wp-block-heading[class*=h5] {
  font-size: max(2rem, 18px);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading:has(h5), .single__body .wp-block-heading.has-h5,
  .single__body .wp-block-heading h5, .single__body .wp-block-heading[class*=h5] {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.single__body .wp-block-heading:has(h6), .single__body .wp-block-heading.has-h6,
.single__body .wp-block-heading h6, .single__body .wp-block-heading[class*=h6] {
  font-size: max(1.8rem, 16px);
  line-height: 1.5555555556;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-heading:has(h6), .single__body .wp-block-heading.has-h6,
  .single__body .wp-block-heading h6, .single__body .wp-block-heading[class*=h6] {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.single__body h1 {
  color: var(--main);
  font-family: var(--gothic);
  font-size: max(4rem, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__body h1 {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-bottom: 1.6rem;
    margin-top: 2.4rem;
  }
}
.single__body h1:first-child {
  margin-top: 0;
}
.single__body h2 {
  color: var(--main);
  font-family: var(--gothic);
  font-size: max(3.2rem, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__body h2 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 1.6rem;
    margin-top: 2.4rem;
  }
}
.single__body h2:first-child {
  margin-top: 0;
}
.single__body h3 {
  color: var(--main);
  font-family: var(--gothic);
  font-size: max(2.8rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__body h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1.6rem;
    margin-top: 2.4rem;
  }
}
.single__body h3:first-child {
  margin-top: 0;
}
.single__body h4 {
  color: var(--main);
  font-family: var(--gothic);
  font-size: max(2.4rem, 20px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__body h4 {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
  }
}
.single__body h4:first-child {
  margin-top: 0;
}
.single__body h5 {
  color: var(--main);
  font-family: var(--gothic);
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__body h5 {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
  }
}
.single__body h5:first-child {
  margin-top: 0;
}
.single__body h6 {
  color: var(--main);
  font-family: var(--gothic);
  font-size: max(1.8rem, 16px);
  font-weight: 700;
  line-height: 1.5555555556;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__body h6 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
  }
}
.single__body h6:first-child {
  margin-top: 0;
}
.single__body p {
  margin-bottom: 2.4rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .single__body p {
    margin-bottom: 1.6rem;
    margin-top: 1.6rem;
  }
}
.single__body p:first-child {
  margin-top: 0;
}
.single__body p:last-child {
  margin-bottom: 0;
}
.single__body a {
  color: var(--main);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.single__body a:hover {
  opacity: 0.7;
}
.single__body a:focus {
  outline: 0.2rem solid var(--main);
  outline-offset: 0.2rem;
}
.single__body .wp-block-list,
.single__body ul,
.single__body ol {
  margin-bottom: 2.4rem;
  margin-top: 2.4rem;
  padding-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-list,
  .single__body ul,
  .single__body ol {
    margin-bottom: 1.6rem;
    margin-top: 1.6rem;
    padding-left: 2rem;
  }
}
.single__body .wp-block-list:first-child,
.single__body ul:first-child,
.single__body ol:first-child {
  margin-top: 0;
}
.single__body .wp-block-list:last-child,
.single__body ul:last-child,
.single__body ol:last-child {
  margin-bottom: 0;
}
.single__body .wp-block-list li,
.single__body ul li,
.single__body ol li {
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-list li,
  .single__body ul li,
  .single__body ol li {
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
  }
}
.single__body .wp-block-list li:first-child,
.single__body ul li:first-child,
.single__body ol li:first-child {
  margin-top: 0;
}
.single__body .wp-block-list li:last-child,
.single__body ul li:last-child,
.single__body ol li:last-child {
  margin-bottom: 0;
}
.single__body ul {
  list-style-type: disc;
}
.single__body ul li {
  list-style-type: disc;
}
.single__body ol {
  list-style-type: decimal;
}
.single__body ol li {
  list-style-type: decimal;
}
.single__body .wp-block-image {
  margin-bottom: 3.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-image {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.single__body .wp-block-image:first-child {
  margin-top: 0;
}
.single__body .wp-block-image:last-child {
  margin-bottom: 0;
}
.single__body .wp-block-image img {
  border-radius: 0.8rem;
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single__body .wp-block-image img {
    border-radius: 0.4rem;
  }
}
.single__body .wp-block-image figure {
  margin: 0;
}
.single__body figure {
  margin-bottom: 3.2rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__body figure {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.single__body figure:first-child {
  margin-top: 0;
}
.single__body figure:last-child {
  margin-bottom: 0;
}
.single__body figure img {
  border-radius: 0.8rem;
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single__body figure img {
    border-radius: 0.4rem;
  }
}

.vision {
  max-width: 1920px;
  width: calc(100% - 5rem);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .vision {
    width: calc(100% - 3rem);
    border-radius: 2.4rem;
  }
}
.vision__inner {
  max-width: max(113.6rem, 800px);
  width: 100%;
  margin-inline: auto;
}
.vision__title {
  font-family: var(--gothic);
  font-weight: 400;
  text-align: center;
  color: var(--main);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .vision__title {
    width: 100%;
    margin-inline: 0;
  }
}
.vision__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: max(94rem, 600px);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .vision__text-wrapper {
    gap: 2.4rem;
  }
}
.vision__text {
  font-size: max(2.4rem, 16px);
  font-family: var(--gothic);
  font-weight: 600;
  line-height: 1.5;
  color: var(--main);
}
.vision__text--size-m {
  font-size: max(2.8rem, 20px);
  text-indent: -1em;
  padding-left: 1em;
}
.vision__text--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vision__text {
    font-size: 1.6rem;
  }
  .vision__text--size-m {
    font-size: 2rem;
  }
}
.vision__subtitle {
  font-size: max(4rem, 32px);
  font-weight: 600;
  line-height: 1;
  font-family: var(--gothic);
  color: var(--main);
  margin-top: 4rem;
}
.vision__subtitle--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vision__subtitle {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
.vision__chat {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  max-width: max(94rem, 720px);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .vision__chat {
    gap: 8rem;
  }
}
.vision__chat + .vision__text-wrapper {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .vision__chat + .vision__text-wrapper {
    margin-top: 4rem;
  }
}
.vision__chat-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision__chat-item {
    gap: 0.8rem;
  }
}
.vision__chat-item--left {
  align-items: flex-start;
}
.vision__chat-item--left .vision__chat-item-image {
  top: 6.6rem;
  left: -7.6rem;
}
@media screen and (max-width: 768px) {
  .vision__chat-item--left .vision__chat-item-image {
    top: auto;
    bottom: -6rem;
    left: 2rem;
  }
}
.vision__chat-item--left .vision__chat-item-pop .triangle {
  transform: rotate(47deg);
  left: -0.4rem;
}
@media screen and (max-width: 768px) {
  .vision__chat-item--left .vision__chat-item-pop .triangle {
    left: 3rem;
    transform: rotate(0deg);
  }
}
.vision__chat-item--right {
  align-items: flex-end;
}
.vision__chat-item--right .vision__chat-item-image {
  top: 6.6rem;
  right: -7.6rem;
}
@media screen and (max-width: 768px) {
  .vision__chat-item--right .vision__chat-item-image {
    top: auto;
    bottom: -6rem;
    right: 2rem;
  }
}
.vision__chat-item--right .vision__chat-item-pop .triangle {
  transform: rotate(-47deg);
  right: -0.4rem;
}
@media screen and (max-width: 768px) {
  .vision__chat-item--right .vision__chat-item-pop .triangle {
    right: 3rem;
    transform: rotate(0deg);
  }
}
.vision__chat-item-image {
  position: absolute;
  width: 6.8rem;
  height: 6.8rem;
}
@media screen and (max-width: 768px) {
  .vision__chat-item-image {
    width: 4rem;
    height: 4rem;
  }
}
.vision__chat-item-pop {
  position: relative;
  padding-block: 1.9rem;
  padding-inline: 4rem;
  border-radius: 6.4rem;
  background: var(--white);
  border: 0.2rem solid #707070;
  font-size: max(2rem, 14px);
  font-weight: 400;
  line-height: 1.85;
  font-family: var(--gothic);
  color: var(--main);
}
.vision__chat-item-pop .triangle {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: #707070;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  top: auto;
  bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .vision__chat-item-pop .triangle {
    width: 1.5rem;
    height: 1.5rem;
    top: auto;
    bottom: -1.4rem;
  }
}
.vision__chat-item-pop .triangle::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .vision__chat-item-pop .triangle::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .vision__chat-item-pop {
    font-size: 1.6rem;
    padding-block: 1rem;
    padding-inline: 2rem;
    border-radius: 4rem;
  }
}

.seo-page__inner {
  background-image: url("../images/seo/seo-bg.webp");
  margin-top: 12rem;
  padding-top: 12rem;
}
@media screen and (max-width: 768px) {
  .seo-page__inner {
    margin-top: 8rem;
    padding-top: 4rem;
  }
}

.seo {
  padding-top: 0;
  padding-bottom: 0;
}
.seo .page__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .seo .page__head {
    gap: 0.8rem;
    padding: 0;
  }
}
.seo .page__head p,
.seo .page__head h2 {
  color: var(--white);
}
.seo__name {
  font-size: max(2.6rem, 20px);
  font-weight: 400;
  line-height: 1.2307692308;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .seo__name {
    font-size: 1.8rem;
  }
}
.seo__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .seo__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
  }
}
.seo__content {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  max-width: max(102.4rem, 800px);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .seo__content {
    gap: 4rem;
  }
}
.seo__item {
  font-family: var(--gothic);
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .seo__item {
    gap: 1.6rem;
  }
}
.seo__item-title {
  font-size: max(2.8rem, 24px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .seo__item-title {
    font-size: 2rem;
  }
}
.seo__item-text {
  font-size: max(1.8rem, 16px);
  font-weight: 400;
  line-height: 1.7777777778;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .seo__item-text {
    font-size: 1.4rem;
  }
}
.seo__copy {
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 2;
  color: var(--white);
  text-align: center;
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .seo__copy {
    font-size: 1.8rem;
    margin-top: 4rem;
  }
}

.interview-page__inner {
  margin-top: 12rem;
  padding-top: 0rem;
}
@media screen and (max-width: 768px) {
  .interview-page__inner {
    margin-top: 8rem;
  }
}

.interview {
  padding-top: 0;
  padding-bottom: 0;
}
.interview .page__head {
  display: grid;
  grid-template-columns: 1fr 85.7rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .interview .page__head {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.interview .page__head-inner {
  margin-right: -12rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 100%;
}
@media screen and (max-width: 768px) {
  .interview .page__head-inner {
    width: 100%;
    margin-right: 0;
  }
}
.interview .page__head .section__sub-title {
  text-transform: none;
}
.interview .page__head .section__title {
  font-size: 6.2rem;
}
@media screen and (max-width: 768px) {
  .interview .page__head .section__title {
    font-size: 2.4rem;
  }
}
.interview__name {
  font-size: max(2.6rem, 20px);
  font-weight: 400;
  line-height: 1.2307692308;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .interview__name {
    font-size: 1.8rem;
  }
}
.interview__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.interview__media {
  display: grid;
  grid-template-columns: max(67.4rem, 400px) 1fr;
  gap: 4rem;
  margin-top: 10rem;
}
@media screen and (max-width: 1024px) {
  .interview__media {
    grid-template-columns: max(67.4rem, 300px) 1fr;
  }
}
@media screen and (max-width: 768px) {
  .interview__media {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
}
.interview__media-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 4.8rem;
  border-top: 0.1rem solid #707070;
}
@media screen and (max-width: 768px) {
  .interview__media-list {
    gap: 0.8rem;
  }
}
.interview__media-list li {
  font-size: max(1.8rem, 16px);
  font-weight: 400;
  line-height: 1.7777777778;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .interview__media-list {
    font-size: 1.4rem;
  }
}
.interview__content {
  position: relative;
  display: grid;
  grid-template-columns: max(45rem, 220px) 1fr;
  width: 100%;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .interview__content {
    gap: 4rem;
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.interview__content-side {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 7.2rem;
  position: sticky;
  top: 10rem;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .interview__content-side {
    padding-top: 0rem;
    gap: 2.4rem;
    top: 0;
    position: relative;
  }
}
.interview__content-side-title {
  font-size: max(4rem, 32px);
  font-weight: 600;
  line-height: 1.75;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .interview__content-side-title {
    font-size: 2.4rem;
  }
}
.interview__content-side-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.interview__content-side-list li a {
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--main);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .interview__content-side-list li a {
    font-size: 1.6rem;
  }
}
.interview__content-side-list li a:hover {
  opacity: 0.7;
}
.interview__content-main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 12rem 10rem;
  border-radius: 8rem 0 0 8rem;
  background: var(--white);
  margin-right: -5.6rem;
}
@media screen and (max-width: 768px) {
  .interview__content-main {
    padding: 4rem 2rem;
    border-radius: 2.4rem 0 0 2.4rem;
    margin-right: 0;
    margin-top: 0rem;
    margin-right: -1.6rem;
  }
}
.interview__item {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .interview__item {
    gap: 1.6rem;
  }
}
.interview__item-title {
  font-size: max(4.8rem, 32px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .interview__item-title {
    font-size: 2.4rem;
  }
}
.interview__item-text {
  font-size: max(1.8rem, 16px);
  font-weight: 400;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .interview__item-text {
    font-size: 1.4rem;
  }
}
.interview__copy {
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 2;
  color: var(--white);
  text-align: center;
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .interview__copy {
    font-size: 1.8rem;
    margin-top: 4rem;
  }
}

.mvv-page__inner {
  background-image: url("../images/seo/seo-bg.webp");
  margin-top: 12rem;
  padding-top: 12rem;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .mvv-page__inner {
    margin-top: 8rem;
    padding-top: 4rem;
    padding-bottom: 0;
  }
}

.mvv {
  padding-top: 0;
  padding-bottom: 0;
}
.mvv .section__head {
  max-width: max(102.4rem, 800px);
  width: 100%;
  margin-inline: auto;
}
.mvv .section__head p,
.mvv .section__head h2 {
  color: var(--white);
}
.mvv__content {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  max-width: max(102.4rem, 800px);
  width: 100%;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .mvv__content {
    gap: 6rem;
  }
}
.mvv__item {
  font-family: var(--gothic);
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .mvv__item {
    gap: 1.6rem;
  }
}
.mvv__item-sub-title {
  font-size: max(3.6rem, 32px);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .mvv__item-sub-title {
    font-size: 1.8rem;
  }
}
.mvv__item-title {
  font-size: max(5rem, 40px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .mvv__item-title {
    font-size: 2.2rem;
  }
}
.mvv__item-text {
  font-size: max(1.8rem, 16px);
  font-weight: 400;
  line-height: 1.7777777778;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .mvv__item-text {
    font-size: 1.4rem;
  }
}
.mvv__content-wide {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  margin-inline: auto;
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  .mvv__content-wide {
    margin-top: 0rem;
  }
}
.mvv__content-wide-inner {
  display: grid;
  grid-template-columns: 70rem 1fr;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .mvv__content-wide-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem;
  }
}
.mvv__content-wide-content-sub-title {
  font-size: max(3.6rem, 32px);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .mvv__content-wide-content-sub-title {
    font-size: 1.8rem;
  }
}
.mvv__content-wide-content-title {
  font-size: max(5rem, 32px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .mvv__content-wide-content-title {
    font-size: 2.4rem;
  }
}
.mvv__content-wide-content-text {
  font-size: max(2.4rem, 16px);
  font-weight: 600;
  line-height: 3.25;
  color: var(--white);
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .mvv__content-wide-content-text {
    font-size: 1.4rem;
  }
}
.mvv__thumbnails {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.works__inner {
  max-width: max(85rem, 800px);
  width: 100%;
  margin-inline: auto;
}
.works__content {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.works__content-item {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.works__title {
  font-size: max(4rem, 32px);
  font-weight: 400;
  line-height: 1;
  font-family: var(--mincho);
  color: var(--main);
}
.works__list02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.works__list02 .works__item {
  flex-direction: column;
  border: none !important;
}
.works__list02 .works__item .works__item-title {
  padding-inline: 0;
  padding-block: 1.2rem;
}
.works__item {
  padding-block: 2.4rem;
  display: flex;
  gap: 2.4rem;
}
.works__item + .works__item {
  border-top: 1px dotted #707070;
}
.works__item-title, .works__item-text {
  font-size: max(1.8rem, 15px);
  line-height: 1.6666666667;
  font-family: var(--gothic);
}
.works__item-title {
  width: 9.6666666667em;
  font-weight: 700;
  padding-inline: 2.4rem;
}
.works__item-text {
  font-weight: 400;
  flex: 1;
}

.welfare__inner {
  max-width: calc(100% - 6rem);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .welfare__inner {
    max-width: 100%;
  }
}
.welfare__content {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .welfare__content {
    gap: 6rem;
  }
}
.welfare__item {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .welfare__item {
    gap: 2.4rem;
  }
}
.welfare__item-title {
  font-size: max(4rem, 32px);
  font-weight: 400;
  line-height: 1;
  color: var(--main);
}
@media screen and (max-width: 1024px) {
  .welfare__item-title {
    font-size: 2.4rem;
  }
}
.welfare__item-text {
  font-size: max(1.8rem, 15px);
  font-weight: 400;
  line-height: 1.6666666667;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .welfare__item-text {
    font-size: 1.4rem;
  }
}
.welfare__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .welfare__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .welfare__list {
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.welfare__list-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .welfare__list-item {
    gap: 1rem;
  }
}
.welfare__list-item-img {
  aspect-ratio: 440/300;
}
.welfare__list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}
.welfare__list-item-text {
  font-size: max(1.8rem, 15px);
  font-weight: 400;
  line-height: 1.6666666667;
  font-family: var(--gothic);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .welfare__list-item-text {
    font-size: 1.4rem;
  }
}

.whats-job__inner {
  max-width: calc(100% - 6rem);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .whats-job__inner {
    max-width: 100%;
  }
}
.whats-job__content {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .whats-job__content {
    gap: 6rem;
  }
}
.whats-job__image {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.whats-job__area {
  display: flex;
  gap: 3.2rem;
  margin-top: 10rem;
  max-width: max(110rem, 800px);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .whats-job__area {
    max-width: 700px;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0rem;
  }
}
.whats-job__area-title {
  font-size: max(3.6rem, 24px);
  font-weight: 400;
  line-height: 1;
  width: fit-content;
  flex-shrink: 0;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .whats-job__area-title {
    font-size: 2rem;
  }
}
.whats-job__area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 2rem 3.2rem;
  counter-reset: item;
}
@media screen and (max-width: 768px) {
  .whats-job__area-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.whats-job__area-list-item {
  flex: 1;
  min-width: fit-content;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1;
  font-family: var(--gothic);
}
.whats-job__area-list-item::before {
  content: "0" counter(item);
  counter-increment: item;
}
.whats-job__job {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .whats-job__job {
    gap: 2.4rem;
    margin-top: 4rem;
  }
}
.whats-job__job-title {
  font-size: max(3.2rem, 24px);
  font-weight: 500;
  line-height: 1;
  font-family: var(--gothic);
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .whats-job__job-title {
    font-size: 2rem;
  }
}
.whats-job__job-image {
  display: grid;
  grid-template-columns: max(58rem, 300px) max(37rem, 200px);
  gap: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .whats-job__job-image {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.whats-job__job-image img:last-child {
  width: 34rem;
}
.whats-job__text {
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 2;
  font-family: var(--gothic);
  color: var(--main);
  margin-top: 12rem;
  max-width: max(86rem, 600px);
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .whats-job__text {
    font-size: 1.4rem;
    margin-top: 0rem;
  }
}

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