@charset "UTF-8";
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_20241105/Web/WOFF2/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_20241105/Web/WOFF2/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_20241105/Web/WOFF2/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_20241105/Web/WOFF2/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP App_OTF";
  src: url("../fonts/LINESeedJP_20241105/App/OTF/LINESeedJP_A_OTF_Th.otf") format("otf");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP App_OTF";
  src: url("../fonts/LINESeedJP_20241105/App/OTF/LINESeedJP_A_OTF_Rg.otf") format("otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP App_OTF";
  src: url("../fonts/LINESeedJP_20241105/App/OTF/LINESeedJP_A_OTF_Bd.otf") format("otf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP App_OTF";
  src: url("../fonts/LINESeedJP_20241105/App/OTF/LINESeedJP_A_OTF_Eb.otf") format("otf");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "noto-sans-jp", sans-serif;
}

html {
  font-size: 10px;
}

@media (max-width: 1439px) {
  html {
    font-size: 0.69vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.67vw;
  }
}
body {
  margin: 0;
  font-family: "YuGothic", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2c2a2a;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: #003DA3;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin: 0;
}

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

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

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

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

.header {
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 3.8rem 0;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0.8rem 0;
  }
}

.header .container {
  max-width: 132rem;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .nav__logo-link {
    z-index: 1;
  }
}

.nav__logo {
  width: 100%;
  max-width: 17rem;
  display: inline-flex;
  align-items: center;
  color: #2c2a2a;
  margin-top: 0.8rem;
}
.nav__logo:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .nav__logo {
    max-width: 10rem;
  }
}

.nav__logo-img {
  height: auto;
  width: 100%;
  display: block;
}

.nav__menu-container {
  display: contents;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
  font-family: "Noto Sans", sans-serif;
  /* --- MOBILE --- */
}
@media screen and (max-width: 768px) {
  .nav__menu {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    padding: 6rem 2rem 2rem;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-out;
    display: flex;
    margin: 0;
    order: 3;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  }
  .nav__menu.active {
    opacity: 1;
    visibility: visible;
  }
  .nav__menu.active .nav__actions .btn {
    font-size: 1.5rem;
    padding: 0.6rem 1.2rem;
  }
}

.nav__link {
  font-size: 1.6rem;
  color: #003DA3;
  font-weight: 600;
  position: relative;
}
.nav__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .nav__link {
    font-size: 1.8rem;
    width: 100%;
    padding: 1rem 0;
    line-height: 1;
    border-bottom: 0.1rem solid #003DA3;
  }
  .nav__link::after {
    display: none;
  }
}

.nav__actions {
  align-items: center;
  gap: 1.8rem;
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  .nav__actions {
    margin-left: 0;
    gap: 1rem;
    z-index: 1;
  }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .nav__toggle {
    display: flex;
    order: 2;
  }
}
.nav__toggle {
  position: relative;
}
.nav__toggle span {
  width: 2rem;
  height: 0.2rem;
  background: #2c2a2a;
  border-radius: 0.1rem;
}
.nav__toggle .nav__icon-close {
  position: absolute;
  inset: 0;
  width: 2.5rem;
  height: 2.5rem;
  stroke: #2c2a2a;
  stroke-width: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav__toggle.active span {
  opacity: 0;
}
.nav__toggle.active .nav__icon-close {
  opacity: 1;
  transform: scale(1);
}

.hero {
  padding-top: 16rem;
  padding-bottom: 8.6rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 6.8rem;
    padding-bottom: 4.8rem;
    max-width: 33.5rem;
  }
  .hero .hero__headline {
    left: 0;
  }
  .hero {
    margin: 0 auto;
  }
}

.container {
  padding: 0 !important;
}

.hero__inner {
  max-width: 118rem !important;
  margin: 0 auto;
  padding: 0 1.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero__inner {
    padding: 0 0.8rem;
  }
}

.hero__headline {
  margin-bottom: 1.24rem;
  max-width: 85.4rem;
  position: relative;
  left: -8.2rem;
}

.hero__headline-img {
  display: block;
  width: 100%;
  max-width: 120rem;
  height: auto;
}

.hero__visual-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}

.section {
  padding: 8.6rem 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 4.8rem 0;
    max-width: 33.5rem;
    margin: 0 auto;
  }
}

.section__header {
  margin-bottom: 4.6rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section__header {
    margin-bottom: 1rem;
  }
}

.section__title {
  margin: 0;
  font-size: 9.5rem;
  font-weight: 400;
  line-height: 12.7rem;
  color: #002777;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 7rem;
    line-height: 1;
  }
}

.section__subtitle {
  margin: 0.4rem 0 0 0;
  font-size: 2.4rem;
  color: #002777;
  font-weight: 700;
  line-height: 3.2rem;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .section__subtitle {
    font-size: 1.8rem;
  }
}

.news {
  background: #ffffff;
  padding: 8.6rem 0 9rem;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 0rem 0 9rem;
  }
}
.news .container {
  max-width: 118rem;
}
.news .section {
  padding: 8.6rem 0;
}
.news .btn_section {
  margin-top: 2.9rem;
}
.news .section__subtitle {
  margin: -0.8rem 0 0 0;
}

.news__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news__content {
    flex-direction: column-reverse;
  }
}

.news__list {
  width: 70%;
  max-width: 83.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.45rem;
}
@media screen and (max-width: 768px) {
  .news__list {
    width: 100%;
    max-width: 100%;
  }
}

.news__item {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0rem 0rem 2.4rem 9rem;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-left: 0;
  }
}

.news__item::after {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.8rem;
  right: 0.2rem;
  top: 0.6rem;
  background-image: url("../images/icons/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.news__item-header {
  display: flex;
  align-items: center;
  min-width: 23.8rem;
}
@media screen and (max-width: 768px) {
  .news__item-header {
    gap: 0.8rem;
  }
}

.news__date {
  font-size: 1.6rem;
  color: #002777;
  font-weight: 700;
  line-height: 2.1rem;
  font-family: "LINE Seed JP", sans-serif;
  min-width: 8.2rem;
  letter-spacing: -0.02em;
  width: 10.8rem;
}
@media screen and (max-width: 768px) {
  .news__date {
    min-width: unset;
    width: unset;
    font-size: 1.3rem;
  }
}

.news__item-btn {
  padding: 0.6rem 2.4rem 0.4rem 1.6rem;
  border: 0.1rem solid #002777;
  border-radius: 4rem;
  font-size: 1.2rem;
  color: #002777;
  font-weight: 700;
  line-height: 1.4rem;
  font-family: "LINE Seed JP", sans-serif;
  max-width: 10.8rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__title {
  margin: 0;
  font-size: 1.4rem;
  color: #2c2a2a;
  flex: 1;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 1.2rem;
  }
}

.news__text {
  font-size: 1.6rem;
  color: #3e3e3e;
  font-weight: 400;
  line-height: 2.1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  flex: 1;
}

.news__link {
  position: relative;
  font-size: 1.6rem;
  color: #002777;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.news__link:hover {
  transform: translateX(0.4rem);
}

.btn_section-list {
  font-size: 1.8rem;
  background-color: #002777;
  border: 0.2rem solid #002777;
  color: #fff;
  line-height: 2.4rem;
  font-weight: 700;
  padding: 1.6rem 2.5rem 1.8rem 3rem;
  border-radius: 4rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
}
.btn_section-list a {
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .btn_section-list {
    width: fit-content;
    margin: 0 auto;
  }
}

.btn_section-list_text {
  padding-right: 4.6rem;
  position: relative;
  font-family: "LINE Seed JP", sans-serif;
}

.btn_section-list_text::after {
  content: "";
  position: absolute;
  width: 2.7rem;
  height: 1rem;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/icon__3_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.btn_section-list:hover {
  background-color: #fff;
  color: #002777;
  cursor: pointer;
}
.btn_section-list:hover .btn_section-list_text::after {
  background-image: url("../images/icons/icon__3_arrow_blue.svg");
}
.btn_section-list:hover a {
  color: #002777;
}

.news__footer {
  text-align: center;
}

.service {
  background: #ffffff;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 0 0 4rem;
  }
}
.service .container {
  max-width: 118rem;
}
.service .section__header {
  margin-bottom: 8.4rem;
}
.service .section__title {
  margin-top: 0.2rem;
}
.service .section__subtitle {
  letter-spacing: -0.01em;
  margin-top: -0.8rem;
}
@media screen and (max-width: 768px) {
  .service .section__header {
    margin-bottom: 1rem;
  }
}

.service__desc {
  margin: 0 0 6rem 0;
  font-size: 1.6rem;
  color: #3e3e3e;
  line-height: 2.4rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .service__desc {
    font-size: 1.3rem;
    margin-bottom: 3.2rem;
  }
}

.service__grid {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 4.9rem;
}
@media screen and (max-width: 768px) {
  .service__grid {
    flex-wrap: wrap;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }
}

.service__card {
  width: 33%;
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
@media screen and (max-width: 768px) {
  .service__card {
    width: 100%;
    gap: 1.6rem;
  }
}

.service__image {
  width: 100%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service__image {
    height: 200px;
  }
}
.service__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 13.6rem;
  height: 8rem;
  background-image: url("../images/icons/icon_arrow_white.svg");
  background-size: contain;
  background-repeat: repeat;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: transform 2s ease-out, opacity 0.6s ease-out;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .service__image::before {
    transition: none;
  }
}
.service__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(224, 224, 224, 0) 0%, #002777 0%);
  background-size: 200% 100%;
  z-index: 1;
  transform: translateX(0);
  transition: transform 2.5s ease-out;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .service__image::after {
    opacity: 1;
    transition: transform 1s ease-out;
  }
}
@media screen and (min-width: 769px) {
  .service__image:hover::before {
    transform: translate(300%, -50%);
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.3s ease-out;
  }
  .service__image:hover::after {
    transform: translateX(100%);
    background: linear-gradient(to right, rgba(224, 224, 224, 0) 0%, #002777 40%);
    transition: transform 1s ease-out;
  }
}

@media screen and (max-width: 768px) {
  .service__image.is-visible::before {
    transform: translate(300%, -50%);
    opacity: 1;
  }
  .service__image.is-visible::after {
    transform: translateX(100%);
    background: linear-gradient(to right, rgba(224, 224, 224, 0) 0%, #002777 40%);
    opacity: 1;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}
@media screen and (max-width: 768px) {
  .card-content {
    gap: 0.6rem;
  }
}

.service__card-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "LINE Seed JP", sans-serif;
  line-height: 2rem;
  color: #002777;
}
.service__card-title span {
  padding-left: 0.3rem;
}
@media screen and (max-width: 768px) {
  .service__card-title {
    font-size: 1.5rem;
  }
}

.service__card-text {
  margin: 0;
  font-size: 1.5rem;
  color: #002777;
  line-height: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .service__card-text {
    font-size: 1.3rem;
  }
}

.service__footer {
  display: flex;
  justify-content: center;
  text-align: center;
}

.btn_service-list {
  width: 100%;
  max-width: 29rem;
  font-size: 1.8rem;
  background-color: #002777;
  color: #fff;
  line-height: 2.4rem;
  font-weight: 700;
  padding: 1.8rem 3.2rem 1.9rem;
  border-radius: 4rem;
}

.btn_service-list_text {
  padding-right: 4.6rem;
  position: relative;
}

.btn_service-list_text::after {
  content: "";
  position: absolute;
  width: 2.7rem;
  height: 1rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/icon__3_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.company {
  position: relative;
  padding: 0;
  background-image: url("../images/common/company-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  overflow: hidden;
  min-height: 58.3rem;
  display: flex;
  justify-content: center;
  width: 144rem;
  margin: 7.9rem auto;
}
@media screen and (max-width: 768px) {
  .company {
    margin: 7.9rem auto 0;
  }
}
.company .btn_section {
  max-width: 27rem;
}
@media screen and (max-width: 768px) {
  .company .btn_section {
    margin: 0 auto;
  }
}
.company .section__title {
  font-size: 8.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .company .section__title {
    font-size: 5.5rem;
    line-height: 4rem;
  }
}
.company .section__subtitle {
  margin-top: -1.8rem;
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 768px) {
  .company .section__subtitle {
    margin-top: 1rem;
  }
}
.company .section__title,
.company .section__subtitle {
  color: white;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 2.4rem;
    min-height: 300px;
    max-width: 37.5rem;
  }
  .company::before {
    display: none;
  }
  .company::after {
    display: none;
  }
}
.company::before {
  content: "";
  position: absolute;
  right: -35.8rem;
  top: 0;
  width: 99rem;
  height: 58.3rem;
  background-image: url("../images/icons/icon_arrow_white.svg");
  background-size: contain;
  background-repeat: repeat;
  z-index: 2;
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 2s ease-out, opacity 0.6s ease-out;
}
.company::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(224, 224, 224, 0) 10%, #002777 20%);
  background-size: 200% 100%;
  opacity: 0;
  z-index: 1;
  transform: translateX(0);
  transition: transform 2.5s ease-out;
}

.company.animate::before {
  transform: translateX(0);
  opacity: 1;
}

.company.animate::after {
  transform: translateX(100%);
  opacity: 1;
}

.company__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(224, 224, 224, 0) 0%, #00143c 90%);
  pointer-events: none;
}

.company__content {
  padding-top: 6.5rem;
  position: relative;
  z-index: 1;
  max-width: 118rem;
  width: 100%;
}

.company__title {
  margin: 0 0 0.8rem 0;
  font-size: 8.4rem;
  font-weight: 400;
  line-height: 11.2rem;
  color: white;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .company__title {
    font-size: 2rem;
  }
}

.company__subtitle {
  margin: 0 0 2.4rem 0;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
  line-height: 3.2rem;
}

.company__description {
  margin: 0 0 3.3rem 0;
  font-size: 4.8rem;
  color: white;
  line-height: 7.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .company__description {
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
  }
}

.company__text {
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin-bottom: 7.4rem;
  position: relative;
  top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .company__text {
    font-size: 1.4rem;
    margin-bottom: 4.8rem;
  }
}

.access {
  background: #ffffff;
  padding: 9.4rem 0 9.6rem;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 9.3rem 0 0;
  }
}
.access .container {
  max-width: 118rem;
}
.access .btn_section {
  max-width: 24rem;
  margin-right: 0.6rem;
  margin-top: -0.3rem;
}
@media screen and (max-width: 768px) {
  .access .btn_section {
    margin: 0 auto;
  }
}
.access .section__subtitle {
  margin-top: -0.8rem !important;
}
.access .section__header {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .access .section__header {
    margin-bottom: 1rem;
  }
}

.access__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .access__content {
    gap: 2.4rem;
    flex-direction: column;
  }
}

.access__image-wrapper {
  width: 100%;
  max-width: 35.8rem;
  overflow: hidden;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}
.access__image-wrapper.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.access__image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .access__image-wrapper {
    transform: translateX(0%);
  }
}

.access__info {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}
@media screen and (max-width: 768px) {
  .access__info {
    padding: 0 !important;
    gap: 1rem;
  }
}

.access__info-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.2rem;
  gap: 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.access__info-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .access__info-content {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.access__map {
  width: 100%;
  width: 80.5rem;
}
@media screen and (max-width: 768px) {
  .access__map {
    width: 100%;
  }
}
.access__map img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.access__map iframe {
  width: 100%;
  height: 37.8rem;
}
@media screen and (max-width: 768px) {
  .access__map iframe {
    height: 15.75rem;
  }
}

.access__image {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .access__info {
    padding: 0.8rem;
    width: 100%;
  }
}

.access__address-title {
  margin: 0 0 0.8rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #003da3;
}

.access__address {
  margin: 0 0 2.4rem 0;
  font-size: 1.4rem;
  color: #2c2a2a;
  line-height: 1.6;
}

.access__hours {
  margin: 0 0 2.4rem 0;
  font-size: 1.3rem;
  color: #2c2a2a;
  line-height: 1.6;
}

.recruit {
  width: 100%;
  position: relative;
  margin: 3.6rem auto 8.6rem;
  padding: 15rem 0 10rem;
  max-width: 144rem;
  overflow: hidden;
}
.recruit .section__title {
  color: white;
}
.recruit .section__subtitle {
  color: white;
  margin-top: -0.8rem;
}
.recruit .btn_section {
  max-width: 23.3rem;
}
@media screen and (max-width: 768px) {
  .recruit .btn_section {
    margin: 0 auto;
  }
}
.recruit .btn_section-list {
  background-color: #3a75bb;
  border: 0.2rem solid #3a75bb;
  padding: 1.5rem 2.6rem 1.8rem 3rem;
}
.recruit .btn_section-list:hover {
  background-color: white;
  opacity: 1;
  color: #3a75bb;
}
.recruit .btn_section-list:hover a {
  color: #3a75bb;
}
.recruit .btn_section-list:hover .btn_section-list_text::after {
  background-image: url(../images/icons/icon__3_arrow_green.svg);
}
@media screen and (max-width: 768px) {
  .recruit {
    margin: 1rem auto 0;
  }
}

.recruit__container {
  width: 100%;
  max-height: 71.2rem;
  position: relative;
}

.recruit-inner {
  background: #002777;
  position: absolute;
  inset: -5rem;
  transform: rotate(-3deg);
  z-index: 0;
}

.recruit__content {
  position: relative;
  left: -0.1rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 4.3rem 0 2.2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 50.2rem;
}
@media screen and (max-width: 768px) {
  .recruit__content {
    gap: 1.2rem;
    padding: 4.8rem 2rem;
  }
}

.recruit__text {
  color: white;
}

.recruit__description {
  margin: 8.5rem 0 4.3rem 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media screen and (max-width: 768px) {
  .recruit__description {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 3.6rem;
  }
}
.recruit__description span {
  white-space: nowrap;
}

.recruit__text {
  max-width: 42.1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 7.3rem;
}
@media screen and (max-width: 768px) {
  .recruit__text {
    margin-bottom: 2.4rem;
  }
}

.recruit__images {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .recruit__images {
    display: none;
    gap: 0.8rem;
  }
}
.recruit__images {
  overflow: hidden;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}
.recruit__images.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.images_top-right.is-visible {
  transition-delay: 0.2s;
}

.images_bottom-right.is-visible {
  transition-delay: 0.4s;
}

.images_top-left {
  max-width: 53rem;
  top: -12.2rem;
  left: -4.3rem;
  transform: translateY(-50%);
}

.images_top-right {
  max-width: 52.6rem;
  top: -3.6rem;
  right: -7.2rem;
}

.images_bottom-right {
  max-width: 61.9rem;
  bottom: -11.1rem;
  right: -1.6rem;
}

.partner {
  background: #ffffff;
  display: flex;
  justify-content: end;
  max-width: 144rem;
  margin: 0 auto 11.3rem;
}
.partner .container {
  width: 100%;
  max-width: 131rem;
  display: flex;
  margin: 0;
  justify-content: space-between;
}
.partner .section__header {
  margin-bottom: 8.2rem;
}
.partner .section__title {
  letter-spacing: 0;
  font-size: 9.5rem;
}
@media screen and (max-width: 768px) {
  .partner .section__title {
    font-size: 7rem;
  }
}
.partner .section__subtitle {
  margin-top: -0.8rem;
}
@media screen and (max-width: 768px) {
  .partner {
    justify-content: center;
  }
  .partner .container {
    max-width: 33.5rem !important;
    flex-direction: column-reverse;
  }
  .partner .section__header {
    margin-bottom: 1rem;
  }
}

.partner__left {
  padding-top: 13.4rem;
}
@media screen and (max-width: 768px) {
  .partner__left {
    padding-top: 0;
    margin-top: 3.2rem;
  }
}

.partner__desc {
  margin-bottom: 4.1rem;
  line-height: 1.6;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .partner__desc {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    line-height: 3.6rem;
  }
}

.partner__content {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 7.1rem;
}
@media screen and (max-width: 768px) {
  .partner__content {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }
}

.partner__text {
  max-width: 37.1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.partner__image, .partner__image--content {
  width: 100%;
  max-width: 72.5rem;
  max-height: 63.4rem;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}
.partner__image.is-visible, .partner__image--content.is-visible {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .partner__image, .partner__image--content {
    margin-bottom: 2rem;
  }
}

.partner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .partner__img {
    min-height: 200px;
  }
}

.partner__footer {
  max-width: 27rem;
}
@media screen and (max-width: 768px) {
  .partner__footer {
    margin: 0 auto;
  }
}

.contact {
  background: #002777;
  color: white;
  text-align: center;
  padding: 11.85rem 0 0 !important;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 6.5rem 0 0 !important;
  }
}
.contact .container {
  max-width: 118rem;
  display: flex;
  gap: 9.6rem;
}
.contact .section__title {
  font-weight: 700;
  letter-spacing: 0.025em;
}
.contact .section__subtitle {
  margin-top: -0.8rem;
  letter-spacing: 0;
}
.contact .section__title,
.contact .section__subtitle {
  color: white;
}
@media screen and (max-width: 768px) {
  .contact {
    max-width: 100% !important;
  }
  .contact .container {
    flex-direction: column;
    padding: 0 2.4rem;
    gap: 1rem;
    max-width: 33.5rem !important;
  }
}

.contact__header {
  z-index: 1;
  color: #fff;
  text-align: left;
  height: fit-content;
  position: relative;
  top: -2.6rem;
}

.contact__title {
  font-size: 9.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 12.7rem;
  color: white;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 5rem;
    line-height: 7rem;
    margin-bottom: 3.2rem;
  }
}

.contact__subtitle {
  font-size: 2.4rem;
  color: white;
  font-weight: 700;
  line-height: 3.2rem;
  font-family: "LINE Seed JP", sans-serif;
  margin-top: -0.9rem;
}
@media screen and (max-width: 768px) {
  .contact__subtitle {
    margin-bottom: 2.4rem;
    margin-top: -2rem;
  }
}

.contact__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.4rem;
  flex-wrap: wrap;
  width: 60%;
  max-width: 66.3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .contact__content {
    gap: 2.4rem;
    width: 100%;
  }
}

.contact__phone {
  text-align: center;
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact__phone {
    line-height: 2.3rem;
  }
}

.contact__label {
  font-size: 4.9rem;
  line-height: 6.5rem;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: -0.3rem;
}
@media screen and (max-width: 768px) {
  .contact__label {
    font-size: 3rem;
    line-height: 5rem;
  }
}

.contact__number {
  position: relative;
  right: 0.2rem;
  margin: 0;
  font-size: 6.3rem;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  line-height: 8.4rem;
  font-family: "LINE Seed JP", sans-serif;
  white-space: nowrap;
  padding-top: 0.3rem;
}
@media screen and (max-width: 768px) {
  .contact__number {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}

.contact__form {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Noto Sans", sans-serif;
  margin-left: -0.4rem;
}

.contact__time {
  text-align: left;
  margin-top: 0.1rem;
  margin-left: 0.1rem;
  font-family: "LINE Seed JP", sans-serif;
}

.contact__content-header {
  width: 100%;
  padding-bottom: 5.9rem;
  border-bottom: 0.2rem solid #fff;
  margin-top: -0.8rem;
}
@media screen and (max-width: 768px) {
  .contact__content-header {
    width: 100%;
    padding-bottom: 3rem;
  }
}

.contact__form-link {
  position: relative;
  left: -0.6rem;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  border-radius: 0.4rem;
  font-size: 4.4rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact__form-link {
    font-size: 2.1rem;
    padding: 0.4rem 1.6rem 0.4rem 0;
  }
}

.contact__form-btn {
  width: 100%;
  max-width: 5rem;
  position: absolute;
  right: 11.8rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact__form-btn {
    right: 6.8rem;
  }
}

.contact__form-icon {
  width: 1.7rem;
  height: 1.8rem;
}
.contact__form-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact__footer {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
  opacity: 0.2;
  font-size: 13.4rem;
  line-height: 13.2rem;
  padding-bottom: 0.7rem;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact__footer {
    font-size: 7.2rem;
    line-height: 7.2rem;
  }
}

.contact__footer-track {
  display: flex;
  width: 100%;
  opacity: 0.5;
}

.contact__footer-track .marquee-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.error-message {
  color: #ff0000;
  font-size: 1.2rem;
  margin-top: 0.4rem;
  display: none;
}

.contact-form__input.error,
.contact-form__textarea.error {
  border-color: #ff0000;
  background-color: #ffe6e6;
}

.contact-form__radio-group.error,
.contact-form__checkbox-group.error {
  border: 1px solid #ff0000;
  border-radius: 0.4rem;
  padding: 0.8rem;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 10.3rem 0;
  font-size: 1.4rem;
}

.footer__container {
  max-width: 117.9rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
}

.footer__content {
  max-width: 120rem;
  display: flex;
  justify-content: space-between;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 6rem;
    margin: 0 auto;
  }
}

/* LEFT */
.footer__left {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .footer__left {
    max-width: 33.5rem;
    width: 100%;
    margin: 0 auto;
  }
}

.footer__logo {
  width: 100%;
  max-width: 37.5rem;
  margin-bottom: 4.2rem;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__company {
  margin-bottom: 3rem;
}

.footer__company-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 3rem;
}

.footer__company-post {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 2.1rem;
}

.footer__company-address {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3rem;
}

.footer__links {
  display: flex;
  gap: 5rem;
}

.footer__link {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.1rem;
  text-decoration: none;
}
.footer__link:hover {
  opacity: 0.7;
}

/* RIGHT */
.footer__right {
  max-width: 55.2rem;
  width: 100%;
}

.footer__menu {
  position: relative;
  left: -0.8rem;
  display: flex;
  padding: 0;
  margin: 0.2rem 0 0;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    left: 0;
    flex-direction: column;
    gap: 5rem;
  }
}

.footer__menu-group {
  display: flex;
  flex-direction: column;
}

.footer__menu-group:nth-child(2) {
  position: relative;
}

.footer__menu-group:nth-child(3) {
  position: relative;
  left: -0.3rem;
}

.footer__menu-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3.7rem;
  min-height: 2.6rem;
}

.footer__menu-lists {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 768px) {
  .footer__menu-lists {
    gap: 2rem;
  }
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__menu-list_title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 400;
  line-height: 4.3rem;
}

.footer__menu-items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer__menu-item {
  font-size: 1.2rem;
  color: #6C6C6C;
  font-weight: 700;
  text-decoration: none;
  margin-top: -0.3rem;
}
.footer__menu-item:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-family: "LINE Seed JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}

/* COPYRIGHT */
.footer__copyright {
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 400;
  margin-right: 1.8rem;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-right: 0;
    align-self: center;
  }
}

.privacy-container {
  padding: 21.4rem 0 20rem !important;
  background: #ffffff;
}
.privacy-container .page-inner {
  margin-top: 0;
}
.privacy-container .page-title {
  margin-bottom: 1.6rem;
}
.privacy-container .page-header {
  margin-bottom: 6.3rem;
}
@media screen and (max-width: 768px) {
  .privacy-container {
    padding: 8rem 0 !important;
  }
}

.privacy-inner {
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.privacy__block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.privacy__heading {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 2.6rem;
  color: #2C2C2C;
}

.privacy__desc {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2.6rem;
  color: #2C2C2C;
}

.privacy__text {
  margin-bottom: 2.6rem;
}

.privacy__contact {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #2C2C2C;
}

.contact-confirm__page-title {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.8rem;
  margin-bottom: 6.9rem;
}

.contact-confirm__container,
.contact-completed__container {
  padding: 21.9rem 0 !important;
}
.contact-confirm__container .page-header,
.contact-completed__container .page-header {
  margin-bottom: 5.8rem !important;
}

.contact-confirm__form,
.mw_wp_form.mw_wp_form_confirm form {
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
}
@media screen and (max-width: 768px) {
  .contact-confirm__form,
  .mw_wp_form.mw_wp_form_confirm form {
    gap: 2rem;
  }
}
.contact-confirm__form .contact-form__submit,
.mw_wp_form.mw_wp_form_confirm form .contact-form__submit {
  max-width: unset;
  width: 100%;
}

.contact-form__privacy span {
  display: none;
}

.mw_wp_form.mw_wp_form_confirm .contact-form__privacy span {
  display: block;
}

.contact-confirm__inner {
  max-width: 96rem;
  margin: 0 auto;
}

.contact-confirm__row {
  display: flex;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .contact-confirm__row {
    gap: 2rem;
  }
}

.contact-confirm__label {
  min-width: 20rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  color: #2c2c2c;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 768px) {
  .contact-confirm__label {
    max-width: unset;
    width: 100%;
  }
}

.contact-confirm__value {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  color: #2c2c2c;
  letter-spacing: 0.13rem;
  white-space: pre-wrap;
}

.contact-confirm__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.2rem;
}
.contact-confirm__buttons .contact-form__button--back {
  display: none !important;
}

.contact-confirm__back {
  padding: 1.4rem 3.2rem;
  border: 0.1rem solid #002777;
  background: #fff;
  color: #002777;
  font-size: 1.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
}

.contact-confirm__submit {
  padding: 1.4rem 3.2rem;
  background: #0056b3;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
  border: none;
}

.contact-completed__page-title {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.8rem;
  margin-bottom: 4rem;
}

.contact-completed__page-subtitle {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  font-size: 1.8rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #002777;
  line-height: 3.2rem;
}

/* MW WP Form Custom Styles - Match Original Design */
/* Override plugin default spacing */
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/* Hide company fields by default (shown when 法人 is selected) */
.contact-form .contact-form__group.contact-form__group--company,
.contact-form .contact-form__group.contact-form__group--url {
  display: none;
}

/* Form group layout */
.contact-form .contact-form__group {
  display: flex;
  margin-bottom: 4.2rem;
  align-items: center;
  gap: 3.45rem;
}
.contact-form .contact-form__group.contact-form__group--message, .contact-form .contact-form__group.contact-form__group--reason {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__group {
    flex-direction: column;
    align-items: start;
    margin-bottom: 2rem;
    gap: 1rem;
  }
}
.contact-form .contact-form__group .contact-form__required.no__required {
  background-color: #2c2c2c;
}
.contact-form .contact-form__group {
  /* Error state */
}
.contact-form .contact-form__group.contact-form__group--error .contact-form__radio,
.contact-form .contact-form__group.contact-form__group--error .contact-form__checkbox,
.contact-form .contact-form__group.contact-form__group--error .contact-form__checkbox-text,
.contact-form .contact-form__group.contact-form__group--error .mwform-radio-field-text,
.contact-form .contact-form__group.contact-form__group--error .mwform-checkbox-field-text {
  color: #ff0000;
}
.contact-form .contact-form__group.contact-form__group--error .contact-form__radio a,
.contact-form .contact-form__group.contact-form__group--error .contact-form__checkbox a,
.contact-form .contact-form__group.contact-form__group--error .contact-form__checkbox-text a,
.contact-form .contact-form__group.contact-form__group--error .mwform-radio-field-text a,
.contact-form .contact-form__group.contact-form__group--error .mwform-checkbox-field-text a {
  color: #ff0000;
}

/* Label styling */
.contact-form .contact-form__label {
  display: flex;
  max-height: 2.6rem;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  min-width: 26rem;
  letter-spacing: 0.04em;
}

.contact-form .contact-form__required {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5rem;
  padding: 0.3rem 1.5rem;
  border-radius: 0.3rem;
  background-color: #002777;
  color: #fff;
}

/* Text inputs - match original .contact-form__input */
.contact-form input[type=text],
.contact-form input[type=email],
.mw_wp_form input[type=text],
.mw_wp_form input[type=email],
.contact-form__input {
  width: 100%;
  padding: 1.3rem 0 1.4rem 1.7rem;
  color: #000;
  line-height: 3.2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 0.1rem solid #fafafa;
  font-size: 1.8rem;
  background: #fafafa;
  letter-spacing: 0.06em;
  /* Error state */
}
.contact-form input[type=text].error, .contact-form input[type=text][aria-invalid=true],
.contact-form input[type=email].error,
.contact-form input[type=email][aria-invalid=true],
.mw_wp_form input[type=text].error,
.mw_wp_form input[type=text][aria-invalid=true],
.mw_wp_form input[type=email].error,
.mw_wp_form input[type=email][aria-invalid=true],
.contact-form__input.error,
.contact-form__input[aria-invalid=true] {
  background-color: rgb(255, 230, 230);
  border-color: rgb(255, 0, 0);
}

/* Error state for inputs with adjacent error span */
.contact-form__group:has(.error) input[type=text],
.contact-form__group:has(.error) input[type=email],
.contact-form__group:has(.error) textarea {
  background-color: rgb(255, 230, 230);
  border-color: rgb(255, 0, 0);
}

/* Textarea - match original .contact-form__textarea */
.contact-form textarea,
.mw_wp_form textarea,
.contact-form__textarea {
  width: 100%;
  height: 30rem;
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid #fafafa;
  font-size: 1.6rem;
  background: #fafafa;
  line-height: 1.5;
  resize: vertical; /* Only allow vertical resize */
  min-height: 20rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact-form textarea,
  .mw_wp_form textarea,
  .contact-form__textarea {
    height: 15rem;
  }
}
.contact-form textarea,
.mw_wp_form textarea,
.contact-form__textarea {
  /* Error state */
}
.contact-form textarea.error, .contact-form textarea[aria-invalid=true],
.mw_wp_form textarea.error,
.mw_wp_form textarea[aria-invalid=true],
.contact-form__textarea.error,
.contact-form__textarea[aria-invalid=true] {
  background-color: rgb(255, 230, 230);
  border-color: rgb(255, 0, 0);
}

/* Radio buttons container */
.contact-form .contact-form__radios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Radio fields styling */
.mwform-radio-field.horizontal-item {
  display: flex;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
}

.mwform-radio-field label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
}

.mwform-radio-field input[type=radio] {
  width: 1.6rem;
  height: 1.6rem;
  border: 0.2rem solid #6c6c6c;
  margin: 0;
  accent-color: #002777;
  cursor: pointer;
}

.mwform-radio-field-text {
  font-size: 1.8rem;
  color: #333;
}

/* Checkbox fields styling */
.contact-form__privacy {
  margin: 2.4rem 0 4rem;
  position: relative;
  /* Move error message outside of label */
}
.contact-form__privacy .error {
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  width: 100%;
}

.mw_wp_form.mw_wp_form_confirm .contact-form__privacy {
  margin: 0;
}

.contact-form__privacy .contact-form__checkbox {
  align-items: center;
  gap: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  position: relative;
}

.contact-form__privacy .contact-form__checkbox--normal {
  display: flex;
}

.contact-form__privacy .contact-form__checkbox--confirm {
  display: none;
}

.mw_wp_form.mw_wp_form_confirm .contact-form__privacy .contact-form__checkbox--normal {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .contact-form__privacy .contact-form__checkbox--confirm {
  display: flex;
  font-weight: 500;
}

.mwform-checkbox-field.horizontal-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.mwform-checkbox-field label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.mwform-checkbox-field input[type=checkbox] {
  width: 2.6rem;
  height: 2.6rem;
  border: 0.1rem solid #707070;
  margin: 0;
  margin-right: 1rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  position: relative;
}

.mwform-checkbox-field input[type=checkbox]:checked {
  border-color: #002777;
  background: #002777;
}

.mwform-checkbox-field input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1.1rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mwform-checkbox-field-text {
  font-size: 1.8rem;
  color: #333;
  margin-right: 0;
}

.contact-form__checkbox-text {
  text-decoration: underline;
  color: #3a75bb;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
}

/* Submit button */
.contact-form__submit {
  margin-top: 2rem;
  max-width: 30.8rem;
  margin: 0 auto;
  position: relative;
  left: -3.3rem;
}
@media screen and (max-width: 768px) {
  .contact-form__submit {
    left: 0;
  }
}

.contact-confirm__buttons--submit {
  width: 100%;
  max-width: 30.8rem;
  padding: 0;
  background: #3a75bb;
  gap: 1.1rem;
  line-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 0.6rem;
  cursor: pointer;
  border: none;
  position: relative;
}

.contact-confirm__buttons--submit::after {
  content: "";
  width: 1.7rem;
  height: 1.8rem;
  background-image: url("../images/icons/icon_arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 1.1rem;
  position: absolute;
  right: 4rem;
}

.contact-form input[type=submit]:hover {
  opacity: 0.9;
}

/* Error messages */
.mw_wp_form .error {
  color: #ff0000;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  white-space: nowrap;
}

.mw_wp_form .contact-form__checkbox-wrapper .error {
  font-size: 85% !important;
  font-weight: normal !important;
}

/* Hide hidden inputs that MW WP Form adds */
input[type=hidden] {
  display: none !important;
}

/* MW WP Form Confirmation Screen */
.contact-confirm__page-title {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.8rem;
  margin-bottom: 6.9rem;
}

.contact-confirm__container,
.contact-completed__container {
  padding: 21.9rem 0 !important;
}
.contact-confirm__container .page-header,
.contact-completed__container .page-header {
  margin-bottom: 5.8rem !important;
}

/* MW WP Form generates confirmation with mw_wp_form_confirm class */
.mw_wp_form_confirm {
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm {
    gap: 2rem;
  }
}
.mw_wp_form_confirm {
  /* Hide required badges in confirmation */
}
.mw_wp_form_confirm .contact-form__required {
  display: none;
}
.mw_wp_form_confirm {
  /* Reset form group layout for confirmation */
}
.mw_wp_form_confirm .contact-form__group {
  display: flex;
  gap: 12rem;
  margin-bottom: 0;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__group {
    gap: 2rem;
    flex-direction: column;
  }
}
.mw_wp_form_confirm {
  /* Labels in confirmation - simpler layout */
}
.mw_wp_form_confirm .contact-form__label {
  min-width: 19rem;
  max-width: 19rem;
  max-height: none;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__label {
    max-width: unset;
    width: 100%;
  }
}
.mw_wp_form_confirm {
  /* Direct text values in confirmation */
}
.mw_wp_form_confirm .contact-form__radios,
.mw_wp_form_confirm .contact-form__group > *:not(.contact-form__label):not(input[type=hidden]) {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  color: #2c2c2c;
  letter-spacing: 0.13rem;
  flex: 1;
}

/* Confirmation rows - MW WP Form wraps each field in a div */
.mw_wp_form_confirm > div {
  display: flex;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm > div {
    gap: 2rem;
    flex-direction: column;
  }
}

/* Labels in confirmation */
.mw_wp_form_confirm .contact-form__label,
.mw_wp_form_confirm strong {
  min-width: 20rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  color: #2c2c2c;
  letter-spacing: 0.15rem;
}

/* Values in confirmation */
.mw_wp_form_confirm .mwform_value,
.mw_wp_form_confirm .contact-confirm__value {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  color: #2c2c2c;
  letter-spacing: 0.13rem;
  white-space: pre-wrap;
}

/* Confirmation buttons */
.mw_wp_form_confirm .contact-form__button--back,
.mw_wp_form_input .contact-form__button--back {
  width: 100%;
  max-width: 30.8rem;
  border: 0.1rem solid #002777;
  background: #fff;
  color: #002777;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-radius: 0.6rem;
  cursor: pointer;
  line-height: 3.2rem;
  letter-spacing: 0.04em;
}
.mw_wp_form_confirm .contact-form__button--back:hover,
.mw_wp_form_input .contact-form__button--back:hover {
  background: #f5f5f5;
}

/* Button container in confirmation */
.contact-confirm__buttons,
.mw_wp_form_confirm .mw_wp_form_input {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  .contact-confirm__buttons,
  .mw_wp_form_confirm .mw_wp_form_input {
    flex-direction: column;
    align-items: center;
  }
}

/* Submit button in confirmation maintains same style */
.mw_wp_form_confirm input[type=submit] {
  width: 100%;
  max-width: 30.8rem;
}

.contact-form__input-wrapper,
.contact-form__textarea-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.contact-form__checkbox-wrapper .error {
  display: none;
}

.news-page .news {
  padding: 19.2rem 0 18.2rem;
}
@media screen and (max-width: 768px) {
  .news-page .news {
    padding-top: 8rem;
  }
}
.news-page .news__list {
  width: 100%;
  max-width: 118rem !important;
  margin: 0 auto;
  gap: 3.2rem;
}
.news-page .news__item {
  padding: 0rem 0rem 3.3rem 0rem;
}
.news-page .news__item::after {
  right: -0.3rem;
  top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .news-page .news__item::after {
    top: 3.5rem;
  }
}
.news-page .news__text {
  width: 100%;
  display: flex;
}
.news-page .news__text a {
  display: flex;
  color: #3e3e3e;
  text-decoration: underline;
  width: 100%;
  padding-right: 2rem;
  line-clamp: 1;
}
.news-page .section__title {
  font-size: 8.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .news-page .section__title {
    font-size: 5rem;
    line-height: 1;
  }
}
.news-page .section__subtitle {
  margin-top: -1.3rem;
}
@media screen and (max-width: 768px) {
  .news-page .section__subtitle {
    margin-top: -0.8rem;
  }
}
.news-page .section__header {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .news-page .section__header {
    margin-bottom: 2.4rem;
  }
}
.news-page .news__item-header {
  min-width: 23.5rem;
}
.news-page .news__item-btn {
  padding: 0.6rem 2rem 0.4rem 1.6rem;
}

/* Pagination Component */
.pagination {
  margin-top: 2.5rem;
  text-align: center;
}

.pagination__list {
  display: inline-flex;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.7rem 0.3rem;
}

.pagination__dots {
  font-size: 2.5rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
  line-height: 3rem;
  width: 3rem;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pagination__dots {
    font-size: 2rem;
    width: 2rem;
    line-height: 2.5rem;
  }
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  font-size: 1.6rem;
  border: 0.2rem solid #002777;
  color: #002777;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .pagination__link {
    width: 3.3rem;
    height: 3.3rem;
    font-size: 1.2rem;
  }
}

.pagination__link:hover {
  background: #002777;
  color: #fff;
}

/* Active page */
.pagination__link--active {
  background: #002777;
  color: #fff;
  border-color: #002777;
}

/* Prev/Next buttons */
.pagination__link--prev,
.pagination__link--next {
  background: #002777;
}

.pagination__link-img {
  width: 100%;
  max-width: 1.1rem;
}
.pagination__link-img img {
  width: 100%;
  height: auto;
}

.news-detail-page p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: #333;
}
.news-detail-page p:last-child {
  margin-bottom: 0;
}
.news-detail-page h1,
.news-detail-page h2,
.news-detail-page h3,
.news-detail-page h4,
.news-detail-page h5,
.news-detail-page h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
}
.news-detail-page h1:first-child,
.news-detail-page h2:first-child,
.news-detail-page h3:first-child,
.news-detail-page h4:first-child,
.news-detail-page h5:first-child,
.news-detail-page h6:first-child {
  margin-top: 0;
}
.news-detail-page h1 {
  font-size: 2em;
}
.news-detail-page h2 {
  font-size: 1.75em;
}
.news-detail-page h3 {
  font-size: 1.5em;
}
.news-detail-page h4 {
  font-size: 1.25em;
}
.news-detail-page h5 {
  font-size: 1.1em;
}
.news-detail-page h6 {
  font-size: 1em;
}
.news-detail-page a {
  color: #0073aa;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.news-detail-page a:hover {
  color: #005177;
}
.news-detail-page ul,
.news-detail-page ol {
  margin: 1.5em 0;
  padding-left: 2em;
  line-height: 1.8;
}
.news-detail-page ul:first-child,
.news-detail-page ol:first-child {
  margin-top: 0;
}
.news-detail-page ul:last-child,
.news-detail-page ol:last-child {
  margin-bottom: 0;
}
.news-detail-page ul {
  list-style-type: disc;
}
.news-detail-page ol {
  list-style-type: decimal;
}
.news-detail-page li {
  margin-bottom: 0.5em;
}
.news-detail-page li:last-child {
  margin-bottom: 0;
}
.news-detail-page ul ul,
.news-detail-page ol ol,
.news-detail-page ul ol,
.news-detail-page ol ul {
  margin: 0.5em 0 0.5em 1.5em;
}
.news-detail-page img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
}
.news-detail-page img.alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}
.news-detail-page img.alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}
.news-detail-page img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.news-detail-page .wp-caption {
  max-width: 100%;
  margin: 2em 0;
}
.news-detail-page .wp-caption.alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}
.news-detail-page .wp-caption.alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}
.news-detail-page .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.news-detail-page .wp-caption img {
  margin: 0;
}
.news-detail-page .wp-caption-text {
  font-size: 0.875em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
  padding: 0.5em;
}
.news-detail-page blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #0073aa;
  background: #f7f7f7;
  font-style: italic;
  color: #555;
}
.news-detail-page blockquote p {
  margin-bottom: 0.5em;
}
.news-detail-page blockquote p:last-child {
  margin-bottom: 0;
}
.news-detail-page blockquote cite {
  display: block;
  margin-top: 1em;
  font-size: 0.875em;
  font-style: normal;
  color: #666;
}
.news-detail-page blockquote cite:before {
  content: "— ";
}
.news-detail-page code {
  padding: 0.2em 0.4em;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
}
.news-detail-page pre {
  margin: 2em 0;
  padding: 1.5em;
  background: #282c34;
  color: #abb2bf;
  border-radius: 4px;
  overflow-x: auto;
  line-height: 1.6;
}
.news-detail-page pre code {
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font-size: 0.875em;
}
.news-detail-page table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.news-detail-page thead {
  background: #f5f5f5;
}
.news-detail-page th,
.news-detail-page td {
  padding: 0.75em 1em;
  text-align: left;
  border: 1px solid #ddd;
}
.news-detail-page th {
  font-weight: 700;
  color: #1a1a1a;
}
.news-detail-page tbody tr:nth-child(even) {
  background: #fafafa;
}
.news-detail-page tbody tr:hover {
  background: #f0f0f0;
}
.news-detail-page hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid #ddd;
}
.news-detail-page iframe,
.news-detail-page embed,
.news-detail-page object {
  max-width: 100%;
  margin: 2em 0;
}
.news-detail-page .wp-video,
.news-detail-page .wp-audio-shortcode {
  max-width: 100%;
  margin: 2em 0;
}
.news-detail-page .gallery {
  margin: 2em 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1em;
}
.news-detail-page .gallery-item {
  margin: 0;
}
.news-detail-page .gallery-icon img {
  margin: 0;
  width: 100%;
  height: auto;
}
.news-detail-page .gallery-caption {
  font-size: 0.875em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
}
.news-detail-page .wp-block-image {
  margin: 2em 0;
}
.news-detail-page .wp-block-image figcaption {
  font-size: 0.875em;
  color: #666;
  text-align: center;
  margin-top: 0.5em;
}
.news-detail-page .wp-block-quote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #0073aa;
  background: #f7f7f7;
}
.news-detail-page .wp-block-quote cite {
  display: block;
  margin-top: 1em;
  font-size: 0.875em;
  color: #666;
}
.news-detail-page .wp-block-pullquote {
  margin: 2em 0;
  padding: 2em;
  text-align: center;
  border-top: 4px solid #0073aa;
  border-bottom: 4px solid #0073aa;
}
.news-detail-page .wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}
.news-detail-page .wp-block-code {
  margin: 2em 0;
}
.news-detail-page .wp-block-separator {
  margin: 2em auto;
  border-top: 2px solid #ddd;
  max-width: 100px;
}
.news-detail-page .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}
.news-detail-page .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
.news-detail-page .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news-detail-page .alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.news-detail-page .alignfull {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.news-detail-page::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 768px) {
  .news-detail-page .alignleft,
  .news-detail-page .alignright {
    float: none;
    margin: 1.5em auto;
    display: block;
  }
  .news-detail-page table {
    font-size: 0.875em;
  }
  .news-detail-page th,
  .news-detail-page td {
    padding: 0.5em;
  }
}
.news-detail-page {
  max-width: 90rem;
  padding: 19rem 0 15.9rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-detail-page {
    max-width: 33.5rem;
    padding: 10rem 0 8rem;
  }
}
.news-detail-page .news-detail__title {
  font-size: 4.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 6.2rem;
  margin-bottom: 8.1rem;
}
@media screen and (max-width: 768px) {
  .news-detail-page .news-detail__title {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 3rem;
  }
}
.news-detail-page .news__item-header {
  max-width: 21rem;
  margin-bottom: 5.7rem;
  align-items: center;
  gap: 3.4rem;
}
@media screen and (max-width: 768px) {
  .news-detail-page .news__item-header {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.news-detail-page .news__item-btn {
  max-width: unset;
  white-space: nowrap;
  padding: 0.5rem 3.1rem 0.6rem 2.4rem;
}
.news-detail-page .news__detail-back {
  display: flex;
  align-items: center;
  max-width: 15rem;
  justify-content: space-between;
  margin-bottom: 4rem;
  text-decoration: none;
}
.news-detail-page .news__detail-back:hover {
  color: #002777;
  opacity: 0.7;
}
.news-detail-page .news__detail-back-text {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 3.1rem;
  color: #002777;
}
.news-detail-page .btn-back {
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.2rem solid #002777;
  transform: scaleX(-1);
}
.news-detail-page .news__text {
  font-size: 1.8rem;
  line-height: 3.1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-bottom: 7.6rem;
}

.company-page .company-container {
  padding: 21.5rem 0 18.1rem;
}
.company-page .company-container .company-header {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .company-page .company-container .company-header {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .company-page .company-container {
    padding-top: 8rem;
    max-width: 33.5rem;
    padding-bottom: 8rem;
  }
}
.company-page .page-title {
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 768px) {
  .company-page .page-title {
    font-size: 6.4rem;
    line-height: 5.2rem;
  }
}
.company-page .company-outline {
  max-width: 118rem;
  margin: 0 auto;
}
.company-page .page-content__title {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .company-page .page-content__title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .company-page .outline-header__left {
    margin-bottom: 3.2rem;
  }
}
.company-page {
  /* Base */
}
.company-page .company-card {
  font-family: "Helvetica Neue", Arial, sans-serif;
  max-width: 92rem; /* 920px */
  margin: 3.2rem auto;
  background: #ffffff;
  border-radius: 0.8rem;
  padding: 2.8rem;
  box-shadow: 0 0.1rem 0.3rem rgba(15, 23, 42, 0.06);
  color: #1f2937;
}
.company-page .company-card__title {
  font-size: 1.4rem;
  color: #6b7280;
  margin: 0 0 1.8rem 0;
  font-weight: 600;
}
.company-page .company-card__info {
  gap: 2.15rem;
  display: flex;
  flex-direction: column;
}
.company-page .company-card__row {
  display: flex;
  gap: 9rem;
  max-width: 89.5rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .company-page .company-card__row {
    gap: 0.2rem;
  }
}
.company-page .company-card__row:nth-child(4) {
  padding-bottom: 2.1rem;
}
.company-page .company-card__row:nth-child(6) .company-card__value {
  letter-spacing: 0.03em;
}
.company-page .company-card__row:nth-child(7) .company-card__value {
  letter-spacing: 0.034em;
  margin-top: -0.1rem;
}
.company-page .company-card__row:last-child {
  border-bottom: none;
  margin-top: -1.3rem;
  padding-bottom: 1.9rem;
}
@media screen and (max-width: 768px) {
  .company-page .company-card__row:last-child {
    display: flex;
    flex-direction: column;
  }
}
.company-page .company-card__label {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
  min-width: 10rem;
  margin-bottom: -0.3rem;
}
@media screen and (max-width: 768px) {
  .company-page .company-card__label {
    min-width: 8rem;
    font-size: 1.4rem;
  }
}
.company-page .company-card__value {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #3e3e3e;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .company-page .company-card__value {
    font-size: 1.4rem;
  }
}
.company-page .company-card__value--muted {
  color: #6b7280;
  font-size: 1.3rem;
}
.company-page {
  /* Map */
}
.company-page .company-card__map {
  margin-top: 1.6rem;
  width: 100%;
  max-width: 61.3rem;
}
@media screen and (max-width: 768px) {
  .company-page .company-card__map {
    max-width: 100%;
  }
}
.company-page .company-card__map iframe {
  width: 100%;
  max-height: 26rem;
}
@media screen and (max-width: 768px) {
  .company-page .company-card__map iframe {
    height: 16.3rem;
  }
}
.company-page .company-card__map-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.company-page .company-card__map-caption {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: #6b7280;
}
.company-page .company-outline {
  margin-top: 20.6rem;
}
@media screen and (max-width: 768px) {
  .company-page .company-outline {
    margin-top: 10.2rem;
  }
}
.company-page .outline-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18.3rem;
}
@media screen and (max-width: 768px) {
  .company-page .outline-header {
    flex-direction: column;
    margin-bottom: 3.6rem;
  }
}
.company-page .outline-header__right {
  position: relative;
  top: -0.9rem;
  left: 0.3rem;
  font-size: 6rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 9.5rem;
  color: #002777;
}
@media screen and (max-width: 768px) {
  .company-page .outline-header__right {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}
.company-page {
  /* Responsive */
}
@media (max-width: 72rem) {
  .company-page {
    /* 720px */
  }
  .company-page .company-card {
    padding: 1.8rem;
  }
  .company-page .company-card__row {
    grid-template-columns: 1fr;
  }
  .company-page .company-card__label {
    font-weight: 600;
  }
}

.service-page .page-container {
  padding: 21.6rem 0 11.8rem;
}
@media screen and (max-width: 768px) {
  .service-page .page-container {
    padding-top: 8rem;
  }
}
.service-page .page-header {
  margin-bottom: 6.3rem;
}
@media screen and (max-width: 768px) {
  .service-page .page-header {
    margin-bottom: 3.2rem;
  }
}
.service-page .page-inner {
  margin-top: 20.8rem;
}
@media screen and (max-width: 768px) {
  .service-page .page-inner {
    margin-top: 10rem;
  }
}
.service-page .page-inner__header {
  margin-bottom: 8.2rem;
}
@media screen and (max-width: 768px) {
  .service-page .page-inner__header {
    margin-bottom: 3.2rem;
  }
}
.service-page .service-content {
  max-width: 131rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .service-page .service-content {
    flex-direction: column;
    gap: 3rem;
  }
}
.service-page .service-content__left {
  width: 60%;
  max-width: 67rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-content__left {
    width: 100%;
  }
}
.service-page .service-content__img {
  width: 100%;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}
.service-page .service-content__img.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.service-page .service-content__right {
  width: 50%;
  max-width: 57rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-content__right {
    width: 100%;
  }
}
.service-page .service-list {
  display: flex;
  flex-direction: column;
  gap: 7.9rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-list {
    gap: 4rem;
  }
}
.service-page .service-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 7.9rem;
  border-bottom: 0.1rem solid #002777;
}
.service-page .service-item .btn_section {
  align-self: flex-end;
  max-width: 27rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-item .btn_section {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .service-page .service-item {
    padding-bottom: 2rem;
  }
}
.service-page .service-item:last-child {
  border-bottom: none;
}
.service-page .service-item:nth-child(2) {
  padding-bottom: 3.95rem;
}
.service-page .service-item:nth-child(2) .service-item__title {
  margin-bottom: 3.7rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-item:nth-child(2) {
    padding-bottom: 2rem;
  }
  .service-page .service-item:nth-child(2) .service-item__title {
    margin-bottom: 1.6rem;
  }
}
.service-page .service-item:nth-child(3) {
  padding-bottom: 4.2rem;
}
.service-page .service-item:nth-child(3) .service-item__title {
  margin-bottom: 3.7rem;
}
@media screen and (max-width: 768px) {
  .service-page .service-item:nth-child(3) {
    padding-bottom: 2rem;
  }
  .service-page .service-item:nth-child(3) .service-item__title {
    margin-bottom: 1.6rem;
  }
}
.service-page .service-item__title {
  font-size: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.9rem;
  margin-bottom: 2.6rem;
  margin-top: -0.1rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .service-page .service-item__title {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
.service-page .service-item__desc {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #002777;
  line-height: 2.8rem;
  margin-bottom: 3.95rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .service-page .service-item__desc {
    font-size: 1.6rem;
  }
}
.service-page .btn_section-list {
  padding: 1.6rem 2.7rem 1.8rem 3rem;
}

.access-container {
  padding: 21.4rem 0 19.66rem !important;
}
@media screen and (max-width: 768px) {
  .access-container {
    padding: 8rem 0 !important;
  }
}

.access-content {
  max-width: 118rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 11.6rem;
}
@media screen and (max-width: 768px) {
  .access-content {
    gap: 3rem;
  }
}

.access-item__map {
  width: 100%;
  max-width: 118rem;
}
.access-item__map iframe {
  width: 100%;
  height: 50rem;
}
@media screen and (max-width: 768px) {
  .access-item__map iframe {
    height: 20rem;
  }
}

.access-item {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.access-item__branch {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #3E3E3E;
  line-height: 3.2rem;
  margin-bottom: 0.66rem;
  margin-top: -0.6rem;
}

.access-item__name {
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #3E3E3E;
  line-height: 3.2rem;
  margin-bottom: 1.3rem;
}

.access-item__location {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 3.2rem;
  margin-bottom: 1.9rem;
}

.access-item__list {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 3.2rem;
}

.recruit-page__title {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.8rem;
  margin-bottom: 5.3rem;
}

.recruit-container {
  padding: 21.4rem 0 20.1rem !important;
}
@media screen and (max-width: 768px) {
  .recruit-container {
    padding-top: 8rem !important;
  }
}

.recruit-header {
  margin-bottom: 5.7rem !important;
}

.job__container {
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
  padding: 3rem 4rem 3.8rem 3.9rem;
  border: 0.1rem solid #002777;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .job__container {
    padding: 2rem 1.5rem;
  }
}

.job__container:nth-child(2) {
  padding: 3.1rem 4rem 3.7rem 3.9rem;
}
.job__container:nth-child(2) .job__button {
  margin-left: 0;
}
.job__container:nth-child(2) .job__title {
  margin-bottom: 1rem;
}
.job__container:nth-child(2) .job__action {
  margin-top: 8.2rem;
}
.job__container:nth-child(2) .job__description {
  margin-bottom: 2.7rem;
}
.job__container:nth-child(2) .job__note {
  margin-top: 1rem;
}

.job__title {
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.8rem;
  margin-bottom: 1rem;
}

.job__description {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #002777;
  line-height: 4rem;
  margin-bottom: 2.8rem;
}

/* JOB BLOCK */
.job-blocks {
  display: flex;
  flex-direction: column;
  gap: 3.1rem;
  margin-left: -0.9rem;
}

.job-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.job-block__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.job-block__heading {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4rem;
  margin-left: 0.9rem;
}

.job-block__text-highlight {
  font-weight: 700 !important;
}

.job-block__text {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #002777;
  padding-left: 2rem;
}

/* ACTION BUTTON */
.job__action {
  margin-top: 8rem;
  text-align: center;
}

.job__button {
  position: relative;
  display: inline-block;
  padding: 1.8rem 5.9rem 1.8rem 3rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-left: -1.2rem;
  color: #fff;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
  background-color: #002777;
  border: 0.1rem solid #002777;
  text-decoration: none;
  transition: opacity 0.3s;
}

.job__button::after {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.8rem;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icons/icon_arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.job__button:hover {
  color: #002777;
  background-color: #fff;
}
.job__button:hover::after {
  background-image: url("../images/icons/icon_arrow_blue.svg");
}

.job__note {
  font-size: 1.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #6C6C6C;
  margin-top: 1.1rem;
}

.recruit-page__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.partner-page__title {
  width: 100%;
  max-width: 144rem;
  background-color: #002777;
  padding: 2.8rem 0 2.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .partner-page__title {
    padding: 3.1rem 1rem 3.6rem;
  }
}

.partner-page__text {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  max-width: 118rem;
  font-size: 4.4rem;
  line-height: 7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .partner-page__text {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

.partner-page {
  overflow-x: hidden;
}

.partner-container {
  padding: 21.4rem 0 0 !important;
}
.partner-container .page-title {
  margin-bottom: 1rem;
}
.partner-container .page-header {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .partner-container {
    padding-top: 8rem !important;
  }
  .partner-container .page-header {
    width: 100%;
    max-width: 33.5rem;
  }
}

.advantages {
  padding: 11.4rem 0 13rem;
  max-width: 118rem;
  margin: 0 auto;
  color: #002777;
}
@media screen and (max-width: 768px) {
  .advantages {
    padding: 3rem 0 6.2rem;
    width: 100%;
    max-width: 33.5rem;
  }
}
.advantages .advantages__header {
  margin-bottom: 5rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .advantages .advantages__header {
    flex-direction: column;
  }
}
.advantages .advantages__header-right {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  max-width: 55rem;
  margin-top: -0.2rem;
}
.advantages .advantages__name {
  font-size: 7.2rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  line-height: 11.6rem;
  position: relative;
  top: -1.4rem;
}
@media screen and (max-width: 768px) {
  .advantages .advantages__name {
    font-size: 3.2rem;
  }
}
.advantages .advantages__header-title {
  font-size: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 4.6rem;
}
@media screen and (max-width: 768px) {
  .advantages .advantages__header-title {
    font-size: 2.4rem;
    line-height: 3.3rem;
  }
}
.advantages .advantages__header-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
}
.advantages .advantages__header-subtitle {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2.4rem;
}
.advantages .advantages__desc {
  font-size: 1.4rem;
  line-height: 2rem;
}
.advantages .advantages__key-title {
  font-size: 2.4rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  line-height: 3.9rem;
  border-bottom: 0.1rem solid #002777;
  padding-bottom: 2.4rem;
}
.advantages .advantages__key-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantages .advantages__key-item {
  position: relative;
  border-bottom: 0.1rem solid #002777;
  padding: 4rem 0 4rem 2.8rem;
  font-size: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 4.3rem;
}
@media screen and (max-width: 768px) {
  .advantages .advantages__key-item {
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding: 2rem 0 2rem 2.8rem;
  }
}
.advantages .advantages__key-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #002777;
}
.advantages .advantages__key-item:nth-child(2) {
  padding: 4.3rem 0 4rem 2.8rem;
}
.advantages .advantages__key-item:nth-child(3) {
  padding: 4.2rem 0 4rem 2.8rem;
}

/* LIST SECTION */
.advantages-list {
  width: 100%;
  margin: 0 auto;
  max-width: 144rem;
  position: relative;
  background: #f9f9f9;
  padding: 12.66rem 0 9.25rem;
}
@media screen and (max-width: 768px) {
  .advantages-list {
    padding: 6.5rem 0;
  }
}

.advantages__arrow {
  width: 100%;
  max-width: 134rem;
  position: absolute;
  top: -5rem;
  left: 0;
  padding-left: 6.68rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .advantages__arrow {
    top: -2.8rem;
    padding-left: 2rem;
  }
}

.advantages__arrow-img {
  width: 100%;
  max-width: 8.96rem;
  opacity: 0;
}
.advantages__arrow-img--1 {
  animation: arrowFade1 2s ease-in-out infinite;
}
.advantages__arrow-img--2 {
  animation: arrowFade2 2s ease-in-out infinite;
}
.advantages__arrow-img--3 {
  animation: arrowFade3 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .advantages__arrow-img {
    width: 100%;
    max-width: 5.01rem;
  }
}

@keyframes arrowFade1 {
  0%, 5% {
    opacity: 1;
  }
  5%, 75% {
    opacity: 1;
  }
  78%, 88% {
    opacity: 0;
  }
  90%, 100% {
    opacity: 1;
  }
}
@keyframes arrowFade2 {
  0%, 25% {
    opacity: 0;
  }
  30%, 75% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 0;
  }
}
@keyframes arrowFade3 {
  0%, 50% {
    opacity: 0;
  }
  55%, 75% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 0;
  }
}
@keyframes arrowSlide {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(110%);
  }
}
.advantages-list__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
  line-height: 6.4rem;
  width: 100%;
  max-width: 118rem;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768px) {
  .advantages-list__title {
    font-size: 2.4rem;
    width: 100%;
    max-width: 33.5rem;
  }
}

.advantages-list__subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
  line-height: 2.9rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 118rem;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 768px) {
  .advantages-list__subtitle {
    width: 100%;
    max-width: 33.5rem;
  }
}

.advantages-list__items {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 118rem;
  gap: 1.9rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .advantages-list__items {
    width: 100%;
    max-width: 33.5rem;
  }
}

/* ITEM */
.advantages-item {
  background: #ffffff;
  padding: 4rem 0 6.1rem 5rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .advantages-item {
    padding: 1rem 1.6rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.advantages-item__number {
  font-size: 13.4rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  line-height: 13.4rem;
  color: #002777;
  min-width: 17.66rem;
}
@media screen and (max-width: 768px) {
  .advantages-item__number {
    min-width: unset;
    font-size: 8.4rem;
    line-height: 8.4rem;
  }
}

.advantages-item__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advantages-item__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 6rem;
  color: #002777;
  position: relative;
  top: 0.6rem;
}
@media screen and (max-width: 768px) {
  .advantages-item__title {
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
}

.advantages-item__text {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.8rem;
  color: #6c6c6c;
}
@media screen and (max-width: 768px) {
  .advantages-item__text {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}

.partner-banner {
  margin: 0 auto;
  max-width: 144rem;
  background: #3a75bb;
  position: relative;
}

.partner-banner__content {
  max-width: 118rem;
  width: 100%;
  padding: 12.8rem 0 10rem;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .partner-banner__content {
    padding: 4rem 0;
    max-width: 33.5rem;
  }
}

.partner-banner__title {
  font-size: 9.5rem;
  line-height: 11rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 768px) {
  .partner-banner__title {
    font-size: 6.4rem;
    line-height: 6.4rem;
  }
}

.partner-banner__subtitle {
  font-size: 2.4rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  line-height: 3.9rem;
  margin-bottom: 4rem;
}

.partner-banner__desc {
  font-size: 1.8rem;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  line-height: 2.9rem;
  max-width: 66.3rem;
}

.partner-banner__images {
  max-width: 24rem;
  position: absolute;
  overflow: hidden;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}
.partner-banner__images.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .partner-banner__images {
    display: none;
  }
}

.partner-banner__image1 {
  right: 33.2rem;
  top: 16.2rem;
}

.partner-banner__image2 {
  right: 4.2rem;
  top: -4.4rem;
}

.partner-banner__image3 {
  right: 33.2rem;
  bottom: 0;
}

.partner-banner__image4 {
  right: 4.2rem;
  bottom: 5.9rem;
  transform: translateY(-50%);
}

.contact-page__title {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #002777;
  line-height: 4.8rem;
  margin-bottom: 7.8rem;
}
@media screen and (max-width: 768px) {
  .contact-page__title {
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 4.8rem;
  }
}

.contact-container {
  padding: 21.4rem 0 20.1rem !important;
}
.contact-container .contact-header {
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 768px) {
  .contact-container {
    padding-top: 8rem !important;
  }
}

.contact-page__inner {
  width: 100%;
  max-width: 118rem;
  margin: 0 auto;
}

.contact-form {
  width: 100%;
}

.contact-form__container {
  max-width: 96.3rem;
}

.contact-form__group {
  display: flex;
  margin-bottom: 4.2rem;
  align-items: center;
  gap: 3.45rem;
}
@media screen and (max-width: 768px) {
  .contact-form__group {
    flex-direction: column;
    align-items: start;
    margin-bottom: 2rem;
    gap: 1rem;
  }
}
.contact-form__group.contact-form__group--error .contact-form__radio,
.contact-form__group.contact-form__group--error .contact-form__checkbox,
.contact-form__group.contact-form__group--error .contact-form__checkbox-text {
  color: #ff0000;
}
.contact-form__group.contact-form__group--error .contact-form__radio a,
.contact-form__group.contact-form__group--error .contact-form__checkbox a,
.contact-form__group.contact-form__group--error .contact-form__checkbox-text a {
  color: #ff0000;
}

.contact-form__label {
  display: flex;
  max-height: 2.6rem;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
  min-width: 26rem;
  letter-spacing: 0.04em;
}

.contact-form__required {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5rem;
  padding: 0.3rem 1.5rem;
  border-radius: 0.3rem;
  background-color: #002777;
  color: #fff;
}

.contact-form__optional {
  background-color: #2c2c2c;
}

.contact-form__input {
  width: 100%;
  padding: 1.3rem 0 1.4rem 1.7rem;
  color: #6c6c6c;
  line-height: 3.2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 0.1rem solid #fafafa;
  font-size: 1.8rem;
  background: #fafafa;
  letter-spacing: 0.06em;
}

.contact-form__textarea {
  width: 100%;
  height: 30rem;
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid #fafafa;
  font-size: 1.6rem;
  background: #fafafa;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact-form__textarea {
    height: 15rem;
  }
}

.contact-form__radios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__radio {
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.06em;
}
.contact-form__radio input {
  width: 1.6rem;
  height: 1.6rem;
  border: 0.2rem solid #6c6c6c;
}

.contact-form__radio-input {
  accent-color: #002777;
}

.contact-form__privacy {
  margin: 2.4rem 0 4rem;
  font-size: 1.5rem;
}

.contact-form__captcha {
  margin: 2.4rem 0 5.9rem;
  text-align: center;
}

.contact-form__button {
  width: fit-content;
  background: #3a75bb;
  gap: 1.1rem;
  line-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 0.6rem;
  cursor: pointer;
  border: none;
  padding-top: 2.2rem;
  padding-bottom: 2.1rem;
  width: 100%;
}

.contact-form__button-icon {
  width: 100%;
  max-width: 1.7rem;
  height: 1.8rem;
}

.contact-form__button:hover {
  opacity: 0.9;
}

.contact-form__submit {
  margin-top: 2rem;
  max-width: 30.8rem;
  margin: 0 auto;
  position: relative;
  left: -3.3rem;
}
@media screen and (max-width: 768px) {
  .contact-form__submit {
    left: 0;
  }
}

.contact-form__checkbox {
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-form__checkbox {
    flex-wrap: wrap;
  }
}

.contact-form__checkbox-text {
  text-decoration: underline;
  color: #3a75bb;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
}

.contact-form__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__checkbox-custom {
  width: 2.6rem;
  height: 2.6rem;
  border: 0.1rem solid #707070;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-custom {
  border-color: #002777;
  background: #002777;
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-custom::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1.1rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  transform: rotate(45deg);
  left: 50%;
  top: 40%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sitemap-page .sitemap {
  padding: 21.6rem 0;
}

.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18rem 2.4rem;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .error-404 {
    min-height: 60vh;
    padding: 6rem 1.6rem;
  }
}

.error-404__container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.error-404__content {
  text-align: center;
}

.error-404__code {
  font-size: 12rem;
  font-weight: 700;
  color: #003DA3;
  line-height: 1;
  margin-bottom: 2.4rem;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .error-404__code {
    font-size: 8rem;
    margin-bottom: 1.6rem;
  }
}

.error-404__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2c2a2a;
  margin-bottom: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .error-404__title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}

.error-404__message {
  font-size: 1.6rem;
  color: #2c2a2a;
  line-height: 1.8;
  margin-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .error-404__message {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
  }
}

.error-404__actions {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .error-404__actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 4rem;
  }
}

.error-404__links {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(44, 42, 42, 0.1);
}
@media screen and (max-width: 768px) {
  .error-404__links {
    margin-top: 4rem;
    padding-top: 3.2rem;
  }
}

.error-404__links-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2a2a;
  margin-bottom: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .error-404__links-title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}

.error-404__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .error-404__link-list {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.error-404__link-item {
  margin: 0;
}

.error-404__link {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  font-size: 1.6rem;
  color: #003DA3;
  border: 1px solid #003DA3;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}
.error-404__link:hover {
  background-color: #003DA3;
  color: #ffffff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .error-404__link {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 0rem;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 0.8rem;
  }
}

.btn {
  display: inline-block;
  padding: 1.3rem 3.2rem;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

.btn-primary {
  background: #003DA3;
  border: 0.1rem solid #003DA3;
  color: white;
}
.btn-primary:hover {
  background: white;
  color: #003DA3;
}

.btn-secondary {
  background: #3A75BB;
  border: 0.1rem solid #3A75BB;
  color: white;
}
.btn-secondary:hover {
  background: white;
  color: #3A75BB;
}

.btn-white {
  background: white;
  color: #003DA3;
  border: 2px solid #003DA3;
}
.btn-white:hover {
  background: #f5f5f5;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.btn-pill {
  border-radius: 9999px;
}

.page-container {
  width: 100%;
  max-width: 144rem;
  padding: 8.4rem 0 12.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-container {
    max-width: 33.5rem;
    padding-bottom: 8rem;
  }
}

.page-header {
  max-width: 118rem;
  margin: 0 auto;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 768px) {
  .page-header {
    margin-bottom: 3.2rem;
  }
}

.page-inner {
  margin-top: 20.7rem;
}
@media screen and (max-width: 768px) {
  .page-inner {
    margin-top: 10rem;
  }
}

.page-inner__header {
  max-width: 118rem;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .page-inner__header {
    margin-bottom: 4rem;
  }
}

.page-content__title {
  font-size: 4rem;
  line-height: 5.3rem;
  font-weight: 400;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
  margin-bottom: 1.8rem;
  margin-top: 0;
}

.page-content__subtitle {
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
}

.page-title {
  font-size: 8.4rem;
  line-height: 8.4rem;
  font-weight: 400;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
  margin-bottom: 1rem;
  margin-top: 0;
}

.page-subtitle {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 700;
  font-family: "LINE Seed JP", sans-serif;
  color: #002777;
}

.page-banner {
  width: 100%;
  max-width: 144rem;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 2s ease-out;
}
.page-banner.is-visible {
  transform: translateX(0);
  opacity: 1;
}

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