@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  color: #2b3138;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  margin: 0px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
dl,
dd {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

svg {
  fill: none;
}

.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (min-width: 1025px) {
  .u-sp {
    display: none;
  }
}

.u-br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br-sp {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .u-br-sp-hide {
    display: none;
  }
}

.c-eyebrow {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1c3f6e;
  margin-bottom: 12px;
}
.c-eyebrow--sm {
  margin-bottom: 8px;
}

.c-heading {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: clamp(2rem, 1.6478873239rem + 1.5023474178vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
  color: #16305a;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid #16305a;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.btn__arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}
.btn:hover {
  opacity: 0.8;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--navy {
  background: #16305a;
  color: #ffffff;
}
.btn--outline {
  background: #ffffff;
  color: #16305a;
}
.btn--border-sm {
  border: 1px solid #16305a;
  background: #16305a;
  color: #ffffff;
  padding: 13px 26px;
  font-size: 1.4rem;
}
.btn--border-sm:hover {
  opacity: 1;
  background: #ffffff;
  color: #16305a;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  background: #ffffff;
  border-bottom-color: #e3e7ee;
  box-shadow: 0 2px 16px rgba(22, 48, 90, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  width: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
    padding: 0 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  color: #16305a;
  flex-shrink: 0;
  margin-right: auto;
  transition: opacity 0.2s ease;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo-img {
  height: 70px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .header__logo-img {
    height: 50px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .header__right {
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: #ffffff;
    padding: 32px 24px;
    transform: translateY(calc(-100vh - 80px));
    transition: transform 0.3s ease;
    overflow-y: auto;
    pointer-events: none;
  }
  .header__nav.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.header__nav-list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  padding-bottom: 6px;
  text-align: center;
  transition: color 0.2s ease;
}
.header__nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #16305a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header__nav-list li a:hover .header__nav-en,
.header__nav-list li a:hover .header__nav-ja {
  color: #16305a;
}
.header__nav-list li a:hover::after {
  transform: scaleX(1);
}
.header__nav-list li a.is-current .header__nav-en,
.header__nav-list li a.is-current .header__nav-ja {
  color: #16305a;
}
.header__nav-list li a.is-current::after {
  transform: scaleX(1);
}
@media screen and (max-width: 1024px) {
  .header__nav-list li a {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid #e3e7ee;
  }
  .header__nav-list li a::after {
    display: none;
  }
  .header__nav-list li a.is-current {
    border-bottom: 1px solid #16305a;
  }
}
.header__nav-en {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #16305a;
  transition: color 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .header__nav-en {
    font-size: 1.5rem;
  }
}
.header__nav-ja {
  font-size: 1rem;
  font-weight: 400;
  color: #16305a;
  transition: color 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .header__nav-ja {
    font-size: 1.3rem;
  }
}
.header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  color: #16305a;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .header__menu-btn {
    display: flex;
  }
}
.header__menu-icon--close {
  display: none;
}
.header__menu-btn.is-active .header__menu-icon--open {
  display: none;
}
.header__menu-btn.is-active .header__menu-icon--close {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  min-height: max(620px, 100vh);
  min-height: max(620px, 100svh);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .hero {
    min-height: 560px;
    min-height: max(560px, 100vh);
    min-height: max(560px, 100svh);
  }
}
@media screen and (max-width: 767px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    min-height: 100svh;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slides {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 767px) {
  .hero__slide img {
    object-position: center 62%;
  }
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px 40px;
  }
}
.hero__body {
  position: relative;
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .hero__body {
    max-width: none;
    align-self: flex-start;
  }
}
.hero__lead {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  margin-top: 5px;
  font-size: 2.3rem;
  line-height: 1.3;
  color: #16305a;
}
@media screen and (max-width: 767px) {
  .hero__lead {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.hero__lead-seg {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.hero__lead-seg::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(16px);
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .hero__lead-seg::before {
    inset: -3px -5px;
    filter: blur(8px);
    border-radius: 10px;
  }
}
.hero__title {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: clamp(2.375rem, 1.4507042254rem + 3.9436619718vw, 5rem);
  font-weight: 700;
  line-height: 1.45;
  color: #16305a;
  letter-spacing: 0.02em;
}
.hero__title-seg {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.hero__title-seg::before {
  content: "";
  position: absolute;
  inset: -8px -14px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(18px);
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .hero__title-seg::before {
    inset: -3px -5px;
    filter: blur(8px);
  }
}
.hero__title-nowrap {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .hero__title-line2 {
    white-space: nowrap;
  }
}
.hero__btns {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .hero__btns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 10px;
  }
}
.hero__btns .btn {
  min-width: 150px;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  justify-content: center;
}
.hero__btns .btn .btn__arrow svg {
  width: 14px;
  height: 14px;
}
.hero__btns .btn--navy:hover {
  opacity: 1;
  background: #ffffff;
  color: #16305a;
}
@media screen and (max-width: 767px) {
  .hero__btns .btn {
    width: fit-content;
    min-width: 0;
    justify-content: flex-start;
    padding: 4px 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #16305a;
    position: relative;
    z-index: 1;
  }
  .hero__btns .btn::before {
    content: "";
    position: absolute;
    inset: -2px -4px;
    z-index: -1;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(6px);
    border-radius: 8px;
  }
  .hero__btns .btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .hero__btns .btn:hover,
  .hero__btns .btn--navy:hover,
  .hero__btns .btn--outline:hover {
    opacity: 1;
    background: none;
    color: #16305a;
  }
  .hero__btns .btn:hover::after,
  .hero__btns .btn--navy:hover::after,
  .hero__btns .btn--outline:hover::after {
    transform: scaleX(1);
  }
}

.about {
  padding: 100px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 30px 0 0;
  }
}
.about__inner {
  text-align: left;
}
.about__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}
@media screen and (max-width: 1260px) {
  .about__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}
.about__body {
  flex-shrink: 1;
  min-width: 0;
  max-width: 640px;
}
.about__text {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2;
  color: #2b3138;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1.4rem;
  }
}
.about__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about__list {
    gap: 20px;
    row-gap: 28px;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .about__item {
    flex: 0 0 calc(50% - 10px);
  }
}
.about__item:not(:last-child)::after {
  content: "• • • •";
  position: absolute;
  top: 66px;
  left: calc(100% + 18px);
  transform: translateX(-50%);
  width: auto;
  white-space: nowrap;
  color: #b7c4d6;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .about__item:not(:last-child)::after {
    content: "• •";
    top: 44px;
    left: calc(100% + 10px);
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .about__item:nth-child(2)::after {
    display: none;
  }
}
.about__icon {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: #e9f1fb;
  color: #1c3f6e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.about__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .about__icon {
    width: 96px;
    height: 96px;
  }
}
.about__label {
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about__label {
    font-size: 1.2rem;
  }
}

.mission {
  margin-top: 100px;
  background: #d7e7ff;
  padding: 56px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mission {
    margin-top: 64px;
    padding: 40px 0;
  }
}
.mission__text {
  margin-top: 18px;
  font-size: 1.5rem;
  color: #2b3138;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .mission__text {
    font-size: 1.3rem;
  }
}
.mission__br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .mission__br-sp {
    display: inline;
  }
}
.mission__br-tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mission__br-tb {
    display: inline;
  }
}

.business {
  padding: 100px 0;
  text-align: center;
  background: #f6f8fb;
}
@media screen and (max-width: 767px) {
  .business {
    padding: 56px 0;
  }
}
.business__lead {
  margin: 20px auto 0;
  max-width: 620px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #393c42;
}
@media screen and (max-width: 767px) {
  .business__lead {
    margin-top: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.business__list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .business__list {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.business__item {
  position: relative;
  background: #ffffff;
  border: 1px solid #e3e7ee;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(22, 48, 90, 0.05);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.business__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(22, 48, 90, 0.1);
}
@media screen and (max-width: 767px) {
  .business__item {
    padding: 28px 24px 24px;
  }
}
.business__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #16305a;
}
.business__num span {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1c3f6e;
}
.business__img {
  margin-top: 22px;
  width: 100%;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .business__img {
    margin-top: 18px;
  }
}
.business__title {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  margin-top: 22px;
  font-size: 2rem;
  font-weight: 700;
  color: #16305a;
  line-height: 1.5;
}
.business__en {
  margin-top: 4px;
  font-size: 1.2rem;
  color: #393c42;
  letter-spacing: 0.04em;
}
.business__text {
  margin-top: 14px;
  font-size: 1.5rem;
  line-height: 1.85;
  color: #393c42;
  flex: 1;
}
.business__link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16305a;
  transition: color 0.25s ease;
}
.business__link svg {
  transition: transform 0.25s ease;
}
.business__link:hover {
  color: #1c3f6e;
  text-decoration: underline;
}
.business__link:hover svg {
  transform: translateX(4px);
}

.strength {
  padding: 100px 0;
  text-align: center;
  background: #e9f1fb;
}
@media screen and (max-width: 767px) {
  .strength {
    padding: 30px 0;
  }
}
.strength__inner {
  max-width: 1360px;
}
.strength__list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .strength__list {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }
}
.strength__item {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .strength__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: -16px;
    width: 1px;
    background: rgba(22, 48, 90, 0.15);
  }
}
.strength__icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.strength__title {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #16305a;
}
.strength__text {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #393c42;
}

.topmsg-section {
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .topmsg-section {
    padding: 40px 0;
  }
}

.topmsg__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  grid-template-areas: "img body sign";
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  background: #f6f8fb;
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .topmsg__inner {
    grid-template-columns: 160px 1fr;
    grid-template-areas: "img body" "sign sign";
    gap: 16px;
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .topmsg__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body" "sign";
    gap: 16px;
    padding: 28px 15px;
  }
}

.topmsg__img {
  grid-area: img;
  align-self: stretch;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.topmsg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .topmsg__img {
    max-width: 200px;
    height: 240px;
    margin: 0 auto;
  }
}

.topmsg__body {
  grid-area: body;
  max-width: 600px;
  text-align: left;
}

.topmsg__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1c3f6e;
}

.topmsg__title {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #16305a;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .topmsg__title {
    font-size: 2rem;
  }
}

.topmsg__text {
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 1.85;
  color: #393c42;
}
@media screen and (max-width: 767px) {
  .topmsg__text {
    font-size: 1.2rem;
  }
}

.topmsg__btn {
  margin-top: 20px;
  min-width: 0;
  padding: 13px 24px;
  font-size: 1.4rem;
}
.topmsg__btn:hover {
  opacity: 1;
  background: #ffffff;
  color: #16305a;
}

.topmsg__signature {
  grid-area: sign;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .topmsg__signature {
    padding-top: 16px;
    border-top: 1px solid #e3e7ee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.topmsg__signature-role {
  font-size: 1.1rem;
  font-weight: 700;
  color: #393c42;
}
@media screen and (max-width: 1024px) {
  .topmsg__signature-role {
    flex: 0 0 100%;
  }
}

.topmsg__signature-ja {
  margin-top: 4px;
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #16305a;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .topmsg__signature-ja {
    margin-top: 8px;
  }
}

.topmsg__signature-en {
  display: block;
  width: 140px;
  height: auto;
}

.company {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 30px 0;
  }
}
.company__inner {
  max-width: 1100px;
}
.company__content {
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .company__content {
    grid-template-columns: 1fr;
  }
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e3e7ee;
}
.company__table tr {
  border-bottom: 1px solid #e3e7ee;
}
.company__table th,
.company__table td {
  text-align: left;
  font-weight: 500;
  padding: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  vertical-align: top;
}
.company__table th {
  width: 160px;
  color: #16305a;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .company__table th {
    width: 110px;
    padding-left: 0;
    font-size: 1.3rem;
  }
}
.company__table td {
  color: #2b3138;
}
@media screen and (max-width: 767px) {
  .company__table td {
    padding-right: 0;
    font-size: 1.3rem;
  }
}
.company__media {
  text-align: left;
  height: 100%;
}
.company__img {
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.company__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .company__img {
    aspect-ratio: 4/3;
    height: auto;
    max-width: 420px;
    margin: 0 auto;
  }
}

.nc {
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .nc {
    padding: 0 0 30px;
  }
}
.nc__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .nc__inner {
    grid-template-columns: 1fr;
  }
}
.nc__news, .nc__contact {
  background: #ffffff;
  border: 1px solid #e3e7ee;
  border-radius: 5px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .nc__news, .nc__contact {
    padding: 28px 22px;
  }
}
.nc__contact {
  background: #e9f1fb;
}
@media screen and (min-width: 1025px) {
  .nc__contact--split {
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    column-gap: 48px;
    align-items: start;
  }
  .nc__contact--split .nc__contact-text {
    grid-column: 1;
    grid-row: 1;
  }
  .nc__contact--split .nc__contact-list {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }
  .nc__contact--split .nc__tel {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.nc__heading {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.6;
  color: #16305a;
}
@media screen and (max-width: 767px) {
  .nc__heading {
    font-size: 2rem;
  }
}
.nc__heading-seg {
  white-space: nowrap;
}
.nc__news-list {
  margin-top: 24px;
  border-top: 1px solid #e3e7ee;
}
.nc__news-list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e3e7ee;
  font-size: 1.5rem;
}
.nc__news-list li a time {
  color: #393c42;
  flex-shrink: 0;
}
.nc__news-list li a span {
  flex: 1;
}
.nc__news-list li a svg {
  flex-shrink: 0;
  color: #1c3f6e;
}
.nc__news-list li a:hover span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .nc__news-list li a {
    flex-wrap: wrap;
    font-size: 1.25rem;
  }
  .nc__news-list li a span {
    order: 3;
    flex: 1 0 100%;
  }
  .nc__news-list li a svg {
    order: 2;
    margin-left: auto;
  }
}
.nc .btn--border-sm {
  margin-top: 24px;
  min-width: 224px;
  justify-content: center;
}
.nc__contact-lead {
  font-size: 1.8rem;
  color: #393c42;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .nc__contact-lead {
    font-size: 1.5rem;
  }
}
.nc__contact-lead-seg {
  white-space: nowrap;
}
.nc__contact-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .nc__contact-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.nc__contact-item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 10px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #16305a;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.nc__contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(22, 48, 90, 0.1);
  background-color: #fff4e6;
}
@media screen and (min-width: 1025px) {
  .nc__contact-item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .nc__contact-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    padding: 14px 16px;
    font-size: 1.4rem;
    border-radius: 12px;
  }
}
.nc__contact-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .nc__contact-label {
    flex: 1;
    justify-content: space-between;
  }
  .nc__contact-label br {
    display: none;
  }
}
.nc__contact-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16305a;
}
.nc__contact-arrow svg {
  transition: transform 0.2s ease;
}
.nc__contact-item:hover .nc__contact-arrow svg {
  transform: translateX(4px);
}
.nc__contact-icon {
  width: 80px;
  height: 80px;
  color: #1c3f6e;
  background-color: #e9f1fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nc__contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .nc__contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}
.nc__tel {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(22, 48, 90, 0.5);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .nc__tel {
    grid-template-columns: 1fr;
    row-gap: 20px;
    border: none;
    margin-top: 0;
  }
}
.nc__tel-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nc__tel-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #16305a;
}
.nc__tel-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(22, 48, 90, 0.5);
}
@media screen and (max-width: 1024px) {
  .nc__tel-divider {
    display: none;
  }
}
.nc__tel-note {
  font-size: 1.3rem;
  color: #393c42;
}
.nc__tel .nc__tel-note {
  font-size: 1.25rem;
}
.nc__tel-hr {
  display: none;
}
@media screen and (max-width: 1024px) {
  .nc__tel-hr {
    display: block;
    align-self: stretch;
    height: 1px;
    background: rgba(22, 48, 90, 0.5);
  }
}
.nc__tel-mail {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16305a;
  transition: opacity 0.2s ease;
}
.nc__tel-mail:hover {
  opacity: 0.65;
}
.nc__tel-mail svg {
  flex-shrink: 0;
  color: #1c3f6e;
}
@media screen and (max-width: 767px) {
  .nc__tel-mail {
    font-size: 1.3rem;
  }
}
.nc__tel-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 2.5rem;
  font-weight: 700;
  color: #16305a;
  transition: opacity 0.2s ease;
  min-height: 4.5rem;
}
.nc__tel-phone:hover {
  opacity: 0.65;
}
.nc__tel-phone svg {
  flex-shrink: 0;
  color: #1c3f6e;
}
.nc__tel .nc__tel-mail {
  white-space: nowrap;
  gap: 10px;
  font-size: 1.8rem;
  min-height: 4.5rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding-top: 76px;
  background: #f6f8fb;
}
@media screen and (max-width: 1024px) {
  .page-hero {
    padding-top: 76px;
    min-height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .page-hero {
    padding-top: 60px;
    min-height: 220px;
  }
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.page-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 32px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-hero__inner {
    padding: 24px 0;
  }
}
.page-hero__title {
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: clamp(2rem, 1.5598591549rem + 1.8779342723vw, 3.25rem);
  font-weight: 700;
  color: #16305a;
  letter-spacing: 0.02em;
}
.page-hero__label {
  margin: 0;
}
.page-hero__divider {
  display: block;
  width: 48px;
  height: 3px;
  background: #16305a;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.news-list {
  padding: 64px 0 100px;
}
@media screen and (max-width: 767px) {
  .news-list {
    padding: 40px 0 72px;
  }
}
.news-list__inner {
  max-width: 980px;
}
.news-list__filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.news-list__filter-btn {
  padding: 12px 28px;
  border-radius: 5px;
  border: 1px solid #e3e7ee;
  background: #ffffff;
  color: #2b3138;
  font-size: 1.4rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news-list__filter-btn:hover {
  border-color: #16305a;
  color: #16305a;
}
.news-list__filter-btn.is-active {
  background: #16305a;
  border-color: #16305a;
  color: #ffffff;
}
.news-list__filter-btn.is-active:hover {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .news-list__filter-btn {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
}
.news-list__items {
  margin-top: 32px;
  border-top: 1px solid #e3e7ee;
}
.news-list__items li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid #e3e7ee;
}
.news-list__items li a svg {
  flex-shrink: 0;
  color: #1c3f6e;
}
.news-list__items li a:hover .news-list__title {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .news-list__items li a {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 16px 4px;
  }
}
.news-list__items time {
  flex-shrink: 0;
  width: 100px;
  font-size: 1.4rem;
  color: #393c42;
}
@media screen and (max-width: 767px) {
  .news-list__items time {
    width: auto;
    font-size: 1.25rem;
  }
}
.news-list__badge {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  font-size: 1.2rem;
  color: #393c42;
  background: #f6f8fb;
  border-radius: 4px;
  padding: 4px 8px;
}
@media screen and (max-width: 767px) {
  .news-list__badge {
    width: auto;
  }
}
.news-list__title {
  flex: 1;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news-list__title {
    order: 3;
    flex: 1 0 100%;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .news-list__items li a svg {
    order: 2;
    margin-left: auto;
  }
}
.news-list__pager {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.news-list__pager-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #e3e7ee;
  color: #2b3138;
  font-size: 1.4rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news-list__pager-item:hover {
  border-color: #16305a;
  color: #16305a;
}
.news-list__pager-item.is-current {
  background: #16305a;
  border-color: #16305a;
  color: #ffffff;
}
.news-list__pager-item.is-current:hover {
  color: #ffffff;
}

.news-detail {
  padding: 64px 0 100px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding: 40px 0 72px;
  }
}
.news-detail__inner {
  max-width: 980px;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-detail__meta time {
  font-size: 1.4rem;
  color: #393c42;
}
.news-detail__badge {
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  color: #393c42;
  background: #d7e7ff;
  border-radius: 4px;
  padding: 4px 12px;
}
.news-detail__title {
  margin-top: 16px;
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  color: #16305a;
  letter-spacing: 0.02em;
}
.news-detail__image {
  margin-top: 32px;
  border-radius: 4px;
  overflow: hidden;
}
.news-detail__image img {
  width: 100%;
  max-width: 950px;
  height: 480px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .news-detail__image img {
    height: 55vw;
    max-height: 320px;
  }
}
.news-detail__body {
  margin-top: 32px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #2b3138;
}
.news-detail__body p + p {
  margin-top: 1.5em;
}
.news-detail__pager {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #e3e7ee;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .news-detail__pager {
    flex-direction: column;
    gap: 20px;
  }
}
.news-detail__pager-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.2s ease;
}
.news-detail__pager-item:hover {
  opacity: 0.6;
}
.news-detail__pager-item svg {
  flex-shrink: 0;
  color: #1c3f6e;
}
.news-detail__pager-item--next {
  justify-content: flex-end;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .news-detail__pager-item--next {
    justify-content: flex-start;
    text-align: left;
  }
}
.news-detail__pager-item--prev svg {
  transform: scaleX(-1);
}
.news-detail__pager-label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #16305a;
}
.news-detail__pager-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
  font-size: 1.4rem;
  color: #393c42;
}
@media screen and (max-width: 767px) {
  .news-detail__pager-title {
    font-size: 1.3rem;
  }
}
.news-detail__pager-divider {
  width: 1px;
  background: #e3e7ee;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-detail__pager-divider {
    display: none;
  }
}
.news-detail__back {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.top-message {
  padding: 80px 0 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-message {
    padding: 48px 0 72px;
  }
}
.top-message__grid {
  display: grid;
  grid-template-columns: 3fr minmax(280px, 2fr);
  align-items: stretch;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .top-message__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.top-message__heading {
  margin-bottom: 32px;
  font-size: clamp(2.25rem, 1.8538732394rem + 1.6901408451vw, 3.375rem);
}
@media screen and (max-width: 767px) {
  .top-message__heading {
    margin-bottom: 24px;
  }
}
.top-message__body {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #2b3138;
}
@media screen and (max-width: 767px) {
  .top-message__body {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}
.top-message__body .br-sp {
  display: none;
}
@media screen and (max-width: 400px) {
  .top-message__body .br-sp {
    display: inline;
  }
}
.top-message__company {
  font-size: 1.5rem;
  font-weight: 700;
  color: #16305a;
}
.top-message__name {
  font-size: 1.4rem;
  color: #393c42;
}
.top-message__name-text {
  font-size: 1.9rem;
  font-weight: 700;
  color: #16305a;
}
.top-message__photo {
  position: relative;
  justify-self: end;
  width: 100%;
  min-height: 0;
}
.top-message__photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .top-message__photo {
    justify-self: center;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4/5;
  }
}
.top-message__sign-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 3fr minmax(280px, 2fr);
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .top-message__sign-row {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
.top-message__sign {
  grid-column: 2;
  font-family: "Hiragino Mincho ProN", "YuMincho Demibold", "Yu Mincho Demibold", "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .top-message__sign {
    grid-column: 1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

.contact-form {
  padding: 56px 0 100px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 40px 0 72px;
  }
}
.contact-form__inner {
  max-width: 900px;
}
.contact-form__lead {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #16305a;
}
@media screen and (max-width: 767px) {
  .contact-form__lead {
    font-size: 1.3rem;
  }
}
.contact-form__card {
  margin-top: 32px;
  padding: 40px 48px;
}
@media screen and (max-width: 767px) {
  .contact-form__card {
    padding: 28px 22px;
  }
}
.contact-form__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
}
.contact-form__row:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 0;
  }
}
.contact-form__label {
  flex-shrink: 0;
  width: 210px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #16305a;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    width: auto;
    padding-top: 0;
    font-size: 1.4rem;
  }
}
.contact-form__required {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #16305a;
  background: transparent;
  border: 1px solid #16305a;
  border-radius: 4px;
  padding: 2px 8px;
}
.contact-form__field {
  flex: 1;
  min-width: 0;
}
.contact-form__radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .contact-form__radio-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 0;
  }
}
.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  color: #2b3138;
  cursor: pointer;
}
.contact-form__radio input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #16305a;
  flex-shrink: 0;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e3e7ee;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 1.45rem;
  font-family: inherit;
  color: #2b3138;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #393c42;
  opacity: 0.6;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #1c3f6e;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}
.contact-form__agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 1.4rem;
  color: #2b3138;
  cursor: pointer;
}
.contact-form__agree input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #16305a;
  flex-shrink: 0;
}
.contact-form__agree a {
  color: #1c3f6e;
  text-decoration: underline;
}
.contact-form__agree a:hover {
  opacity: 0.7;
}
.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 320px;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 18px 24px;
  font-size: 1.6rem;
}
.contact-form__tel {
  margin-top: 32px;
  border: 1px solid #e3e7ee;
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  .contact-form__tel {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-form__tel.nc__tel {
    margin-top: 32px;
  }
}
.contact-form__turnstile {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.footer {
  background: #16305a;
  color: #ffffff;
  padding-top: 64px;
}
.footer__inner {
  max-width: 1200px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
.footer__brand {
  flex-shrink: 0;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 120px;
  width: 240px;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    justify-content: center;
    padding-left: 10px;
  }
}
.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__copy-text {
  margin-top: 5px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.footer__social-link:hover {
  opacity: 0.65;
  border-color: rgba(255, 255, 255, 0.6);
}
.footer__social-icon {
  width: 100%;
  height: 100%;
}
.footer__nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .footer__nav ul {
    display: flex;
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    gap: 28px;
  }
}
.footer__nav li {
  margin-bottom: 14px;
}
@media screen and (min-width: 1025px) {
  .footer__nav li {
    margin-bottom: 0;
  }
}
.footer__nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer__nav a:hover {
  color: #ffffff;
}
.footer__nav a:hover::after {
  transform: scaleX(1);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer__legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}/*# sourceMappingURL=style.css.map */
/* ===== Contact Form 7 デザイン調整（元のcontact-formデザインに合わせる） ===== */
.contact-form__radio-grid .wpcf7-list-item {
  margin: 0;
}
.contact-form__radio-grid .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  color: #2b3138;
  cursor: pointer;
}
.contact-form__radio-grid input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #16305a;
  flex-shrink: 0;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form .wpcf7-form-control-wrap[data-name="agree"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
}
.contact-form .wpcf7-form-control-wrap[data-name="agree"] .wpcf7-form-control,
.contact-form .wpcf7-form-control-wrap[data-name="agree"] .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
}
.contact-form .wpcf7-form-control-wrap[data-name="agree"] label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #2b3138;
  cursor: pointer;
}
.contact-form .wpcf7-form-control-wrap[data-name="agree"] input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #16305a;
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form .wpcf7-form-control-wrap[data-name="agree"] a {
  color: #1c3f6e;
  text-decoration: underline;
}
.contact-form .wpcf7-form-control-wrap[data-name="agree"] a:hover {
  opacity: 0.7;
}
.contact-form__submit.wpcf7-submit {
  cursor: pointer;
  border: 1px solid #16305a;
}
.contact-form__submit.wpcf7-submit::after {
  content: "→";
  margin-left: 4px;
}
.contact-form__submit.wpcf7-submit:hover {
  opacity: 1;
  background: #ffffff;
  color: #16305a;
}
.news-detail__back .btn:hover {
  opacity: 1;
  background: #ffffff;
  color: #16305a;
}
.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  color: #c0392b;
}
.contact-form .wpcf7-response-output {
  margin: 24px auto 0;
  max-width: 700px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}
.contact-form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}
