@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  background-color: #fefefe;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 0.8333333333vw;
  }
}
body ul {
  list-style: none;
}
body a {
  text-decoration: none;
}
body.overflow-hidden {
  overflow: hidden;
}

main {
  position: relative;
}

.inner {
  max-width: 1040px;
  width: calc(100% - 40px);
  margin-inline: auto;
}

.l_type {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-style: italic;
}

.b_type {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.o_type {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.hidden-md {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vw;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #0236a2;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header {
    height: 90px;
    position: fixed;
    width: 100%;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12vw;
  max-width: 266.6666666667vw;
  width: calc(100% - 10.6666666667vw);
  margin-inline: auto;
  padding-inline: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .header__contents {
    max-width: 1000px;
    height: 90px;
    width: calc(100% - 80px);
    padding-inline: 40px;
  }
}

.header-logo {
  position: relative;
  width: 56vw;
  z-index: 9999;
  margin-top: -1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .header-logo {
    margin-top: 0;
    width: 357px;
  }
}
@media screen and (min-width: 1024px) {
  .header-logo {
    margin-top: 0;
    width: 510px;
  }
}

.header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-nav {
    display: block;
  }
}

.header-nav__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
}

.header-nav__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  height: 40px;
  position: relative;
}

.header-nav__item:nth-child(3) {
  padding-block: 8px;
}

.header-nav__item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  background-image: url(../img/header_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 50%;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-nav__item a {
  display: block;
}

.hamburger {
  background-color: transparent;
  position: absolute;
  position: fixed;
  top: 3.2vw;
  z-index: 9999;
  width: 4.2666666667vw;
  height: 4vw;
  cursor: pointer;
  right: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  right: -0.5333333333vw;
  display: inline-block;
  height: 0.5333333333vw;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger span:first-child {
  width: 7.4666666667vw;
  top: 0.8vw;
  right: 0;
  border-radius: 1.3333333333vw;
}

.hamburger span:nth-child(2) {
  width: 7.4666666667vw;
  top: 2.4vw;
  right: 0;
  border-radius: 1.3333333333vw;
}

.hamburger span:nth-child(3) {
  width: 7.4666666667vw;
  top: 4vw;
  right: 0;
  border-radius: 1.3333333333vw;
}

.hamburger.is-active span:first-child {
  top: 2.4vw;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 6.9333333333vw;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 2.4vw;
  right: -0.2666666667vw;
  width: 6.9333333333vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  right: 0;
  display: none;
  width: 68vi;
  height: 186.6666666667vw;
  background: #0236a2;
}

.drawer-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  width: inherit;
  padding-block: 10.6666666667vw;
}

.drawer-menu__items {
  width: 100%;
  margin-top: 7.4666666667vw;
}

.drawer-menu-link {
  width: 100%;
  position: relative;
}

.drawer-menu-link::after {
  content: "";
  display: inline-block;
  width: 4vw;
  height: 5.3333333333vw;
  background-image: url(../img/sp/icon_arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 10.1333333333vw;
  right: 9.0666666667vw;
}

.drawer-menu__item {
  width: 100%;
  text-align: center;
  border-top: 0.5333333333vw solid #fff;
}
.drawer-menu__item a {
  font-size: 4.8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8vw;
}

.drawer-menu__item:nth-of-type(4) {
  border-bottom: 0.5333333333vw solid #fff;
}

.drawer-menu__item:nth-child(7) {
  text-align: center;
  margin-top: 8vw;
  height: 20.5333333333vw;
  background-color: #fff;
  padding-top: 1.8666666667vw;
}
.drawer-menu__item:nth-child(7) a {
  color: #0c401f;
  font-weight: 700;
}

.drawer-menu__item:nth-child(8) {
  text-align: center;
  border: 0.2666666667vw solid #fff;
  -webkit-box-shadow: 0px 0.22vw 0.55vw 0px #051c0f;
          box-shadow: 0px 0.22vw 0.55vw 0px #051c0f;
  padding-top: 3.7333333333vw;
  padding-bottom: 4.8vw;
}

.drawer-menu-contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.md_sns {
  text-align: center;
  margin-top: 8vw;
}
.md_sns a:nth-of-type(2) {
  margin-inline: 6.6666666667vw;
}
.md_sns a img {
  width: 9.3333333333vw;
}

@media screen and (max-width: 768px) {
  .header.action {
    background-color: #fff;
  }
  .hamburger__container {
    display: block;
  }
}
.fv {
  /*background-image: url(../img/sp/fv_img02.webp);*/
  background-image: url(../img/fv_img0102.webp);
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 186.6666666667vw;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .fv {
    background-image: url(../img/fv_img0102.webp);
    height: 1060px;
    background-size: 1920px 1300px;
  }
}

.fv__opencampus-title {
  position: absolute;
  top: 18.6666666667vw;
  width: 93vw;
  right: 2.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .fv__opencampus-title {
    top: 46.6666666667vw;
  }
}
.fv__opencampus-title span {
  font-size: 5.3333333333vw;
  font-weight: bolder;
  letter-spacing: 0.4vw;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 147, 77)), to(rgb(252, 104, 111)));
  background: linear-gradient(90deg, rgb(255, 147, 77) 0%, rgb(252, 104, 111) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv__opencampus-title span::before {
  margin-top: 2px;
  position: absolute;
  display: inline-block;
  content: "";
  width: 84vw;
  height: 6.4vw;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-title span::before {
    margin-top: 8px;
    width: 817px;
    height: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-title span {
    font-size: 48px;
    letter-spacing: 1.7px;
  }
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-title {
    width: 800px;
    top: 130px;
    right: 48%;
    -webkit-transform: translateX(calc(48% + 5.625vw));
            transform: translateX(calc(48% + 5.625vw));
  }
}

.fv__opencampus-message--middle {
  position: absolute;
  width: 97.3333333333vw;
  padding-left: 16px;
  top: 69.8vw;
  -webkit-transform: rotate(-4.47deg);
          transform: rotate(-4.47deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-message--middle {
    width: 771px;
    top: 346px;
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 5.625vw)) rotate(-4.47deg);
            transform: translateX(calc(-50% - 5.625vw)) rotate(-4.47deg);
  }
}

.fv__yoani-name {
  width: 40vw;
  -webkit-transform: rotate(4.47deg);
          transform: rotate(4.47deg);
  margin-left: -4.8vw;
  margin-top: -7.4666666667vw;
}
@media screen and (min-width: 1024px) {
  .fv__yoani-name {
    width: 320px;
    margin-left: -32px;
    margin-top: -64px;
  }
}

.fv__opencampus-exhibision {
  margin-top: -8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .fv__opencampus-exhibision {
    margin-top: -63px;
  }
}
.fv__opencampus-exhibision p {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 56vw;
  font-size: 25.3333333333vw;
  font-weight: 700;
  letter-spacing: 0.5333333333vw;
  line-height: 1;
  background: linear-gradient(44deg, rgb(97, 235, 220) 0%, rgb(120, 169, 231) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv__opencampus-exhibision p::before {
  position: absolute;
  content: "全国";
  display: inline-block;
  text-shadow: 0px 0px 50px rgb(255, 255, 255);
  -webkit-background-clip: text;
  -webkit-text-fill-color: initial;
  color: rgba(255, 255, 255, 0);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv__opencampus-exhibision p::before {
    content: "全国";
    display: inline-block;
    text-shadow: 0px 0px 90px rgb(255, 255, 255);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    color: rgba(255, 255, 255, 0);
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-exhibision p {
    font-size: 190px;
    width: 420px;
    letter-spacing: 4px;
  }
}
.fv__opencampus-exhibision span {
  margin-left: -4.2666666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 3.2vw;
  letter-spacing: 0.2666666667vw;
  color: #fff;
  background-color: #0236a2;
  text-align: center;
  padding-top: 0.8vw;
  width: 37.3333333333vw;
  height: 5.8666666667vw;
  -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-exhibision span {
    margin-left: -16px;
    padding-top: 6px;
    font-size: 24px;
    width: 280px;
    height: 44px;
    letter-spacing: 2px;
  }
}

.fv__opencampus-tour {
  font-size: 9.6vw;
  white-space: nowrap;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.8533333333vw;
  background: linear-gradient(44deg, rgb(97, 235, 220) 0%, rgb(120, 169, 231) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 40px rgb(255, 255, 255);
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-tour {
    font-size: 72px;
    letter-spacing: 6px;
    text-shadow: 0px 0px 40px rgb(255, 255, 255);
  }
}

.fv__opencampus-message--bottom {
  position: absolute;
  width: 130%;
  top: 98.3333333333vw;
  display: grid;
  place-items: center;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-4.47deg);
          transform: translateX(-50%) rotate(-4.47deg);
  background-color: #fff;
  padding-block: 2.1333333333vw;
}
.fv__opencampus-message--bottom p {
  display: inline-block;
  font-size: 3.2vw;
  font-weight: 700;
  color: #0236a2;
  letter-spacing: 0.4vw;
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-message--bottom p {
    font-size: 20px;
    letter-spacing: 2px;
    text-indent: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .fv__opencampus-message--bottom {
    width: 1920px;
    padding-block: 8px;
    top: 724px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-4.47deg);
            transform: translateX(-50%) rotate(-4.47deg);
  }
}

.cta {
  margin-top: -71.2vw;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 1024px) {
  .cta {
    /*overflow: hidden;
    height: 471px;*/
    margin-top: 46px;
  }
}

.cta__worries-image {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cta__worries-image {
    overflow-x: hidden;
    width: 1920px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .cta__worries-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.cta__button {
  width: calc(100% - 50px);
  padding-inline: 6.6666666667vw;
  height: 21.3333333333vw;
  font-size: 4.5333333333vw;
  max-width: 78.6666666667vw;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 13.3333333333vw;
  background-image: linear-gradient(44deg, rgb(255, 147, 77) 0%, rgb(252, 104, 111) 100%);
  -webkit-box-shadow: 0px 2.9333333333vw 5.8666666667vw 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2.9333333333vw 5.8666666667vw 0px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 1024px) {
  .cta__button {
    margin-top: -224px;
    padding-inline: 25px;
    width: 422px;
    height: 100px;
    font-size: 24px;
    -webkit-box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.3);
  }
}

.serch-opencampus {
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .serch-opencampus {
    padding-top: 80px;
  }
}

.serch-opencampus__inner {
  width: 100%;
}

.serch-opencampus__bg {
  padding: 0.3333333333vw 5.3333333333vw;
  background-image: url(../img/sec1_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .serch-opencampus__bg {
    padding: 60px 20px 180px;
  }
}

.serch-opencampus__title {
  text-align: center;
  font-size: 7.2vw;
  background: linear-gradient(44deg, rgb(97, 235, 220) 0%, rgb(120, 169, 231) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .serch-opencampus__title {
    font-size: 60px;
  }
}

/*area-change__tabの形状*/
.area-change__tab {
  margin-top: 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 0.5333333333vw solid #78a9e7;
  gap: 4vw;
  padding-block: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .area-change__tab {
    margin-inline: auto;
    max-width: 670px;
    gap: 30px;
    margin-top: 75px;
    padding-block: 35px;
    border-top: 2px solid #78a9e7;
    border-bottom: 2px solid #78a9e7;
  }
}

.area-change__tab-link {
  width: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6vw;
  border-radius: 5.3333333333vw;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border: 1px solid #78a9e7;
  color: #78a9e7;
  padding: 5.3333333333vw 1.0666666667vw 5.3333333333vw 3.7333333333vw;
  font-size: 2.9333333333vw;
}
.area-change__tab-link p {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .area-change__tab-link {
    padding: 20px;
    font-size: 18px;
    gap: 10px;
    border-radius: 20px;
    max-width: calc(25vw - 10px);
    height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .area-change__tab-link {
    width: 190px;
  }
}

.area-change__tab-arrow,
.area-change__tab-arrow--active {
  margin-top: -0.5333333333vw;
  width: 3.8666666667vw;
  height: 4vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.area-change__tab-arrow img,
.area-change__tab-arrow--active img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .area-change__tab-arrow,
  .area-change__tab-arrow--active {
    margin-top: 2px;
    width: 30px;
    height: 30px;
  }
}

.area-change__tab-item {
  background: #fff;
  border-radius: 5.3333333333vw;
}
.area-change__tab-item .area-change__tab-link .area-change__tab-arrow--active {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-change__tab-item {
    border-radius: 20px;
    width: calc(25vw - 10px);
  }
}
@media screen and (min-width: 1024px) {
  .area-change__tab-item {
    border-radius: 20px;
    width: 190px;
  }
}

/*liにactiveクラスがついた時の形状*/
.area-change__tab-item.active {
  color: #fff;
  background: rgb(97, 235, 220);
  background: linear-gradient(44deg, rgb(97, 235, 220) 0%, rgb(120, 169, 231) 100%);
  border: unset;
}
.area-change__tab-item.active .area-change__tab-link {
  color: #fff;
}
.area-change__tab-item.active .area-change__tab-link .area-change__tab-arrow {
  display: none;
}
.area-change__tab-item.active .area-change__tab-link .area-change__tab-arrow--active {
  display: block;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  /*background: #fff;*/
  padding: 3rem 5.3333333333vw 11vw;
}
.area ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
  row-gap: 9.6vw;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .area{
  margin-top:-8rem;
  padding: 6rem 5.3333333333vw 11vw;

  }
  .area ul {
    margin-inline: auto;
    max-width: 774px;
  }
}
@media screen and (min-width: 1024px) {
  .area ul {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 40px;
  }
}
.area.is-active {
  display: block;
  /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.open-campus__card img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .open-campus__card {
    width: 238px;
    height: 416px;
  }
}

.open-campus__day,
.open-campus__place {
  margin-top: 4.2666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1333333333vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2vw;
}
@media screen and (min-width: 1024px) {
  .open-campus__day,
  .open-campus__place {
    margin-top: 16px;
    gap: 8px;
    font-size: 12px;
  }
}
.open-campus__day .open-campus__title,
.open-campus__place .open-campus__title {
  background: #78a9e7;
  color: #fff;
  font-size: 2.6666666667vw;
  padding: 1.0666666667vw 2.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .open-campus__day .open-campus__title,
  .open-campus__place .open-campus__title {
    padding: 4px 15px;
    font-size: 14px;
  }
}

.open-campus__day .open-campus-day__content {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .open-campus__day .open-campus-day__content {
    font-size: 16px;
  }
}

.open-campus__place .open-campus-place__content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .open-campus__place .open-campus-place__content {
    padding-top: 0;
  }
}

.open-campus__place .open-campus-place__content span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.6666666667vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .open-campus__place .open-campus-place__content span {
    font-size: 14px;
  }
}

.open-campus__button {
  width: 37.0666666667vw;
  padding-inline: 6.6666666667vw;
  height: 10.1333333333vw;
  font-size: 3.2vw;
  margin-top: 4.2666666667vw;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 13.3333333333vw;
  background-image: linear-gradient(44deg, rgb(255, 147, 77) 0%, rgb(252, 104, 111) 100%);
  -webkit-box-shadow: 0px 1.3333333333vw 1.3333333333vw 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1.3333333333vw 1.3333333333vw 0px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 1024px) {
  .open-campus__button {
    width: 220px;
    margin-top: 24px;
    padding-inline: 25px;
    padding-block: 22px;
    height: 60px;
    font-size: 16px;
    -webkit-box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.3);
  }
}

.serch-opencampus_contetnts2 {
  margin-top: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_contetnts2 {
    margin-top: 45px;
    padding-inline: 20px;
  }
}

.serch-opencampus_contetnts2_title {
  font-size: 8vw;
  text-align: center;
  position: relative;
  color: #585858;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_contetnts2_title {
    font-size: 48px;
  }
}

.serch-opencampus_contetnts2_title::before,
.serch-opencampus_contetnts2_title::after {
  content: "";
  display: inline-block;
  background-image: url(../img/sec1_title_line.webp);
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  width: 18.6666666667vw;
  height: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_contetnts2_title::before,
  .serch-opencampus_contetnts2_title::after {
    width: 200px;
    height: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .serch-opencampus_contetnts2_title::before,
  .serch-opencampus_contetnts2_title::after {
    width: 248px;
  }
}

.serch-opencampus_contetnts2_title::before {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 30.1333333333vw);
}
@media screen and (min-width: 768px) {
  .serch-opencampus_contetnts2_title::before {
    left: calc(50% - 240px);
  }
}
@media screen and (min-width: 1024px) {
  .serch-opencampus_contetnts2_title::before {
    left: calc(50% - 260px);
  }
}

.serch-opencampus_contetnts2_title::after {
  right: calc(50% - 31.2vw);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .serch-opencampus_contetnts2_title::after {
    right: calc(50% - 240px);
  }
}
@media screen and (min-width: 1024px) {
  .serch-opencampus_contetnts2_title::after {
    right: calc(50% - 260px);
  }
}

.serch-opencampus_txtBox_contents {
  margin-top: 10.6666666667vw;
  display: grid;
  gap: 12vw;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .serch-opencampus_txtBox_contents {
    margin-top: 40px;
    margin-inline: auto;
    max-width: 770px;
    padding: 0;
    gap: 2px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.serch-opencampus_txtBox {
  margin-inline: auto;
  border: 2px solid #78a9e7;
  border-radius: 5.3333333333vw;
  background: #f6f6f6;
  text-align: center;
  color: #fff;
  width: 56.2666666667vw;
  padding: 4.2666666667vw;
  padding-block: 4.2666666667vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_txtBox {
    max-width: 150px;
    padding-inline: 10px;
    border-radius: 10px;
    padding-block: 16px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .serch-opencampus_txtBox {
    max-width: 170px;
  }
}

.serch-opencampus_time {
  border: 0.5333333333vw solid #78a9e7;
  background-color: #78a9e7;
  border-radius: 8vw;
  width: 33.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_time {
    font-size: 16px;
    border: 2px solid #78a9e7;
    border-radius: 30px;
    width: 125px;
  }
}

.serch-opencampus_text {
  color: #78a9e7;
  font-size: 5.3333333333vw;
  font-weight: 700;
  margin-top: 3.2vw;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_text {
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
  }
}

@media screen and (min-width: 768px) {
  .serch-opencampus_textBox2__wrapper {
    margin-inline: auto;
    max-width: 770px;
    text-align: right;
  }
}

.serch-opencampus_textBox2 {
  font-size: 3.2vw;
  margin-top: 6.1333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_textBox2 {
    margin-top: 23px;
    display: inline-block;
    text-align: left;
    margin-left: 0;
    font-size: 12px;
  }
}

.serch-opencampus_txtBox {
  position: relative;
}

.serch-opencampus_txtBox::after {
  content: "";
  display: inline-block;
  width: 8.2666666667vw;
  height: 5.0666666667vw;
  background-image: url(../img/sp/sec1_arrow_sp.webp);
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  top: calc(50% + 20.5333333333vw);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .serch-opencampus_txtBox::after {
    z-index: 40;
    width: 15px;
    height: 23px;
    background-image: url(../img/sec1_arrow02.webp);
    position: absolute;
    top: 52px;
    left: calc(100% + 24px);
  }
}
@media screen and (min-width: 1024px) {
  .serch-opencampus_txtBox::after {
    left: calc(100% + 14px);
  }
}

.serch-opencampus_txtBox:nth-child(4)::after {
  display: none;
}

.serch-opencampus_imgBox {
  margin-top: 8vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .serch-opencampus_imgBox {
    margin-top: 30px;
    max-width: 770px;
  }
}
.serch-opencampus_imgBox img {
  width: 100%;
}

.reccomend {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .reccomend {
    margin-top: 80px;
  }
}

.reccomend__inner {
  width: 100%;
}

.reccomend__title {
  font-size: 11.2vw;
  letter-spacing: 0.8vw;
  text-align: center;
  color: #ff9d33;
  position: relative;
}
@media screen and (min-width: 768px) {
  .reccomend__title {
    text-indent: 12px;
    font-size: 70px;
    letter-spacing: 8px;
    line-height: 1.09;
  }
}
.reccomend__title span {
  font-size: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .reccomend__title span {
    font-size: 48px;
  }
}

.reccomend__title::before {
  content: "";
  display: inline-block;
  background-image: url(../img/sec2_title_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 84%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: calc(50% - 38.6666666667vw);
  height: 10.4vw;
  width: 12.2666666667vw;
}
@media screen and (min-width: 768px) {
  .reccomend__title::before {
    height: 56px;
    width: 70px;
    top: 90%;
    left: calc(50% - 246px);
  }
}

.reccomend__title::after {
  content: "";
  display: inline-block;
  background-image: url(../img/sec2_title_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 84%;
  position: absolute;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  right: calc(50% - 38.6666666667vw);
  height: 12.2666666667vw;
  width: 10.4vw;
}
@media screen and (min-width: 768px) {
  .reccomend__title::after {
    right: calc(50% - 246px);
    top: 90%;
    height: 56px;
    width: 70px;
  }
}

.reccomend__contents {
  margin-top: 4.2666666667vw;
  background-image: url(../img/sp/sec2_bg_sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 13.8666666667vw 5.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .reccomend__contents {
    margin-top: 32px;
    max-width: 1082px;
    background-image: url(../img/sec2_bg.webp);
    padding: 75px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .reccomend__contents {
    padding: 75px 160px;
  }
}

.reccomend__contents-text {
  text-align: center;
  color: #ffec1c;
  display: block;
  letter-spacing: 0.64vw;
  font-family: "bebas-kai", sans-serif;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .reccomend__contents-text {
    font-size: 27px;
    letter-spacing: 4px;
  }
}

.reccomend__contents-title {
  margin-top: 1.6vw;
  text-align: center;
  color: #fff;
  display: block;
  line-height: 1.09;
  text-shadow: 0.2666666667vw 0.2666666667vw 0.2666666667vw #c5c5c5;
  text-shadow: 0 0 2.6666666667vw rgb(255, 133, 31);
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .reccomend__contents-title {
    margin-top: 0;
    font-size: 56px;
    letter-spacing: 4px;
  }
}
.reccomend__contents-title span.type3 {
  font-size: 11.2vw;
}
@media screen and (min-width: 768px) {
  .reccomend__contents-title span.type3 {
    font-size: 70px;
  }
}
.reccomend__contents-title span {
  font-size: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .reccomend__contents-title span {
    font-size: 46px;
  }
}
.reccomend__contents-title span.type2 {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .reccomend__contents-title span.type2 {
    font-size: 38px;
  }
}

.reccomend__content-box {
  margin-top: 6.4vw;
  border: 0.5333333333vw solid #fff;
  padding: 1.0666666667vw 4.2666666667vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .reccomend__content-box {
    margin-top: 24px;
    border: 2px solid #fff;
    padding: 24px 40px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .reccomend__content-box {
    padding: 24px 80px 24px;
  }
}

.reccomend__text-box {
  display: block;
  text-align: center;
  color: #fff;
  gap: 10.6666666667vw;
  text-shadow: 0 0 2.6666666667vw rgb(255, 133, 31);
}
@media screen and (min-width: 768px) {
  .reccomend__text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 60px;
  }
}

.reccomend__text {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .reccomend__text {
    margin-top: 16px;
  }
}
.reccomend__text dl dt {
  font-weight: 400;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .reccomend__text dl dt {
    font-size: 22px;
  }
}
.reccomend__text dl dd {
  font-weight: 600;
  line-height: 1;
  font-family: "din-2014", sans-serif;
  font-size: 15.7333333333vw;
}
@media screen and (min-width: 768px) {
  .reccomend__text dl dd {
    font-size: 68px;
  }
}
.reccomend__text dl dd span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9.6vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .reccomend__text dl dd span {
    font-size: 36px;
  }
}

.graduatiton__title {
  text-align: center;
  font-weight: 900;
  font-size: 4vw;
  letter-spacing: 0.3466666667vw;
}
@media screen and (min-width: 768px) {
  .graduatiton__title {
    font-size: 23px;
  }
}

.graduatiton__text-box {
  background: #fff5e9;
  color: #fd694c;
  margin-top: 4vw;
  padding: 2.9333333333vw 4.2666666667vw 4vw 4.2666666667vw;
  font-size: 2.4vw;
}
@media screen and (min-width: 768px) {
  .graduatiton__text-box {
    margin-inline: auto;
    max-width: 520px;
    padding: 20px 20px 25px 20px;
    margin-top: 16px;
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .graduatiton__text-box {
    max-width: 100%;
  }
}
.graduatiton__text-box ul {
  margin-top: 3.2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .graduatiton__text-box ul {
    margin-top: 16px;
    gap: 8px;
  }
}
.graduatiton__text-box ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .graduatiton__text-box ul li dl {
    gap: 8px;
  }
}
.graduatiton__text-box ul li dl.type2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .graduatiton__text-box ul li dl.type2 {
    gap: 8px;
  }
}
.graduatiton__text-box ul li dl dt {
  color: #fff;
  background: #fd694c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20vw;
  height: 3.7333333333vw;
  font-weight: 600;
  letter-spacing: -0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .graduatiton__text-box ul li dl dt {
    width: 110px;
    height: 20px;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
}
.graduatiton__text-box ul li dl dd {
  font-weight: 700;
  font-size: 2.6666666667vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .graduatiton__text-box ul li dl dd {
    font-size: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .graduatiton__text-box ul li dl dd {
    font-size: 16px;
  }
}

.open-campus-tour__inner {
  background-image: url(../img/sec4_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 9.3333333333vw 5.3333333333vw 13.3333333333vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .open-campus-tour__inner {
    padding: 70px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .open-campus-tour__inner {
    padding: 70px 140px;
  }
}

.open-campus-tour__title {
  text-align: center;
  color: #fff;
  border-top: 0.8vw solid #fff;
  border-bottom: 0.8vw solid #fff;
  padding-block: 6.4vw;
  font-size: 8.8vw;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .open-campus-tour__title {
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    padding-block: 24px;
    font-size: 53px;
    line-height: 1;
  }
}

.open-campus-tour__contents-text {
  margin-top: 12vw;
  color: #feff15;
  font-weight: 700;
  line-height: 1.5;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .open-campus-tour__contents-text {
    font-size: 30px;
    margin-top: 45px;
  }
}
.open-campus-tour__contents-text span {
  font-size: 8.8vw;
}
@media screen and (min-width: 768px) {
  .open-campus-tour__contents-text span {
    font-size: 48px;
  }
}

.open-campus-tour__text-box {
  margin-top: 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3.2vw;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: center;
  gap: 8vw;
}
@media screen and (min-width: 1024px) {
  .open-campus-tour__text-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 20px;
    gap: 50px;
  }
}
.open-campus-tour__text-box p {
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .open-campus-tour__text-box p {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .open-campus-tour__text-box p {
    font-size: 14px;
    margin-top: 0;
  }
}

.open-campus-tour__img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .open-campus-tour__img {
    width: 354px;
  }
}

.gansyo__yoyaku-box {
  text-align: center;
  width: calc(100% - 10.6666666667vw);
  margin-top: 10.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .gansyo__yoyaku-box {
    margin-top: 60px;
  }
}

.gansyo__yoyaku-img {
  text-align: center;
  max-width: 202.6666666667vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gansyo__yoyaku-img {
    margin-inline: auto;
    max-width: 760px;
  }
}

.about-yoani {
  margin-top: 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .about-yoani {
    margin-top: 70px;
  }
}

.about-yoani__inner {
  width: 100%;
  margin-inline: auto;
}

.about-yoani__text {
  font-size: 3.2vw;
  line-height: 6vw;
  padding: 0;
  width: calc(100% - 10.6666666667vw);
  margin: 5.3333333333vw auto;
}
@media screen and (min-width: 768px) {
  .about-yoani__text {
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
    padding-inline: 20px;
  }
}

.about-yoani__image {
  margin-inline: calc(50% - 50vi);
  width: 100vi;
}
@media screen and (min-width: 768px) {
  .about-yoani__image {
    width: 100%;
    margin-inline: auto;
  }
}

.about-yoani .about-yoani__button {
  width: calc(100% - 50px);
  padding-inline: 6.6666666667vw;
  height: 21.3333333333vw;
  font-size: 4.5333333333vw;
  max-width: 78.6666666667vw;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 13.3333333333vw;
  background-image: linear-gradient(44deg, rgb(255, 147, 77) 0%, rgb(252, 104, 111) 100%);
  -webkit-box-shadow: 0px 2.9333333333vw 5.8666666667vw 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2.9333333333vw 5.8666666667vw 0px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .about-yoani .about-yoani__button {
    margin-top: -36px;
    padding-inline: 25px;
    width: 422px;
    height: 100px;
    font-size: 24px;
    -webkit-box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.3);
  }
}

.qanda {
  margin-top: 15.2vw;
}
@media screen and (min-width: 768px) {
  .qanda {
    margin-top: 80px;
  }
}

.qanda__inner {
  background-image: url(../img/sec7_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 18.6666666667vw 5.3333333333vw 13.3333333333vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qanda__inner {
    padding: 130px 60px 150px;
  }
}

.qanda__title {
  font-size: 10.6666666667vw;
  font-weight: 900;
  text-align: center;
  position: relative;
  font-style: italic;
  letter-spacing: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .qanda__title {
    font-size: 53px;
  }
}

.qanda__title::before,
.qanda__title::after {
  content: "";
  display: inline-block;
  height: 0.2666666667vw;
  background-image: url(../img/sec7_title_line.webp);
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 28.5333333333vw;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .qanda__title::before,
  .qanda__title::after {
    height: 2px;
    width: 230px;
  }
}
@media screen and (min-width: 1024px) {
  .qanda__title::before,
  .qanda__title::after {
    height: 2px;
    width: 300px;
  }
}

.qanda__title::before {
  left: calc(50% - 29.8666666667vw);
}
@media screen and (min-width: 768px) {
  .qanda__title::before {
    left: calc(50% - 200px);
  }
}
@media screen and (min-width: 1024px) {
  .qanda__title::before {
    left: calc(50% - 227px);
  }
}

.qanda__title::after {
  right: calc(50% - 57.6vw);
}
@media screen and (min-width: 768px) {
  .qanda__title::after {
    right: calc(50% - 430px);
  }
}
@media screen and (min-width: 1024px) {
  .qanda__title::after {
    right: calc(50% - 530px);
  }
}

.qanda__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 9.6vw;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .qanda__contents {
    max-width: 760px;
    margin-top: 80px;
    margin-inline: auto;
    gap: 70px;
  }
}

.qanda__contents-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.qanda__number {
  width: 10.6666666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 6.4vw;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .qanda__number {
    margin-top: 8px;
    font-size: 30px;
    width: 56px;
  }
}

.qanda__question {
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .qanda__question {
    font-size: 24px;
  }
}

.qanda__answer {
  font-size: 2.9333333333vw;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .qanda__answer {
    font-size: 18px;
    margin-top: 32px;
  }
}

.qanda__text-box {
  border-left: 0.5333333333vw solid #fff;
  padding-left: 3.2vw;
  padding-block: 2.1333333333vw 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .qanda__text-box {
    border-left: 2px solid #fff;
    padding-left: 24px;
    padding-block: 8px 16px;
  }
}

footer {
  color: #fff;
  background: #323232;
  height: 28vw;
  width: 100%;
  font-size: 3.4666666667vw;
  text-align: center;
  letter-spacing: 0.1333333333vw;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  footer {
    font-size: 14px;
    height: 105px;
    padding-top: 40px;
  }
}