@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;
}

body {
  background-image: url(../../img/bg.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  body {
    background-image: url(../../img/bg-sp.webp);
  }
}

.header {
  padding-left: 2rem;
  padding-right: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 98;
}
.header a {
  transition: all 0.3s;
}
.header a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header {
    padding-left: 1rem;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner a img {
  height: 16.8rem;
}
@media (max-width: 767px) {
  .header__inner a img {
    height: 9.2rem;
  }
}
.header__menu {
  display: flex;
}
@media (max-width: 767px) {
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100vh;
    background-color: #173048;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
  }
  .header__menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.header__menu ul {
  background-color: #173048;
  display: flex;
  align-items: center;
  height: 7rem;
  padding-left: 4.7rem;
  border-radius: 9.9rem;
  margin-right: -5rem;
}
@media (max-width: 767px) {
  .header__menu ul {
    flex-direction: column;
    height: unset;
    padding-left: 0;
    margin-right: 0;
    padding-top: 13.6rem;
    padding-bottom: 5.3rem;
    border-radius: unset;
  }
}
.header__menu ul a {
  font-family: "Shippori Mincho", serif;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
}
.header__menu ul li {
  padding-right: 4.7rem;
  border-right: 1px solid white;
  margin-right: 4.7rem;
}
@media (max-width: 767px) {
  .header__menu ul li {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 5.4rem;
    border: none;
  }
}
.header__menu ul li a {
  line-height: 1.355em;
  padding-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .header__menu ul li a {
    padding-bottom: 0;
  }
}
.header__menu ul li:last-child {
  border-right: none;
}
.header__menu .btns {
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
}
@media (max-width: 767px) {
  .header__menu .btns {
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    justify-content: center;
    border-radius: 0;
    gap: 3.4rem;
  }
}
.header__menu .btns a {
  display: flex;
  flex-direction: column;
  width: 7.6rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__menu .btns a {
    width: 16rem;
    height: 7rem;
  }
}
.header__menu .btns a img {
  height: 2rem;
  margin-bottom: 0.9rem;
}
.header__menu .btns a span {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
.header__menu .btns .tel {
  background-color: #fff;
}
.header__menu .btns .tel span {
  color: #173048;
}
@media (max-width: 767px) {
  .header__menu .btns .tel {
    border-radius: 1rem;
  }
}
.header__menu .btns .contact {
  background-color: #D81E2C;
}
.header__menu .btns .contact span {
  color: white;
}
@media (max-width: 767px) {
  .header__menu .btns .contact {
    border-radius: 1rem;
  }
}
.header .hamburger {
  position: fixed;
  z-index: 99;
  bottom: 5rem;
  right: 0;
  width: 5.1rem;
  height: 5.04rem;
  background-color: #173048;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem 0 0 0.4rem;
}
.header .hamburger span {
  height: 0.2rem;
  width: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  transition: all 0.3s;
}
.header .hamburger .sp1 {
  margin-bottom: 0.4rem;
}
.header .hamburger .sp2 {
  margin-bottom: 0.4rem;
}
.header .hamburger.active .sp1 {
  transform: rotate(45deg);
  margin-bottom: -0.8rem;
}
.header .hamburger.active .sp2 {
  opacity: 0;
}
.header .hamburger.active .sp3 {
  transform: rotate(-45deg);
}

.fv {
  height: 79.7rem;
  background-image: url(../../img/fv.webp);
  background-size: cover;
  padding-top: 44.6rem;
  padding-left: 58.2rem;
}
@media (max-width: 767px) {
  .fv {
    height: 67.6rem;
    background-image: url(../../img/fv-sp.webp);
    background-size: cover;
    background-position: center bottom;
    padding-top: 40.6rem;
    padding-left: 14.6rem;
  }
}
.fv img {
  height: 30rem;
  width: auto;
}
@media (max-width: 767px) {
  .fv img {
    height: 24rem;
  }
}

.desc-sec {
  padding-top: 25rem;
  padding-bottom: 38.3rem;
}
.desc-sec h2 {
  text-align: center;
  line-height: 1.56em;
  color: #173048;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 3.3rem;
}
.desc-sec p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.06em;
  color: #173048;
  letter-spacing: 0;
}
.desc-sec p span {
  font-size: 1em;
  color: #D81E2C;
}
@media (max-width: 767px) {
  .desc-sec {
    padding-top: 19.8rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 29.2rem;
  }
  .desc-sec h2 {
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.777em;
  }
  .desc-sec p {
    text-align: left;
  }
}

.about-sec {
  position: relative;
  padding-top: 13.2rem;
  margin-top: -13.2rem;
  z-index: 2;
  padding-bottom: 10.4rem;
}
@media (max-width: 767px) {
  .about-sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 9.1rem;
    margin-top: -9.1rem;
  }
}
.about-sec .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.about-sec .section__inner {
  position: relative;
  z-index: 2;
  max-width: 100rem;
  margin: auto;
}
.about-sec .section__inner .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 8.3rem;
}
@media (max-width: 767px) {
  .about-sec .section__inner .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 5rem;
  }
}
.about-sec .section__inner h2 {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  font-weight: 600;
  color: #f9f9f8;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .about-sec .section__inner h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.about-sec .section__inner h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #f9f9f8;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .about-sec .section__inner h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.about-sec .section__inner img, .about-sec .section__inner picture {
  width: 100%;
}
.about-sec .section__inner .desc {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0;
  color: white;
  text-align: center;
  margin-bottom: 8.3rem;
}
@media (max-width: 767px) {
  .about-sec .section__inner .desc {
    text-align: left;
    margin-bottom: 5rem;
  }
}
.about-sec ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .about-sec ul {
    flex-direction: column;
    gap: 1.3rem;
  }
}
.about-sec li {
  width: calc(33.33333% - 0.6666rem);
}
@media (max-width: 767px) {
  .about-sec li {
    width: 100%;
    padding-bottom: 2.7rem;
  }
}
.about-sec li img {
  width: 100%;
  margin-bottom: 0.8rem;
}
.about-sec li .card-ttl {
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid white;
}
.about-sec li .card-ttl h5 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
  white-space: nowrap;
}
.about-sec li .card-ttl p {
  font-size: 1.2rem;
  margin-top: -0.6rem;
  color: white;
}
@media (max-width: 767px) {
  .about-sec li .card-ttl p {
    margin-top: -0.3rem;
  }
}
.about-sec li .card-txt p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
  color: white;
}
.about-sec .btn-wrapper {
  display: flex;
  justify-content: center;
}
.about-sec .btn-wrapper a {
  height: 5rem;
  width: 21.3rem;
  background-color: #f9f9f8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #173048;
  font-weight: 600;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
.about-sec .btn-wrapper a:hover {
  opacity: 0.7;
}

.info-sec {
  padding-top: 25rem;
  padding-bottom: 24.6rem;
}
@media (max-width: 767px) {
  .info-sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 20rem;
    padding-bottom: 18.2rem;
  }
}
.info-sec .section__inner {
  max-width: 100rem;
  margin: auto;
}
.info-sec .section__inner .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 5rem;
}
.info-sec .section__inner .ttl-wrapper img, .info-sec .section__inner .ttl-wrapper picture {
  width: 100%;
}
@media (max-width: 767px) {
  .info-sec .section__inner .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 5rem;
  }
  .info-sec .section__inner .ttl-wrapper img {
    width: 100%;
  }
}
.info-sec .section__inner h2 {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .info-sec .section__inner h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.info-sec .section__inner h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .info-sec .section__inner h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.info-sec .section__inner ul {
  display: flex;
  gap: 0.2rem;
}
@media (max-width: 767px) {
  .info-sec .section__inner ul {
    flex-direction: column;
  }
}
.info-sec .section__inner ul li {
  position: relative;
}
.info-sec .section__inner ul li img {
  width: 100%;
  opacity: 0.7;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .info-sec .section__inner ul li img {
    opacity: 1;
  }
}
.info-sec .section__inner ul li .btn-wrapper {
  width: 100%;
  position: absolute;
  bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .info-sec .section__inner ul li .btn-wrapper {
    bottom: 1.2rem;
  }
}
.info-sec .section__inner ul li .btn-wrapper a, .info-sec .section__inner ul li .btn-wrapper p {
  display: flex;
  padding-left: 3rem;
  padding-right: 3rem;
  height: 5.3rem;
  background-color: white;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  border-radius: 9.9rem;
  transition: all 0.3s;
  position: relative;
}
.info-sec .section__inner ul li .btn-wrapper a span, .info-sec .section__inner ul li .btn-wrapper p span {
  font-size: 1em;
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  color: #173048;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .info-sec .section__inner ul li .btn-wrapper a, .info-sec .section__inner ul li .btn-wrapper p {
    height: 3.44rem;
  }
}
.info-sec .section__inner ul li a:hover img {
  opacity: 1;
}
.info-sec .section__inner ul li a:hover p {
  background-color: #173048;
}
.info-sec .section__inner ul li a:hover p span {
  color: white;
}

.footer {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background: linear-gradient(180deg, #092036 0%, #10283E 66.35%, #092036 100%);
}
.footer a {
  transition: all 0.3s;
}
.footer a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer__inner {
  max-width: 100rem;
  margin: auto;
}
.footer__inner .cta {
  display: flex;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .footer__inner .cta {
    flex-direction: column;
  }
}
.footer__inner .cta .img-wrapper {
  width: 35.7rem;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__inner .cta .img-wrapper p {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: white;
  position: relative;
  z-index: 2;
}
.footer__inner .cta .img-wrapper img {
  width: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .footer__inner .cta .img-wrapper {
    width: 100%;
  }
  .footer__inner .cta .img-wrapper p {
    font-size: 2.4rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    line-height: 2.08em;
  }
}
.footer__inner .cta .txt-wrapper {
  width: 100%;
  background-color: #f9f9f8;
  padding-top: 7.6rem;
  padding-left: 7.3rem;
  padding-right: 7.4rem;
  position: relative;
  padding-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .footer__inner .cta .txt-wrapper {
    padding-top: 2rem;
    padding-left: 1.6rem;
    padding-right: 0.9rem;
    padding-bottom: 2rem;
  }
}
.footer__inner .cta .txt-wrapper::after {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: -0.1rem;
  bottom: 0;
  background-color: #D81E2C;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.footer__inner .cta .txt-wrapper p {
  font-size: 1.6rem;
  line-height: 2em;
  background: linear-gradient(180deg, #092036 0%, #10283E 66.35%, #092036 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3.2rem;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .footer__inner .cta .txt-wrapper p {
    margin-bottom: 1.7rem;
  }
}
.footer__inner .cta .txt-wrapper .btn-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer__inner .cta .txt-wrapper .btn-wrapper {
    padding-right: 0.7rem;
    justify-content: center;
  }
}
.footer__inner .cta .txt-wrapper .btn-wrapper a {
  width: 18.7rem;
  border-radius: 0.4rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #092036 0%, #10283E 66.35%, #092036 100%);
  color: #f9f9f8;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer__inner .cta .txt-wrapper .btn-wrapper a {
    width: 21.3rem;
  }
}
.footer__menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5.7rem;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
.footer__menu .left a {
  display: inline-block;
  margin-bottom: 1.3rem;
}
@media (max-width: 767px) {
  .footer__menu .left a {
    margin-bottom: 4rem;
  }
}
.footer__menu .left a img {
  width: 9rem;
}
@media (max-width: 767px) {
  .footer__menu .left a img {
    width: 8.8rem;
  }
}
.footer__menu .left p {
  font-size: 1.6rem;
  line-height: 2em;
  color: #f9f9f8;
  letter-spacing: 0;
}
.footer__menu .right {
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .footer__menu .right {
    padding-top: 4rem;
  }
}
.footer__menu .right ul {
  display: flex;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .footer__menu .right ul {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 4rem;
  }
}
.footer__menu .right ul li {
  padding-right: 3rem;
  margin-right: 3rem;
  position: relative;
}
.footer__menu .right ul li::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 1.2rem;
  right: 0;
  top: calc(50% - 0.6rem);
  background-color: #f9f9f8;
}
.footer__menu .right ul li a {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  color: #f9f9f8;
  line-height: 1.77em;
}
.footer__menu .right ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.footer__menu .right ul li:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .footer__menu .right ul li {
    padding-right: 0;
    margin-right: 0;
  }
  .footer__menu .right ul li::after {
    display: none;
  }
}
.footer__menu .right .sns {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .footer__menu .right .sns {
    gap: 1.5rem;
    justify-content: flex-start;
  }
}
.footer__menu .right .sns img {
  width: 4rem;
}
@media (max-width: 767px) {
  .footer__menu .right .sns img {
    width: 3.9rem;
  }
}
.footer .copy p {
  text-align: center;
  color: #f9f9f8;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.1em;
}
@media (max-width: 767px) {
  .footer .copy p {
    font-size: 1.2rem;
  }
}

.kaso-fv {
  padding-top: 18.4rem;
  padding-bottom: 10.4rem;
  background-image: url(../../img/about-fv-bg.webp);
  background-size: cover;
}
@media (max-width: 767px) {
  .kaso-fv {
    background-image: url(../../img/about-fb-bg-sp.webp);
  }
}
.kaso-fv.admission-fv {
  background-image: url(../../img/admission-fv.webp);
}
@media (max-width: 767px) {
  .kaso-fv.admission-fv {
    background-image: url(../../img/admission-fv-sp.webp);
  }
}
.kaso-fv.company-fv {
  background-image: url(../../img/company-fv.webp);
}
@media (max-width: 767px) {
  .kaso-fv.company-fv {
    background-image: url(../../img/company-fv-sp.webp);
  }
}
.kaso-fv h1 {
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  color: #f9f9f8;
}
@media (max-width: 767px) {
  .kaso-fv h1 {
    font-size: 2.4rem;
    line-height: 2.88em;
  }
}

.concept {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 14rem;
  background-image: url(../../img/concept-sec-bg.webp);
  background-position: center bottom;
  background-size: cover;
}
@media (max-width: 767px) {
  .concept {
    background-image: url(../../img/concept-sec-bg-sp.webp);
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 11rem;
  }
}
.concept .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 6.5rem;
}
.concept .ttl-wrapper img, .concept .ttl-wrapper picture {
  width: 100%;
}
@media (max-width: 767px) {
  .concept .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .concept .ttl-wrapper img {
    width: 100%;
  }
}
.concept h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .concept h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.concept h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .concept h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.concept__inner {
  position: relative;
  z-index: 2;
}
.concept__inner .ob1 {
  position: absolute;
  width: 4.8rem;
  position: absolute;
  top: 9.5rem;
  left: 36.2rem;
}
@media (max-width: 767px) {
  .concept__inner .ob1 {
    width: 1.8rem;
    top: 5.9rem;
    left: 1.8rem;
  }
}
.concept__inner .ob2 {
  position: absolute;
  width: 6.8rem;
  position: absolute;
  top: 24.3rem;
  right: 32.8rem;
}
@media (max-width: 767px) {
  .concept__inner .ob2 {
    top: 26.6rem;
    right: 1rem;
    width: 3.346rem;
  }
}
.concept__subttl {
  margin-bottom: 6.5rem;
}
@media (max-width: 767px) {
  .concept__subttl {
    margin-bottom: 5rem;
  }
}
.concept__subttl h5 {
  text-align: center;
  margin-bottom: 6.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .concept__subttl h5 {
    margin-bottom: 5rem;
    line-height: 1em;
  }
}
.concept__subttl span {
  font-size: 3.2rem;
  color: #173048;
  font-weight: 600;
  line-height: 1.56em;
  padding-left: 0.5rem;
}
@media (max-width: 767px) {
  .concept__subttl span {
    font-size: 2.4rem;
    line-height: 1em;
  }
}
.concept__subttl p {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.08em;
  color: #173048;
}
@media (max-width: 767px) {
  .concept__subttl p {
    font-size: 1.6rem;
    line-height: 1.75em;
  }
}
.concept__cards {
  max-width: 100rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .concept__cards {
    flex-direction: column;
  }
}
.concept__card {
  width: calc(33.33333% - 3.33333rem);
}
@media (max-width: 767px) {
  .concept__card {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.concept__card-img {
  height: 9.73rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .concept__card-img {
    height: auto;
  }
}
.concept__card-img .img1 {
  width: 8.1rem;
}
@media (max-width: 767px) {
  .concept__card-img .img1 {
    width: 8rem;
    margin-bottom: 2.4rem;
  }
}
.concept__card-img .img2 {
  width: 6.66rem;
  height: auto;
}
@media (max-width: 767px) {
  .concept__card-img .img2 {
    margin-bottom: 1.5rem;
  }
}
.concept__card-img .img3 {
  width: 5.7778rem;
}
@media (max-width: 767px) {
  .concept__card-img .img3 {
    width: 6.2rem;
    margin-bottom: 1.5rem;
  }
}
.concept__card-ttl {
  margin-bottom: 2.4rem;
  border-top: 1px solid rgba(23, 48, 72, 0.3);
  border-bottom: 1px solid rgba(23, 48, 72, 0.3);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .concept__card-ttl {
    max-width: 26.8rem;
    margin: auto;
    margin-bottom: 2.4rem;
  }
}
.concept__card-ttl h5, .concept__card-ttl p {
  text-align: center;
}
.concept__card-ttl h5 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.25em;
  color: #173048;
}
.concept__card-ttl p {
  color: #173048;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1em;
  margin-top: 0.5rem;
}
.concept__card-txt p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
  color: #173048;
}
.concept__officer {
  max-width: 100rem;
  margin: auto;
  margin-top: 6.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .concept__officer {
    flex-direction: column;
    margin-top: 0;
  }
}
.concept__officer-img {
  width: 23.8rem;
  flex-shrink: 0;
}
.concept__officer-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .concept__officer-img {
    display: flex;
    align-items: center;
    margin-bottom: 3.6rem;
  }
}
.concept__officer-txt {
  padding-left: 3.607rem;
  width: 100%;
}
@media (max-width: 767px) {
  .concept__officer-txt {
    padding-left: 0;
  }
}
.concept__officer-txt h6 {
  font-size: 1.6rem;
  line-height: 1.37em;
  font-weight: 700;
}
.concept__officer-txt h3 {
  font-size: 2.4rem;
  line-height: 2.08em;
  font-weight: 600;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #173048;
}
@media (max-width: 767px) {
  .concept__officer-txt h3 {
    padding-bottom: 1.5rem;
  }
}
.concept__officer-txt p {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2.06em;
  margin-top: 1.6rem;
}

.strengths {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
.strengths .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 6.5rem;
}
.strengths .ttl-wrapper img, .strengths .ttl-wrapper picture {
  width: 100%;
}
@media (max-width: 767px) {
  .strengths .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .strengths .ttl-wrapper img {
    width: 100%;
  }
}
.strengths h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .strengths h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.strengths h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .strengths h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
@media (max-width: 767px) {
  .strengths {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    padding-top: 14rem;
  }
}
.strengths__inner {
  max-width: 100rem;
  margin: auto;
}
.strengths__desc {
  margin-bottom: 5rem;
}
.strengths__desc p {
  font-size: 1.6rem;
  line-height: 2.06em;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .strengths__desc p {
    text-align: left;
  }
}
.strengths__cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .strengths__cards {
    flex-direction: column;
    gap: 1.3rem;
  }
}
.strengths__card {
  width: calc(33.33333% - 0.6666rem);
}
@media (max-width: 767px) {
  .strengths__card {
    width: 100%;
    padding-bottom: 2.7rem;
  }
}
.strengths__card img {
  width: 100%;
  margin-bottom: 0.8rem;
}
.strengths__card-ttl {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #173048;
}
.strengths__card-ttl h5 {
  color: #173048;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
}
.strengths__card-ttl p {
  font-size: 1.2rem;
  margin-top: -0.6rem;
  color: #173048;
}
@media (max-width: 767px) {
  .strengths__card-ttl p {
    margin-top: -0.3rem;
  }
}
.strengths__card-txt p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
}
.strengths__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.strengths__feature {
  width: calc(50% - 0.35rem);
  background-color: #F9F9F8;
  padding: 1.2rem 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(23, 48, 72, 0.15);
}
@media (min-width: 768px) {
  .strengths__feature {
    padding-right: 1.8rem;
  }
}
@media (max-width: 767px) {
  .strengths__feature {
    width: 100%;
  }
}
.strengths__feature h5 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
  color: #173048;
}
.strengths__feature p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .strengths__feature p {
    font-size: 1.4rem;
  }
}

.feature-sec {
  padding-bottom: 9rem;
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .feature-sec {
    padding-top: 9rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.feature-sec .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 5rem;
}
.feature-sec .ttl-wrapper img, .feature-sec .ttl-wrapper picture {
  width: 100%;
}
@media (max-width: 767px) {
  .feature-sec .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .feature-sec .ttl-wrapper img {
    width: 100%;
  }
}
.feature-sec h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .feature-sec h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.feature-sec h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .feature-sec h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.feature-sec .section-inner {
  max-width: 76rem;
  margin: auto;
}
.feature-sec .section-inner ul li {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .feature-sec .section-inner ul li {
    margin-bottom: 5rem;
  }
}
.feature-sec .section-inner ul h6 {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(23, 48, 72, 0.3);
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.25em;
  color: #173048;
}
@media (max-width: 767px) {
  .feature-sec .section-inner ul h6 {
    font-size: 1.8rem;
    line-height: 1.77em;
  }
}
.feature-sec .section-inner ul p {
  font-size: 1.6rem;
  line-height: 2.06em;
}

.teacher {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .teacher {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }
}
.teacher .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 6.5rem;
}
.teacher .ttl-wrapper img, .teacher .ttl-wrapper picture {
  width: 100%;
}
@media (max-width: 767px) {
  .teacher .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .teacher .ttl-wrapper img {
    width: 100%;
  }
}
.teacher h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .teacher h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.teacher h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .teacher h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.teacher .desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.06em;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .teacher .desc {
    text-align: left;
  }
}
.teacher ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
  max-width: 100rem;
  margin: auto;
}
@media (max-width: 767px) {
  .teacher ul {
    gap: 5rem 1rem;
  }
}
.teacher ul li {
  width: calc(50% - 1.5rem);
  display: flex;
}
@media (max-width: 767px) {
  .teacher ul li {
    width: calc(50% - 0.5rem);
    flex-direction: column;
    align-items: center;
  }
}
.teacher ul .img {
  width: 17.5rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .teacher ul .img {
    width: 14rem;
  }
}
.teacher ul .img img {
  width: 100%;
}
.teacher ul .txt {
  padding-left: 2.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .teacher ul .txt {
    padding-left: 0;
    padding-top: 1rem;
  }
}
.teacher ul .txt .class {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #173048;
}
@media (max-width: 767px) {
  .teacher ul .txt .class {
    font-size: 1.3rem;
  }
}
.teacher ul .txt .name {
  font-size: 2.4rem;
  line-height: 2.08em;
  font-weight: 600;
  border-bottom: 1px solid #173048;
  color: #173048;
}
@media (max-width: 767px) {
  .teacher ul .txt .name {
    font-size: 1.7rem;
    line-height: 2.35em;
  }
}
.teacher ul .txt .profile {
  font-size: 1.6rem;
  line-height: 2.06em;
  padding-top: 0.2rem;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .teacher ul .txt .profile {
    font-size: 1.4rem;
  }
}

.environment {
  padding-top: 10rem;
  padding-bottom: 25rem;
}
@media (max-width: 767px) {
  .environment {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }
}
.environment .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 50.8rem;
  margin-bottom: 6.5rem;
}
.environment .ttl-wrapper img, .environment .ttl-wrapper picture {
  width: 100%;
}
@media (max-width: 767px) {
  .environment .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .environment .ttl-wrapper img {
    width: 100%;
  }
}
.environment h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .environment h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.environment h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .environment h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.environment .desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .environment .desc {
    text-align: left;
  }
}
.environment .flex {
  display: flex;
  max-width: 100rem;
  margin: auto;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .environment .flex {
    gap: 2rem;
  }
}
.environment .flex .card {
  width: calc(50% - 1.5rem);
}
@media (max-width: 767px) {
  .environment .flex .card {
    width: 100%;
  }
}
.environment .flex .card img {
  width: 100%;
  margin-bottom: 1rem;
}
.environment .flex .card p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: #173048;
}

.apply-sec {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .apply-sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }
}
.apply-sec .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 6.5rem;
}
.apply-sec .ttl-wrapper img, .apply-sec .ttl-wrapper picture {
  width: 100%;
  width: 54.8rem;
}
@media (max-width: 767px) {
  .apply-sec .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .apply-sec .ttl-wrapper img, .apply-sec .ttl-wrapper picture {
    width: 100%;
  }
}
.apply-sec h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .apply-sec h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.apply-sec h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .apply-sec h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.apply-sec table {
  width: 100%;
  max-width: 80rem;
  margin: auto;
}
@media (max-width: 767px) {
  .apply-sec table {
    border: 1px solid rgba(23, 48, 72, 0.3);
    border-top: none;
  }
}
@media (max-width: 767px) {
  .apply-sec table tr {
    display: flex;
    flex-direction: column;
  }
}
.apply-sec table tr th {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  background-color: #173048;
  width: 30rem;
  color: white;
  border-top: 1px solid white;
}
@media (max-width: 767px) {
  .apply-sec table tr th {
    width: 100%;
  }
}
.apply-sec table tr td {
  border-top: 1px solid rgba(23, 48, 72, 0.3);
}
.apply-sec table tr th, .apply-sec table tr td {
  font-size: 1.6rem;
  line-height: 2.06em;
  padding: 1rem 2rem;
}
.apply-sec table tr th a, .apply-sec table tr td a {
  font-size: 1em;
  color: #173048;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .apply-sec table tr td {
    padding: 0.5rem 2rem;
  }
}
.apply-sec table tr:last-child {
  border-bottom: 1px solid rgba(23, 48, 72, 0.3);
}
@media (max-width: 767px) {
  .apply-sec table tr:last-child {
    border: unset;
  }
}

.process {
  padding-top: 15rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .process {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 15rem;
  }
}
.process .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 10rem;
}
.process .ttl-wrapper img, .process .ttl-wrapper picture {
  width: 100%;
  width: 54.8rem;
}
@media (max-width: 767px) {
  .process .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .process .ttl-wrapper img, .process .ttl-wrapper picture {
    width: 100%;
  }
}
.process h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .process h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.process h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .process h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.process ul {
  max-width: 80rem;
  margin: auto;
}
.process ul li {
  display: flex;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .process ul li {
    flex-direction: column;
  }
}
.process ul li .num {
  font-size: 4.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-right: 1rem;
  line-height: 1.04em;
  color: #173048;
}
@media (max-width: 767px) {
  .process ul li .num {
    line-height: 1.56em;
    font-size: 3.2rem;
  }
}
.process ul li .txt {
  padding: 1.2rem 2rem;
}
@media (max-width: 767px) {
  .process ul li .txt {
    padding: 1.2rem 0;
  }
}
.process ul li .txt h5 {
  line-height: 1.25em;
  font-size: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #173048;
}
@media (max-width: 767px) {
  .process ul li .txt h5 {
    font-size: 1.8rem;
    line-height: 1.777em;
  }
}
.process ul li .txt p {
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
}

.daily {
  padding-top: 15rem;
  padding-bottom: 20rem;
}
@media (max-width: 767px) {
  .daily {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 15rem;
  }
}
.daily .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5rem;
}
.daily .ttl-wrapper img, .daily .ttl-wrapper picture {
  width: 100%;
  width: 50.8rem;
}
@media (max-width: 767px) {
  .daily .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .daily .ttl-wrapper img, .daily .ttl-wrapper picture {
    width: 100%;
  }
}
.daily h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .daily h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.daily h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .daily h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.daily .routine {
  max-width: 90rem;
  margin: auto;
}
.daily .routine img {
  width: 100%;
}

.faq {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .faq {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.faq .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5rem;
}
.faq .ttl-wrapper img, .faq .ttl-wrapper picture {
  width: 100%;
  width: 50.8rem;
}
@media (max-width: 767px) {
  .faq .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .faq .ttl-wrapper img, .faq .ttl-wrapper picture {
    width: 100%;
  }
}
.faq h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .faq h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.faq h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .faq h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.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;
  letter-spacing: 0;
}
@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;
}

.company-about-sec {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .company-about-sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }
}
.company-about-sec .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5rem;
}
.company-about-sec .ttl-wrapper img, .company-about-sec .ttl-wrapper picture {
  width: 100%;
  width: 50.8rem;
}
@media (max-width: 767px) {
  .company-about-sec .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .company-about-sec .ttl-wrapper img, .company-about-sec .ttl-wrapper picture {
    width: 100%;
  }
}
.company-about-sec h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .company-about-sec h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.company-about-sec h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .company-about-sec h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.company-about-sec h3 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .company-about-sec h3 {
    font-size: 2.4rem;
  }
}
.company-about-sec table {
  width: 100%;
  max-width: 80rem;
  margin: auto;
}
@media (max-width: 767px) {
  .company-about-sec table {
    border: 1px solid rgba(23, 48, 72, 0.3);
    border-top: none;
  }
}
@media (max-width: 767px) {
  .company-about-sec table tr {
    display: flex;
    flex-direction: column;
  }
}
.company-about-sec table tr th {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  background-color: #173048;
  width: 30rem;
  color: white;
  border-top: 1px solid white;
}
@media (max-width: 767px) {
  .company-about-sec table tr th {
    width: 100%;
  }
}
.company-about-sec table tr td {
  border-top: 1px solid rgba(23, 48, 72, 0.3);
}
.company-about-sec table tr th, .company-about-sec table tr td {
  font-size: 1.6rem;
  line-height: 2.06em;
  padding: 1rem 2rem;
}
.company-about-sec table tr th a, .company-about-sec table tr td a {
  font-size: 1em;
  color: #173048;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .company-about-sec table tr td {
    padding: 0.5rem 2rem;
  }
}
.company-about-sec table tr:last-child {
  border-bottom: 1px solid rgba(23, 48, 72, 0.3);
}
@media (max-width: 767px) {
  .company-about-sec table tr:last-child {
    border: unset;
  }
}
.company-about-sec .h3-2 {
  margin-top: 5rem;
}

.philosophy {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .philosophy {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10rem;
  }
}
.philosophy .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5rem;
}
.philosophy .ttl-wrapper img, .philosophy .ttl-wrapper picture {
  width: 100%;
  width: 50.8rem;
}
@media (max-width: 767px) {
  .philosophy .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .philosophy .ttl-wrapper img, .philosophy .ttl-wrapper picture {
    width: 100%;
  }
}
.philosophy h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .philosophy h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.philosophy h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .philosophy h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.philosophy h3 {
  font-size: 3.2rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.56em;
  margin-bottom: 2.5rem;
  color: #173048;
}
@media (max-width: 767px) {
  .philosophy h3 {
    text-align: left;
    font-size: 2.4rem;
    line-height: 2.08em;
  }
}
.philosophy p {
  letter-spacing: 0;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2em;
}
@media (max-width: 767px) {
  .philosophy p {
    text-align: left;
  }
}

.access {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .access {
    padding-top: 10rem;
  }
}
.access .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .access .ttl-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.access .ttl-wrapper img, .access .ttl-wrapper picture {
  width: 100%;
  width: 50.8rem;
}
@media (max-width: 767px) {
  .access .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .access .ttl-wrapper img, .access .ttl-wrapper picture {
    width: 100%;
  }
}
.access h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .access h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.access h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .access h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.access p {
  max-width: 67.8rem;
  font-size: 1.6rem;
  line-height: 2.06em;
  letter-spacing: 0;
  margin: auto;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .access p {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.access iframe {
  width: 100%;
  height: 30rem;
}

.contact-sec {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .contact-sec {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 15rem;
  }
}
.contact-sec .ttl-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5rem;
}
.contact-sec .ttl-wrapper img, .contact-sec .ttl-wrapper picture {
  width: 100%;
  width: 50.8rem;
}
@media (max-width: 767px) {
  .contact-sec .ttl-wrapper {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 4.5rem;
  }
  .contact-sec .ttl-wrapper img, .contact-sec .ttl-wrapper picture {
    width: 100%;
  }
}
.contact-sec h2 {
  text-align: center;
  font-weight: bold;
  font-size: 4.5rem;
  font-weight: 600;
  color: #173048;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .contact-sec h2 {
    font-size: 2.4rem;
    text-align: left;
    padding-left: 0.8rem;
    margin-bottom: 0;
  }
}
.contact-sec h2 span {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #173048;
  position: relative;
  top: -0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .contact-sec h2 span {
    font-size: 1rem;
    margin-left: 0.2rem;
    top: 0rem;
  }
}
.contact-sec .form-wrapper {
  max-width: 80rem;
  margin: auto;
}
.contact-sec .form-wrapper form .wrap {
  margin-bottom: 2rem;
}
.contact-sec .form-wrapper form .wrap .ttl p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.75em;
  margin-bottom: 0.5rem;
  color: #173048;
}
@media (max-width: 767px) {
  .contact-sec .form-wrapper form .wrap .ttl p {
    font-size: 1.4rem;
  }
}
.contact-sec .form-wrapper form .select-wrapper {
  width: 100%;
  position: relative;
}
.contact-sec .form-wrapper 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-sec .form-wrapper 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;
}
.contact-sec .form-wrapper form .input-wrapper {
  width: 100%;
}
.contact-sec .form-wrapper 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-sec .form-wrapper form .input-wrapper input::placeholder {
  color: #98999a;
}
.contact-sec .form-wrapper 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-sec .form-wrapper form .wrap .policy-check {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.contact-sec .form-wrapper form .policy-wrap {
  margin-bottom: 5rem;
}
.contact-sec .form-wrapper 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-sec .form-wrapper form input[type=checkbox]:checked {
  background-color: #173048;
}
.contact-sec .form-wrapper 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-sec .form-wrapper form .submit-wrapper {
  display: flex;
  justify-content: center;
}
.contact-sec .form-wrapper 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: none;
  border-radius: 0.4rem;
}

.sec-404 {
  padding-top: 20rem;
  padding-bottom: 15rem;
}
.sec-404 h1 {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 3rem;
}
.sec-404 h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: bold;
}
.sec-404 p {
  text-align: center;
  font-size: 2rem;
  line-height: normal;
  margin-bottom: 6rem;
}
.sec-404 .btn-wrapper {
  display: flex;
  justify-content: center;
}
.sec-404 .btn-wrapper a {
  width: 30rem;
  height: 5rem;
  font-size: 1.4rem;
  background-color: #173048;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.wpcf7-list-item {
  margin-left: 0;
}

.policy-wrap label, .policy-wrap span {
  font-size: 1.4rem;
}

.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin-top: 1rem;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: normal;
  width: 100%;
  position: relative;
  font-weight: bold;
  padding: 1rem 2rem;
}

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