@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
  .is-tab {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .is-sp {
    display: none !important;
  }
  .is-tab {
    display: none !important;
  }
}
@media screen and (max-width: 1099.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #333333;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  background: white;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  height: auto;
  line-height: 1;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

/*========================
common
========================*/
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.small {
  font-size: 0.8em;
}

.cta {
  text-align: center;
  background: #E8F7FF;
  padding: 56px 0;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 32px 0;
  }
}
.cta .cta__text {
  color: white;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .cta .cta__text {
    font-size: 18px;
  }
}

.cta__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 714px;
  margin: 0 auto;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .cta__wrap {
    gap: 16px;
  }
}

.cta__btn {
  cursor: pointer;
  border: none;
  background: #0072D5;
  color: white;
  font-weight: bold;
  display: inline-block;
  padding: 18px;
  border-radius: 16px;
  font-size: 32px;
  line-height: 150%;
  /* 48px */
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__btn {
    font-size: 21px;
    text-align: left;
    padding: 16px;
  }
}
.cta__btn::before {
  content: "";
  background: url(../img/arrow.png) no-repeat center center/contain;
  position: absolute;
  width: 22px;
  height: 37px;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cta__btn::before {
    width: 19px;
    height: 19px;
    right: 8px;
  }
}
.cta__btn:hover {
  opacity: 0.7;
}

.cta__btn2 {
  background: white;
  color: #0072D5;
  text-align: center;
  width: calc(50% - 12.5px);
  padding: 19px;
  border: 1px solid #0072D5;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  /* 36px */
  color: #0072D5;
}
@media screen and (max-width: 767px) {
  .cta__btn2 {
    font-size: 18px;
    padding: 12px;
    line-height: 1.3;
  }
}

.sticky {
  position: fixed;
  display: none;
  z-index: 100;
  bottom: 0;
  width: 100%;
  background: white;
  padding: 8px 16px;
}
.sticky .cta__btn {
  font-size: 20px;
  text-align: center;
  padding: 6px;
  padding-right: 20px;
  margin: 0;
}
.sticky .cta__btn::before {
  width: 19px;
  height: 20px;
  right: 14px;
}

.section {
  padding: 56px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}

.sec-title {
  text-align: center;
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 30px;
  }
}
.sec-title span {
  color: #FF9027;
}
.sec-title.sec-title--2 {
  color: #FF9027;
  font-size: 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .sec-title.sec-title--2 {
    font-size: 28px;
  }
}

/*========================
popup
========================*/
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 800px;
  background: white;
  padding: 48px 32px 56px;
  border-radius: 20px;
  z-index: 10001;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .popup {
    padding: 51px 32px 36px;
  }
}

.popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .popup__close {
    top: 14px;
    right: 14px;
    width: 55px;
  }
}
.popup__close:hover {
  opacity: 0.7;
}

.popup__inner {
  text-align: center;
}
.popup__inner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .popup__inner h2 {
    line-height: 1.3;
    font-size: 26px;
  }
}
.popup__inner .popup__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .popup__inner .popup__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.popup__inner .cta__btn {
  font-size: 28px;
}
.popup__inner .cta__btn::before {
  width: 19px;
  height: 37px;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .popup__inner .cta__btn {
    font-size: 25px;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

/*========================
header
========================*/
.hamburger-menu {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background-color: #0072D5;
  border: 1px solid #0072D5;
  border-radius: 50%;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 10001;
}

.hamburger-menu.active {
  background: white;
}
.hamburger-menu.active span {
  background: #0072D5;
}

.hamburger-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 2.5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}

.header {
  background: white;
  padding: 23px 0;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .inner {
  max-width: 1395px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 100vh;
    padding: 80px 0;
    opacity: 0;
    visibility: hidden;
  }
  .header.open {
    opacity: 1;
    visibility: visible;
  }
}

.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .header__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__flex .logo {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .header__flex .logo {
    margin-bottom: 25px;
  }
}
.header__flex a {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header__flex .header__btn {
  background: #0072D5;
  color: white;
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .header__flex .header__btn {
    font-size: 19px;
  }
}

/*========================
mv
========================*/
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
  padding-top: 135px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 0;
  }
}
.mv .mv__img {
  min-width: 1960px;
  max-width: 2100px;
}
@media screen and (max-width: 1100px) {
  .mv .mv__img {
    min-width: 1390px;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv__img {
    min-width: 0;
  }
}

/*========================
intro
========================*/
.intro .copy {
  margin: 32px 0 16px;
  font-size: 32px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .intro .copy {
    font-size: 24px;
  }
}
.intro .small {
  text-align: center;
}
.intro .flex {
  margin-top: 40px;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro .img {
  width: 420px;
}
@media screen and (max-width: 767px) {
  .intro .img {
    width: 100%;
  }
}
.intro .img img {
  border-radius: 20px;
}
.intro .content {
  width: calc(100% - 420px - 32px);
  font-size: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .intro .content {
    width: 100%;
    font-size: 18px;
  }
}
.intro .note {
  margin-top: 15px;
  font-size: 16px;
}
.intro h3 {
  font-size: 32px;
  text-align: center;
  color: #00AB4F;
  margin: 48px 0 32px;
}
@media screen and (max-width: 767px) {
  .intro h3 {
    font-size: 24px;
  }
}
.intro .box {
  border-radius: 20px;
  background: #FFEFD9;
  padding: 24px 32px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .intro .box {
    padding: 24px;
    font-size: 16px;
  }
}
.intro .box h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #FF9027;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .intro .box h4 {
    text-align: center;
  }
}

/*========================
point
========================*/
.point {
  background: #FEFDF0;
}
.point .sec-title {
  font-weight: 500;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .point .sec-title {
    text-align: center;
  }
}
.point .sec-title img {
  display: inline-block;
  width: 380px;
  margin-top: -18px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .point .sec-title img {
    width: 200px;
  }
}
.point .sec-title span {
  line-height: 1;
  font-weight: bold;
}

.point__items {
  margin-top: 48px;
}
.point__items .item:not(:first-child) {
  margin-top: 48px;
}
.point__items .item:nth-child(even) .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .point__items .item:nth-child(even) .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.point__items .item h3 {
  background: white;
  color: #00AB4F;
  padding: 16px 32px;
  border-bottom: 1px solid #00AB4F;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .point__items .item h3 {
    font-size: 24px;
    padding: 16px 24px;
  }
}
.point__items .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .point__items .flex {
    gap: 24px;
  }
}
.point__items .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .point__items .img {
    width: 100%;
  }
}
.point__items .img img {
  border-radius: 20px;
}
.point__items .content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .point__items .content {
    width: 100%;
  }
}
.point__items .small {
  margin-top: 16px;
}
.point__items li {
  position: relative;
  padding-left: 0.8em;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .point__items li {
    font-size: 16px;
  }
}
.point__items li::before {
  content: "";
  background: #333333;
  position: absolute;
  width: 4px;
  height: 4px;
  left: 0;
  top: 0.7em;
  border-radius: 50%;
}

/*========================
step
========================*/
.step .sec-title {
  font-weight: 500;
  text-align: left;
  line-height: 1;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .step .sec-title {
    text-align: center;
    line-height: 1.3;
  }
}
.step .sec-title img {
  display: inline-block;
  width: 380px;
  margin-top: -18px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .step .sec-title img {
    width: 200px;
  }
}
.step .sec-title span {
  line-height: 1;
  font-weight: bold;
}
.step h3 {
  text-align: center;
  margin: 24px 0 39px;
  font-size: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .step h3 {
    font-size: 24px;
  }
}

.step__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
}
@media screen and (max-width: 767px) {
  .step__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.step__items:not(:first-child) {
  margin-top: 44px;
}
.step__items:nth-child(1) h4 {
  background: #FFEFD9;
  color: #FF9027;
}
.step__items:nth-child(1) .num {
  background: #FF9027;
}
.step__items:nth-child(2) h4 {
  background: #E9FFEC;
  color: #00AB4F;
}
.step__items:nth-child(2) .num {
  background: #00AB4F;
}
.step__items:nth-child(3) h4 {
  background: #E8F7FF;
  color: #0072D5;
}
.step__items:nth-child(3) .num {
  background: #0072D5;
}
.step__items .item {
  width: calc(100% - 14px);
}
.step__items h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .step__items h4 {
    font-size: 24px;
    padding: 12px;
  }
}
.step__items h4.small {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .step__items h4.small {
    font-size: 24px;
  }
}
.step__items .num {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .step__items .num {
    font-size: 20px;
    width: 32px;
    height: 32px;
  }
}
.step__items .text {
  width: calc(100% - 39px - 16px);
}
.step__items ul {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .step__items ul {
    padding-left: 20px;
  }
}
.step__items li {
  position: relative;
  padding-left: 0.8em;
}
.step__items li::before {
  content: "";
  background: #333333;
  position: absolute;
  width: 4px;
  height: 4px;
  left: 0;
  top: 0.7em;
  border-radius: 50%;
}

/*========================
style
========================*/
.style {
  background: #FEFDF0;
}
.style .inner {
  max-width: 870px;
}
.style .small {
  text-align: center;
  font-size: 16px;
}

.style__items {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .style__items {
    margin-bottom: 24px;
  }
}
.style__items .item {
  margin-top: 32px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}
.style__items .item:nth-child(1) {
  border: 1px solid #FD71A7;
}
.style__items .item:nth-child(1) .head {
  background: #FD71A7;
}
.style__items .item:nth-child(1) h4 {
  background: #FFEFF5;
}
.style__items .item:nth-child(2) {
  border: 1px solid #FF9027;
}
.style__items .item:nth-child(2) .head {
  background: #FF9027;
}
.style__items .item:nth-child(2) h4 {
  background: #FFEFD9;
}
.style__items .head {
  color: white;
  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;
  padding: 10px 32px;
}
@media screen and (max-width: 767px) {
  .style__items .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.style__items .head h3 {
  font-size: 24px;
}
.style__items .head p {
  font-size: 20px;
  font-weight: 500;
}
.style__items .body {
  padding: 16px 24px 19px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .style__items .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px;
  }
}
.style__items .body h4 {
  width: 165px;
  padding: 6px 10px 5px 11px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .style__items .body h4 {
    width: 100%;
    font-size: 18px;
  }
}
.style__items .body ul {
  padding-left: 0.5em;
}
.style__items .body li {
  position: relative;
  padding-left: 0.8em;
}
.style__items .body li::before {
  content: "";
  background: #333333;
  position: absolute;
  width: 4px;
  height: 4px;
  left: 0;
  top: 0.7em;
  border-radius: 50%;
}
.style__items .right {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .style__items .right {
    text-align: left;
  }
}

/*========================
flow
========================*/
.flow .inner {
  max-width: 840px;
}

.flow__items .item {
  background: #FEFDF0;
  border-radius: 20px;
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__items .item {
    padding: 24px 16px;
  }
}
.flow__items .item:not(:first-child) {
  margin-top: 60px;
}
.flow__items .item:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #FFDC85;
  left: 50%;
  top: -43px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow__items .flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .flow__items .flex {
    gap: 8px;
  }
}
.flow__items .num {
  background: #00AB4F;
  color: white;
  width: 120px;
  text-align: center;
  padding: 8px 23px 9px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .flow__items .num {
    font-size: 20px;
    padding: 4px 16px;
  }
}
.flow__items .content {
  width: calc(100% - 24px - 120px);
}
@media screen and (max-width: 767px) {
  .flow__items .content {
    width: 100%;
  }
}
.flow__items .content h3 {
  color: #00AB4F;
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .flow__items .content h3 {
    font-size: 22px;
  }
}
.flow__items .content p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .flow__items .content p {
    font-size: 16px;
  }
}
.flow__items .cta__btn {
  max-width: 698px;
  margin: 0 auto;
  display: block;
  margin-top: 24px;
  font-size: 24px;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .flow__items .cta__btn {
    font-size: 17px;
    padding-right: 40px;
    padding-left: 24px;
  }
}
.flow__items .cta__btn::before {
  width: 24px;
  height: 29px;
  right: 19px;
}
@media screen and (max-width: 767px) {
  .flow__items .cta__btn::before {
    width: 19px;
    height: 24px;
    right: 16px;
  }
}

/*========================
campus
========================*/
.campus {
  background: #FEFDF0;
}
.campus .small {
  text-align: center;
  font-size: 16px;
}
.campus .campus__items {
  margin-top: 40px;
  border-radius: 20px;
  background: #FFF;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .campus .campus__items {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.campus .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .campus .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.campus .item:not(:first-child) {
  margin-top: 40px;
}
.campus .map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .campus .map {
    width: 100%;
  }
}
.campus .map iframe {
  width: 100%;
  border-radius: 20px;
  height: 346px;
}
.campus .content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .campus .content {
    width: 100%;
  }
}
.campus .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #00AB4F;
}
@media screen and (max-width: 767px) {
  .campus .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-bottom: 8px;
  }
}
.campus .head h3 {
  font-size: 32px;
  color: #00AB4F;
}
.campus .head p {
  font-weight: 500;
  font-size: 20px;
}
.campus .body p {
  margin: 8px 0 32px;
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .campus .body p {
    font-size: 16px;
  }
}
.campus .cta__btn {
  text-align: center;
  padding-right: 50px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .campus .cta__btn {
    font-size: 20px;
    text-align: left;
    padding: 12px;
    padding-left: 28px;
  }
}
.campus .cta__btn::before {
  width: 23px;
  height: 28px;
  right: 26px;
}
@media screen and (max-width: 767px) {
  .campus .cta__btn::before {
    width: 19px;
    height: 24px;
    right: 20px;
  }
}

/*========================
faq
========================*/
.faq .inner {
  max-width: 950px;
}
.faq .faq__items .item {
  background: #FFF;
  border-radius: 20px;
  margin-top: 24px;
}
.faq .faq__items .item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .faq .faq__items .item:not(:first-child) {
    margin-top: 24px;
  }
}
.faq .faq__items .item .head {
  font-size: 24px;
  font-weight: 500;
  background: #FEFDF0;
  padding: 16px 74px 16px 82px;
  border-radius: 200px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq .faq__items .item .head {
    font-size: 18px;
    padding: 16px 55px 16px 60px;
    border-radius: 12px;
  }
}
.faq .faq__items .item .head.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.faq .faq__items .item .head::before {
  content: "Q";
  background: #00AB4F;
  position: absolute;
  width: 40px;
  height: 40px;
  padding-top: 2px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  font-family: "Roboto", sans-serif;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq .faq__items .item .head::before {
    width: 32px;
    height: 32px;
    font-size: 20px;
    left: 17px;
  }
}
.faq .faq__items .item .head::after {
  content: "";
  background: url(../img/arrow-green.png) no-repeat center center/contain;
  position: absolute;
  width: 28px;
  height: 28px;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq .faq__items .item .head::after {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.faq .faq__items .body {
  padding: 19px 25px 0;
  display: none;
}

/*========================
bottom
========================*/
.bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}
.bottom .bottom__img {
  min-width: 1960px;
  max-width: 2100px;
}
@media screen and (max-width: 1100px) {
  .bottom .bottom__img {
    min-width: 1460px;
  }
}
@media screen and (max-width: 767px) {
  .bottom .bottom__img {
    min-width: 0;
  }
}

/*========================
footer
========================*/
.footer {
  background: #00AB4F;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 70px;
  }
}