/* 個々のパーツのスタイル指定
ページごとの個別cssファイル設定は控える
原則としてhtmlルールで述べたid（html, section）が付くセレクタで指定する */

/* ■■■■■■ Header（#header） ■■■■■■ */
#_ #header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  background-color: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
#_ #header .section-inner {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 96%;
  max-width: 1380px;
}
#_ #header .header-logo {
  max-width: 321px;
}
#_ #header .header-logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
#_ #header .header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.6rem;
  flex-wrap: nowrap;
}
#_ #header .header-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.8rem;
}
#_ #header .header-nav-item a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.1875;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
  padding: 1em 0;
}
#_ #header .header-nav-item a:hover {
  color: var(--blue);
}
@media (min-width: 768px) {
  #_ #header .header-nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.6em;
    width: 100%;
    height: 1px;
    background-color: var(--blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-in-out;
  }
  #_ #header .header-nav-item a:hover::after {
    transform: scaleX(1);
  }
}

#_ #header .header-nav-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.1875;
  padding: 1.2rem 2.8rem 1.2rem 2.1rem;
  border-radius: 50px;
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
  white-space: nowrap;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
#_ #header .header-nav-btn-icon {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 2.3rem;
  height: 1.9rem;
}
#_ #header .header-nav-btn-icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.3s ease-in-out;
}
#_ #header .header-nav-btn-icon-img-hover {
  opacity: 0;
}
#_ #header .header-nav-btn a:hover .header-nav-btn-icon-img-default {
  opacity: 0;
}
#_ #header .header-nav-btn a:hover .header-nav-btn-icon-img-hover {
  opacity: 1;
}
#_ #header .header-nav-btn a:hover {
  background-color: var(--white);
  color: var(--blue);
}
#_ #header .header-nav-cta {
  display: none;
}
#_ #header .header-btn {
  width: 4rem;
  height: 3.6rem;
  position: relative;
  display: none;
  cursor: pointer;
}
#_ #header .header-btn .bar {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--black);
  transition: background-color 0.3s ease-in-out;
  position: absolute;
  transition: transform 0.3s ease-in-out;
}
#_ #header .header-btn .bar:nth-child(1) {
  top: 0;
  transform-origin: left top;
}
#_ #header .header-btn .bar:nth-child(2) {
  top: 0.8rem;
}
#_ #header .header-btn .bar:nth-child(3) {
  top: 1.6rem;
  transform-origin: left bottom;
}
#_ #header .header-btn .text {
  font-family: var(--font-family-poppins);
  font-size: 1.2rem;
  color: var(--black);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
#_ #header .header-btn .text.menu {
  display: block;
}
#_ #header .header-btn .text.close {
  display: none;
}
@media (max-width: 767px) {
  #_ #header .section-inner {
    padding: 0;
    width: 89.333%;
  }
  #_ #header .header-logo {
    max-width: 221px;
  }
  #_ #header .header-nav {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 70px);
    overflow-y: auto;
    background-color: var(--white);
    padding: 2.4rem 5.333% 4rem;
    z-index: 100;
    gap: 5.75rem;
  }
  #_ #header .header-nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  #_ #header .header-nav-item {
    width: 100%;
    border-bottom: 1px dashed var(--black);
  }
  #_ #header .header-nav-item a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    padding: 3.2rem 0.4rem;
  }
  #_ #header .header-nav-item a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    width: 1rem;
    height: 1rem;
    border-top: 2px solid var(--black);
    border-right: 2px solid var(--black);
    transform: translateY(-50%) rotate(45deg);
  }
  #_ #header .header-nav-item a:hover {
    color: var(--black);
  }
  #_ #header .header-nav-btn {
    display: none;
  }
  #_ #header .header-nav-cta {
    display: inline-flex;
    width: min(100%, 32rem);
    min-height: 6.4rem;
    margin: auto auto 0;
    padding: 1.4rem 2rem;
  }
  #_ #header .header-nav-cta .fv-btn-main {
    font-size: 1.8rem;
  }
  #_ #header .header-btn {
    display: block;
  }
  #_ #header.is-open .header-nav {
    display: flex;
  }
  #_ #header.is-open .header-btn .bar {
    width: 120%;
  }
  #_ #header.is-open .header-btn .bar:nth-child(1) {
    transform: rotate(20deg);
  }
  #_ #header.is-open .header-btn .bar:nth-child(2) {
    opacity: 0;
  }
  #_ #header.is-open .header-btn .bar:nth-child(3) {
    transform: rotate(-20deg);
  }
  #_ #header.is-open .header-btn .text.menu {
    display: none;
  }
  #_ #header.is-open .header-btn .text.close {
    display: block;
  }
}

/* ■■■■■■ FV（.fv） ■■■■■■ */
#_ #fv {
  position: relative;
  overflow: hidden;
  min-height: 56rem;
}
#_ #fv .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 8rem 0;
  margin: 0 auto;
}
#_ #fv .fv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#_ #fv .fv-bg-left {
  position: absolute;
  inset: 0;
  background-image: url('../img/fv-bg-hud.png');
  background-image: image-set(
    url('../img/fv-bg-hud.png') 1x,
    url('../img/fv-bg-hud@2x.png') 2x
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  opacity: 0.25;
  z-index: 2;
}
#_ #fv .fv-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  background-color: #8eb5c9;
  background-image: url('../img/fv-bg-photo.jpg');
  background-image: image-set(
    url('../img/fv-bg-photo.jpg') 1x,
    url('../img/fv-bg-photo@2x.jpg') 2x
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
#_ #fv .fv-bg-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--blue);
  opacity: 0.04;
  z-index: 2;
}
#_ #fv .fv-copyright {
  position: absolute;
  right: 3.2rem;
  bottom: 2rem;
  font-family: var(--font-family-gothic);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--white);
  z-index: 1;
}
#_ #fv .fv-catch {
  font-family: var(--font-family-mincho);
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1.63;
  letter-spacing: 0.02em;
  margin-bottom: 2.3rem;
}
#_ #fv .fv-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
#_ #fv .fv-title-line {
  font-family: var(--font-family-gothic);
  display: inline-block;
  padding: 0 2.5rem 0 0.7rem;
  background-color: var(--blue);
  color: var(--white);
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1.3538;
  text-shadow: 0 4px 8px rgba(27, 53, 99, 0.2);
}
#_ #fv .fv-lead {
  font-family: var(--font-family-gothic);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 2.09677;
  color: var(--blue);
  margin-bottom: 6.9rem;
}
.fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 48.6rem);
  min-height: 9.7rem;
  padding: 1.6rem 1.6rem 1.6rem 3.2rem;
  border-radius: 999px;
  background-color: var(--fv-lime);
  color: var(--white);
  box-shadow: 0 4px 4px 0 rgba(139, 130, 1, 0.6);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.fv-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.fv-btn-label {
  font-size: 1.8rem;
  font-weight: bold;
}
.fv-btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}
.fv-btn-main {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.fv-btn-deadline {
  font-size: 1.8rem;
}
.fv-btn-closed {
  justify-content: center;
}
.fv-btn-closed .fv-btn-text {
  align-items: center;
}
.fv-btn-closed .fv-btn-main {
  font-size: 2.8rem;
  line-height: 1.2;
}
.fv-btn-closed .fv-btn-icon {
  display: none;
}
.fv-btn-icon img {
  width: 3.5rem;
  height: 3.5rem;
}
@media (max-width: 767px) {
  #_ #fv {
    position: relative;
    display: block;
    min-height: auto;
    background-color: #e7eaee;
  }
  #_ #fv .fv-bg {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
  }
  #_ #fv .fv-bg-left {
    display: block;
    inset: 0;
    background-position: center;
    opacity: 0.2;
    z-index: 3;
    background-image: url('../img/fv-bg-hud-sp.png');
    background-image: image-set(
      url('../img/fv-bg-hud-sp.png') 1x,
      url('../img/fv-bg-hud-sp@2x.png') 2x
    );
  }
  #_ #fv .fv-bg-right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 72%, 100% 60%, 100% 100%, 0 100%);
    z-index: 2;
  }
  #_ #fv .fv-bg-network {
    z-index: 1;
  }
  #_ #fv .section-inner {
    position: relative;
    z-index: 1;
    width: 89.333%;
    padding: 3.8rem 0 4.6rem;
  }
  #_ #fv .fv-copyright {
    width: 100%;
    right: 0;
    bottom: 1.2rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    z-index: 4;
  }
  #_ #fv .fv-catch {
    font-size: 1.8rem;
    margin-bottom: 1.1rem;
  }
  #_ #fv .fv-title {
    gap: 0.6rem;
    margin-bottom: 1.6rem;
  }
  #_ #fv .fv-title-line {
    font-size: 2.55rem;
    padding: 0.5rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  #_ #fv .fv-lead {
    font-size: 1.7rem;
    margin-bottom: 11rem;
  }
  .fv-btn {
    width: 100%;
    min-height: 7.2rem;
    padding: 1.4rem 1.4rem 1.4rem 2rem;
    gap: 1.2rem;
  }
  .fv-btn-label {
    font-size: 1.2rem;
  }
  .fv-btn-main {
    font-size: 1.6rem;
  }
  .fv-btn-deadline {
    font-size: 1.4rem;
  }
  .fv-btn-icon {
    width: 4rem;
    height: 4rem;
  }
  .fv-btn-closed .fv-btn-main {
    font-size: 2.4rem;
  }
  #_ #fv .fv-btn {
    display: flex;
    width: 31.2rem;
    max-width: 100%;
    min-height: 5.8rem;
    height: 5.8rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }
  #_ #fv .fv-btn-closed .fv-btn-main {
    font-size: 1.7rem;
  }
}

/* ■■■■■■ Vision（#vision） ■■■■■■ */
#_ #vision {
  overflow: hidden;
}
#_ #vision .vision-inner {
  padding-bottom: 3rem;
}
#_ #vision .vision-box {
  display: flex;
  justify-content: space-between;
}
#_ #vision .vision-imgbox {
  width: 54.54%;
}
#_ #vision .vision-img {
  width: 100%;
  border-radius: 7px;
}
#_ #vision .vision-text {
  width: 40%;
}
#_ #vision .vision-title {
  text-align: left;
}
#_ #vision .vision-subtitle {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}
#_ #vision .vision-subtitle::before {
  content: '';
  display: block;
  width: 14rem;
  height: 1px;
  background-color: var(--black);
}
#_ #vision .vision-lead {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
#_ #vision .vision-info {
  font-size: 1.8rem;
  line-height: 1.7222;
}
#_ #vision .vision-move {
  display: flex;
  width: max-content;
  font-family: var(--font-family-montserrat);
  font-size: 12rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
  animation: vision-move-scroll 24s linear infinite;
}
#_ #vision .vision-move-text {
  padding-right: 0.5em;
}
@keyframes vision-move-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  #_ #vision .vision-move {
    animation: none;
  }
}
@media (max-width: 767px){
  #_ #vision .vision-box {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  #_ #vision .vision-imgbox {
    width: 100%;
  }
  #_ #vision .vision-text {
    width: 100%;
  }
  #_ #vision .vision-subtitle {
    margin-left: 0;
  }
  #_ #vision .vision-subtitle::before {
    display: none;
  }
  #_ #vision .vision-lead {
    font-size: 1.8rem;
    line-height: 1.8333;
    margin-bottom: 2rem;
  }
  #_ #vision .vision-info {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  #_ #vision .vision-move {
    font-size: 4rem;
  }
}

/* ■■■■■■ Support（.support） ■■■■■■ */
#_ #support {
  position: relative;
  background-color: var(--gray);
  overflow: hidden;
}
#_ #support::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/support-bg-network.svg') no-repeat center / cover;
  pointer-events: none;
}
#_ #support .support-inner {
  padding: 13rem 0 16rem;
  position: relative;
  z-index: 1;
}
#_ #support .support-head {
  text-align: center;
  margin-bottom: 10.8rem;
}
#_ #support .support-title {
  gap: 9.6rem 4.8rem;
}
#_ #support .support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9.6rem 4.8rem;
}
#_ #support .support-item {
  text-align: center;
}
#_ #support .support-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto 3.8rem;
  max-width: 30rem;
}
#_ #support .support-num {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -25%);
  font-size: 7.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  padding-top: 0.4rem;
  margin-right: -0.8rem;
}
#_ #support .support-icon img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
#_ #support .support-item-title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--blue);
}
#_ #support .support-item-text {
  font-size: 1.8rem;
  line-height: 1.8333;
  text-align: center;
}
@media (max-width: 767px) {
  #_ #support::before {
    background-image: url('../img/support-bg-network-sp.svg');
    height: 300px;
    top: -3.5rem;
  }
  #_ #support .support-inner {
    padding: 6rem 0;
  }
  #_ #support .support-head {
    margin-bottom: 3.2rem;
  }
  #_ #support .support-list {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
  #_ #support .support-visual {
    max-width: 24rem;
    margin-bottom: 1.6rem;
  }
  #_ #support .support-num {
    font-size: 3.4rem;
    left: 5.5rem;
  }
  #_ #support .support-icon {
    width: 12.5rem;
    height: 12.5rem;
  }
  #_ #support .support-item-title {
    font-size: 1.6rem;
  }
  #_ #support .support-item-text {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}

/* ■■■■■■ Apply（.apply） ■■■■■■ */
#_ #apply {
  background-color: var(--white);
}
#_ #apply .apply-inner {
  padding-top: 11.3rem;
  padding-bottom: 0;
  max-width: 1056px;
}
#_ #apply .apply-head {
  text-align: center;
  margin-bottom: 1rem;
}
#_ #apply .apply-title {
  margin-bottom: 1.6rem;
}
#_ #apply .apply-lead {
  margin-bottom: 0;
}
#_ #apply .apply-target {
  display: flex;
  gap: 2.8rem;
  margin-bottom: 6.4rem;
  padding-left: 102px;
}
#_ #apply .apply-target-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background-color: #f0f2f5;
}
#_ #apply .apply-target-visual img {
  width: 92%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
#_ #apply .apply-target-body {
  flex: 1;
  padding-top: 3.5rem;
}
#_ #apply .apply-target-title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
#_ #apply .apply-target-list {
  list-style: none;
  counter-reset: apply-target;
}
#_ #apply .apply-target-list li {
  position: relative;
  padding-left: 2.7rem;
  font-size: 1.8rem;
  line-height: 1.875;
}
#_ #apply .apply-target-list li + li {
  margin-top: 1.2rem;
}
#_ #apply .apply-target-list li::before {
  /* counter-increment: apply-target;
  content: counter(apply-target) "."; */
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--black);
}
#_ #apply .apply-process {
  margin-bottom: 7.2rem;
}
#_ #apply .apply-process-lead,
#_ #apply .apply-consult-lead {
  font-size: 2.1rem;
  line-height: 1.875;
  font-weight: bold;
  text-align: center;
}
#_ #apply .apply-process-lead {
  margin-bottom: 3rem;
}
#_ #apply .apply-consult-lead {
  margin-bottom: 3.8rem;
}
#_ #apply .apply-flow-wrap {
  position: relative;
}
#_ #apply .apply-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 3.2rem 0 1.6rem;
  max-width: 100%;
  margin: 0 auto 3.2rem;
}
#_ #apply .apply-flow-item {
  flex: 0 0 auto;
  text-align: center;
}
#_ #apply .apply-flow-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}
#_ #apply .apply-flow-arrow img {
  display: block;
  width: 9.3rem;
  height: auto;
}
#_ #apply .apply-flow-circle {
  position: relative;
  width: 25rem;
  height: 25rem;
  margin: 0 auto;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 2rem 1.7rem;
}
#_ #apply .apply-flow-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.3rem;
  height: 6.3rem;
  border-radius: 50%;
  background-color: var(--blue);
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
#_ #apply .apply-flow-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
#_ #apply .apply-flow-text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue);
}
#_ #apply .apply-flow-text-sub {
  font-size: 2rem;
  font-weight: 700;
}
#_ #apply .apply-flow-note {
  width: 92%;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: right;
  margin: 0 auto;
}
#_ #apply .apply-deadline {
  max-width: 48.6rem;
  margin: 0 auto;
}
#_ #apply .apply-deadline-box {
  padding: 3rem 2rem 2rem;
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
}
#_ #apply .apply-deadline-label {
  display: inline-block;
  width: 100%;
  max-width: 374px;
  padding: 0 2.4rem;
  border-radius: 2px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.667;
  margin-bottom: 1.2rem;
  background-color: var(--white);
  color: var(--blue);
}
#_ #apply .apply-deadline-date {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#_ #apply .apply-deadline-year {
  font-size: 2.1rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #_ #apply .apply-inner {
    padding-top: 7.3rem;
  }
  #_ #apply .apply-head {
    margin-bottom: 1.9rem;
  }
  #_ #apply .apply-title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
  }
  #_ #apply .apply-lead {
    font-size: 1.6rem;
  }
  #_ #apply .apply-target {
    position: relative;
    margin-bottom: 9.6rem;
    padding-left: 0;
  }
  #_ #apply .apply-target-visual {
    width: 5.7rem;
    height: 5.7rem;
    position: absolute;
    top: 4rem;
    left: 0;
  }
  #_ #apply .apply-target-body {
    padding-top: 0;
  }
  #_ #apply .apply-target-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  #_ #apply .apply-target-list {
    padding-left: 7.2rem;
  }
  #_ #apply .apply-target-list li {
    font-size: 1.6rem;
    padding: 0;
  }
  #_ #apply .apply-target-list li::before {
    position: static;
    display: inline-block;
    margin-right: 0.5rem;
  }
  #_ #apply .apply-process {
    margin-bottom: 1.7rem;
  }
  #_ #apply .apply-process-lead {
    font-size: 1.8rem;
    margin-bottom: 1.7rem;
    line-height: 1.388;
  }
  #_ #apply .apply-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    justify-items: center;
    column-gap: 0;
    row-gap: 0;
    padding: 1.6rem 0 0;
    margin-bottom: 1.5rem;
  }
  #_ #apply .apply-flow-wrap {
    max-width: 298px;
    margin: 0 auto;
  }
  #_ #apply .apply-flow-item {
    max-width: 100%;
  }
  #_ #apply .apply-flow > li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  #_ #apply .apply-flow > li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  #_ #apply .apply-flow > li:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  #_ #apply .apply-flow > li:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: center;
    margin: 0.2rem 0 0 -1.5rem;
  }
  #_ #apply .apply-flow > li:nth-child(5) {
    grid-column: 1 / 4;
    grid-row: 3;
    margin-top: -1.5rem;
  }
  #_ #apply .apply-flow-arrow img {
    width: 3.6rem;
    transform: rotate(0deg);
  }
  #_ #apply .apply-flow > li:nth-child(4) img {
    transform: rotate(135deg);
    width: 4.1rem;
  }
  #_ #apply .apply-flow-circle {
    width: 13rem;
    height: 13rem;
    border-width: 4px;
    gap: 0.6rem;
    padding: 2rem 0.8rem 1rem;
  }
  #_ #apply .apply-flow-num {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  #_ #apply .apply-flow > li:nth-child(1) .apply-flow-icon img {
    width: 5.25rem;
  }
  #_ #apply .apply-flow > li:nth-child(3) .apply-flow-icon img {
    width: 4.6rem;
  }
  #_ #apply .apply-flow > li:nth-child(5) .apply-flow-icon img {
    width: 6.7rem;
  }
  #_ #apply .apply-flow-text {
    font-size: 1.8rem;
    line-height: 1;
  }
  #_ #apply .apply-flow-text-sub {
    font-size: 1.2rem;
  }
  #_ #apply .apply-flow-note {
    text-align: center;
    margin-top: 1.5rem;
  }
  #_ #apply .apply-consult-lead {
    font-size: 1.6rem;
    line-height: 1.388;
    margin-bottom: 1.6rem;
  }
  #_ #apply .apply-deadline-box {
    padding: 1.4rem 1.6rem 1.2rem;
    max-width: 300px;
    margin: 0 auto;
  }
  #_ #apply .apply-deadline-label {
    font-size: 1.6rem;
    line-height: 1.5625;
    padding: 0rem 1.1rem;
    max-width: 230px;
    margin-bottom: 0.9rem;
  }
  #_ #apply .apply-deadline-date {
    font-size: 2.4rem;
  }
  #_ #apply .apply-deadline-year {
    font-size: 1.6rem;
  }
  .apply-btn {
    display: flex;
    width: 31.2rem;
    max-width: 100%;
    min-height: 5.8rem;
    height: 5.8rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }
  .apply-btn .fv-btn-main {
    font-size: 1.7rem;
  }
}

/* ■■■■■■ CTA（.cta） ■■■■■■ */
#_ #cta {
  text-align: center;
}
#_ #cta .section-inner {
  padding-top: 9rem;
  padding-bottom: 13.6rem;
}
#_ #cta .cta-lead {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}
#_ #cta .cta-btn {
  margin: 0 auto;
}
@media (max-width: 767px) {
  #_ #cta .section-inner {
    padding-top: 7rem;
    padding-bottom: 7.5rem;
  }
  #_ #cta .cta-lead {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* ■■■■■■ scientists（.scientists） ■■■■■■ */
#_ #scientists {
  position: relative;
  overflow: hidden;
}
#_ #scientists .scientists-bg {
  position: absolute;
  inset: 0;
  background-color: #8eb5c9;
  background-image: url('../img/scientists-bg.jpg');
  background-image: image-set(
    url('../img/scientists-bg.jpg') 1x,
    url('../img/scientists-bg@2x.jpg') 2x
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.75;
}
#_ #scientists .scientists-inner {
  position: relative;
  z-index: 1;
  max-width: 1226px;
  padding-top: 10rem;
  padding-bottom: 7.9rem;
}
#_ #scientists .section-title {
  padding-left: 0;
  text-align: center;
  color: var(--black);
}
#_ #scientists .section-title::before {
  display: none;
}
#_ #scientists .scientists-head {
  margin-bottom: 5.5rem;
}
#_ #scientists .scientists-lead {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
}
#_ #scientists .scientists-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.2rem;
}
#_ #scientists .scientists-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
#_ #scientists .scientists-track {
  --scientists-track-gap: 3.2rem;
  display: flex;
  gap: var(--scientists-track-gap);
  list-style: none;
  transition: transform 0.45s ease;
  will-change: transform;
}
#_ #scientists .scientists-slide {
  /* 3枚表示: gapは2箇所 → 100% − (gap × 2) */
  flex: 0 0 calc((100% - (var(--scientists-track-gap) * 2)) / 3);
  min-width: 0;
}
#_ #scientists .scientists-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.3s ease-in-out;
}
#_ #scientists .scientists-nav:hover:not(:disabled) {
  opacity: 0.5;
}
#_ #scientists .scientists-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
#_ #scientists .scientists-nav img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
#_ #scientists .scientists-card {
  height: 100%;
  padding: 2.8rem 1.4rem 3.7rem;
  border-radius: 0.8rem;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#_ #scientists .scientists-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 8rem;
  margin-bottom: 1.6rem;
  background-color: #e8e8e8;
}
#_ #scientists .scientists-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#_ #scientists .scientists-card-name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5556;
  color: var(--blue);
  margin-bottom: 2rem;
}
#_ #scientists .scientists-card-block + .scientists-card-block {
  margin-top: 2rem;
}
#_ #scientists .scientists-card-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
#_ #scientists .scientists-card-text {
  font-size: 1.8rem;
  line-height: 1.38889;
}
#_ #scientists .scientists-pager {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 2.4rem;
}
#_ #scientists .scientists-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
#_ #scientists .scientists-dot {
  width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.5;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
#_ #scientists .scientists-dot.is-active {
  opacity: 1;
}
#_ #scientists .scientists-fraction {
  font-family: var(--font-family-gothic);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--black);
}
#_ #scientists .scientists-copyright {
  font-family: var(--font-family-gothic);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--white);
  text-align: right;
  letter-spacing: 0.02em;
  position: absolute;
  bottom: 4.3rem;
  right: 3rem;
}
@media (max-width: 1023px) {
  #_ #scientists .scientists-slide {
    /* 2枚表示: gapは1箇所 → 100% − gap */
    flex: 0 0 calc((100% - var(--scientists-track-gap)) / 2);
  }
}
@media (max-width: 767px) {
  #_ #scientists .scientists-inner {
   padding-top: 5.4rem;
   padding-bottom: 5rem; 
  }
  #_ #scientists .scientists-head {
    margin-bottom: 3.2rem;
  }
  #_ #scientists .scientists-title {
    font-size: 3.2rem;
  }
  #_ #scientists .scientists-lead {
    font-size: 1.6rem;
  }
  #_ #scientists .scientists-slider {
    margin: 0 calc(50% - 50vw);
    gap: 1.6rem;
    justify-content: center;
    margin-bottom: 2.4rem;
  }
  #_ #scientists .scientists-viewport {
    order: 0;
    flex: 0 0 100%;
  }
  #_ #scientists .scientists-nav {
    order: 1;
    width: 2.5rem;
    height: 2.5rem;
  }
  #_ #scientists .scientists-nav-next {
    order: 3;
  }
  #_ #scientists .scientists-pager {
    order: 2;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  #_ #scientists .scientists-dots {
    margin-bottom: 0;
  }
  #_ #scientists .scientists-dot {
    width: 0.7rem;
    height: 0.7rem;
  }
  #_ #scientists .scientists-slide {
    flex: 0 0 100%;
  }
  #_ #scientists .scientists-track {
    --scientists-track-gap: 0.7rem;
    padding: 0 4%;
  }
  #_ #scientists .scientists-card {
    padding: 4.8rem 3.2rem;
  }
  #_ #scientists .scientists-card-head {
    display: flex;
    align-items: center;
    gap: 3.6rem;
    margin-bottom: 2rem;
  }
  #_ #scientists .scientists-card-logo {
    width: 4rem;
    height: 3.5rem;
    margin-bottom: 0;
  }
  #_ #scientists .scientists-card-name {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  #_ #scientists .scientists-card-heading {
    font-size: 1.6rem;
  }
  #_ #scientists .scientists-card-text {
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  #_ #scientists .scientists-copyright {
    font-size: 1.2rem;
    bottom: 2rem;
  }
}

/* ■■■■■■ Event（.event） ■■■■■■ */
#_ #event {
  background-color: #fff;
}
#_ #event .event-inner {
  padding-top: 10.7rem;
  padding-bottom: 7.3rem;
  max-width: 1038px;
}
#_ #event .event-head {
  text-align: center;
  margin-bottom: 9.1rem;
}
#_ #event .event-body {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 5rem;
}
#_ #event .event-info {
  flex: 1;
  min-width: 0;
}
#_ #event .event-info-row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
#_ #event .event-info-row + .event-info-row {
  margin-top: 1.3rem;
}
#_ #event .event-info-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.5rem;
  padding: 0.4rem 0.5rem;
  background-color: var(--gray);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
#_ #event .event-info-value {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.75;
}
#_ #event .event-info-link {
  color: var(--black);
  text-decoration: underline;
  word-break: break-all;
  transition: opacity 0.3s ease-in-out;
}
#_ #event .event-info-link:hover {
  opacity: 0.6;
}
#_ #event .event-visual {
  flex-shrink: 0;
  width: 45%;
  overflow: hidden;
}
#_ #event .event-visual img {
  width: 100%;
  max-width: 35.5rem;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 7px;
  object-fit: cover;
}
#_ #event .event-cta {
  text-align: center;
}
#_ #event .event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: min(100%, 56.2rem);
  min-height: 9.7rem;
  padding: 1.6rem 1.6rem 1.6rem 3.2rem;
  border-radius: 999px;
  background-color: var(--fv-lime);
  color: var(--white);
  box-shadow: 0 4px 4px 0 rgba(139, 130, 1, 0.6);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  margin: 0 auto;
}
#_ #event .event-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
#_ #event .event-btn-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#_ #event .event-btn-main {
  font-size: 2.4rem;
}
#_ #event .event-btn-deadline {
  display: block;
  font-size: 1.9rem;
  margin-top: 1rem;
}
#_ #event .event-btn-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  color: var(--white);
}
#_ #event .event-btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 767px) {
  #_ #event .event-inner {
    padding-top: 4.8rem;
    padding-bottom: 6.4rem;
  }
  #_ #event .event-head {
    margin-bottom: 3.2rem;
  }
  #_ #event .event-title {
    font-size: 3.2rem;
  }
  #_ #event .event-body {
    flex-direction: column;
    gap: 3.6rem;
    margin-bottom: 3.2rem;
  }
  #_ #event .event-info-row {
    gap: 1rem;
  }
  #_ #event .event-info-label {
    font-size: 1.6rem;
    width: 14.8rem;
    min-height: auto;
    padding: 0.5rem 0;
  }
  #_ #event .event-info-value {
    min-height: auto;
    font-size: 1.6rem;
  }
  #_ #event .event-visual {
    width: 100%;
    max-width: 100%;
  }
  #_ #event .event-visual img {
    border-radius: 5px;
  }
  #_ #event .event-btn {
    display: flex;
    width: 31.2rem;
    max-width: 100%;
    min-height: 5.8rem;
    height: 5.8rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1.2rem;
    padding: 0 2rem;
  }
  #_ #event .event-btn-main {
    font-size: 1.5rem;
  }
  #_ #event .event-btn-deadline {
    font-size: 1.5rem;
    margin-top: 0.2rem;
  }
  #_ #event .event-btn-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* ■■■■■■ News（.news） ■■■■■■ */
#_ #news {
  background-color: var(--gray);
}
#_ #news .section-title {
  padding-left: 0;
  text-align: center;
}
#_ #news .section-title::before {
  display: none;
}
#_ #news .news-head {
  text-align: center;
  margin-bottom: 4.8rem;
}
#_ #news .news-title {
  margin-bottom: 1.6rem;
}
#_ #news .news-lead {
}
#_ #news .news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  list-style: none;
  margin-bottom: 4.8rem;
}
#_ #news .news-card-link {
  display: block;
  color: inherit;
  transition: opacity 0.3s ease-in-out;
}
#_ #news .news-card-link:hover {
  opacity: 0.75;
}
#_ #news .news-card-thumb {
  aspect-ratio: 260 / 162;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background-color: #ddd;
}
#_ #news .news-card-thumb img {
  border: none;
  border-radius: 7px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#_ #news .news-card-date {
  display: block;
  font-family: var(--font-family-gothic);
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
#_ #news .news-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7143;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#_ #news .news-card-more {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--blue);
  text-decoration: underline;
}
#_ #news .news-more-wrap {
  text-align: center;
}
#_ #news .news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24rem;
  padding: 0.85rem 3.2rem;
  border: 3px solid var(--blue);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue);
  background-color: transparent;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#_ #news .news-more:hover {
  background-color: var(--blue);
  color: var(--white);
}
#_ #news .news-list .loading-state,
#_ #news .news-list .no-articles,
#_ #news .news-list .error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
  font-size: 1.4rem;
  color: #666;
}
#_ #news .news-list .error-state {
  color: #d32f2f;
}
#_ #news .news-slider {
  position: relative;
}
#_ #news .news-pager {
  display: none;
}
#_ #news .news-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.3s ease-in-out;
}
#_ #news .news-nav:hover:not(:disabled) {
  opacity: 0.5;
}
#_ #news .news-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#_ #news .news-nav img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
#_ #news .news-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
#_ #news .news-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--blue);
  opacity: 0.5;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
#_ #news .news-dot.is-active {
  opacity: 1;
}
@media (max-width: 1023px) {
  #_ #news .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  #_ #news .news-inner {
    padding: 5.2rem 0 7.2rem;
  }
  #_ #news .news-head {
    margin-bottom: 3.2rem;
  }
  #_ #news .news-title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
  }
  #_ #news .news-lead {
    font-size: 1.6rem;
  }
  #_ #news .news-viewport {
    overflow: hidden;
  }
  #_ #news .news-slider {
    margin: 0 calc(50% - 50vw);
  }
  #_ #news .news-list {
    display: flex;
    grid-template-columns: none;
    gap: 1.6rem;
    margin-bottom: 0;
    padding: 0 9%;
    transition: transform 0.45s ease;
    will-change: transform;
  }
  #_ #news .news-item {
    flex: 0 0 100%;
    min-width: 0;
  }
  #_ #news .news-card-title {
    line-height: 1.444;
  }
  #_ #news .news-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
  #_ #news .news-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2.8rem;
  }
  #_ #news .news-more-wrap {
    margin-top: 2.8rem;
  }
  #_ #news .news-more {
    font-size: 1.6rem;
  }
}

/* ■■■■■■ FAQ（.faq） ■■■■■■ */
#_ #faq {
  position: relative;
}
#_ #faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/faq-bg.png') no-repeat center / cover;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  background-repeat: repeat-x;
}
#_ #faq .faq-box {
  display: flex;
  flex-direction: column;
  gap: 5.4rem
}
#_ #faq .faq-item {
  background-color: #fff;
  width: 100%;
  border: 0.2rem solid var(--gray);
  z-index: 1;
}
#_ #faq .faq-questionbox {
  background-color: color-mix(in srgb, var(--blue) 20%, transparent);
  z-index: 2;
}
#_ #faq .faq-question {
  color: var(--blue);
  font-weight: bold;
  font-size: 2rem;
  padding: 1.8rem 4.7rem;
}
#_ #faq .faq-answer {
  font-size: 1.8rem;
  padding: 1.8rem 4.7rem;
}
#_ #faq .faq-answer-a {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  #_ #faq .faq-inner {
    padding: 4.5rem 0 6.4rem;
  }
  #_ #faq .faq-head {
    margin-bottom: 2rem;
  }
  #_ #faq .faq-box {
    gap: 2rem;
  }
  #_ #faq .faq-questionbox {
    padding: 1.2rem;
  }
  #_ #faq .faq-question {
    font-size: 1.6rem;
  }
  #_ #faq .faq-answer {
    font-size: 1.6rem;
    padding: 1.2rem;
    line-height: 1.5;
  }
  #_ #faq .faq-answer-a {
    font-weight: 400;
    font-size: 1.6rem;
  }
}

/* ■■■■■■ Contact（.contact） ■■■■■■ */
#_ #contact {
  background-color: var(--black);
  color: var(--white);
}
#_ #contact .contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6.4rem;
  padding-top: 13rem;
  padding-bottom: 12.4rem;
}
#_ #contact .contact-head {
  flex-shrink: 0;
  margin-bottom: 0;
  padding-top: 1rem;
}
#_ #contact .contact-lead {
  color: var(--white);
}
#_ #contact .contact-body {
  flex: 1;
  min-width: 0;
  max-width: 61.5rem;
}
#_ #contact .contact-info-block + .contact-info-block {
  margin-top: 3.2rem;
}
#_ #contact .contact-info-label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 0.2rem;
}
#_ #contact .contact-info-value {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
}
#_ #contact .contact-info-link {
  color: var(--white);
  transition: opacity 0.3s ease-in-out;
}
#_ #contact .contact-info-link:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  #_ #contact .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 3.9rem;
    padding-bottom: 4.8rem;
  }
  #_ #contact .contact-head {
    margin-bottom: 1.2rem;
  }
  #_ #contact .contact-title {
    font-size: 3.2rem;
  }
  #_ #contact .contact-lead {
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 0;
  }
  #_ #contact .contact-body {
    width: 100%;
  }
  #_ #contact .contact-info-block + .contact-info-block {
    margin-top: 1rem;
  }
  #_ #contact .contact-info-label,
  #_ #contact .contact-info-value {
    font-size: 1.6rem;
  }
}

/* ■■■■■■ Footer（#footer） ■■■■■■ */
#_ #footer {
  background-color: var(--white);
}
#_ #footer .footer-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}
#_ #footer .footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 3rem;
  text-align: left;
}
#_ #footer .footer-icon {
  flex-shrink: 0;
  width: 4.7rem;
  height: auto;
}
#_ #footer .footer-title {
  font-family: var(--font-family-gothic);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 0;
}
#_ #footer .footer-list {
  display: flex;
  justify-content: center;
  gap: 14rem;
  list-style: none;
  margin-bottom: 0.4rem;
}
#_ #footer .footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
#_ #footer .footer-item-label {
  font-size: 1.4rem;
  line-height: 1.4;
}
#_ #footer .footer-item-name {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
}
#_ #footer .footer-item img {
  width: auto;
  height: auto;
  object-fit: contain;
}
#_ #footer .footer-copyright {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #_ #footer .footer-inner {
    width: 89.333%;
    padding: 3rem 0;
  }
  #_ #footer .footer-brand {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  #_ #footer .footer-icon {
    width: 3.7rem;
  }
  #_ #footer .footer-title {
    font-size: 2.2rem;
    text-align: left;
    line-height: 1.1818;
  }
  #_ #footer .footer-list {
    align-items: center;
    gap: 5rem;
    margin-bottom: 2.1rem;
  }
  #_ #footer .footer-item-label {
    font-size: 1.2rem;
    font-weight: 700;
  }
  #_ #footer .footer-item-name {
    font-size: 1.6rem;
  }
  #_ #footer .footer-item img {
    max-width: 10.6rem;
  }
  #_ #footer .footer-copyright {
    font-size: 1rem;
  }
}
