@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-fam: "noto sans";
  --yumincho: "游明朝", "Yu Mincho", "YuMincho";
  --theme-color: #fff;
  --font-color: #1c2a4d;
}

@view-transition {
  navigation: auto;
}
body,
input,
textarea {
  font-family: var(--font-fam), sans-serif;
  color: var(--font-color);
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  line-height: 2;
  background-color: #f2f2f2;
  font-weight: 600;
}

img {
  width: 100%;
}

.br-sp {
  display: block;
}
@media (min-width: 1024px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: none;
}
@media (min-width: 1024px) {
  .br-pc {
    display: block;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: clamp(1rem, 0.97vw, 2rem);
  left: 50%;
  z-index: 990;
  transform: translateX(-50%);
}
.header a {
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .header a:hover {
    opacity: 0.6;
  }
}
.header .contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  background-color: #1c2a4d;
  border-radius: 50px;
  height: clamp(3.5rem, 3.41vw, 4.9rem);
  width: clamp(11.4rem, 11.13vw, 18rem);
  position: relative;
  font-size: clamp(1.1rem, 1.07vw, 1.5rem);
  font-weight: bold;
}
.header .contact_btn::before {
  content: "";
  display: block;
  background: url(../img/icon/mail_white.svg) no-repeat;
  background-size: 100%;
  width: clamp(1.3rem, 1.26vw, 1.8rem);
  height: clamp(1rem, 0.97vw, 1.3rem);
  min-width: clamp(1.3rem, 1.26vw, 1.8rem);
  min-height: clamp(0.9rem, 0.87vw, 1.3rem);
  margin-top: 1px;
}

.header__inner {
  margin-inline: auto;
  width: 94.6%;
  background-color: #fff;
  border-radius: 10px;
  padding-block: 7px;
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding-left: 40px;
    padding-block: 13.7px;
  }
}
.header__inner .logo {
  width: clamp(10.6rem, 10.35vw, 14.2rem);
}
.header__inner .sp_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
@media (min-width: 1024px) {
  .header__inner .sp_container .contact_btn {
    display: none;
  }
}

.menu {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #eeebe9;
  position: relative;
  cursor: pointer;
  z-index: 999;
}
@media (min-width: 1024px) {
  .menu {
    display: none;
  }
}
.menu span {
  display: block;
  background-color: #000000;
  width: 16px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
}
.menu span:nth-of-type(1) {
  top: 38%;
}
.menu span:nth-of-type(2) {
  top: 50%;
  opacity: 1;
}
.menu span:nth-of-type(3) {
  top: 63%;
}
.menu.active span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(100%);
}
.menu.active span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.header__view {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .header__view {
    display: contents;
  }
}

.header__nav {
  display: none;
  padding-top: 85px;
  padding-inline: 6px;
  height: 91vh;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: auto;
    gap: 12px;
    padding-top: 0;
    padding-inline: 0;
  }
}
.header__nav .contact_btn {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav .contact_btn {
    display: flex;
    margin-left: clamp(1.1rem, 1.07vw, 2.2rem);
  }
}

.header__nav--url {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .header__nav--url {
    flex-direction: row;
    gap: clamp(2.2rem, 2.14vw, 4.4rem);
  }
}
.header__nav--url li {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: solid 1px #dcdcdc;
}
@media (min-width: 1024px) {
  .header__nav--url li {
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: none;
  }
}
.header__nav--url li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 14px;
}

.header__nav--sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}
@media (min-width: 1024px) {
  .header__nav--sns {
    gap: 10px;
    padding-top: 0;
  }
}
.header__nav--sns li a {
  display: block;
  width: clamp(3.7rem, 3.61vw, 4.9rem);
}

.footer {
  --inner-max: 1180px;
  background: linear-gradient(
      rgba(28, 42, 77, 0) 0%,
      rgba(28, 42, 77, 0.53) 100%
    ),
    url(../img/common/footer_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: clamp(11.1rem, 10.83vw, 12.7rem);
  padding-bottom: 18px;
}
@media (min-width: 1024px) {
  .footer {
    background-position: top center, 0 -1.24vw;
  }
}
.footer .txt {
  width: clamp(9.7rem, 9.47vw, 19.2rem);
  margin-left: auto;
}
.footer a {
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .footer a:hover {
    opacity: 0.6;
  }
}

.footer__inner {
  padding-inline: 18px;
}

.footer__lst {
  margin-top: clamp(4.7rem, 6.11vw, 15.8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(3.1rem, 3.02vw, 3.4rem);
  padding-left: clamp(4rem, 3.9vw, 5.7rem);
}
@media (min-width: 1024px) {
  .footer__lst {
    justify-content: flex-end;
    padding-right: clamp(4rem, 3.9vw, 5.7rem);
  }
}
.footer__lst li {
  color: #fff;
  font-size: clamp(1.1rem, 1.07vw, 1.6rem);
  font-weight: 500;
}

.copy {
  margin-top: clamp(1.3rem, 1.26vw, 2.8rem);
  color: #fff;
  font-size: clamp(0.9rem, 0.87vw, 1.3rem);
  font-weight: bold;
  text-align: center;
}
@media (min-width: 1024px) {
  .copy {
    text-align: right;
  }
}

.fv {
  overflow: clip;
  width: 100%;
}
.fv .fv__inner {
  width: 105vw;
  overflow: clip;
  margin-left: -2.5vw;
  border-bottom-left-radius: 53.33vw 12vw;
  border-bottom-right-radius: 53.33vw 12vw;
}
@media (min-width: 768px) {
  .fv .fv__inner {
    border-bottom-left-radius: 53.33vw 11.11vw;
    border-bottom-right-radius: 53.33vw 11.11vw;
  }
}
.fv .img_area {
  width: 100vw;
  height: 177.8666666667vw;
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .fv .img_area {
    height: 66.29vw;
  }
}
.fv .img_area video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
}
.fv .fv__txt {
  width: 86.4vw;
  position: absolute;
  top: 65.33vw;
  left: calc(50% - 2.5vw);
  transform: translateX(-50%);
  z-index: 100;
}
@media (min-width: 768px) {
  .fv .fv__txt {
    width: 61.72vw;
    top: 12.34vw;
    left: 4.93vw;
    transform: none;
  }
}
.fv .txt_area {
  width: 105vw;
  margin-left: 2.5vw;
  margin-top: -121.07vw;
  padding-top: 134.66vw;
  padding-bottom: 21.33vw;
  background: linear-gradient(rgba(28, 42, 77, 0) 0%, #1c2a4d 100%);
  position: relative;
  z-index: 99;
}
@media (min-width: 768px) {
  .fv .txt_area {
    padding-top: 44.5vw;
    padding-bottom: 5.55vw;
    margin-top: -40.56vw;
  }
}
.fv .txt_area p {
  color: #fff;
  padding-inline: 9.43vw;
  font-size: 4.26vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .fv .txt_area p {
    font-size: 1.48vw;
    text-align: center;
  }
}
.fv .txt_area p + p {
  margin-top: 12vw;
}
@media (min-width: 768px) {
  .fv .txt_area p + p {
    margin-top: 3.7vw;
  }
}

:root {
  --inner-margin: 40px;
  --inner-max: 960px;
}
@media (min-width: 768px) {
  :root {
    --inner-margin: 7.5%;
  }
}
@media (min-width: 1024px) {
  :root {
    --inner-margin: 9.8%;
  }
}

.inner {
  width: min(100% - var(--inner-margin), var(--inner-max));
  margin-left: auto;
  margin-right: auto;
  transition: width 0.2s;
}

.image__contents {
  width: 100%;
  margin-top: -11.74vw;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .image__contents {
    margin-top: -1.86vw;
  }
}

.ttl {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(3.2rem, 3.12vw, 5rem);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.ttl span {
  display: block;
  font-size: clamp(1.5rem, 1.46vw, 2rem);
  font-weight: bold;
  letter-spacing: 0em;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.3rem, 1.26vw, 1.8rem);
  font-weight: 600;
  border: solid 2px #1c2a4d;
  border-radius: 100px;
  width: min(75%, 375px);
  height: clamp(5.2rem, 5.07vw, 8.1rem);
  position: relative;
  background-color: #fff;
  transition: opacity 0.3s;
}
.btn::after {
  content: "";
  display: block;
  background: url(../img/icon/btn_arrow.svg) no-repeat;
  background-size: 100%;
  width: clamp(2rem, 1.95vw, 2.7rem);
  height: clamp(2rem, 1.95vw, 2.7rem);
  min-width: clamp(2rem, 1.95vw, 2.7rem);
  min-height: clamp(2rem, 1.95vw, 2.7rem);
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 1.46vw, 3rem);
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .btn:hover {
    opacity: 0.6;
  }
}

.about {
  padding-top: clamp(6.7rem, 8.72vw, 20rem);
  position: relative;
}
@media (min-width: 1024px) {
  .about {
    padding-bottom: min(15.55vw, 252px);
  }
}
.about .pc_container {
  display: contents;
}
@media (min-width: 1024px) {
  .about .pc_container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 3.27vw;
  }
}
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .about__inner {
    flex-direction: row;
  }
}
.about .ttl {
  order: 1;
}
.about .txt {
  order: 3;
  font-size: clamp(1.3rem, 1.26vw, 2rem);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .about .txt {
    padding-right: 2.16vw;
  }
}
.about .txt p + p {
  margin-top: clamp(2.6rem, 2.53vw, 5.6rem);
}
.about .img_box {
  order: 2;
  width: 100vw;
  margin-left: calc(var(--inner-margin) / -2);
}
@media (min-width: 1024px) {
  .about .img_box {
    width: 43.76vw;
    margin-left: 0;
    position: absolute;
    top: 130px;
    right: 0;
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  .about .img_box {
    top: min(14.81vw, 240px);
  }
}
@media (min-width: 1024px) {
  .about .img_box img {
    height: min(51.85vw, 840px);
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.about .btn {
  order: 4;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about .btn {
    margin-left: 0;
  }
}

.sdgs {
  --inner-max: 100%;
  padding-top: clamp(8rem, 10.41vw, 24rem);
  padding-bottom: clamp(2rem, 2.6vw, 8rem);
}

.sdgs__inner {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .sdgs__inner {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.sdgs__inner .img_box {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sdgs__inner .img_box {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    width: 50%;
  }
}
.sdgs__inner .img_box img {
  height: 58.13vw;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .sdgs__inner .img_box img {
    height: 100%;
  }
}
.sdgs__inner .txt {
  padding-block: clamp(3rem, 2.92vw, 6rem) clamp(2.7rem, 2.63vw, 8rem);
  padding-inline: clamp(3rem, 2.92vw, 7.8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 2.34vw, 3rem);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 1024px) {
  .sdgs__inner .txt {
    padding-inline: 4.81vw 5.92vw;
    justify-content: center;
    align-items: flex-start;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    width: 50%;
  }
}
.sdgs__inner .txt p {
  font-size: clamp(1.3rem, 1.26vw, 1.6rem);
  font-weight: 500;
}
.sdgs__inner .txt .btn {
  width: min(91.5%, 375px);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .sdgs__inner .txt .btn {
    margin-left: 0;
  }
}

.recruit {
  --inner-max: 100%;
  --inner-max: 1460px;
  padding-top: clamp(6rem, 7.81vw, 12rem);
}
@media (min-width: 768px) {
  .recruit {
    padding-bottom: clamp(4rem, 5.2vw, 8.9rem);
  }
}
.recruit__inner {
  background: url(../img/index/recruit/bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  padding-block: 50px;
  padding-inline: clamp(2.6rem, 2.53vw, 11.8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 2.44vw, 2.7rem);
}
@media (max-width: 767px) {
  .recruit__inner {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .recruit__inner {
    border-radius: 10px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-block: clamp(5rem, 6.51vw, 9.7rem);
    padding-inline: clamp(6rem, 7.81vw, 11.8rem);
  }
}
@media (min-width: 1280px) {
  .recruit__inner {
    background-position: 0 min(-5.56vw, -90px);
  }
}
.recruit .ttl {
  color: #fff;
}
.recruit p {
  color: #fff;
  font-size: clamp(1.3rem, 1.26vw, 1.5rem);
  font-weight: 500;
}
.recruit .btn {
  border-color: #fff;
}
.recruit .txt {
  display: contents;
}
@media (min-width: 768px) {
  .recruit .txt {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 2.44vw, 2.7rem);
    width: 50%;
  }
}
.recruit .btn {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .recruit .btn {
    margin-left: 0;
  }
}
.recruit .img__contents {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .recruit .img__contents {
    flex-wrap: wrap;
    max-width: 336px;
    gap: 60px 68px;
    margin-right: clamp(2rem, 2.6vw, 4rem);
  }
}
.recruit .img__contents p {
  writing-mode: vertical-rl;
  font-size: clamp(2.5rem, 2.44vw, 4rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  margin-inline: 10px;
}
@media (min-width: 768px) {
  .recruit .img__contents p {
    margin-inline: 0;
  }
}
@media (min-width: 768px) {
  .recruit .img__contents p:nth-of-type(1) {
    order: 1;
  }
}
@media (min-width: 768px) {
  .recruit .img__contents p:nth-of-type(2) {
    order: 2;
  }
}
.recruit .img__contents img {
  margin-top: 63px;
  width: clamp(13.3rem, 17.31vw, 22rem);
}
@media (min-width: 768px) {
  .recruit .img__contents img {
    margin-top: 0;
    order: 3;
  }
}

.news {
  --inner-max: 100%;
  padding-top: clamp(4rem, 5.2vw, 8rem);
  padding-bottom: clamp(5.8rem, 7.55vw, 10rem);
  background-color: #f7f7f7;
  overflow: clip;
}
.news .ttl_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .ttl_box a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.2rem, 1.17vw, 2.4rem);
  font-size: clamp(1.3rem, 1.26vw, 1.8rem);
  position: relative;
  transform: translateY(18px);
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .news .ttl_box a {
    transform: translateY(14px);
  }
}
.news .ttl_box a::after {
  content: "";
  display: block;
  background: url(../img/icon/btn_arrow.svg) no-repeat;
  background-size: 100%;
  width: clamp(2rem, 1.95vw, 2.7rem);
  height: clamp(2rem, 1.95vw, 2.7rem);
  min-width: clamp(2rem, 1.95vw, 2.7rem);
  min-height: clamp(2rem, 1.95vw, 2.7rem);
}
@media (min-width: 1024px) {
  .news .ttl_box a:hover {
    opacity: 0.6;
  }
}

.news__slider {
  padding-top: clamp(2.5rem, 2.44vw, 4.7rem);
  width: 100vw;
}
@media (min-width: 1024px) {
  .news__slider {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(2rem, 1.95vw, 2.5rem);
  }
}
.news__slider .item {
  width: min(52.8vw, 345px);
}
@media (min-width: 1024px) {
  .news__slider .item {
    width: calc((100% - clamp(2rem, 1.95vw, 2.5rem) * 3) / 4);
  }
}
.news__slider .item a {
  display: block;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .news__slider .item a:hover {
    opacity: 0.6;
  }
}
.news__slider .item .img_box img {
  aspect-ratio: 3.45/2.47;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__slider .item .day {
  display: block;
  padding-top: clamp(1rem, 0.97vw, 1.5rem);
  color: #384f88;
  font-size: clamp(1rem, 0.97vw, 1.3rem);
  font-weight: 500;
}
.news__slider .item p {
  font-size: clamp(1.1rem, 1.07vw, 1.7rem);
}
.news__slider .slick-track {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(2rem, 1.95vw, 2.5rem);
}
.news__slider .slick-track::before {
  content: none;
}
.news__slider .slick-track::after {
  content: none;
}

.about-fv {
  overflow: clip;
  width: 100%;
  min-height: 241.6vw;
  position: relative;
}
@media (min-width: 768px) {
  .about-fv {
    min-height: 66.29vw;
  }
}
.about-fv::after {
  content: "";
  display: block;
  background: linear-gradient(
    rgba(28, 42, 77, 0) 0%,
    rgba(28, 42, 77, 0.65) 100%
  );
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .about-fv::after {
    background: linear-gradient(
      to left,
      rgba(28, 42, 77, 0) 0%,
      rgba(28, 42, 77, 0.65) 100%
    );
    background-size: cover;
  }
}
.about-fv .about-fv__inner {
  height: 100%;
}
@media (min-width: 768px) {
  .about-fv .about-fv__inner {
    width: 72.8%;
    margin-inline: auto;
  }
}
.about-fv .img_area {
  background: url(../img/about/fv.jpg) no-repeat;
  background-size: cover;
  background-position: -100vw 0;
  width: 100vw;
  height: 177.8666666667vw;
  position: relative;
}
@media (min-width: 768px) {
  .about-fv .img_area {
    height: 66.29vw;
    background-position: top center;
  }
}
.about-fv .txt_area {
  width: 100%;
  position: relative;
  z-index: 99;
  padding-inline: 6.93vw;
  margin-top: -77.34vw;
  padding-bottom: 44.26vw;
}
@media (min-width: 768px) {
  .about-fv .txt_area {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.about-fv .txt_area h2 {
  font-family: var(--yumincho), sans-serif;
  font-size: 5.86vw;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4.26vw;
}
@media (min-width: 768px) {
  .about-fv .txt_area h2 {
    font-size: 2.46vw;
  }
}
.about-fv .txt_area p {
  color: #fff;
  font-size: 3.46vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .about-fv .txt_area p {
    font-size: 1.11vw;
  }
}
.about-fv .txt_area p + p {
  margin-top: 12vw;
}
@media (min-width: 768px) {
  .about-fv .txt_area p + p {
    margin-top: 3.7vw;
  }
}

.about--contents {
  --inner-max: 1180px;
  background-color: #1c2a4e;
  padding-block: clamp(12rem, 11.71vw, 29rem) clamp(10.5rem, 10.25vw, 22.3rem);
}
.about--contents__txt {
  color: #fff;
}
@media (min-width: 1024px) {
  .about--contents__txt {
    width: 50%;
    order: 2;
    padding-left: min(8.02vw, 130px);
  }
}
.about--contents__txt h3 {
  width: clamp(24.8rem, 24.21vw, 42rem);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about--contents__txt h3 {
    margin-left: 0;
  }
}
.about--contents__txt p {
  font-size: clamp(1.4rem, 1.36vw, 1.8rem);
  font-weight: 500;
  text-align: center;
}
@media (min-width: 1024px) {
  .about--contents__txt p {
    text-align: left;
  }
}
.about--contents__txt p:nth-of-type(1) {
  margin-top: 50px;
}
.about--contents__txt p + p {
  margin-top: clamp(3.4rem, 3.32vw, 4rem);
}
.about--contents .container {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
@media (min-width: 1024px) {
  .about--contents .container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .about--contents .container > img {
    order: 1;
    width: 50%;
  }
}

.katawaku-family {
  --inner-max: 1180px;
  background-color: #1c2a4e;
  padding-bottom: clamp(7.6rem, 7.42vw, 13.9rem);
}

.katawaku-family__inner {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .katawaku-family__inner {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.katawaku-family__inner .img_box {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .katawaku-family__inner .img_box {
    border-top-left-radius: 0;
    border-bottom-right-radius: 10px;
    width: 50%;
    order: 2;
  }
}
.katawaku-family__inner .img_box img {
  height: 58.13vw;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .katawaku-family__inner .img_box img {
    height: 100%;
  }
}
.katawaku-family__inner .img_box::after {
  content: "";
  display: block;
  background: url(../img/about/contents/tiktok.svg) no-repeat;
  background-size: 100%;
  width: 18.93vw;
  height: 18.93vw;
  min-width: 18.93vw;
  min-height: 18.93vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .katawaku-family__inner .img_box::after {
    width: clamp(7.1rem, 6.93vw, 10.8rem);
    height: clamp(7.1rem, 6.93vw, 10.8rem);
    min-width: clamp(7.1rem, 6.93vw, 10.8rem);
    min-height: clamp(7.1rem, 6.93vw, 10.8rem);
  }
}
.katawaku-family__inner .txt {
  padding-block: clamp(3rem, 2.92vw, 6rem) clamp(2.7rem, 2.63vw, 8rem);
  padding-inline: clamp(3rem, 2.92vw, 7.8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 2.34vw, 3rem);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 1024px) {
  .katawaku-family__inner .txt {
    padding-inline: 4.81vw 5.92vw;
    justify-content: center;
    align-items: flex-start;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    width: 50%;
    order: 1;
  }
}
.katawaku-family__inner .txt p {
  font-size: clamp(1.3rem, 1.26vw, 1.6rem);
  font-weight: 500;
}
.katawaku-family__inner .txt .btn {
  width: min(91.5%, 375px);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .katawaku-family__inner .txt .btn {
    margin-left: 0;
  }
}

.about-history {
  --inner-max: 1180px;
  padding-block: clamp(6rem, 5.85vw, 12rem);
  background-color: #fff;
}
.about-history .ttl {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(4rem, 3.9vw, 7rem);
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.about-history .ttl span {
  font-size: clamp(1.6rem, 1.56vw, 3rem);
}

.about-history__dl {
  margin-top: clamp(3.8rem, 3.71vw, 5.8rem);
}
.about-history__dl dl {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media (min-width: 1024px) {
  .about-history__dl dl {
    padding-left: 69px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(7rem, 6.83vw, 13rem);
  }
}
.about-history__dl dl:not(:nth-last-of-type(1))::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #e6e6e6;
  position: absolute;
  top: clamp(1rem, 0.97vw, 1.5rem);
  left: calc(clamp(2rem, 1.95vw, 3rem) / 2 - 1px);
  z-index: 0;
}
.about-history__dl dl dt {
  font-size: clamp(2rem, 1.95vw, 3rem);
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 1024px) {
  .about-history__dl dl dt {
    width: 17%;
  }
}
.about-history__dl dl dt::before {
  content: "";
  display: block;
  width: clamp(2rem, 1.95vw, 3rem);
  height: clamp(2rem, 1.95vw, 3rem);
  min-width: clamp(2rem, 1.95vw, 3rem);
  min-height: clamp(2rem, 1.95vw, 3rem);
  border-radius: 50%;
  background-color: #1c2a4d;
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  z-index: 5;
}
@media (min-width: 1024px) {
  .about-history__dl dl dt::before {
    left: -69px;
  }
}
.about-history__dl dl dd {
  font-size: clamp(1.3rem, 1.26vw, 2.2rem);
  font-weight: 500;
  padding-bottom: clamp(7rem, 6.83vw, 10rem);
}
@media (min-width: 1024px) {
  .about-history__dl dl dd {
    width: calc(100% - (17% + clamp(7rem, 6.83vw, 13rem)));
  }
}

.about-detail {
  --inner-max: 1180px;
  background-color: #fff;
  padding-bottom: clamp(6.1rem, 5.95vw, 12rem);
}
.about-detail .ttl {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(4rem, 3.9vw, 7rem);
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.about-detail .ttl span {
  font-size: clamp(1.6rem, 1.56vw, 3rem);
}

.about-detail__dl {
  margin-top: clamp(2.6rem, 2.88vw, 6.6rem);
}
.about-detail__dl dl {
  color: #333333;
}
@media (min-width: 1024px) {
  .about-detail__dl dl {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 11px;
  }
}
.about-detail__dl dl dt {
  padding-top: 20px;
  font-size: clamp(1.4rem, 1.36vw, 2rem);
  font-weight: bold;
}
@media (min-width: 1024px) {
  .about-detail__dl dl dt {
    border-top: solid 1px #1c294e;
    width: 19.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 26px;
  }
  .about-detail__dl dl dt:nth-last-of-type(1) {
    border-bottom: solid 1px #1c294e;
  }
}
.about-detail__dl dl dd {
  padding-bottom: 20px;
  font-size: clamp(1.4rem, 1.36vw, 2rem);
  font-weight: 500;
  border-bottom: solid 1px #dcdcdc;
}
@media (min-width: 1024px) {
  .about-detail__dl dl dd {
    border-top: solid 1px #dcdcdc;
    border-bottom: none;
    width: calc(100% - (19.5% + 11px));
    padding-block: 26px;
    padding-left: clamp(2rem, 1.95vw, 4rem);
  }
  .about-detail__dl dl dd:nth-last-of-type(1) {
    border-bottom: solid 1px #dcdcdc;
  }
}

.service-contents {
  --inner-max: 1180px;
  padding-top: clamp(6.1rem, 5.95vw, 12rem);
}
.service-contents .ttl {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(4rem, 3.9vw, 7rem);
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.service-contents .ttl span {
  font-size: clamp(1.6rem, 1.56vw, 3rem);
}
.service-contents .case > strong {
  display: block;
  font-size: clamp(2.4rem, 2.34vw, 3rem);
  font-family: var(--yumincho), sans-serif;
  font-weight: bold;
}
.service-contents .case > p {
  margin-top: clamp(1.2rem, 1.17vw, 2.4rem);
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
.service-contents .case > img {
  margin-top: 12px;
  display: block;
  border-radius: 10px;
}
.service-contents .case.case01 {
  padding-top: clamp(3rem, 2.92vw, 6rem);
}
.service-contents .case.case02 {
  padding-top: clamp(4rem, 3.9vw, 9.8rem);
}
.service-contents .case .flow {
  padding-top: clamp(4rem, 3.9vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media (min-width: 1024px) {
  .service-contents .case .flow {
    gap: 60px;
  }
}
.service-contents .case .flow li {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media (min-width: 1024px) {
  .service-contents .case .flow li {
    display: flex;
    justify-content: flex-start;
  }
}
.service-contents .case .flow li:not(:nth-last-of-type(1))::after {
  content: "";
  display: block;
  width: clamp(2rem, 1.95vw, 2.9rem);
  min-width: clamp(2rem, 1.95vw, 2.9rem);
  height: clamp(1.2rem, 1.17vw, 1.6rem);
  min-height: clamp(1.2rem, 1.17vw, 1.6rem);
  border-top: solid clamp(1.2rem, 1.17vw, 1.6rem) #1c2a4e;
  border-left: solid calc(clamp(2rem, 1.95vw, 2.9rem) / 2) transparent;
  border-right: solid calc(clamp(2rem, 1.95vw, 2.9rem) / 2) transparent;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .service-contents .case .flow li:not(:nth-last-of-type(1))::after {
    bottom: -42px;
  }
}
.service-contents .case .flow li img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  aspect-ratio: 2.34/1.74;
  -o-object-fit: cover;
  object-fit: cover;
  height: 46.4vw;
}
@media (min-width: 1024px) {
  .service-contents .case .flow li img {
    height: auto;
    width: 304px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
}
.service-contents .case .flow li .txt {
  padding-inline: 26px;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .service-contents .case .flow li .txt {
    padding-inline: 45px;
    padding-block: 45px;
  }
}
.service-contents .case .flow li .txt strong {
  font-size: 2.4rem;
  font-family: var(--yumincho), sans-serif;
  font-weight: bold;
}
.service-contents .case .flow li .txt p {
  margin-top: 10px;
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
}

._sdgs .katawaku-family {
  padding-block: clamp(4rem, 3.9vw, 8rem);
}
._sdgs .recruit {
  padding-top: clamp(4rem, 3.9vw, 8.4rem);
  padding-bottom: clamp(8rem, 7.81vw, 14.2rem);
}

.sdgs-top {
  padding-top: clamp(10rem, 9.76vw, 19.5rem);
  padding-bottom: clamp(6rem, 5.85vw, 10rem);
}
.sdgs-top h2 {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2.4rem, 2.34vw, 3rem);
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.6;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
.sdgs-top h2::before {
  content: "■";
}
.sdgs-top .txt {
  padding-top: clamp(0.5rem, 0.48vw, 1rem);
}
.sdgs-top .txt p {
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  font-weight: normal;
  letter-spacing: 0.06em;
}
.sdgs-top .txt p.txt_right {
  margin-top: clamp(0.5rem, 0.48vw, 1rem);
  text-align: right;
}
.sdgs-top .img_box {
  margin-top: clamp(4.8rem, 4.68vw, 9.6rem);
}
.sdgs-top > .inner > h3 {
  padding-top: clamp(1.8rem, 1.75vw, 3rem);
  font-size: clamp(1.8rem, 1.75vw, 2.8rem);
}
.sdgs-top .caption {
  font-size: clamp(1.2rem, 1.17vw, 1.4rem);
  font-weight: normal;
}

.sdgs-description {
  background: url(../img/sdgs/bg.jpg) no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding-top: clamp(6rem, 5.85vw, 8rem);
  padding-bottom: clamp(9.6rem, 9.37vw, 12.8rem);
  text-align: center;
  color: #fff;
}
.sdgs-description h3 {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2rem, 1.95vw, 4.3rem);
  font-weight: bold;
  line-height: 1.6;
}
.sdgs-description .txt {
  margin-top: clamp(2.4rem, 2.34vw, 3.2rem);
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
.sdgs-description .txt p + p {
  margin-top: clamp(2.2rem, 2.14vw, 3.2rem);
}

.sdgs-attempt {
  padding-top: clamp(4rem, 3.9vw, 8rem);
  padding-bottom: 30px;
}
.sdgs-attempt__contents > strong {
  display: block;
  text-align: center;
  padding-top: clamp(4rem, 3.9vw, 8rem);
  padding-bottom: clamp(3rem, 2.92vw, 6rem);
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(1.8rem, 1.75vw, 2.8rem);
  font-weight: bold;
}
.sdgs-attempt__contents dl {
  counter-reset: num 0;
}
.sdgs-attempt__contents dl dt {
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2rem, 1.95vw, 2.8rem);
  font-weight: bold;
  color: #fff;
  background: linear-gradient(
    to right,
    transparent 20px,
    #1c2a4e 20px,
    #1c2a4e 100%
  );
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.6;
  padding-top: clamp(0.2rem, 0.19vw, 0.4rem);
  padding-left: 63px;
  position: relative;
}
@media (min-width: 768px) {
  .sdgs-attempt__contents dl dt {
    padding-left: 99px;
  }
}
.sdgs-attempt__contents dl dt::before {
  counter-increment: num 1;
  content: "0" counter(num);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-top: clamp(0.2rem, 0.19vw, 0.4rem);
  color: #fff;
  background-color: #1c2a4e;
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2.4rem, 2.73vw, 4.5rem);
  width: clamp(5.6rem, 5.46vw, 7.3rem);
  height: clamp(5.6rem, 5.46vw, 7.3rem);
  min-width: clamp(5.6rem, 5.46vw, 7.3rem);
  min-height: clamp(5.6rem, 5.46vw, 7.3rem);
  border-radius: 50%;
  border: solid 4px #f2f2f2;
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
}
.sdgs-attempt__contents dl dd {
  padding-top: clamp(2rem, 1.95vw, 2.8rem);
  padding-bottom: clamp(5rem, 4.88vw, 9.1rem);
}
.sdgs-attempt__contents dl dd p {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: normal;
}
.sdgs-attempt__contents dl dd strong {
  display: block;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  font-weight: 600;
  text-indent: calc(clamp(1.6rem, 1.56vw, 1.8rem) / -2);
}
.sdgs-attempt__contents dl dd ul li {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: normal;
  text-indent: calc(clamp(1.4rem, 1.36vw, 1.6rem) * -1);
  padding-left: clamp(1.4rem, 1.36vw, 1.6rem);
}
.sdgs-attempt__contents dl dd img {
  margin-top: clamp(2rem, 1.95vw, 2.8rem);
  display: block;
  width: auto;
  height: clamp(6.5rem, 6.34vw, 9.5rem);
}

.sdgs-about {
  padding-bottom: clamp(3rem, 2.92vw, 6rem);
}
.sdgs-about__contents {
  text-align: center;
}
.sdgs-about__contents > strong {
  display: block;
  text-align: center;
  padding-top: clamp(4rem, 3.9vw, 8rem);
  padding-bottom: 30px;
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(1.8rem, 1.75vw, 2.8rem);
  font-weight: bold;
}
.sdgs-about__contents p {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: normal;
}

._news {
  --inner-max: 1460px;
}
._news .recruit {
  --inner-max: 100%;
  padding-top: 0;
}

._news__inner {
  padding-top: clamp(9.2rem, 8.98vw, 17.2rem);
  padding-bottom: clamp(8rem, 7.81vw, 11.9rem);
}
._news__inner h3 {
  text-align: center;
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2.2rem, 2.14vw, 2.8rem);
  font-weight: bold;
}

._news__lst {
  padding-top: clamp(6.0128rem, 5.87vw, 102.4rem);
}
._news__lst ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  ._news__lst ul {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 36px 24px;
  }
}
@media (min-width: 1024px) {
  ._news__lst ul {
    gap: 36px 26px;
  }
}
._news__lst ul li a {
  padding-bottom: clamp(2rem, 1.95vw, 3.4rem);
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  ._news__lst ul li a:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) {
  ._news__lst ul li {
    width: calc((100% - 24px) / 2);
  }
}
@media (min-width: 1024px) {
  ._news__lst ul li {
    width: calc((100% - 52px) / 3);
  }
}
@media (min-width: 1280px) {
  ._news__lst ul li {
    width: calc((100% - 78px) / 4);
  }
}
._news__lst ul li img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  aspect-ratio: 3.45/2.47;
  -o-object-fit: cover;
  object-fit: cover;
}
._news__lst ul li .days {
  display: block;
  margin-top: clamp(1.2rem, 1.17vw, 2.1rem);
  font-size: clamp(1rem, 0.97vw, 1.3rem);
  color: #384f88;
}
._news__lst ul li p {
  font-size: clamp(1.5rem, 1.46vw, 1.7rem);
  font-weight: 600;
}

.pager {
  padding-top: clamp(2.4rem, 2.34vw, 4.8rem);
}
.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pager ul li {
  font-size: 1.3rem;
  font-weight: normal;
  /* width: 17px;
  min-width: 17px;
  height: 29px;
  min-height: 29px; */
  color: #b7b7b7;
}
.pager ul li a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 29px;
  min-height: 29px;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .pager ul li a:hover {
    opacity: 0.6;
  }
}
.pager ul li.current {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #384f88;
  font-weight: 600;
  border-bottom: solid 1px #384f88;
}

._single {
  --inner-max: 990px;
}
._single .recruit {
  --inner-max: 100%;
  padding-top: 0;
}
._single__inner {
  padding-top: clamp(9.2rem, 8.98vw, 17.2rem);
  padding-bottom: clamp(8rem, 7.81vw, 11.9rem);
}
._single h4 {
  text-align: left;
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2.2rem, 2.14vw, 2.8rem);
  font-weight: bold;
}
._single .days {
  display: block;
  font-size: clamp(1rem, 0.97vw, 1.3rem);
  color: #384f88;
  font-weight: 500;
}
._single-contents {
  margin-top: clamp(3rem, 2.92vw, 6rem);
  border-top: solid 1px #707070;
  padding-block: clamp(3rem, 2.92vw, 6rem);
}
._single-contents img {
  border-radius: clamp(1rem, 0.97vw, 2rem);
  display: block;
  width: auto;
  margin-inline: auto;
}
._single-contents img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
._single-contents p {
  font-weight: normal;
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
}
._single-contents p + p {
  margin-top: clamp(2rem, 1.95vw, 4rem);
}
._single .btn {
  margin-inline: auto;
}

._contact {
  --inner-max: 990px;
}

._contact__inner {
  padding-top: clamp(9.2rem, 8.98vw, 17.2rem);
  padding-bottom: clamp(8rem, 7.81vw, 11.9rem);
}
._contact__inner h3 {
  text-align: center;
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2.2rem, 2.14vw, 2.8rem);
  font-weight: bold;
}
._contact__inner .txt {
  margin-top: clamp(3.7rem, 3.61vw, 8.2rem);
  background-color: #f5fbff;
  border-radius: clamp(0.5rem, 0.48vw, 1rem);
  padding: clamp(2.4rem, 2.34vw, 5.3rem);
}
._contact__inner .txt p {
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
  color: #1c2a4d;
}

.form__dl {
  padding-top: 80px;
}
@media (min-width: 1024px) {
  .form__dl {
    padding-top: 60px;
  }
}
.form__dl > dl {
  border-top: solid 1px #d4ccc8;
  padding-block: clamp(2.2rem, 2.14vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (min-width: 1024px) {
  ._single-contents img {
    width: 700px;
    height: 400px;
    object-fit: cover;
  }
  .form__dl > dl {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
  }
  .form__dl > dl:has(textarea) {
    align-items: flex-start;
  }
}
.form__dl > dl:nth-last-of-type(1) {
  border-bottom: solid 1px #d4ccc8;
}
.form__dl > dl dt {
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1.6rem, 1.56vw, 1.8rem);
}
@media (min-width: 1024px) {
  .form__dl > dl dt {
    width: min(30%, 304px);
  }
}
.form__dl > dl dt::after {
  content: "任意";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 0.97vw, 1.3rem);
  font-weight: normal;
  line-height: 1;
  border: solid 1px #1c2a4d;
  width: clamp(2.9rem, 2.83vw, 3.7rem);
  height: clamp(1.8rem, 1.75vw, 2.2rem);
  min-width: clamp(2.9rem, 2.83vw, 3.7rem);
  min-height: clamp(1.8rem, 1.75vw, 2.2rem);
  border-radius: 2px;
}
.form__dl > dl dt.req::after {
  content: "必須";
  color: #fff;
  background-color: #1c2a4d;
}
@media (min-width: 1024px) {
  .form__dl > dl dd {
    width: calc(100% - min(30%, 304px));
  }
}
.form__dl > dl dd input[type="text"] {
  width: 100%;
  height: clamp(4.5rem, 4.39vw, 5.1rem);
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  border-radius: 5px;
  border: solid 1px #eaeaea;
  padding-inline: 16px;
}
.form__dl > dl dd textarea {
  width: 100%;
  min-height: clamp(16rem, 15.62vw, 24.4rem);
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  border-radius: 5px;
  border: solid 1px #eaeaea;
  padding-inline: 16px;
}
.form__dl > dl dd ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(2.8rem, 2.73vw, 6.1rem);
}
.form__dl > dl dd ul li {
  width: -moz-fit-content;
  width: fit-content;
}

form .radio_label {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.5rem, 0.48vw, 1rem);
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
}
form .radio_label span {
  display: block;
  width: clamp(1.4rem, 1.36vw, 1.8rem);
  height: clamp(1.4rem, 1.36vw, 1.8rem);
  min-width: clamp(1.4rem, 1.36vw, 1.8rem);
  min-height: clamp(1.4rem, 1.36vw, 1.8rem);
  border: solid 1px #1c2a4d;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
form .radio_label span::after {
  content: "";
  display: block;
  width: clamp(0.8rem, 0.78vw, 1rem);
  height: clamp(0.8rem, 0.78vw, 1rem);
  min-width: clamp(0.8rem, 0.78vw, 1rem);
  min-height: clamp(0.8rem, 0.78vw, 1rem);
  background-color: #1c2a4d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
form .radio_label input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
}
form .radio_label:has(input[type="radio"]:checked) span::after {
  opacity: 1;
}
form .chk_label {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.5rem, 0.48vw, 1rem);
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
}
form .chk_label span {
  display: block;
  width: clamp(1.4rem, 1.36vw, 1.8rem);
  height: clamp(1.4rem, 1.36vw, 1.8rem);
  min-width: clamp(1.4rem, 1.36vw, 1.8rem);
  min-height: clamp(1.4rem, 1.36vw, 1.8rem);
  border: solid 1px #707070;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
}
form .chk_label span::after {
  content: "";
  display: block;
  width: clamp(0.4rem, 0.39vw, 0.6rem);
  height: clamp(0.8rem, 0.78vw, 1rem);
  min-width: clamp(0.4rem, 0.39vw, 0.6rem);
  min-height: clamp(0.8rem, 0.78vw, 1rem);
  border-right: solid 2px #1c2a4d;
  border-bottom: solid 2px #1c2a4d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}
form .chk_label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
}
form .chk_label:has(input[type="checkbox"]:checked) span::after {
  opacity: 1;
}
form .privacy_chk {
  padding-top: clamp(2rem, 1.95vw, 5rem);
  padding-bottom: 36px;
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
  color: #333333;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
form .privacy_chk a {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  form .privacy_chk a:hover {
    text-decoration: none;
  }
}

.submit_btn {
  width: clamp(34.1rem, 33.3vw, 37.5rem);
  margin-inline: auto;
  position: relative;
}
.submit_btn::after {
  content: "";
  display: block;
  background: url(../img/icon/btn_arrow.svg) no-repeat;
  background-size: 100%;
  width: clamp(2.1rem, 2.05vw, 2.7rem);
  height: clamp(2.1rem, 2.05vw, 2.7rem);
  min-width: clamp(2.1rem, 2.05vw, 2.7rem);
  min-height: clamp(2.1rem, 2.05vw, 2.7rem);
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 1.46vw, 3rem);
  transform: translateY(-50%);
}
.submit_btn input[type="submit"] {
  width: 100%;
  height: clamp(5.2rem, 5.07vw, 8.1rem);
  font-size: clamp(1.3rem, 1.26vw, 1.8rem);
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: solid 2px #1c2a4d;
  color: #1c2a4d;
  border-radius: 100px;
}
@media (min-width: 1024px) {
  .submit_btn:hover {
    opacity: 0.6;
  }
}

.back_btn {
  width: clamp(34.1rem, 33.3vw, 37.5rem);
  margin-inline: auto;
  position: relative;
}
.back_btn::after {
  content: "";
  display: block;
  background: url(../img/icon/btn_arrow.svg) no-repeat;
  background-size: 100%;
  width: clamp(2.1rem, 2.05vw, 2.7rem);
  height: clamp(2.1rem, 2.05vw, 2.7rem);
  min-width: clamp(2.1rem, 2.05vw, 2.7rem);
  min-height: clamp(2.1rem, 2.05vw, 2.7rem);
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 1.46vw, 3rem);
  transform: translateY(-50%);
}
.back_btn input[type="button"] {
  width: 100%;
  height: clamp(5.2rem, 5.07vw, 8.1rem);
  font-size: clamp(1.3rem, 1.26vw, 1.8rem);
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: solid 2px #1c2a4d;
  color: #1c2a4d;
  border-radius: 100px;
}
@media (min-width: 1024px) {
  .back_btn:hover {
    opacity: 0.6;
  }
}

.confirmation .err {
  color: red;
}
.confirmation dl dt::after {
  content: none;
}
.confirmation dl p {
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
}
.confirmation .completion {
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
  text-align: center;
}

.submit_area {
  margin-top: clamp(4rem, 3.9vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.submit_area > * {
  margin-inline: 0;
}
@media (min-width: 1024px) {
  .submit_area {
    flex-direction: row;
  }
}

._privacy {
  --inner-max: 990px;
}

._privacy__inner {
  padding-top: clamp(9.2rem, 8.98vw, 17.2rem);
  padding-bottom: clamp(8rem, 7.81vw, 11.9rem);
}
._privacy__inner h3 {
  text-align: center;
  font-family: var(--yumincho), sans-serif;
  font-size: clamp(2.2rem, 2.14vw, 2.8rem);
  font-weight: bold;
}
._privacy__inner h3 + p {
  padding-top: clamp(4rem, 3.9vw, 7rem);
}
._privacy__inner p,
._privacy__inner dt,
._privacy__inner li {
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
  color: #1c2a4d;
}
._privacy__inner dl dt {
  margin-top: clamp(2rem, 1.95vw, 4rem);
}
._privacy__inner dl dd .margin_ul {
  margin-top: clamp(2rem, 1.95vw, 4rem);
}
._privacy__inner dl dd p + p {
  margin-top: clamp(1.6rem, 1.56vw, 3.2rem);
}

/* ==============================================================
# add_matsumoto
=========================================================== */
.pdf {
  margin-top: 30px;
}
.pdf .pdf-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid #e5e7eb;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .pdf .pdf-wrap {
    width: 45vw;
  }
}


._single-contents p a {
  text-decoration: underline;
}