@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 0.6944444444vw;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  font-family: "Tsukushi A Round Gothic", "fot-tsukuardgothic-std", sans-serif;
}
@media (max-width: 767px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 2.5641025641vw;
  }
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  color: #33394B;
  letter-spacing: 0.05em;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.note-show {
  display: none;
}
@media (max-width: 1440px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1440px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (max-width: 767px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

img.sp-hide, span.sp-hide {
  display: inline;
}
@media (max-width: 767px) {
  img.sp-hide, span.sp-hide {
    display: none;
  }
}

.mincho {
  font-family: "Shippori Mincho", serif;
}

.header {
  height: 16.7rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-right: 3.1rem;
  z-index: 99;
  padding-left: 2.2rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header {
    height: 9.2rem;
    padding-right: 0;
    padding-left: 0.3rem;
  }
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header__inner .logo {
  pointer-events: all;
}
.header__inner .logo img {
  height: 100%;
}
.header__menu {
  display: flex;
  height: 10rem;
  pointer-events: all;
}
@media (max-width: 767px) {
  .header__menu {
    position: fixed;
    right: 0;
    height: auto;
    top: 2rem;
    flex-direction: column;
  }
  .header__menu li {
    margin-bottom: 0.4rem;
  }
}
.header__menu a {
  display: flex;
  height: 100%;
  width: 10rem;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 0.4rem 0.4rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .header__menu a {
    width: 3.3rem;
    height: 7.7rem;
  }
  .header__menu a img {
    width: 100%;
  }
}
.header__menu a span {
  font-size: 1em;
}
@media (max-width: 767px) {
  .header__menu a span {
    display: none;
  }
}
.header__menu .tel {
  background-color: #F9F9F8;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.14em;
  color: #173048;
  font-weight: 600;
  padding-top: 1.3rem;
  letter-spacing: 0.05em;
  margin-right: 0.8rem;
}
@media (min-width: 768px) {
  .header__menu .tel:hover {
    background-color: #E5E5E2;
  }
}
.header__menu .tel img {
  height: 4rem;
  width: auto;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .header__menu .tel img {
    height: 100%;
    width: 100%;
    margin-bottom: unset;
  }
}
@media (max-width: 767px) {
  .header__menu .tel {
    padding: 0;
    margin: 0;
    background-color: transparent;
    margin-bottom: 0.3rem;
  }
}
.header__menu .mail {
  background-color: #D81E2C;
  padding-top: 2.1rem;
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (min-width: 768px) {
  .header__menu .mail:hover {
    background-color: #C21B28;
  }
}
.header__menu .mail img {
  height: 2.776rem;
  margin-bottom: 1.82rem;
}
@media (max-width: 767px) {
  .header__menu .mail img {
    height: 100%;
    margin-bottom: unset;
  }
}
@media (max-width: 767px) {
  .header__menu .mail {
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
}

.fv {
  padding-bottom: 7.2rem;
  padding-top: 8.7rem;
  background-image: url(../../img/fv-bg.webp);
  background-size: cover;
  background-position: center bottom;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .fv {
    background-color: #fff;
    background-image: url(../../img/fv-bg-sp.webp);
  }
}
.fv__inner {
  display: flex;
}
@media (max-width: 767px) {
  .fv__inner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .fv {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}
.fv__img {
  width: 84.4rem;
}
@media (max-width: 767px) {
  .fv__img {
    width: 37.2rem;
  }
}
.fv__img img {
  width: 100%;
  border-radius: 0 2rem 2rem 0;
}
.fv__txt {
  padding-top: 8rem;
  padding-left: 9.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .fv__txt {
    padding-left: 5.3rem;
    padding-top: 4.2rem;
  }
}
.fv__txt::before {
  content: "";
  width: 9.44rem;
  height: 10.5rem;
  background-image: url(../../img/fv-object.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50rem;
  right: 0rem;
}
@media (max-width: 767px) {
  .fv__txt::before {
    background-image: url(../../img/fv-object-sp.svg);
    right: 2.52rem;
    width: 6.47rem;
    height: 5.42rem;
    top: -2rem;
    z-index: 2;
  }
}
.fv__txt-top {
  display: flex;
}
.fv__txt-desc {
  display: flex;
  flex-direction: row-reverse;
  gap: 1.9rem;
  padding-top: 16.7rem;
}
@media (max-width: 767px) {
  .fv__txt-desc {
    padding-top: 0;
    gap: 2.1rem;
  }
}
.fv__txt h1 {
  padding-left: 10.6rem;
}
@media (max-width: 767px) {
  .fv__txt h1 {
    padding-left: 11.3rem;
  }
}
.fv__txt h1 img {
  width: 15.6rem;
}
@media (max-width: 767px) {
  .fv__txt h1 img {
    width: 8.9rem;
  }
}
.fv__txt p {
  color: white;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.12em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .fv__txt p {
    letter-spacing: 0.1em;
  }
}
.fv__txt-link a {
  color: white;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  width: 34.9rem;
  position: relative;
  transition: all 0.3s;
  display: none;
}
@media (max-width: 767px) {
  .fv__txt-link a {
    width: auto;
    font-size: 1.4rem;
    margin-top: 3.5rem;
  }
}
.fv__txt-link a:hover {
  opacity: 0.7;
}
.fv__txt-link a::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.fv__txt-link a span {
  font-size: 1em;
  position: relative;
  top: -0.5rem;
}

.description {
  padding-top: 10rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .description {
    padding-top: 5rem;
  }
  .description__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10rem;
    display: none;
  }
  .description__scroll p {
    font-size: 1.2rem;
    line-height: 1.91em;
    color: rgba(23, 48, 72, 0.3);
  }
  .description__scroll img {
    height: 1.35rem;
    width: auto;
    margin-top: 0.3rem;
  }
}
.description h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #173048;
  font-weight: 600;
  line-height: 2.08em;
  margin-bottom: 3.3rem;
}
@media (max-width: 767px) {
  .description h2 {
    text-align: left;
    line-height: 2.77em;
    font-size: 1.8rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.description__desc {
  font-size: 1.6rem;
  line-height: 2.06em;
  text-align: center;
  letter-spacing: 0;
  padding-bottom: 15rem;
}
.description__desc span {
  font-size: 1em;
  color: #D81E2C;
}
@media (max-width: 767px) {
  .description__desc {
    text-align: left;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    padding-bottom: 10rem;
  }
}
@media (min-width: 768px) {
  .description__img .sp-hide {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.description__img img {
  width: calc(33.3333% - 2.1rem);
}
.description__img img:first-child {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .description__img img:first-child {
    margin-top: 0;
  }
}
.description__img img:nth-child(2) {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .description__img img {
    width: 100%;
  }
}

.section__ttl {
  position: relative;
  height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .section__ttl {
    height: 14.4rem;
  }
}
.section__ttl h2, .section__ttl h6 {
  position: relative;
  z-index: 2;
}
.section__ttl::before {
  content: "";
  height: 100%;
  width: 40.8rem;
  position: absolute;
  left: calc(50% - 20.4rem);
  top: 0;
  background-image: url(../../img/ttl-blob.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .section__ttl::before {
    width: 19.7rem;
    left: calc(50% - 9.85rem);
  }
}
.section__ttl h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.56em;
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .section__ttl h2 {
    font-size: 1.8rem;
    line-height: 2.777em;
    margin-top: -1.5rem;
  }
}
.section__ttl h6 {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .section__ttl h6 {
    font-size: 1rem;
    margin-top: -1.7rem;
  }
}

.about {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .about {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    padding-top: 5rem;
  }
}
.about__inner {
  max-width: 100rem;
  margin: auto;
}
.about__desc {
  margin-bottom: 5rem;
}
.about__desc p {
  font-size: 1.6rem;
  line-height: 2.06em;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .about__desc p {
    text-align: left;
  }
}
.about__cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .about__cards {
    flex-direction: column;
    gap: 1.3rem;
  }
}
.about__card {
  width: calc(33.33333% - 0.6666rem);
}
@media (max-width: 767px) {
  .about__card {
    width: 100%;
    padding-bottom: 2.7rem;
  }
}
.about__card img {
  width: 100%;
  margin-bottom: 0.8rem;
}
.about__card-ttl {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #173048;
}
.about__card-ttl h5 {
  color: #173048;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
}
.about__card-ttl p {
  font-size: 1.2rem;
  margin-top: -0.6rem;
  color: #173048;
}
@media (max-width: 767px) {
  .about__card-ttl p {
    margin-top: -0.3rem;
  }
}
.about__card-txt p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
}
.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.about__feature {
  width: calc(50% - 0.35rem);
  background-color: #F9F9F8;
  padding: 1.2rem 2rem;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .about__feature {
    padding-right: 1.8rem;
  }
}
@media (max-width: 767px) {
  .about__feature {
    width: 100%;
  }
}
.about__feature h5 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
}
.about__feature p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .about__feature p {
    font-size: 1.4rem;
    line-height: 1.42em;
  }
}

.mission {
  padding-top: 10rem;
  position: relative;
  padding-bottom: 10rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .mission {
    padding-top: 5rem;
    margin-bottom: 0;
  }
}
.mission::before {
  content: "";
  width: 100%;
  height: calc(100% - 21.5rem);
  background-image: url(../../img/mission-bg.webp);
  background-size: cover;
  background-position: center top;
  position: absolute;
  left: 0;
  top: 21.5rem;
}
@media (max-width: 767px) {
  .mission::before {
    top: 12rem;
    height: calc(100% - 12rem);
    background-image: url(../../img/mission-bg-sp.webp);
  }
}
.mission__inner {
  position: relative;
  z-index: 2;
}
.mission__inner .ob1 {
  position: absolute;
  width: 4.8rem;
  position: absolute;
  top: 20.6rem;
  left: 36.2rem;
}
@media (max-width: 767px) {
  .mission__inner .ob1 {
    width: 1.8rem;
    top: 15rem;
    left: 4.8rem;
  }
}
.mission__inner .ob2 {
  position: absolute;
  width: 6.8rem;
  position: absolute;
  top: 28.7rem;
  right: 36.8rem;
}
@media (max-width: 767px) {
  .mission__inner .ob2 {
    top: 33.2rem;
    right: 3.75rem;
    width: 3.346rem;
  }
}
.mission__subttl {
  margin-bottom: 5rem;
}
.mission__subttl h5 {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .mission__subttl h5 {
    margin-bottom: 1.4rem;
  }
}
.mission__subttl span {
  font-size: 3.2rem;
  color: #173048;
  font-weight: 600;
  line-height: 1.56em;
  background-color: #fff;
  padding-left: 0.5rem;
}
@media (max-width: 767px) {
  .mission__subttl span {
    font-size: 2.4rem;
    line-height: 2.08em;
  }
}
.mission__subttl p {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.08em;
  color: #173048;
}
@media (max-width: 767px) {
  .mission__subttl p {
    font-size: 1.6rem;
    line-height: 1.75em;
  }
}
.mission__cards {
  max-width: 100rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .mission__cards {
    flex-direction: column;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.mission__card {
  width: calc(33.33333% - 0.6666rem);
  background-color: #fff;
  border-radius: 40rem 40rem 0 0;
}
@media (max-width: 767px) {
  .mission__card {
    width: 100%;
    margin-bottom: 2.8rem;
  }
}
.mission__card-img {
  height: 13.3rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .mission__card-img {
    height: auto;
  }
}
.mission__card-img .img1 {
  width: 6.316rem;
  margin-top: 3.14rem;
}
@media (max-width: 767px) {
  .mission__card-img .img1 {
    width: 6.0873rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.mission__card-img .img2 {
  width: 6.778rem;
  margin-top: 3.7rem;
}
@media (max-width: 767px) {
  .mission__card-img .img2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.mission__card-img .img3 {
  width: 5.7778rem;
  margin-top: 4.5rem;
}
@media (max-width: 767px) {
  .mission__card-img .img3 {
    width: 6.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.mission__card-ttl {
  margin-bottom: 3rem;
}
.mission__card-ttl h5, .mission__card-ttl p {
  text-align: center;
}
.mission__card-ttl h5 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2.08em;
  color: #173048;
}
.mission__card-ttl p {
  color: #173048;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.75em;
  margin-top: -1rem;
}
.mission__card-txt {
  padding-left: 2.3rem;
  padding-right: 1.9rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .mission__card-txt {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }
}
.mission__card-txt p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
  color: #173048;
}
.mission__officer {
  max-width: 100rem;
  margin: auto;
  margin-top: 5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .mission__officer {
    margin-top: 2.2rem;
    flex-direction: column;
    padding-left: 1.8rem;
    padding-right: 1.9rem;
  }
}
.mission__officer-img {
  width: 23.8rem;
  flex-shrink: 0;
}
.mission__officer-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .mission__officer-img {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .mission__officer-img img {
    width: 12.8rem;
    flex-shrink: 0;
    margin-right: 1rem;
  }
  .mission__officer-img h6 {
    font-size: 1.4rem;
    line-height: 2.08em;
    font-weight: 700;
  }
  .mission__officer-img h3 {
    font-size: 2.4rem;
    line-height: 2.08em;
    font-weight: 600;
  }
}
.mission__officer-txt {
  padding-left: 3.607rem;
  width: 100%;
}
@media (max-width: 767px) {
  .mission__officer-txt {
    padding-left: 0;
  }
}
.mission__officer-txt h6 {
  font-size: 1.6rem;
  line-height: 1.37em;
  font-weight: 700;
}
.mission__officer-txt h3 {
  font-size: 2.4rem;
  line-height: 2.08em;
  font-weight: 600;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #173048;
}
.mission__officer-txt p {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2.06em;
  margin-top: 1.6rem;
}

.cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #173048;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cta {
    padding-top: 3.3rem;
    padding-bottom: 3.3rem;
  }
}
.cta h2, .cta p {
  text-align: center;
  color: white;
  font-weight: 600;
}
.cta h2 {
  font-size: 2.4rem;
  line-height: 2.08em;
}
@media (max-width: 767px) {
  .cta h2 {
    font-size: 2rem;
    line-height: 1.65em;
  }
}
.cta p {
  font-size: 1.6rem;
  line-height: 1.75em;
  margin-top: -1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .cta p {
    margin-top: 2.1rem;
    margin-bottom: 2.1rem;
    font-size: 1.2rem;
  }
}
.cta .btn-wrapper {
  display: flex;
  justify-content: center;
}
.cta .btn-wrapper a {
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #173048;
  font-weight: 600;
  width: 21.3rem;
  background-color: #fff;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cta .btn-wrapper a {
    height: 3.7rem;
    width: 18.3rem;
  }
}
.cta .btn-wrapper a:hover {
  background-color: #D81E2C;
  color: white;
}

.information {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .information {
    padding-top: 5rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.information__inner {
  max-width: 80rem;
  margin: auto;
}
.information__inner h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2.08em;
  font-family: "Shippori Mincho", serif;
  color: #173048;
  border-bottom: 1px solid #173048;
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .information__inner h3 {
    font-size: 1.8rem;
    line-height: 2.77em;
  }
}
.information__inner p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
}
.information__inner .notice {
  font-size: 1.2rem;
  margin-bottom: 2.7rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .information__inner .notice {
    margin-top: 4rem;
  }
}
.information__inner table {
  width: 100%;
  border-top: 1px solid rgba(23, 48, 72, 0.3);
  margin-bottom: 5rem;
}
.information__inner table th {
  width: 30rem;
  background-color: #173048;
  color: white;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid white;
}
@media (max-width: 767px) {
  .information__inner table th {
    width: 10.5rem;
  }
}
.information__inner table td {
  border-bottom: 1px solid rgba(23, 48, 72, 0.3);
  border-right: 1px solid rgba(23, 48, 72, 0.3);
}
.information__inner table th, .information__inner table td {
  line-height: 2.06em;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .information__inner table th, .information__inner table td {
    padding: 0.6rem 0.8rem;
    font-size: 1.4rem;
    line-height: 2.14em;
  }
}
.information__inner .mb25 {
  margin-bottom: 2.5rem;
}
.information__inner iframe {
  width: 100%;
  height: 29rem;
}
@media (max-width: 767px) {
  .information__inner iframe {
    height: 20rem;
  }
}

.apply {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .apply {
    padding-top: 5rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.apply__inner {
  max-width: 80rem;
  margin: auto;
}
.apply__inner table {
  width: 100%;
  border-top: 1px solid rgba(23, 48, 72, 0.3);
}
.apply__inner table th {
  width: 30rem;
  background-color: #173048;
  color: white;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid white;
}
@media (max-width: 767px) {
  .apply__inner table th {
    width: 10.5rem;
  }
}
.apply__inner table td {
  border-bottom: 1px solid rgba(23, 48, 72, 0.3);
}
.apply__inner table th, .apply__inner table td {
  line-height: 2.06em;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.apply__inner table th a, .apply__inner table td a {
  font-size: 1em;
  color: #33394B;
  position: relative;
}
.apply__inner table th a::before, .apply__inner table td a::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #33394B;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .apply__inner table th, .apply__inner table td {
    padding: 0.6rem 0.8rem;
    font-size: 1.4rem;
    line-height: 2.14em;
  }
}

.faq {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .faq {
    padding-top: 5rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.faq__inner {
  max-width: 75rem;
  margin: auto;
}
.faq__block {
  background-color: #f9f9f8;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.faq__block .q {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .faq__block .q {
    padding: 0.8rem 0.6rem;
  }
}
.faq__block .q .wrap {
  display: flex;
  align-items: center;
}
.faq__block .q .question {
  width: 3.825rem;
  margin-right: 0.968rem;
}
@media (max-width: 767px) {
  .faq__block .q .question {
    width: 1.5rem;
    margin-right: 0.7rem;
  }
}
.faq__block .q p {
  font-size: 2rem;
  font-weight: 700;
  color: #173048;
}
@media (max-width: 767px) {
  .faq__block .q p {
    font-size: 1.6rem;
    line-height: 1.37em;
  }
}
.faq__block .q.active .faq-arrow {
  transform: rotate(180deg);
}
.faq__block .faq-arrow {
  width: 4rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .faq__block .faq-arrow {
    width: 2.2rem;
  }
}
.faq__block .a {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: none;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .faq__block .a {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    padding-bottom: 1rem;
  }
}
.faq__block .a p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
  border-top: 1px solid rgba(23, 48, 72, 0.3);
  padding-top: 1.6rem;
}
@media (max-width: 767px) {
  .faq__block .a p {
    font-size: 1.4rem;
    line-height: 2.14em;
  }
}
.faq__block .a p a {
  font-size: 1em;
  color: #33394B;
  position: relative;
}
.faq__block .a p a::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #33394B;
  position: absolute;
  left: 0;
  bottom: 0;
}

.contact {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 5rem;
    padding-bottom: 10rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.contact__inner {
  max-width: 80rem;
  margin: auto;
}
.contact__inner form .wrap {
  margin-bottom: 2rem;
}
.contact__inner form .wrap .ttl p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.75em;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .contact__inner form .wrap .ttl p {
    font-size: 1.4rem;
  }
}
.contact__inner form .select-wrapper {
  width: 100%;
  position: relative;
}
.contact__inner form .select-wrapper::after {
  content: "";
  width: 1.667rem;
  height: 0.8333rem;
  position: absolute;
  right: 1.5rem;
  top: 2.4rem;
  background-image: url(../../img/select-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact__inner form .select-wrapper select {
  width: 100%;
  height: 5.3rem;
  background-color: #F9F9F8;
  padding-left: 1.5rem;
  border: 1px solid rgba(23, 48, 72, 0.3);
  appearance: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-family: "Tsukushi A Round Gothic", "fot-tsukuardgothic-std", sans-serif;
  color: #33394B;
}
@media (max-width: 767px) {
  .contact__inner form .select-wrapper select {
    font-size: 1.4rem;
  }
}
.contact__inner form .input-wrapper {
  width: 100%;
}
.contact__inner form .input-wrapper input {
  width: 100%;
  height: 5.3rem;
  background-color: #F9F9F8;
  padding-left: 1.5rem;
  border: 1px solid rgba(23, 48, 72, 0.3);
  border-radius: 0.5rem;
  font-family: "Tsukushi A Round Gothic", "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
}
.contact__inner form .input-wrapper input::placeholder {
  color: #98999a;
}
.contact__inner form .input-wrapper textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  height: 23rem;
  background-color: #F9F9F8;
  border: 1px solid rgba(23, 48, 72, 0.3);
  border-radius: 0.5rem;
  font-family: "Tsukushi A Round Gothic", "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0;
  line-height: normal;
  font-size: 1.6rem;
  resize: none;
}
.contact__inner form .kibobi-wrapper {
  display: flex;
  gap: 1rem;
}
.contact__inner form .wrap .policy-check {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.contact__inner form .policy-wrap {
  margin-bottom: 5rem;
}
.contact__inner form input[type=checkbox] {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #173048;
  vertical-align: -0.5rem;
  border-radius: 0.3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact__inner form input[type=checkbox]:checked {
  background-color: #173048;
}
.contact__inner form input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.1rem;
  left: 0.4rem;
  transform: rotate(50deg);
  width: 0.6rem;
  height: 1rem;
  border-right: 0.2rem solid white;
  border-bottom: 0.2rem solid white;
  content: "";
}
.contact__inner form .submit-wrapper {
  display: flex;
  justify-content: center;
}
.contact__inner form .submit-wrapper input {
  width: 21.3rem;
  height: 5rem;
  background-color: #173048;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  color: white;
  font-weight: 600;
  border-radius: 0.4rem;
}

.footer__top {
  padding: 4rem 15rem;
  background: linear-gradient(126deg, #173048 22.96%, #142637 95.26%);
}
@media (max-width: 767px) {
  .footer__top {
    padding: 5rem 1.8rem;
  }
}
.footer__top .logo {
  width: 7.7rem;
  flex-shrink: 0;
  margin-right: 2.4rem;
}
@media (max-width: 767px) {
  .footer__top .logo {
    width: 8.2rem;
  }
}
.footer__top p {
  color: white;
  font-size: 2.4rem;
  font-weight: 600;
}
.footer__name {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
}
.footer__menu ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__menu ul {
    flex-direction: column;
  }
}
.footer__menu li {
  width: calc(25% - 1.8rem);
}
@media (max-width: 767px) {
  .footer__menu li {
    width: 100%;
  }
}
.footer__menu li a {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  padding-top: 1.6rem;
  border-bottom: 1px solid white;
}
@media (max-width: 767px) {
  .footer__menu li a {
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 2.4rem;
  }
  .footer__menu li a.last {
    margin-bottom: 0;
  }
}
.footer__menu li a span {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 767px) {
  .footer__menu li a span {
    line-height: 1.75em;
  }
}
.footer__menu li a img {
  width: 2.4rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .footer__menu li a img {
    margin-bottom: 0.5rem;
  }
}
.footer__bottom {
  background-color: #33394B;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.footer__bottom p {
  text-align: center;
  font-size: 1.2rem;
  color: white;
  font-family: "Noto Sans JP";
}

.thanks {
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.thanks h2, .thanks p {
  text-align: center;
}
.thanks h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .thanks h2 {
    font-size: 2rem;
  }
}
.thanks p {
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 500;
  font-family: "Tsukushi A Round Gothic", "fot-tsukuardgothic-std", sans-serif;
}
.thanks .btn-wrapper {
  display: flex;
  justify-content: center;
}
.thanks .btn-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 5rem;
  background-color: #173048;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 2rem;
}

.floating-area {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  transition: all 0.3s;
}
.floating-area.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 767px) {
  .floating-area {
    top: calc(100svh - 6rem);
  }
}
.floating-area .close {
  position: absolute;
  right: 2rem;
  top: -1rem;
}
@media (max-width: 767px) {
  .floating-area .close {
    top: -1rem;
    right: 1rem;
  }
}
.floating-area .close img {
  width: 1.8rem;
}
@media (max-width: 767px) {
  .floating-area .close img {
    width: 1.8rem;
  }
}
.floating-area .banner {
  width: 25.8rem;
}
@media (max-width: 767px) {
  .floating-area .banner {
    width: 15.4rem;
  }
}
.floating-area.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.grecaptcha-badge {
  display: none !important;
}

@media (max-width: 767px) {
  #ui-datepicker-div {
    width: 30rem;
  }
  #ui-datepicker-div * {
    font-size: 1.5rem;
  }
  .ui-datepicker td, .ui-datepicker th {
    font-size: 1.5rem;
  }
  .ui-datepicker td *, .ui-datepicker th * {
    font-size: 1em;
  }
}

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