@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media (min-width: 1300px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 120px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default type */
ul,
ol {
  list-style: none;
}

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

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

/* l-cards */
.l-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  gap: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
  }
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* l-page */
.l-page {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-page {
    margin-top: 3.75rem;
  }
}

/* l-section */
.l-section {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

/* bg */
.bg {
  background: #F0F6F8;
}

/* box */
.bg .box {
  background: #fff;
}

.box {
  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;
  gap: 0 80px;
  gap: 0 5rem;
  background: #F0F6F8;
  border-radius: 0.625rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .box {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.box__img {
  width: 184px;
  width: 11.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .box__img {
    width: 7.5rem;
    margin: 0 auto;
  }
}

.box__body {
  width: 550px;
  width: 34.375rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .box__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.box__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .box__title {
    text-align: center;
    font-size: 1.125rem;
  }
}

.box__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .box__subtitle {
    text-align: center;
    font-size: 1rem;
  }
}

.box__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  gap: 0 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box__items {
    display: block;
  }
}

.box__item {
  text-align: center;
  width: 220px;
  width: 13.75rem;
  max-width: 100%;
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  padding: 14px 10px;
  padding: 0.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .box__item {
    width: 100%;
    padding: 0.5rem;
  }
  .box__item + .box__item {
    margin-top: 0.625rem;
  }
}
.box__item a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .box__item a {
    font-size: 1.25rem;
  }
}

.box__text {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .box__text {
    font-size: 0.9375rem;
  }
}

.btn.box__btn {
  width: 260px;
  width: 16.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .btn.box__btn {
    margin: 1.25rem auto 0;
  }
}

/* breadcrumb */
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  top: 8px;
  top: 0.5rem;
  left: -16px;
  left: -1rem;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  text-align: center;
  display: block;
  width: 280px;
  width: 17.5rem;
  max-width: 100%;
  font-weight: 700;
  color: #3DAAD3;
  border-radius: 0.25rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 9px;
  padding: 0.5625rem;
  position: relative;
}
.btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  right: 0.9375rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

/* card */
.card {
  background: #fff;
  border-radius: 0.625rem;
  position: relative;
}

.card__number {
  position: absolute;
  left: 24px;
  left: 1.5rem;
  top: -35px;
  top: -2.1875rem;
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
  color: #3DAAD3;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .card__number {
    font-size: 3.5rem;
    top: -1.5625rem;
  }
}

.card__img img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.card__body {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding: 1.875rem 1.25rem;
  }
}

.card__title {
  text-align: center;
}
.card__title span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  background: #EEFF28;
  padding: 6px 20px;
  padding: 0.375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .card__title span {
    font-size: 1.125rem;
    padding: 0.3125rem 0.9375rem;
  }
}

.card__text {
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 0.9375rem;
    padding: 0;
  }
}

.card__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  border-top: 1px solid #707070;
  border-top: 0.0625rem solid #707070;
  padding-top: 27px;
  padding-top: 1.6875rem;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .card__subtitle {
    font-size: 1rem;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }
}

.card__list {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.card__list-item {
  background: url(../img/common/check-icon01.png) no-repeat left top 6px/15px;
  background: url(../img/common/check-icon01.png) no-repeat left top 0.375rem/0.9375rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  line-height: 1.31;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__list-item {
    font-size: 0.9375rem;
    background: url(../img/common/check-icon01.png) no-repeat left top 0.3125rem/0.75rem;
    padding-left: 1.25rem;
  }
}
.card__list-item + .card__list-item {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .card__list-item + .card__list-item {
    margin-top: 0.5rem;
  }
}

/* category */
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  gap: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .category {
    gap: 0.625rem 0.625rem;
  }
}
.category a, .category span {
  text-align: center;
  display: inline-block;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  font-weight: 700;
  border-radius: 0.25rem;
  padding: 9px 49px;
  padding: 0.5625rem 3.0625rem;
}
@media screen and (max-width: 767px) {
  .category a, .category span {
    font-size: 0.9375rem;
    padding: 0.5rem 1.5625rem;
  }
}
.category a {
  color: #3DAAD3;
}
.category a.current, .category span {
  background: #3DAAD3;
  color: #fff;
}

/* cv */
.cv {
  background: url(../img/common/cv-bg.jpg) no-repeat center/cover;
  padding: 50px 0;
  padding: 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .cv {
    padding: 2.5rem 0;
  }
}

.cv__content {
  text-align: center;
  width: 860px;
  width: 53.75rem;
  max-width: 100%;
  border-radius: 0.625rem;
  background: #fff;
  padding: 45px 20px 50px;
  padding: 2.8125rem 1.25rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .cv__content {
    padding: 1.875rem 0.9375rem;
  }
}

.cv__title span {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cv__title span {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.cv__title span::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 24px;
  height: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  border-radius: 0.25rem;
  background: #EEFF28;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .cv__title span::after {
    height: 0.75rem;
  }
}

.cv__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 1rem;
  }
}

.cv__subtext {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.78;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cv__subtext {
    font-size: 1rem;
  }
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .cv__btns {
    display: block;
    margin-top: 1.25rem;
  }
}

.cv__btn:first-child a {
  width: 400px;
  width: 25rem;
  color: #3DAAD3;
  background: #EEFF28;
}
@media screen and (max-width: 767px) {
  .cv__btn:first-child a {
    width: 18.75rem;
  }
}
.cv__btn:first-child a::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.cv__btn:nth-child(2) a {
  width: 320px;
  width: 20rem;
  color: #fff;
  background: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .cv__btn:nth-child(2) a {
    width: 18.75rem;
  }
}
.cv__btn:nth-child(2) a::after {
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
}
.cv__btn a {
  display: block;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.25rem;
  padding: 29px 0;
  padding: 1.8125rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv__btn a {
    margin: 0 auto;
    font-size: 1.125rem;
    padding: 1.25rem 0;
  }
}
.cv__btn a::before, .cv__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cv__btn a::before {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  left: 30px;
  left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .cv__btn a::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 1.25rem;
  }
}
.cv__btn a::after {
  width: 8px;
  width: 0.5rem;
  height: 14px;
  height: 0.875rem;
  right: 23px;
  right: 1.4375rem;
}

.cv__btn--contact01 a {
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__btn--contact01 a {
    padding-left: 0.625rem;
  }
}
.cv__btn--contact01 a::before {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  left: 30px;
  left: 1.875rem;
  background: url(../img/common/calendar-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn--contact01 a::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 1.25rem;
  }
}

.cv__btn--contact02 a {
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__btn--contact02 a {
    padding-left: 0.625rem;
  }
}
.cv__btn--contact02 a::before {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  left: 30px;
  left: 1.875rem;
  background: url(../img/common/calendar-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn--contact02 a::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 1.25rem;
  }
}

.cv__btn--tel a {
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__btn--tel a {
    padding-left: 0.625rem;
  }
}
.cv__btn--tel a::before {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  left: 30px;
  left: 1.875rem;
  background: url(../img/common/tel-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cv__btn--tel a::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 1.25rem;
  }
}

.cv__box {
  text-align: left;
  width: 740px;
  width: 46.25rem;
  max-width: 100%;
  background: #F5F5F5;
  border-radius: 0.25rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  padding: 15px 24px;
  padding: 0.9375rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .cv__box {
    margin-top: 0.625rem;
    padding: 0.9375rem 0.9375rem;
  }
}

.cv__tel, .cv__mail {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cv__tel, .cv__mail {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.cv__tel a, .cv__mail a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  color: #3DAAD3;
  font-weight: 700;
  padding-left: 32px;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .cv__tel a, .cv__mail a {
    padding-left: 1.75rem;
  }
}

.cv__tel a {
  font-size: 20px;
  font-size: 1.25rem;
  background: url(../img/common/tel-icon.png) no-repeat left top 6px/20px;
  background: url(../img/common/tel-icon.png) no-repeat left top 0.375rem/1.25rem;
}
@media screen and (max-width: 767px) {
  .cv__tel a {
    font-size: 1.125rem;
    background-position: left top 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .cv__mail {
    margin-top: 0.3125rem;
  }
}
.cv__mail a {
  background: url(../img/common/mail-icon.png) no-repeat left top 6px/22px;
  background: url(../img/common/mail-icon.png) no-repeat left top 0.375rem/1.375rem;
}
@media screen and (max-width: 767px) {
  .cv__mail a {
    background-position: left top 0.25rem;
  }
}

/* difference */
.difference .l-inner {
  max-width: 1060px;
  max-width: 66.25rem;
}

.difference--about .difference__list {
  gap: 25px 40px;
  gap: 1.5625rem 2.5rem;
}
.difference--about .difference__list-item {
  width: 420px;
  width: 26.25rem;
}
@media screen and (max-width: 767px) {
  .difference--about .difference__list-item {
    width: 100%;
  }
}

.difference__content {
  border-radius: 0.5625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .difference__content {
    margin-top: 1.25rem;
  }
}

.difference__header {
  text-align: center;
  border-radius: 0.5625rem 0.5625rem 0 0;
  background: #3DAAD3;
  padding: 19px;
  padding: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .difference__header {
    padding: 0.9375rem 0.625rem;
  }
}

.difference__subtitle {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon04.png) no-repeat center left/36px;
  background: url(../img/common/check-icon04.png) no-repeat center left/2.25rem;
  padding-left: 66px;
  padding-left: 4.125rem;
}
@media screen and (max-width: 767px) {
  .difference__subtitle {
    font-size: 1.125rem;
    background-size: 1.5625rem;
    padding-left: 2rem;
  }
}

.difference__body {
  background: #fff;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .difference__body {
    padding: 1.5625rem 1.25rem;
  }
}

.difference__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px 80px;
  gap: 1.5625rem 5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .difference__list {
    display: block;
  }
}

.difference__list-item {
  width: 380px;
  width: 23.75rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon02.png) no-repeat top 2px left/32px;
  background: url(../img/common/check-icon02.png) no-repeat top 0.125rem left/2rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .difference__list-item {
    width: 100%;
    font-size: 1rem;
    background-size: 1.5625rem;
    padding-left: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .difference__list-item + .difference__list-item {
    margin-top: 0.9375rem;
  }
}
.difference__list-item span {
  color: #3DAAD3;
  font-weight: 700;
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 60px;
  top: 3.75rem;
  left: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 40px 40px 100px;
  padding: 2.5rem 2.5rem 6.25rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item + .drawer__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.drawer__item > a, .drawer__item > span {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.drawer__subitems {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.drawer__subitem a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2.14;
  padding-left: 1em;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.drawer__subitem a:hover {
  opacity: 1;
  color: #3DAAD3;
}
.drawer__subitem a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
  color: #3DAAD3;
}

.drawer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5px;
  gap: 0 0.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.drawer__btn a {
  text-align: center;
  display: block;
  width: 90px;
  width: 5.625rem;
  max-width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  background: #EEFF28;
  border-radius: 0.25rem;
  padding: 32px 0 5px;
  padding: 2rem 0 0.3125rem;
  position: relative;
}
.drawer__btn a::before {
  position: absolute;
  content: "";
  top: 10px;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background: url(../img/common/calendar-icon01.png) no-repeat center/contain;
}

/* entitle */
.entitle {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #3DAAD3;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .entitle {
    font-size: 0.9375rem;
  }
}

/* experience */
.experience__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  gap: 1.25rem 2.5rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .experience__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.25rem;
  }
}
.experience__cards .movie-card__text {
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .experience__cards .movie-card__text {
    padding: 0;
  }
}
.experience__cards .movie-card__footer {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 16px 25px;
  padding: 1rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .experience__cards .movie-card__footer {
    padding: 0.625rem 0.9375rem;
  }
}

.experience__box {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .experience__box {
    display: block;
    margin-top: 1.5625rem;
  }
}

/* faq */
.faq__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__items {
    margin-top: 1.25rem;
  }
}

.faq__item {
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 0.9375rem;
  }
}
.faq__item + .faq__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.faq__item-question, .faq__item-answer {
  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;
  width: 48px;
  width: 3rem;
  min-width: 48px;
  min-width: 3rem;
  height: 48px;
  height: 3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .faq__item-question, .faq__item-answer {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }
}

.faq__item-header {
  padding: 0 40px 0 10px;
  padding: 0 2.5rem 0 0.625rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-header {
    padding: 0 1.25rem 0 0;
  }
}
.faq__item-header::after {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 10px;
  height: 0.625rem;
  top: 20px;
  top: 1.25rem;
  right: 10px;
  right: 0.625rem;
  background: url(../img/common/dropdown-icon.png) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__item-header::after {
    width: 1rem;
    height: 0.5rem;
    top: 0.9375rem;
    right: 0;
  }
}
.faq__item-header.active::after {
  top: 16px;
  top: 1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__item-question {
  background: #EEFF28;
  color: #3DAAD3;
}

.faq__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-left: 17px;
  margin-left: 1.0625rem;
  padding-top: 7px;
  padding-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .faq__item-title {
    font-size: 1rem;
    margin-left: 0.625rem;
    padding-top: 0.3125rem;
  }
}

.faq__item-body {
  display: none;
  background: #F5F5F5;
  border-radius: 0.625rem;
  padding: 27px 30px;
  padding: 1.6875rem 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .faq__item-body {
    margin-top: 0.9375rem;
    padding: 0.9375rem;
  }
}

.faq__item-answer {
  color: #fff;
  background: #3DAAD3;
}

.faq__item-text {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-left: 30px;
  margin-left: 1.875rem;
  padding-top: 3px;
  padding-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .faq__item-text {
    font-size: 0.9375rem;
    margin-left: 0.625rem;
  }
}

.faq__box {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .faq__box {
    margin-top: 1.875rem;
  }
}

/* filter */
.filter {
  background: #F0F6F8;
  border-radius: 0.625rem;
  padding: 30px 40px 30px 50px;
  padding: 1.875rem 2.5rem 1.875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .filter {
    padding: 1.875rem 1.25rem;
  }
}

.filter__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .filter__inner {
    display: block;
  }
}

.filter__body {
  width: 100%;
}

.filter__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter__list-item + .filter__list-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.filter__list-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .filter__list-title {
    font-size: 0.9375rem;
    letter-spacing: 0;
  }
}

.filter__list-body {
  width: 100%;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .filter__list-body {
    margin-left: 0.625rem;
  }
}

.filter__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .filter__category {
    gap: 0.3125rem;
  }
}
.filter__category button {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  background: #fff;
  color: #3DAAD3;
  border-radius: 1.5rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 6px 19px;
  padding: 0.375rem 1.1875rem;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .filter__category button {
    font-size: 0.875rem;
    padding: 0.1875rem 0.625rem;
  }
}
.filter__category button:hover {
  opacity: 1;
}
.filter__category button.active {
  color: #fff;
  background: #3DAAD3;
}

.filter__input {
  width: 100%;
  height: 48px;
  height: 3rem;
  background: #fff;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  border-radius: 0.25rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
}
.filter__input::-webkit-input-placeholder {
  color: #ccc;
}
.filter__input::-moz-placeholder {
  color: #ccc;
}
.filter__input::-ms-input-placeholder {
  color: #ccc;
}
.filter__input::placeholder {
  color: #ccc;
}

.filter__search-wrapper {
  padding-left: 40px;
  padding-left: 2.5rem;
  margin-left: 40px;
  margin-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .filter__search-wrapper {
    padding-left: 0;
    margin-left: 0;
    margin-top: 1.875rem;
  }
}
.filter__search-wrapper::after {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 158px;
  height: 9.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .filter__search-wrapper::after {
    display: none;
  }
}

.filter__search {
  text-align: center;
  display: block;
  width: 200px;
  width: 12.5rem;
  font-weight: 700;
  background: #3DAAD3;
  color: #fff;
  border-radius: 0.25rem;
  padding: 16px;
  padding: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .filter__search {
    margin: 0 auto;
  }
}
.filter__search::before {
  position: absolute;
  content: "";
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/search-icon.png) no-repeat center/contain;
}

/* flow */
.flow .lead {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .flow .lead {
    margin-top: 1.25rem;
  }
}

.flow__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F0F6F8;
  border-radius: 0.25rem;
  padding: 35px 40px 30px;
  padding: 2.1875rem 2.5rem 1.875rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__box {
    display: block;
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.flow__list {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .flow__list {
    width: 100%;
  }
}
.flow__list + .flow__list {
  padding-left: 40px;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__list + .flow__list {
    padding-left: 0;
    margin-top: 1.25rem;
  }
}
.flow__list + .flow__list::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 80px;
  height: 5rem;
  left: 0;
  top: 0;
  background: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .flow__list + .flow__list::before {
    display: none;
  }
}

.flow__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flow__list-item {
    display: block;
  }
}
.flow__list-item + .flow__list-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.flow__list-title {
  min-width: 60px;
  min-width: 3.75rem;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  font-weight: 700;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__list-title {
    min-width: unset;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .flow__list-body {
    margin-top: 0.3125rem;
  }
}

.flow__list-text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__list-text {
    font-size: 1rem;
  }
}
.flow__list-text span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .flow__list-text span {
    font-size: 1.125rem;
  }
}
.flow__list-text span:nth-of-type(2) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.flow__list-text span span {
  font-size: 24px;
  font-size: 1.5rem;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .flow__list-text span span {
    font-size: 1.25rem;
  }
}

.flow__list-subtext {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__list-subtext {
    font-size: 0.9375rem;
  }
}

.flow__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 45px;
  gap: 1.875rem 2.8125rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
    padding-right: 0;
    margin-top: 1.5625rem;
  }
}

.flow__item {
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  padding: 35px 30px 35px;
  padding: 2.1875rem 1.875rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    padding: 1.875rem 1.25rem;
  }
}
.flow__item {
  position: relative;
}
.flow__item::after {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 45px;
  height: 2.8125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -32px;
  right: -2rem;
  background: url(../img/common/flow-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow__item::after {
    right: unset;
    top: unset;
    bottom: -2.6875rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.flow__item:last-child::after {
  display: none;
}

.flow__item-number {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  color: #3DAAD3;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__item-number {
    font-size: 2rem;
  }
}

.flow__item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  color: #3DAAD3;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  margin-top: 5px;
  margin-top: 0.3125rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.125rem;
  }
}

.flow__item-text {
  letter-spacing: 0.04em;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    font-size: 0.9375rem;
  }
}

.flow__btn {
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px;
  padding: 0.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__btn {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

/* fnav */
.fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .fnav {
    display: block;
  }
}

.fnav__item-wrapper {
  width: 275px;
  width: 17.1875rem;
  max-width: 100%;
  min-height: 260px;
  min-height: 16.25rem;
  background: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .fnav__item-wrapper {
    width: 100%;
    min-height: unset;
  }
  .fnav__item-wrapper + .fnav__item-wrapper {
    margin-top: 0.625rem;
  }
}

.fnav__subtitle {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3DAAD3;
  background: #F5F5F5;
  letter-spacing: 0.04em;
  border-radius: 0.625rem 0.625rem 0 0;
  padding: 14px;
  padding: 0.875rem;
}
@media screen and (max-width: 767px) {
  .fnav__subtitle {
    font-size: 1rem;
  }
}

.fnav__items {
  padding: 25px 10px 30px 24px;
  padding: 1.5625rem 0.625rem 1.875rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    padding: 1.25rem;
  }
}

.fnav__item a {
  display: block;
  line-height: 2.25;
  padding-left: 0.8em;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fnav__item a {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.fnav__item a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

/* footer */
.footer {
  background: #3DAAD3;
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 1.25rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__body {
    display: block;
    margin-top: 0;
  }
}

.footer__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 1.5rem;
  }
}

.footer__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__subtitle {
    font-size: 1rem;
  }
}

.footer__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 0.9375rem;
  }
}
.footer__text span {
  font-size: 14px;
  font-size: 0.875rem;
}

.footer__copyright {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.footer__nav {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-left: 0;
    margin-top: 1.875rem;
  }
}

/* form */
.form__content {
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 60px;
  padding: 3.75rem;
}
@media screen and (max-width: 767px) {
  .form__content {
    padding: 1.25rem 0.9375rem;
  }
}

.form__text {
  letter-spacing: 0.04em;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .form__text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}

.form__units {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .form__units {
    margin-bottom: 2.5rem;
  }
}

.form__unit + .form__unit {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.form__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .form__unit-title {
    font-size: 1.25rem;
  }
}

.form__unit-text {
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__unit-text {
    font-size: 0.9375rem;
  }
}

.form__unit-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  gap: 0 0.9375rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__unit-btns {
    display: block;
  }
}

.form__unit-btn:first-child .btn {
  width: 260px;
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .form__unit-btn:first-child .btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .form__unit-btn:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.form__unit-btn:nth-child(2) .btn {
  width: 310px;
  width: 19.375rem;
}
@media screen and (max-width: 767px) {
  .form__unit-btn:nth-child(2) .btn {
    width: 100%;
  }
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F0F6F8;
  border-radius: 0.625rem;
  padding: 25px 40px 25px 30px;
  padding: 1.5625rem 2.5rem 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
    padding: 1.25rem 0.9375rem;
  }
}
.form__item + .form__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.form__item-label {
  width: 23.5%;
  padding-top: 5px;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label label {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.form__item-label label span {
  display: inline-block;
  color: #3DAAD3;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.form__item-input {
  width: 76.5%;
  letter-spacing: 0.04em;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    padding-left: 0;
    margin-top: 0.3125rem;
  }
}
.form__item-input::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 40px;
  height: 2.5rem;
  left: 0;
  top: 0;
  background: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .form__item-input::before {
    display: none;
  }
}
.form__item-input.pt5 {
  padding-top: 5px;
  padding-top: 0.3125rem;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input textarea, .form__item-input select {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  padding: 5px 13px;
  padding: 0.3125rem 0.8125rem;
  letter-spacing: 0.04em;
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input textarea::-moz-placeholder, .form__item-input select::-moz-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input textarea::placeholder, .form__item-input select::placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select {
  height: 40px;
  height: 2.5rem;
}
.form__item-input textarea {
  height: 200px;
  height: 12.5rem;
  resize: none;
}
.form__item-input select {
  color: #000;
  background: url(../img/common/select-icon.png) no-repeat center right 14px/10px;
  background: url(../img/common/select-icon.png) no-repeat center right 0.875rem/0.625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}

.form__select {
  width: 190px;
  width: 11.875rem;
  max-width: 100%;
  background: #fff;
}

.form__caution {
  letter-spacing: 0.03em;
  line-height: 1.375;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__caution {
    font-size: 0.9375rem;
    margin-top: 0.3125rem;
  }
}

.form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__name {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.form__name input[type=text] {
  width: 240px;
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .form__name input[type=text] {
    width: 48%;
  }
}

.form__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  gap: 0 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.form__post input[type=text] {
  width: 160px;
  width: 10rem;
}

.form__email .form__caution:nth-child(2) {
  margin: 12px 0 5px;
  margin: 0.75rem 0 0.3125rem;
}

.form__date .form__caution {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.form__date-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  gap: 0 0.5rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .form__date-item {
    display: block;
  }
}
.form__date-item + .form__date-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.form__date-item .form__select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  gap: 0 0.5rem;
}
.form__date-item .form__select {
  width: 100px;
  width: 6.25rem;
}
.form__date-item p {
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .form__date-item p {
    font-size: 0.875rem;
    margin-bottom: 0.3125rem;
  }
}

.form__gender .form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
  gap: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__gender .form__radio {
    gap: 0 1.875rem;
  }
}

.form__birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__birthday input[type=text]:first-child {
  width: 80px;
  width: 5rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__birthday input[type=text]:first-child {
    width: 4.375rem;
  }
}
.form__birthday input[type=text]:nth-child(3), .form__birthday input[type=text]:nth-child(5) {
  width: 60px;
  width: 3.75rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__birthday input[type=text]:nth-child(3), .form__birthday input[type=text]:nth-child(5) {
    width: 3.125rem;
  }
}

.form__graduation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__graduation {
    display: block;
  }
}
.form__graduation .form__select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  gap: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .form__graduation .form__select-wrapper {
    margin-bottom: 0.625rem;
  }
}

.form__situation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  padding-top: 0.625rem;
}
.form__situation input[type=text] {
  width: 70px;
  width: 4.375rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}

.form__course .form__radio label:not(:last-child) {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__course .form__radio label:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

.form__method .form__radio label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .form__method .form__radio label {
    display: block;
  }
}
.form__method .form__caution {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.form__questionnaire .form__check {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.form__questionnaire .form__check label {
  display: inline-block;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__questionnaire .form__check label {
    display: block;
  }
}
.form__questionnaire input[type=text] {
  width: 240px;
  width: 15rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .form__questionnaire input[type=text] {
    width: 9.0625rem;
    height: 2.1875rem;
    margin-top: -0.3125rem;
  }
}

.form__radio {
  padding-top: 5px;
  padding-top: 0.3125rem;
}
.form__radio label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .form__radio label {
    display: block;
  }
}
.form__radio label:not(:last-child) {
  margin-right: 50px;
  margin-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__radio label:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
.form__radio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.04em;
  padding-left: 32px;
  padding-left: 2rem;
  position: relative;
}
.form__radio input[type=radio] + span::before, .form__radio input[type=radio] + span::after {
  position: absolute;
  content: "";
}
.form__radio input[type=radio] + span::before {
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  top: 2px;
  top: 0.125rem;
  left: 0;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}
.form__radio input[type=radio] + span::after {
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 6px;
  left: 0.375rem;
  top: 8px;
  top: 0.5rem;
}
.form__radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.form__check label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .form__check label {
    display: block;
  }
}
.form__check label:not(:last-child) {
  margin-right: 50px;
  margin-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .form__check label:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
.form__check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.04em;
  padding-left: 32px;
  padding-left: 2rem;
  position: relative;
}
.form__check input[type=checkbox] + span::before, .form__check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
}
.form__check input[type=checkbox] + span::before {
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: #fff;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  left: 0;
  top: 2px;
  top: 0.125rem;
}
.form__check input[type=checkbox] + span::after {
  border-bottom: 3px solid #000;
  border-bottom: 0.1875rem solid #000;
  border-left: 3px solid #000;
  border-left: 0.1875rem solid #000;
  height: 8px;
  height: 0.5rem;
  width: 13px;
  width: 0.8125rem;
  opacity: 0;
  left: 6px;
  left: 0.375rem;
  top: 8px;
  top: 0.5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.form__check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__privacy {
  border-radius: 0.625rem;
  background: #F5F5F5;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 60px;
  padding: 3.75rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    padding: 1.25rem;
  }
}

.form__privacy-content {
  height: 330px;
  height: 20.625rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .form__privacy-content {
    height: 12.5rem;
  }
}

.form__privacy-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form__privacy-title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.form__privacy-list {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-list {
    margin-top: 1.25rem;
  }
}

.form__privacy-list-item + .form__privacy-list-item {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-list-item + .form__privacy-list-item {
    margin-top: 1.25rem;
  }
}

.form__privacy-list-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-list-title {
    font-size: 1rem;
    padding-bottom: 0.3125rem;
  }
}

.form__privacy-list-text {
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-list-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}
.form__privacy-list-text a {
  color: #3DAAD3;
}

.form__btn {
  display: block;
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 23px;
  padding: 1.4375rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__btn {
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}
.form__btn::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  right: 1.5rem;
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
}

/* gnav */
.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 0 30px;
  gap: 0 1.875rem;
}
@media screen and (max-width: 1350px) {
  .gnav__items {
    gap: 0 1.5625rem;
  }
}

.gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  position: relative;
}
.gnav__item.current a {
  position: relative;
}
.gnav__item.current a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  height: 0.1875rem;
  background: #3DAAD3;
}
.gnav__item > a, .gnav__item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 1350px) {
  .gnav__item > a, .gnav__item > span {
    font-size: 0.875rem;
  }
}
.gnav__item > a:hover, .gnav__item > span:hover {
  opacity: 1;
  color: #3DAAD3;
}

.gnav__child {
  display: none;
  position: absolute;
  left: 0;
  top: 65px;
  top: 4.0625rem;
  min-width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}

.gnav__child-item a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2.14;
  padding-left: 1em;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.gnav__child-item a:hover {
  opacity: 1;
  color: #3DAAD3;
}
.gnav__child-item a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
  color: #3DAAD3;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 20px;
  top: 1.25rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 10px;
  top: 0.625rem;
}
.hamburger__border:nth-child(3) {
  top: 20px;
  top: 1.25rem;
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  height: 5rem;
  z-index: 100;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}
.header.active {
  background: #fff;
}

.header__inner {
  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;
  height: inherit;
  padding-left: 18px;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.header__logo {
  width: 195px;
  width: 12.1875rem;
  max-width: 100%;
}
@media screen and (max-width: 1350px) {
  .header__logo {
    width: 10.625rem;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 9.375rem;
  }
}
.header__logo a {
  display: block;
}

.header__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2476CA;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 1rem;
  }
}

.header__nav {
  margin-left: auto;
  margin-right: 30px;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  gap: 0 0.3125rem;
  margin-right: 17px;
  margin-right: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .header__btns {
    display: none;
  }
}

.header__btn:first-child a {
  color: #fff;
  background: #3DAAD3;
}
.header__btn:first-child a::before {
  width: 17px;
  width: 1.0625rem;
  height: 20px;
  height: 1.25rem;
  background: url(../img/common/user-icon02.png) no-repeat center/contain;
}
.header__btn:nth-child(2) a {
  color: #3DAAD3;
  background: #EEFF28;
}
.header__btn:nth-child(2) a::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background: url(../img/common/calendar-icon01.png) no-repeat center/contain;
}
.header__btn a {
  text-align: center;
  display: block;
  width: 90px;
  width: 5.625rem;
  max-width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
  padding: 32px 0 5px;
  padding: 2rem 0 0.3125rem;
  position: relative;
}
.header__btn a::before {
  position: absolute;
  content: "";
  top: 10px;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* introduction */
.introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .introduction__inner {
    display: block;
  }
}

.introduction__body {
  width: 50%;
  padding: 80px 30px 80px 0;
  padding: 5rem 1.875rem 5rem 0;
}
@media screen and (max-width: 767px) {
  .introduction__body {
    width: 100%;
    padding: 3.75rem 0 0;
  }
}

.introduction__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .introduction__title {
    font-size: 1.5rem;
  }
}

.introduction__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .introduction__text {
    font-size: 1.125rem;
  }
}

.introduction__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .introduction__subtitle {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.introduction__subtext {
  line-height: 2;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .introduction__subtext {
    font-size: 0.9375rem;
  }
}

.introduction__box {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 35px 50px;
  padding: 2.1875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .introduction__box {
    padding: 1.875rem 1.25rem;
    margin-top: 1.25rem;
  }
}

.introduction__box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .introduction__box-title {
    font-size: 1.125rem;
  }
}

.introduction__box-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.introduction__box-list-item {
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon01.png) no-repeat top 10px left/12px;
  background: url(../img/common/check-icon01.png) no-repeat top 0.625rem left/0.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .introduction__box-list-item {
    font-size: 0.9375rem;
  }
}
.introduction__box-list-item + .introduction__box-list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .introduction__box-list-item + .introduction__box-list-item {
    margin-top: 0.1875rem;
  }
}

.introduction__img {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .introduction__img {
    width: 100vw;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}
.introduction__img img {
  height: 100%;
  max-height: 950px;
  max-height: 59.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* lead */
.lead {
  text-align: center;
  line-height: 2.25;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

/* list */
.list {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
}

.list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .list__item {
    display: block;
    font-size: 0.9375rem;
  }
}
.list__item + .list__item {
  border-top: 1px solid #D8D8D8;
  border-top: 0.0625rem solid #D8D8D8;
}

.list__item-title {
  width: 21%;
  background: #F0F6F8;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 20px 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .list__item-title {
    width: 100%;
    padding: 0.9375rem 1.25rem;
  }
}

.list__item-body {
  width: 79%;
  background: #fff;
  padding: 23px 20px;
  padding: 1.4375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .list__item-body {
    width: 100%;
    padding: 0.9375rem 1.25rem;
  }
}

.list__item-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .list__item-text {
    font-size: 0.9375rem;
  }
}
.list__item-text span {
  color: #3DAAD3;
  font-weight: 700;
}

.list__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #7E8588;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* main */
.main {
  overflow: hidden;
}

/* movie-card */
.movie-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
}
@media screen and (max-width: 767px) {
  .movie-card {
    display: block;
  }
}

.movie-card__body {
  padding: 30px 30px 25px;
  padding: 1.875rem 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .movie-card__body {
    padding: 1.25rem 1.25rem;
  }
}

.movie-card__video {
  width: 100%;
  padding-top: 55.7692307692%;
  position: relative;
}
.movie-card__video iframe, .movie-card__video video, .movie-card__video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-card__title {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .movie-card__title {
    margin-top: 1.25rem;
  }
}
.movie-card__title span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  background: #EEFF28;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .movie-card__title span {
    font-size: 1.25rem;
    padding: 0.1875rem 0.9375rem;
  }
}

.movie-card__category {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .movie-card__category {
    margin-top: 1.25rem;
  }
}
.movie-card__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}

.movie-card__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .movie-card__subtitle {
    font-size: 1.25rem;
  }
}

.movie-card__text {
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .movie-card__text {
    margin-top: 0.9375rem;
  }
}

.movie-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F5F5F5;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  margin-top: auto;
}

.movie-card__time {
  letter-spacing: 0.04em;
  background: url(../img/common/time-icon.png) no-repeat center left/17px;
  background: url(../img/common/time-icon.png) no-repeat center left/1.0625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .movie-card__time {
    font-size: 0.9375rem;
  }
}

.movie-card__view {
  letter-spacing: 0.04em;
  background: url(../img/common/view-icon.png) no-repeat center left/20px;
  background: url(../img/common/view-icon.png) no-repeat center left/1.25rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  margin-left: 40px;
  margin-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .movie-card__view {
    font-size: 0.9375rem;
  }
}
.movie-card__view::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  left: -20px;
  left: -1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}

.movie-card__name {
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .movie-card__name {
    font-size: 0.9375rem;
  }
}

.movie-card__school {
  margin-left: 30px;
  margin-left: 1.875rem;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .movie-card__school {
    font-size: 0.9375rem;
    margin-left: 0;
  }
}
.movie-card__school::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  left: -15px;
  left: -0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}
@media screen and (max-width: 767px) {
  .movie-card__school::before {
    display: none;
  }
}

/* movie */
.movie__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
  gap: 2.5rem 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .movie__cards {
    display: block;
    margin-top: 1.25rem;
  }
}
.movie__cards.l-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  gap: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .movie__cards.l-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
  }
}

.movie__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.625rem);
          flex: 0 1 calc(50% - 0.625rem);
}
@media screen and (max-width: 767px) {
  .movie__card + .movie__card {
    margin-top: 1.25rem;
  }
}
.movie__card .movie-card__text {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .movie__card .movie-card__text {
    padding: 0;
  }
}
.movie__card .movie-card__footer {
  padding: 16px 50px;
  padding: 1rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .movie__card .movie-card__footer {
    display: block;
    padding: 0.75rem 1.25rem;
  }
}

.movie__btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .movie__btn {
    margin-top: 2.5rem;
  }
}

/* mv */
.mv {
  text-align: center;
  background: #F0F6F8;
  padding: 50px 0 60px;
  padding: 3.125rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 2.5rem 0;
  }
}

.mv__subheading {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #3DAAD3;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__subheading {
    font-size: 1.5rem;
  }
}

.mv__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
}

.mv__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3DAAD3;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.mv__text {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 0.9375rem;
  }
}

.mv__subtext {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__subtext {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.mv__inner {
  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;
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    display: block;
  }
}
.mv__inner .mv__text {
  text-align: left;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .mv__inner .mv__text {
    text-align: center;
    margin-top: 0.9375rem;
  }
}

.mv__heading {
  width: 260px;
  width: 16.25rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 15px 0 20px;
  padding: 0.9375rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__heading {
    font-size: 1.125rem;
    padding: 0.625rem 0 0.9375rem;
    margin: 0 auto;
  }
}
.mv__heading span {
  font-size: 32px;
  font-size: 2rem;
  color: #EEFF28;
}
@media screen and (max-width: 767px) {
  .mv__heading span {
    font-size: 1.5rem;
  }
}

.mv__list {
  width: 820px;
  width: 51.25rem;
  max-width: 100%;
  margin: 25px auto 0;
  margin: 1.5625rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem 0.625rem;
    margin-top: 1.25rem;
  }
}

.mv__list-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 15px 0 25px;
  padding: 0.9375rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__list-item {
    font-size: 1rem;
    padding: 0.625rem 0 0.9375rem;
  }
}
.mv__list-item span {
  font-size: 32px;
  font-size: 2rem;
  color: #EEFF28;
}
@media screen and (max-width: 767px) {
  .mv__list-item span {
    font-size: 1.5rem;
  }
}

.mv__lead {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}
.mv__lead span {
  color: #3DAAD3;
}

.mv__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
  gap: 1.25rem 1.25rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .mv__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 0.625rem;
    margin-top: 1.5625rem;
  }
}

.mv__link {
  text-align: left;
}
.mv__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  padding: 23px 25px;
  padding: 1.4375rem 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__link a {
    font-size: 0.9375rem;
    line-height: 1.5;
    height: 100%;
    padding: 0.9375rem 0.9375rem;
  }
}
.mv__link a::after {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/anchor-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .mv__link a::after {
    width: 1.25rem;
    height: 1.25rem;
    right: 0.625rem;
  }
}

/* news */
/* page-header */
.page-header {
  background: #F0F6F8;
  padding: 35px 0;
  padding: 2.1875rem 0;
}

.page-header__title {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-header__title {
    font-size: 1.75rem;
  }
}

/* pagination */
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  gap: 0.625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.4375rem 0.4375rem;
  }
}
.pagination a, .pagination span {
  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;
  width: 67px;
  width: 4.1875rem;
  height: 48px;
  height: 3rem;
  border-radius: 0.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .pagination a, .pagination span {
    width: 3.125rem;
    height: 2.5rem;
  }
}
.pagination a {
  color: #3DAAD3;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  position: relative;
}
.pagination a::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pagination a.prev, .pagination a.next {
  width: 149px;
  width: 9.3125rem;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagination a.prev, .pagination a.next {
    width: 6.25rem;
  }
}
.pagination a.prev {
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination a.prev {
    padding-left: 0.625rem;
    margin-right: 0.625rem;
  }
}
.pagination a.prev::before {
  left: 45px;
  left: 2.8125rem;
  background: url(../img/common/prev-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .pagination a.prev::before {
    left: 1.5625rem;
  }
}
.pagination a.prev.disabled::before {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
}
.pagination a.next {
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination a.next {
    padding-right: 0.625rem;
    margin-left: 0.625rem;
  }
}
.pagination a.next::before {
  right: 45px;
  right: 2.8125rem;
  background: url(../img/common/next-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .pagination a.next::before {
    right: 1.5625rem;
  }
}
.pagination a.next.disabled::before {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
}
.pagination a.first, .pagination a.last {
  width: 109px;
  width: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .pagination a.first, .pagination a.last {
    width: 5.625rem;
  }
}
.pagination a.first {
  padding-left: 15px;
  padding-left: 0.9375rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination a.first {
    margin-right: 0.625rem;
  }
}
.pagination a.first::before {
  left: 22px;
  left: 1.375rem;
  background: url(../img/common/prev-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .pagination a.first::before {
    left: 0.75rem;
  }
}
.pagination a.first.disabled::before {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
}
.pagination a.last {
  padding-right: 15px;
  padding-right: 0.9375rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination a.last {
    margin-left: 0.625rem;
  }
}
.pagination a.last::before {
  right: 22px;
  right: 1.375rem;
  background: url(../img/common/next-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .pagination a.last::before {
    right: 0.75rem;
  }
}
.pagination a.last.disabled::before {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
}
.pagination a.disabled {
  border-color: #C2C9CC;
  color: #C2C9CC;
  pointer-events: none;
}
.pagination span.current {
  color: #fff;
  background: #3DAAD3;
}
.pagination span.dots {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #3DAAD3;
}

/* process */
.process__units {
  padding-left: 70px;
  padding-left: 4.375rem;
  margin-top: 145px;
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .process__units {
    padding-left: 0;
    margin-top: 2.5rem;
  }
}
.process__units.mt-0 {
  margin-top: 0;
}

.process__unit {
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  position: relative;
}
.process__unit + .process__unit {
  margin-top: 145px;
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .process__unit + .process__unit {
    margin-top: 2.5rem;
  }
}

.process__unit-body {
  min-height: 280px;
  min-height: 17.5rem;
  padding: 50px 60px;
  padding: 3.125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .process__unit-body {
    min-height: unset;
    padding: 0;
  }
}

.process__unit-img-wrapper {
  position: absolute;
  top: -64px;
  top: -4rem;
  left: -70px;
  left: -4.375rem;
  width: 47%;
}
@media screen and (max-width: 1350px) {
  .process__unit-img-wrapper {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .process__unit-img-wrapper {
    position: static;
    width: 100%;
  }
}

.process__unit-number {
  position: absolute;
  left: 24px;
  left: 1.5rem;
  top: -35px;
  top: -2.1875rem;
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .process__unit-number {
    font-size: 3.125rem;
    top: -1.25rem;
  }
}

.process__unit-img img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .process__unit-img img {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}

.process__unit-texts {
  width: 560px;
  width: 35rem;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .process__unit-texts {
    width: 100%;
    padding: 1.5625rem 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .process__unit-title {
    text-align: center;
  }
}
.process__unit-title span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3DAAD3;
  background: #EEFF28;
  letter-spacing: 0.04em;
  padding: 2px 12px;
  padding: 0.125rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .process__unit-title span {
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 0.3125rem 0.5rem;
  }
}

.process__unit-text {
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .process__unit-text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.process__unit-video-wrapper {
  width: 320px;
  width: 20rem;
  max-width: 100%;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .process__unit-video-wrapper {
    width: 100%;
  }
}

.process__unit-video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.process__unit-video iframe, .process__unit-video video, .process__unit-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
}

.process__unit-footer {
  background: #F5F5F5;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 40px 80px 35px;
  padding: 2.5rem 5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .process__unit-footer {
    padding: 1.5625rem 1.25rem;
  }
}

.process__unit-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .process__unit-subtitle {
    font-size: 1rem;
  }
}

.process__unit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 0;
  gap: 0.375rem 0;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .process__unit-list {
    display: block;
  }
}

.process__unit-list-item {
  width: 50%;
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon01.png) no-repeat left top 10px/14px;
  background: url(../img/common/check-icon01.png) no-repeat left top 0.625rem/0.875rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}
@media screen and (max-width: 767px) {
  .process__unit-list-item {
    width: 100%;
    font-size: 0.9375rem;
    background-size: 0.625rem;
    padding-left: 1rem;
  }
  .process__unit-list-item + .process__unit-list-item {
    margin-top: 0.3125rem;
  }
}

/* step */
.step__units {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .step__units {
    margin-top: 2.5rem;
  }
}

.step__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step__unit {
    display: block;
  }
}
.step__unit + .step__unit {
  margin-top: 96px;
  margin-top: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step__unit + .step__unit {
    margin-top: 3.75rem;
  }
}
.step__unit + .step__unit::before {
  position: absolute;
  content: "";
  width: 100px;
  width: 6.25rem;
  height: 30px;
  height: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -65px;
  top: -4.0625rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .step__unit + .step__unit::before {
    width: 4.375rem;
    height: 1.25rem;
    top: -2.5rem;
  }
}

.step__unit-number {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  left: 30px;
  left: 1.875rem;
  font-size: 72px;
  font-size: 4.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .step__unit-number {
    font-size: 3rem;
    top: -1.25rem;
    left: 1.25rem;
  }
}

.step__unit-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .step__unit-img {
    width: 100%;
  }
}
.step__unit-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .step__unit-img img {
    height: auto;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}

.step__unit-body {
  width: 55%;
  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;
  padding: 20px 60px;
  padding: 1.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .step__unit-body {
    width: 100%;
    display: block;
    padding: 1.5625rem 1.25rem;
  }
}

.step__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .step__unit-title {
    font-size: 1.25rem;
  }
}

.step__unit-text {
  letter-spacing: 0.05em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .step__unit-text {
    font-size: 0.9375rem;
  }
}

.step__unit-list {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .step__unit-list {
    margin-top: 0.9375rem;
  }
}

.step__unit-list-item {
  background: url(../img/common/check-icon01.png) no-repeat top 10px left/14px;
  background: url(../img/common/check-icon01.png) no-repeat top 0.625rem left/0.875rem;
  letter-spacing: 0.04em;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .step__unit-list-item {
    font-size: 0.9375rem;
  }
}
.step__unit-list-item + .step__unit-list-item {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.step__unit-btn {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* subtitle */
/* tab */
.tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem 0;
  }
}

.tab__item.current button {
  background: #F0F6F8;
}
.tab__item.current button::before {
  border-color: #3DAAD3;
  background: url(../img/common/check-icon05.png) no-repeat center/contain;
}
.tab__item button {
  text-align: left;
  display: block;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 23px 10px 23px 64px;
  padding: 1.4375rem 0.625rem 1.4375rem 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tab__item button {
    font-size: 1rem;
    padding: 1.25rem 0.625rem 1.25rem 3.375rem;
  }
}
.tab__item button::before {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: #F5F5F5;
  border: 1px solid #ccc;
  border: 0.0625rem solid #ccc;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab__item button::before {
    width: 1.5625rem;
    height: 1.5625rem;
    left: 0.9375rem;
  }
}

/* title */
.title {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.5rem;
  }
}

/* unit */
.unit {
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 40px 30px 25px;
  padding: 2.5rem 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .unit {
    padding: 1.875rem 1.25rem;
  }
}

.unit__icon {
  width: 80px;
  width: 5rem;
  max-width: 100%;
  margin: 0 auto;
}

.unit__title {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .unit__title {
    margin-top: 1.25rem;
  }
}
.unit__title span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  background: #EEFF28;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .unit__title span {
    font-size: 1.125rem;
  }
}

.unit__text {
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .unit__text {
    font-size: 0.9375rem;
  }
}

/* voice-card */
.voice-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.625rem;
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  position: relative;
}
.voice-card::before {
  position: absolute;
  content: "";
  width: 60px;
  width: 3.75rem;
  height: 48px;
  height: 3rem;
  top: -15px;
  top: -0.9375rem;
  left: 25px;
  left: 1.5625rem;
  background: url(../img/common/voice-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .voice-card::before {
    width: 3.125rem;
    height: 2.5rem;
  }
}
.voice-card:first-child .voice-card__icon {
  width: 125px;
  width: 7.8125rem;
  min-width: 125px;
  min-width: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .voice-card:first-child .voice-card__icon {
    width: 6.25rem;
    min-width: 6.25rem;
  }
}
.voice-card:nth-child(2) .voice-card__icon {
  width: 109px;
  width: 6.8125rem;
  min-width: 109px;
  min-width: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .voice-card:nth-child(2) .voice-card__icon {
    width: 5.625rem;
    min-width: 5.625rem;
  }
}
.voice-card:nth-child(3) .voice-card__icon {
  width: 117px;
  width: 7.3125rem;
  min-width: 117px;
  min-width: 7.3125rem;
}
@media screen and (max-width: 767px) {
  .voice-card:nth-child(3) .voice-card__icon {
    width: 6.25rem;
    min-width: 6.25rem;
  }
}
.voice-card:nth-child(4) .voice-card__icon {
  width: 117px;
  width: 7.3125rem;
  min-width: 117px;
  min-width: 7.3125rem;
}
@media screen and (max-width: 767px) {
  .voice-card:nth-child(4) .voice-card__icon {
    width: 6.25rem;
    min-width: 6.25rem;
  }
}

.voice-card__body {
  padding: 55px 40px 35px;
  padding: 3.4375rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .voice-card__body {
    padding: 2.5rem 1.25rem 1.5625rem;
  }
}

.voice-card__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .voice-card__text {
    font-size: 1rem;
  }
}

.voice-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 16px;
  gap: 0 1rem;
  min-height: 110px;
  min-height: 6.875rem;
  background: #F5F5F5;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .voice-card__footer {
    min-height: unset;
  }
}

.voice-card__icon {
  width: 117px;
  width: 7.3125rem;
  max-width: 100%;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .voice-card__icon {
    width: 6.25rem;
  }
}

.voice-card__names {
  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;
  height: 100%;
  padding: 10px 0 15px;
  padding: 0.625rem 0 0.9375rem;
}

.voice-card__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .voice-card__name {
    font-size: 1rem;
  }
}

.voice-card__year {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 1.33;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

/* voice */
.voice__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
  gap: 3.75rem 1.875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .voice__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
    margin-top: 1.875rem;
  }
}
.voice__cards.l-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  gap: 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .voice__cards.l-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
  }
}

/* notfound */
.notfound__btn {
  width: 240px;
  width: 15rem;
  padding: 15px;
  padding: 0.9375rem;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .notfound__btn {
    margin-top: 1.875rem;
  }
}

/* about */
/* message */
.message {
  text-align: center;
  background: url(../img/about/message-bg.jpg) no-repeat center/cover;
}

.message__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .message__subtitle {
    font-size: 1.25rem;
  }
}

.message__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.22;
  letter-spacing: 0.04em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 1.25rem;
  }
}

.message__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .message__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 0.625rem;
    margin-top: 1.875rem;
  }
}

.message__item {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 23px 0;
  padding: 1.4375rem 0;
}
@media screen and (max-width: 767px) {
  .message__item {
    font-size: 1.125rem;
    padding: 0.9375rem 0;
  }
}
.message__item span {
  font-size: 36px;
  font-size: 2.25rem;
  color: #EEFF28;
}
@media screen and (max-width: 767px) {
  .message__item span {
    font-size: 1.625rem;
  }
}

/* access */
.access__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .access__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.25rem;
  }
}

.access__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.5625rem;
}

.access__unit-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.5625rem 0.5625rem 0 0;
  background: #3DAAD3;
  padding: 19px;
  padding: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .access__unit-title {
    font-size: 1.25rem;
  }
}

.access__unit-body {
  padding: 40px 43px 35px;
  padding: 2.5rem 2.6875rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .access__unit-body {
    padding: 1.875rem 1.25rem;
  }
}

.access__unit-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .access__unit-subtitle {
    font-size: 1.125rem;
  }
}

.access__unit-text {
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .access__unit-text {
    font-size: 0.9375rem;
  }
}

.access__unit-items {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.access__unit-item + .access__unit-item {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.access__unit-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .access__unit-item-title {
    font-size: 1rem;
  }
}

.access__unit-item-list {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.access__unit-item-list-item {
  line-height: 2;
  letter-spacing: 0.04em;
  padding-left: 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .access__unit-item-list-item {
    font-size: 0.9375rem;
  }
}
.access__unit-item-list-item::before {
  position: absolute;
  content: "●";
  color: #3DAAD3;
  left: 0;
  top: 0;
}

.access__unit-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F5F5F5;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 18px 20px;
  padding: 1.125rem 1.25rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .access__unit-footer {
    display: block;
    padding: 0.9375rem 1.25rem;
  }
}

.access__unit-footer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3DAAD3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .access__unit-footer-title {
    font-size: 1.125rem;
  }
}

.access__unit-footer-text {
  letter-spacing: 0.04em;
  border-left: 1px solid #3DAAD3;
  border-left: 0.0625rem solid #3DAAD3;
  padding-left: 18px;
  padding-left: 1.125rem;
  margin-left: 18px;
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .access__unit-footer-text {
    font-size: 0.9375rem;
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0.3125rem;
  }
}

.access__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .access__subtitle {
    font-size: 0.9375rem;
  }
}
.access__subtitle span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  color: #3DAAD3;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 7px;
  margin-right: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .access__subtitle span {
    font-size: 1.5rem;
  }
}

.access__map {
  width: 100%;
  padding-top: 44.1666666667%;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .access__map {
    padding-top: 100%;
    margin-top: 0.9375rem;
  }
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__box {
  background: #F5F5F5;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .access__box {
    padding: 1.875rem 1.25rem;
  }
}

.access__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .access__items {
    display: block;
  }
}

.access__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.63;
}
@media screen and (max-width: 767px) {
  .access__item {
    font-size: 0.9375rem;
  }
}
.access__item + .access__item {
  border-left: 1px solid #707070;
  border-left: 0.0625rem solid #707070;
  margin-left: 35px;
  margin-left: 2.1875rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .access__item + .access__item {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.access__item-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: 15px;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .access__item-title {
    min-width: 4.0625rem;
  }
}

.access__item-text {
  letter-spacing: 0.04em;
}

.access__img {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .access__img {
    margin-top: 2.5rem;
  }
}
/* company */
.company .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

.company__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    margin-top: 1.25rem;
  }
}

/* contact */
.contact__tab {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .contact__tab {
    margin-top: 1.25rem;
  }
}

.contact__contents {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .contact__contents {
    margin-top: 3.125rem;
  }
}

.contact__content {
  display: none;
}
.contact__content.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.contact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact__header {
    display: block;
  }
}

.contact__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact__subtitle {
    font-size: 1.25rem;
  }
}

.contact__caution {
  color: #3DAAD3;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact__caution {
    font-size: 0.9375rem;
  }
}

.contact__form {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 1.25rem;
  }
}

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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* price */
.price__body {
  text-align: center;
  background: #F0F6F8;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 35px 20px 45px;
  padding: 2.1875rem 1.25rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .price__body {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.price__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .price__subtitle {
    font-size: 1.25rem;
  }
}

.price__subheading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .price__subheading {
    font-size: 1rem;
  }
}

.price__text {
  letter-spacing: 0.04em;
  line-height: 1.875;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .price__text {
    font-size: 0.9375rem;
  }
}

.price__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .price__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.25rem;
  }
}

.price__unit {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
}
.price__unit:first-child .price__unit-title {
  background: #3DAAD3;
  color: #fff;
}
.price__unit:nth-child(2) .price__unit-title {
  background: #EEFF28;
  color: #3DAAD3;
}

.price__unit-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.625rem 0.625rem 0 0;
  padding: 19px;
  padding: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .price__unit-title {
    font-size: 1.25rem;
    padding: 0.9375rem;
  }
}

.price__unit-body {
  padding: 25px 60px 40px;
  padding: 1.5625rem 3.75rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .price__unit-body {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.price__unit-header {
  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;
  gap: 0 9px;
  gap: 0 0.5625rem;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .price__unit-header {
    padding-bottom: 0.625rem;
  }
}

.price__unit-number {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  color: #3DAAD3;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .price__unit-number {
    font-size: 2rem;
  }
}
.price__unit-number span {
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .price__unit-number span {
    font-size: 1.75rem;
  }
}

.price__unit-tax {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.price__unit-list {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .price__unit-list {
    padding-left: 0;
    margin-top: 1.25rem;
  }
}

.price__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F0F6F8;
  min-height: 90px;
  min-height: 5.625rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .price__unit-list-item {
    min-height: 5rem;
  }
}
.price__unit-list-item + .price__unit-list-item {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.price__unit-list-item:first-child .price__unit-list-text {
  text-align: left;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .price__unit-list-item:first-child .price__unit-list-text {
    text-align: center;
    font-size: 1rem;
  }
}

.price__unit-list-title {
  font-size: 20px;
  font-size: 1.25rem;
  width: 37%;
  font-weight: 700;
  color: #3DAAD3;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding: 0 30px;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .price__unit-list-title {
    font-size: 0.9375rem;
    padding: 0 0.625rem 0 0.9375rem;
  }
}

.price__unit-list-text {
  text-align: center;
  width: 63%;
  padding: 0 30px;
  padding: 0 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__unit-list-text {
    padding: 0 0.9375rem 0 0.625rem;
  }
}
.price__unit-list-text::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 54px;
  height: 3.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .price__unit-list-text::before {
    height: 3rem;
  }
}
.price__unit-list-text span {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .price__unit-list-text span {
    font-size: 0.875rem;
  }
}

.price__unit-list-circle {
  width: 29px;
  width: 1.8125rem;
  max-width: 100%;
  margin: 0 auto;
}

.price__unit-list-border {
  width: 24px;
  width: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.price__unit-btn {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .price__unit-btn {
    margin-top: 1.875rem;
  }
}

.price__btn {
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px;
  padding: 0.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .price__btn {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

/* recommendation */
.recommendation__box {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .recommendation__box {
    margin-top: 1.25rem;
  }
}
.recommendation__box .box__btn {
  width: 300px;
  width: 18.75rem;
}

/* requirements */
.requirements .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

.requirements__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .requirements__list {
    margin-top: 1.25rem;
  }
}

/* examination */
/* existence */
.existence .title, .existence .lead {
  text-align: left;
}
.existence .lead {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .existence .lead {
    line-height: 1.75;
  }
}

.existence__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .existence__inner {
    display: block;
  }
}

.existence__body {
  width: 50%;
  padding: 70px 0 75px 60px;
  padding: 4.375rem 0 4.6875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .existence__body {
    width: 100%;
    padding: 3.75rem 0 0;
  }
}

.existence__box {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 40px 50px;
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .existence__box {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

.existence__list-item {
  background: url(../img/common/check-icon01.png) no-repeat left top 8px/12px;
  background: url(../img/common/check-icon01.png) no-repeat left top 0.5rem/0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .existence__list-item {
    font-size: 0.9375rem;
  }
}
.existence__list-item + .existence__list-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.existence__list-item span {
  font-weight: 700;
  color: #3DAAD3;
}

.existence__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .existence__subtitle {
    font-size: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.existence__text {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .existence__text {
    font-size: 0.9375rem;
  }
}

.existence__img {
  width: 50vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .existence__img {
    width: 100vw;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}
.existence__img img {
  height: 100%;
  max-height: 800px;
  max-height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* guide */
.guide__units {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .guide__units {
    margin-top: 1.25rem;
  }
}

.guide__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 40px;
  gap: 0 2.5rem;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 40px 50px 37px;
  padding: 2.5rem 3.125rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .guide__unit {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.guide__unit + .guide__unit {
  margin-top: 70px;
  margin-top: 4.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .guide__unit + .guide__unit {
    margin-top: 3.125rem;
  }
}
.guide__unit + .guide__unit::before {
  position: absolute;
  content: "";
  width: 100px;
  width: 6.25rem;
  height: 30px;
  height: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -50px;
  top: -3.125rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .guide__unit + .guide__unit::before {
    width: 3.75rem;
    height: 1.25rem;
    top: -2.1875rem;
  }
}

.guide__unit-month {
  width: 120px;
  width: 7.5rem;
  min-width: 120px;
  min-width: 7.5rem;
  min-height: 120px;
  min-height: 7.5rem;
  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: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #3DAAD3;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-month {
    text-align: center;
    display: block;
    font-size: 1.125rem;
    width: 100%;
    min-height: unset;
    padding: 0.9375rem;
  }
}

.guide__unit-body {
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-body {
    margin-top: 0.625rem;
  }
}

.guide__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #3DAAD3;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .guide__unit-title {
    font-size: 1.25rem;
  }
}

.guide__unit-text {
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-text {
    font-size: 0.9375rem;
  }
}

.guide__unit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 30px;
  gap: 0.3125rem 1.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-list {
    display: block;
  }
}

.guide__unit-list-item {
  letter-spacing: 0.04em;
  line-height: 1.31;
  background: url(../img/common/check-icon02.png) no-repeat left top 4px/24px;
  background: url(../img/common/check-icon02.png) no-repeat left top 0.25rem/1.5rem;
  padding: 5px 0 5px 32px;
  padding: 0.3125rem 0 0.3125rem 2rem;
}
@media screen and (max-width: 767px) {
  .guide__unit-list-item {
    background: url(../img/common/check-icon02.png) no-repeat left top 0.375rem/1.125rem;
    padding-left: 1.5625rem;
    font-size: 0.9375rem;
  }
  .guide__unit-list-item + .guide__unit-list-item {
    margin-top: 0.3125rem;
  }
}

.guide__box {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .guide__box {
    margin-top: 1.875rem;
  }
}

/* info */
.info__items {
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 0.0625rem solid #E6E6E6;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .info__items {
    margin-top: 1.25rem;
  }
}

.info__item {
  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-top: 1px solid #E6E6E6;
  border-top: 0.0625rem solid #E6E6E6;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .info__item {
    display: block;
    padding: 1.25rem 0;
  }
}

.info__item-header {
  width: 20%;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .info__item-header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 0.9375rem;
  }
}

.info__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .info__item-date {
    font-size: 0.9375rem;
  }
}

.info__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .info__item-title {
    font-size: 1rem;
  }
}

.info__item-text {
  width: 80%;
  letter-spacing: 0.04em;
  line-height: 1.63;
}
@media screen and (max-width: 767px) {
  .info__item-text {
    width: 100%;
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.info__box {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .info__box {
    margin-top: 1.875rem;
  }
}

/* matching */
.matching__list {
  width: 960px;
  width: 60rem;
  max-width: 100%;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .matching__list {
    margin-top: 1.25rem;
  }
}
.matching__list .list__item-title {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .matching__list .list__item-title {
    width: 100%;
  }
}
.matching__list .list__item-body {
  width: 77%;
}
@media screen and (max-width: 767px) {
  .matching__list .list__item-body {
    width: 100%;
  }
}

.matching__box {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .matching__box {
    margin-top: 1.875rem;
  }
}

/* overview */
.overview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .overview__list {
    display: block;
    margin-top: 1.25rem;
  }
}

.overview__list-item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #D8D8D8;
  border-top: 0.0625rem solid #D8D8D8;
}
@media screen and (max-width: 767px) {
  .overview__list-item {
    width: 100%;
    display: block;
  }
}
.overview__list-item:nth-child(3) .overview__sublist-title, .overview__list-item:nth-child(4) .overview__sublist-title {
  min-width: 117px;
  min-width: 7.3125rem;
  padding: 4px 10px;
  padding: 0.25rem 0.625rem;
}
.overview__list-item:nth-child(5) {
  width: 100%;
}

.overview__list-title {
  width: 140px;
  width: 8.75rem;
  min-width: 140px;
  min-width: 8.75rem;
  background: #F0F6F8;
  letter-spacing: 0.04em;
  line-height: 1.63;
  font-weight: 700;
  padding: 20px 10px 20px 30px;
  padding: 1.25rem 0.625rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .overview__list-title {
    width: 100%;
    padding: 1.25rem 1.25rem;
  }
}

.overview__list-body {
  width: 77%;
  padding: 20px 10px 25px 30px;
  padding: 1.25rem 0.625rem 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .overview__list-body {
    width: 100%;
    padding: 1.25rem 1.25rem;
  }
}

.overview__list-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.overview__sublist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  gap: 0 0.625rem;
}
.overview__sublist-item + .overview__sublist-item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.overview__sublist-title {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  background: #3DAAD3;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .overview__sublist-title {
    padding: 0.25rem 0.9375rem;
  }
}

.overview__sublist-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .overview__sublist-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.overview__list-text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .overview__list-text {
    font-size: 0.9375rem;
  }
}
.overview__list-text a {
  text-decoration: underline;
  word-break: break-all;
}

.overview__box {
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .overview__box {
    margin-top: 1.875rem;
  }
}

/* reality */
.reality__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .reality__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem 0;
    margin-top: 1.25rem;
  }
}

.reality__item {
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  padding: 30px 40px 35px;
  padding: 1.875rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .reality__item {
    padding: 1.875rem 1.25rem;
  }
}

.reality__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .reality__item-title {
    font-size: 1.25rem;
  }
}

.reality__item-number {
  text-align: center;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #3DAAD3;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .reality__item-number {
    font-size: 2.25rem;
  }
}

.reality__item-text {
  line-height: 1.44;
  letter-spacing: 0.04em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .reality__item-text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}
.reality__item-text span {
  color: #3DAAD3;
  font-weight: 700;
}

.reality__content {
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 35px 80px 50px;
  padding: 2.1875rem 5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .reality__content {
    margin-top: 1.875rem;
    padding: 1.875rem 1.25rem;
  }
}

.reality__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .reality__subtitle {
    font-size: 1.25rem;
  }
}

.reality__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .reality__text {
    font-size: 1rem;
  }
}

.reality__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .reality__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem 0;
    margin-top: 1.25rem;
  }
}

.reality__unit {
  text-align: center;
  background: #fff;
  border-radius: 0.625rem;
  padding: 28px 25px 20px;
  padding: 1.75rem 1.5625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .reality__unit {
    padding: 1.5625rem 0.9375rem;
  }
}

.reality__unit-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .reality__unit-title {
    font-size: 1.125rem;
  }
}

.reality__unit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10px;
  gap: 0 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .reality__unit-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.reality__unit-item {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  background: #F0F6F8;
  padding: 20px 20px 15px;
  padding: 1.25rem 1.25rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .reality__unit-item {
    width: auto;
    padding: 1.25rem 0.625rem 0.9375rem;
  }
}

.reality__unit-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .reality__unit-item-title {
    font-size: 1rem;
  }
}

.reality__unit-item-text {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .reality__unit-item-text {
    font-size: 1.375rem;
  }
}

.reality__unit-text {
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .reality__unit-text {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}
.reality__unit-text span {
  font-weight: 700;
}

.reality__box {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
}
.reality__box .box__body {
  width: 600px;
  width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .reality__box .box__body {
    width: 100%;
  }
}

/* worries */
.worries .title, .worries .lead {
  text-align: left;
}
.worries .lead {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .worries .lead {
    line-height: 1.75;
  }
}

.worries__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .worries__inner {
    display: block;
  }
}

.worries__body {
  width: 50%;
  padding: 70px 60px 80px 0;
  padding: 4.375rem 3.75rem 5rem 0;
}
@media screen and (max-width: 767px) {
  .worries__body {
    width: 100%;
    padding: 3.75rem 0 0;
  }
}

.worries__box {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  background: #F0F6F8;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 35px 30px 40px;
  padding: 2.1875rem 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .worries__box {
    margin-top: 1.25rem;
    padding: 1.5625rem 0.9375rem;
  }
}

.worries__subtitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .worries__subtitle {
    font-size: 1.125rem;
    line-height: 1.5;
    padding-bottom: 0.9375rem;
  }
}

.worries__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .worries__items {
    margin-top: 1.25rem;
  }
}

.worries__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 2rem;
  padding: 4px;
  padding: 0.25rem;
}
.worries__item + .worries__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.worries__item-icon {
  width: 56px;
  width: 3.5rem;
  min-width: 56px;
  min-width: 3.5rem;
}
.worries__item-icon img {
  border-radius: 50%;
}

.worries__item-body {
  text-align: center;
  width: 100%;
  line-height: 1.5;
  padding: 0 10px 5px;
  padding: 0 0.625rem 0.3125rem;
}

.worries__item-title {
  font-weight: 700;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .worries__item-title {
    font-size: 0.9375rem;
  }
}

.worries__item-text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .worries__item-text {
    font-size: 0.8125rem;
  }
}

.worries__img {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .worries__img {
    width: 100vw;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}
.worries__img img {
  height: 100%;
  max-height: 850px;
  max-height: 53.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* individual */
.individual .process__unit:nth-child(3) .process__unit-texts {
  width: 575px;
  width: 35.9375rem;
}
@media screen and (max-width: 767px) {
  .individual .process__unit:nth-child(3) .process__unit-texts {
    width: 100%;
  }
}
.individual .process__unit-list {
  margin-top: 0;
}
.individual .step__unit-body {
  padding-right: 90px;
  padding-right: 5.625rem;
}
@media screen and (max-width: 767px) {
  .individual .step__unit-body {
    padding-right: 1.25rem;
  }
}
.individual .box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.individual .box__body {
  width: 680px;
  width: 42.5rem;
}
.individual .box__text {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* information */
.information .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

.information__list {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .information__list {
    margin-top: 1.875rem;
  }
}

/* support */
.support {
  text-align: center;
  background: url(../img/about/support-bg.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .support .title {
    font-size: 1.4375rem;
  }
}

.support__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.22;
  letter-spacing: 0.04em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .support__text {
    font-size: 1rem;
    line-height: 2;
  }
}

.support__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .support__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 0.625rem;
    margin-top: 1.875rem;
  }
}

.support__item {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 23px 0;
  padding: 1.4375rem 0;
}
@media screen and (max-width: 767px) {
  .support__item {
    font-size: 0.9375rem;
    padding: 0.9375rem 0;
  }
}
.support__item span {
  font-size: 36px;
  font-size: 2.25rem;
  color: #EEFF28;
}
@media screen and (max-width: 767px) {
  .support__item span {
    font-size: 1.625rem;
  }
}

/* inquiry */
.inquiry {
  padding: 75px 0 80px;
  padding: 4.6875rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .inquiry {
    padding: 3.125rem 0 3.75rem;
  }
}
.inquiry .l-inner {
  max-width: 1130px;
  max-width: 70.625rem;
}

.inquiry__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .inquiry__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.inquiry__form {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
.inquiry__form input[type=text]::-webkit-input-placeholder, .inquiry__form input[type=tel]::-webkit-input-placeholder, .inquiry__form input[type=email]::-webkit-input-placeholder, .inquiry__form textarea::-webkit-input-placeholder, .inquiry__form select::-webkit-input-placeholder {
  color: #000;
}
.inquiry__form input[type=text]::-moz-placeholder, .inquiry__form input[type=tel]::-moz-placeholder, .inquiry__form input[type=email]::-moz-placeholder, .inquiry__form textarea::-moz-placeholder, .inquiry__form select::-moz-placeholder {
  color: #000;
}
.inquiry__form input[type=text]::-ms-input-placeholder, .inquiry__form input[type=tel]::-ms-input-placeholder, .inquiry__form input[type=email]::-ms-input-placeholder, .inquiry__form textarea::-ms-input-placeholder, .inquiry__form select::-ms-input-placeholder {
  color: #000;
}
.inquiry__form input[type=text]::placeholder, .inquiry__form input[type=tel]::placeholder, .inquiry__form input[type=email]::placeholder, .inquiry__form textarea::placeholder, .inquiry__form select::placeholder {
  color: #000;
}

/* achievement */
.achievement__box {
  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;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 39px 20px;
  padding: 2.4375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .achievement__box {
    display: block;
    margin-top: 1.25rem;
    padding: 1.25rem 0.625rem;
  }
}

.achievement__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.08em;
  line-height: 1.39;
}
@media screen and (max-width: 767px) {
  .achievement__subtitle {
    text-align: center;
    font-size: 1rem;
  }
}

.achievement__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 25px;
  gap: 0 1.5625rem;
  margin-left: 40px;
  margin-left: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 1350px) {
  .achievement__list {
    gap: 0 1.25rem;
    padding-left: 1.5625rem;
    margin-left: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .achievement__list {
    width: 18.75rem;
    max-width: 100%;
    margin: 0.9375rem auto 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    padding-left: 0;
  }
}
.achievement__list::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 50px;
  height: 3.125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #D7D8D9;
}
@media screen and (max-width: 767px) {
  .achievement__list::before {
    display: none;
  }
}

.achievement__list-item {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon02.png) no-repeat center left/24px;
  background: url(../img/common/check-icon02.png) no-repeat center left/1.5rem;
  padding-left: 32px;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .achievement__list-item {
    width: 48%;
    font-size: 1.125rem;
    background-size: 1.125rem;
    padding-left: 1.5625rem;
  }
}

.achievement__cards {
  margin-top: 30px;
  margin-top: 1.875rem;
}

/* lecture */
.lecture__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .lecture__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.25rem;
  }
}

.lecture__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lecture__unit {
    display: block;
  }
}

.lecture__unit-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #3DAAD3;
  letter-spacing: 0.04em;
  border-radius: 0.5625rem 0.5625rem 0 0;
  padding: 19px;
  padding: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .lecture__unit-title {
    font-size: 1.25rem;
    padding: 0.9375rem;
  }
}

.lecture__unit-body {
  padding: 25px 35px 35px;
  padding: 1.5625rem 2.1875rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .lecture__unit-body {
    padding: 1.5625rem 1.25rem;
  }
}

.lecture__unit-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .lecture__unit-text {
    font-size: 1rem;
  }
}

.lecture__unit-subtitle {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lecture__unit-subtitle {
    margin-top: 0.9375rem;
  }
}

.lecture__unit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 0;
  gap: 0.9375rem 0;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.lecture__unit-list-item {
  width: 33.333%;
  line-height: 1.32;
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon02.png) no-repeat left top/24px;
  background: url(../img/common/check-icon02.png) no-repeat left top/1.5rem;
  padding: 2px 0 2px 32px;
  padding: 0.125rem 0 0.125rem 2rem;
}
@media screen and (max-width: 767px) {
  .lecture__unit-list-item {
    width: 50%;
    font-size: 0.9375rem;
    background: url(../img/common/check-icon02.png) no-repeat left top 0.1875rem/1.125rem;
    padding-left: 1.5625rem;
  }
}

/* course */
.course__units {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .course__units {
    margin-top: 1.25rem;
  }
}

.course__unit {
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
}
.course__unit:first-child .course__unit-title {
  color: #3DAAD3;
  background: #EEFF28;
}

.course__unit-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #fff;
  background: #3DAAD3;
  border-radius: 0.5625rem 0.5625rem 0 0;
  padding: 19px;
  padding: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .course__unit-title {
    font-size: 1.25rem;
    padding: 0.9375rem;
  }
}

.course__unit-body {
  padding: 45px 25px 30px;
  padding: 2.8125rem 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .course__unit-body {
    padding: 1.875rem 1.25rem;
  }
}

.course__unit-price {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #3DAAD3;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .course__unit-price {
    font-size: 1.75rem;
  }
}
.course__unit-price span {
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .course__unit-price span {
    font-size: 2.5rem;
  }
}

.course__unit-text {
  text-align: center;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  margin-top: 5px;
  margin-top: 0.3125rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .course__unit-text {
    font-size: 0.9375rem;
    padding-bottom: 1.25rem;
  }
}

.course__unit-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .course__unit-subtitle {
    font-size: 1rem;
  }
}

.course__unit-list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.course__unit-list-item {
  letter-spacing: 0.04em;
  line-height: 1.31;
  background: url(../img/common/check-icon02.png) no-repeat left top 4px/24px;
  background: url(../img/common/check-icon02.png) no-repeat left top 0.25rem/1.5rem;
  padding: 5px 0 5px 32px;
  padding: 0.3125rem 0 0.3125rem 2rem;
}
@media screen and (max-width: 767px) {
  .course__unit-list-item {
    font-size: 0.9375rem;
    background: url(../img/common/check-icon02.png) no-repeat left top 0.375rem/1.125rem;
    padding-left: 1.5625rem;
  }
}
.course__unit-list-item + .course__unit-list-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .course__unit-list-item + .course__unit-list-item {
    margin-top: 0.25rem;
  }
}

.course__unit-btn {
  width: 100%;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}

.course__unit-subtext {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.course__box {
  background: #F0F6F8;
  border-radius: 0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 35px 120px 45px;
  padding: 2.1875rem 7.5rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .course__box {
    padding: 1.875rem 1.25rem;
    margin-top: 1.875rem;
  }
}

.course__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .course__subtitle {
    font-size: 1.25rem;
    padding-bottom: 0.9375rem;
  }
}

.course__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 60px;
  gap: 0 3.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .course__items {
    width: 21.875rem;
    max-width: 100%;
    margin: 1.875rem auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.25rem 0;
  }
}

@media screen and (max-width: 767px) {
  .course__item {
    width: 49%;
  }
}
.course__item:first-child .course__item-icon {
  width: 70px;
  width: 4.375rem;
}
.course__item:nth-child(2) .course__item-icon {
  margin-top: 7px;
  margin-top: 0.4375rem;
  width: 90px;
  width: 5.625rem;
}
.course__item:nth-child(3) .course__item-icon {
  width: 63px;
  width: 3.9375rem;
}
.course__item:nth-child(4) .course__item-icon {
  width: 56px;
  width: 3.5rem;
}

.course__item-icon {
  max-width: 100%;
  margin: 0 auto;
}

.course__item-text {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .course__item-text {
    font-size: 0.9375rem;
  }
}

/* fv */
.fv .l-inner {
  max-width: 1290px;
  max-width: 80.625rem;
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    display: block;
  }
}

.fv__body {
  width: 50%;
  padding: 60px 50px 55px 0;
  padding: 3.75rem 3.125rem 3.4375rem 0;
}
@media screen and (max-width: 767px) {
  .fv__body {
    width: 100%;
    padding: 3.75rem 0 0;
  }
}

.fv__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #3DAAD3;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}

.fv__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 1.75rem;
  }
}

.fv__subtitle {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .fv__subtitle {
    font-size: 1.25rem;
  }
}

.fv__text {
  letter-spacing: 0.04em;
  line-height: 2;
  margin-left: 15px;
  margin-left: 0.9375rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 0.9375rem;
    margin-left: 0;
  }
}
.fv__text span {
  font-weight: 700;
  color: #3DAAD3;
}

.fv__box {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding: 25px 35px 40px;
  padding: 1.5625rem 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .fv__box {
    padding: 1.5625rem 0.9375rem;
  }
}

.fv__subheading {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .fv__subheading {
    font-size: 1.125rem;
    line-height: 1.5;
    padding-bottom: 0.9375rem;
  }
}

.fv__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fv__items {
    margin-top: 1.25rem;
  }
}

.fv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 2rem;
  padding: 4px;
  padding: 0.25rem;
}
.fv__item + .fv__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.fv__item-icon {
  width: 56px;
  width: 3.5rem;
  min-width: 56px;
  min-width: 3.5rem;
}
.fv__item-icon img {
  border-radius: 50%;
}

.fv__item-text {
  text-align: center;
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .fv__item-text {
    font-size: 0.9375rem;
  }
}

.fv__btns {
  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;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fv__btns {
    display: block;
  }
}

.fv__btn:first-child a {
  width: 340px;
  width: 21.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  background: #EEFF28;
  border-radius: 0.25rem;
  padding: 19px;
  padding: 1.1875rem;
}
@media screen and (max-width: 1350px) {
  .fv__btn:first-child a {
    width: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__btn:first-child a {
    width: 15.625rem;
    font-size: 1.25rem;
  }
}
.fv__btn:first-child a::after {
  width: 7px;
  width: 0.4375rem;
  height: 14px;
  height: 0.875rem;
  right: 30px;
  right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fv__btn:first-child a::after {
    right: 1.25rem;
  }
}
.fv__btn:nth-child(2) {
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .fv__btn:nth-child(2) {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.fv__btn:nth-child(2) a {
  width: 210px;
  width: 13.125rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 17px;
  padding: 1.0625rem;
}
@media screen and (max-width: 1350px) {
  .fv__btn:nth-child(2) a {
    width: 11.875rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__btn:nth-child(2) a {
    width: 15.625rem;
  }
}
.fv__btn:nth-child(2) a::after {
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  right: 15px;
  right: 0.9375rem;
}
.fv__btn a {
  text-align: center;
  display: block;
  max-width: 100%;
  font-weight: 700;
  border-radius: 0.25rem;
  color: #3DAAD3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__btn a {
    margin: 0 auto;
  }
}
.fv__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

.fv__img {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .fv__img {
    width: 100vw;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}
.fv__img img {
  height: 100%;
  max-height: 1000px;
  max-height: 62.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* lp */
/* notice */
.notice__subtitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .notice__subtitle {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.notice__cards {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .notice__cards {
    margin-top: 1.25rem;
  }
}

/* record */
.record__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .record__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 0.625rem;
    margin-top: 1.25rem;
  }
}

.record__item {
  text-align: center;
  font-weight: 700;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 25px 10px 30px;
  padding: 1.5625rem 0.625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .record__item {
    padding: 1.25rem 0.625rem;
  }
}

.record__item-text {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.33;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .record__item-text {
    font-size: 1.125rem;
  }
}

.record__item-number {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: #EEFF28;
  line-height: 1;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .record__item-number {
    font-size: 1.75rem;
    margin-top: 0.625rem;
  }
}
.record__item-number span {
  font-size: 64px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .record__item-number span {
    font-size: 3rem;
  }
}

.record__text {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .record__text {
    text-align: left;
  }
}

/* materials */
/* news-archive */
.news-archive__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-archive__items {
    margin-top: 2.5rem;
  }
}

.news-archive__item + .news-archive__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.news-archive__item-inner {
  display: block;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  padding: 50px 130px 50px 50px;
  padding: 3.125rem 8.125rem 3.125rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-archive__item-inner {
    padding: 1.875rem 3.75rem 1.875rem 1.25rem;
  }
}
.news-archive__item-inner::before, .news-archive__item-inner::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news-archive__item-inner::before {
  right: 90px;
  right: 5.625rem;
  width: 1px;
  width: 0.0625rem;
  height: 65%;
  background: #DFE4E6;
}
@media screen and (max-width: 767px) {
  .news-archive__item-inner::before {
    height: 80%;
    right: 2.5rem;
  }
}
.news-archive__item-inner::after {
  width: 12px;
  width: 0.75rem;
  height: 22px;
  height: 1.375rem;
  right: 38px;
  right: 2.375rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news-archive__item-inner::after {
    width: 0.625rem;
    height: 1.25rem;
    right: 0.9375rem;
  }
}

.news-archive__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-archive__item-date {
  display: inline-block;
  min-width: 110px;
  min-width: 6.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .news-archive__item-date {
    font-size: 0.9375rem;
    min-width: 6.25rem;
  }
}

.news-archive__item-category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #3DAAD3;
  border-radius: 0.25rem;
  padding: 6px 20px;
  padding: 0.375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-category span {
    padding: 0.3125rem 0.625rem;
  }
}

.news-archive__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-title {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.news-archive__item-text {
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-archive__item-text {
    font-size: 0.9375rem;
  }
}

.news-archive__pagination {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .news-archive__pagination {
    margin-top: 2.5rem;
  }
}

/* news-single */
.news-single .l-inner {
  max-width: 1010px;
  max-width: 63.125rem;
}

.news-single__header {
  background: #F0F6F8;
  padding: 70px 0 65px;
  padding: 4.375rem 0 4.0625rem;
}
@media screen and (max-width: 767px) {
  .news-single__header {
    padding: 2.5rem 0;
  }
}

.news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
  gap: 0 1rem;
}
@media screen and (max-width: 767px) {
  .news-single__meta {
    gap: 0 0.625rem;
  }
}

.news-single__date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .news-single__date {
    font-size: 0.9375rem;
  }
}

.news-single__category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 0.25rem;
  background: #3DAAD3;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-single__category span {
    padding: 0.1875rem 0.9375rem;
  }
}

.news-single__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-single__title {
    font-size: 1.5rem;
  }
}

.news-single__lead {
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .news-single__lead {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  margin: 0;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.news-single__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #3DAAD3;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2 {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
    margin-bottom: 0.9375rem;
  }
}
.news-single__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h3 {
    font-size: 1.125rem;
  }
}
.news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h4, .news-single__post h5, .news-single__post h6 {
    font-size: 1rem;
  }
}
.news-single__post p {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news-single__post p {
    font-size: 0.9375rem;
  }
}
.news-single__post p:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.news-single__post li {
  padding-left: 1.5em;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__post li {
    font-size: 0.9375rem;
  }
}
.news-single__post li::before {
  position: absolute;
  content: "●";
  color: #3DAAD3;
  left: 0;
  top: 0;
}
.news-single__post li:not(:first-child) {
  margin-top: 7px;
  margin-top: 0.4375rem;
}
.news-single__post figure {
  width: 560px;
  width: 35rem;
  max-width: 100%;
}
.news-single__post figure:not(:last-child) {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
.news-single__post figcaption {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  background: #F0F6F8;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}
.news-single__post table {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.news-single__post table:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.news-single__post table tr:not(:first-child) {
  border-top: 1px solid #D8D8D8;
  border-top: 0.0625rem solid #D8D8D8;
}
@media screen and (max-width: 767px) {
  .news-single__post table th, .news-single__post table td {
    font-size: 0.875rem;
  }
}
.news-single__post table th {
  text-align: left;
  background: #F0F6F8;
  width: 180px;
  width: 11.25rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .news-single__post table th {
    width: 6.25rem;
    padding: 0.9375rem 0.9375rem;
  }
}
.news-single__post table td {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-single__post table td {
    padding: 0.9375rem 0.9375rem;
  }
}
.news-single__post .has-background {
  border-radius: 0.625rem;
  padding: 40px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post .has-background {
    padding: 1.875rem 1.25rem;
  }
}
.news-single__post .has-background:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.news-single__post .wp-element-button {
  text-align: center;
  display: block;
  width: 260px;
  width: 16.25rem;
  max-width: 100%;
  font-weight: 700;
  color: #3DAAD3;
  border-radius: 0.25rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 9px;
  padding: 0.5625rem;
  position: relative;
}
.news-single__post .wp-element-button::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  right: 0.9375rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

/* related */
.related__items {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .related__items {
    margin-top: 1.25rem;
  }
}

.related__item-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: 100%;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 45px 50px 30px;
  padding: 2.8125rem 3.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .related__item-inner {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.related__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .related__item-title {
    font-size: 1.125rem;
  }
}

.related__item-text {
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .related__item-text {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
}

.related__item-footer {
  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-top: 1px solid #DFE4E6;
  border-top: 0.0625rem solid #DFE4E6;
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .related__item-footer {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.related__item-date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .related__item-date {
    font-size: 0.9375rem;
  }
}

.related__item-category {
  margin-left: 10px;
  margin-left: 0.625rem;
}
.related__item-category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 0.25rem;
  background: #3DAAD3;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .related__item-category span {
    padding: 0.1875rem 0.9375rem;
  }
}

/* data */
.data .title, .data .lead {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .data .title, .data .lead {
    text-align: center;
  }
}

.data__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .data__inner {
    display: block;
  }
}

.data__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .data__body {
    width: 100%;
  }
}

.data__list {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .data__list {
    margin-top: 1.25rem;
  }
}

.data__list-item {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon03.png) no-repeat left top 3px/32px;
  background: url(../img/common/check-icon03.png) no-repeat left top 0.1875rem/2rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .data__list-item {
    font-size: 1rem;
    background: url(../img/common/check-icon03.png) no-repeat left top 0.1875rem/1.4375rem;
    padding-left: 1.875rem;
  }
}
.data__list-item + .data__list-item {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .data__list-item + .data__list-item {
    margin-top: 0.5rem;
  }
}

.data__box {
  width: 50%;
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 35px 45px;
  padding: 2.1875rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .data__box {
    width: 100%;
    margin-top: 1.25rem;
    padding: 1.25rem 1.25rem;
  }
}

.data__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .data__subtitle {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
}

.data__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .data__items {
    margin-top: 1.25rem;
  }
}

.data__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.data__item + .data__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .data__item + .data__item {
    margin-top: 0.625rem;
  }
}
.data__item:first-child .data__item-ratio span {
  width: 70%;
  background: #ccc;
}
.data__item:nth-child(2) .data__item-ratio span {
  width: 87.5%;
}
.data__item:nth-child(3) .data__item-ratio span {
  width: 80%;
}
.data__item:nth-child(4) .data__item-ratio span {
  width: 84.5%;
}

.data__item-text {
  min-width: 100px;
  min-width: 6.25rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .data__item-text {
    font-size: 0.9375rem;
  }
}

.data__item-ratio {
  width: 100%;
  margin-left: 10px;
  margin-left: 0.625rem;
  position: relative;
  z-index: 1;
}
.data__item-ratio::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 2.5rem;
  z-index: -1;
}
.data__item-ratio span {
  text-align: center;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  background: #3DAAD3;
  border-radius: 2.5rem;
  padding: 2px;
  padding: 0.125rem;
}
@media screen and (max-width: 767px) {
  .data__item-ratio span {
    font-size: 1.125rem;
  }
}

/* results */
.results__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .results__text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.results__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  gap: 0 1.25rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .results__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 0.625rem;
    margin-top: 1.25rem;
  }
}

.results__item {
  text-align: center;
  border-radius: 0.25rem;
  background: #F0F6F8;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 15px 10px 20px;
  padding: 0.9375rem 0.625rem 1.25rem;
}
.results__item:first-child {
  background: #3DAAD3;
}
.results__item:first-child .results__item-title {
  color: #fff;
}
.results__item:first-child .results__item-subtitle {
  color: #EEFF28;
}
.results__item:first-child .results__item-text {
  color: #fff;
}

.results__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .results__item-title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.results__item-subtitle {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .results__item-subtitle {
    font-size: 1.75rem;
  }
}

.results__item-text {
  line-height: 1.43;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .results__item-text {
    font-size: 0.9375rem;
  }
}

/* story */
.story__items {
  margin: 2.1875rem calc(50% - 50vw) 0;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .story__items {
    margin-top: 1.25rem;
    padding-bottom: 2.5rem;
  }
}
.story__items.slick-initialized {
  display: block;
}
.story__items .slider-dot {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  bottom: -0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 15px;
  gap: 0 0.9375rem;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .story__items .slider-dot {
    gap: 0 0.625rem;
    bottom: 0;
  }
}
.story__items .slider-dot li {
  display: inline-block;
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .story__items .slider-dot li {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.story__items .slider-dot li button {
  text-indent: -9999px;
}
.story__items .slider-dot li.slick-active {
  background: #3DAAD3;
}

.story__item {
  margin: 0 15px;
  margin: 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .story__item {
    margin: 0 0.3125rem;
  }
}

/* top-movie */
.top-movie .movie__cards {
  gap: 0 40px;
  gap: 0 2.5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-movie .movie__cards {
    margin-top: 1.25rem;
  }
}
.top-movie .movie__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
}

.top-movie__btn {
  width: 240px;
  width: 15rem;
  padding: 15px;
  padding: 0.9375rem;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-movie__btn {
    margin-top: 1.875rem;
  }
}

/* top-mv */
.top-mv {
  background: url(../img/top/top-mv-bg.jpg) no-repeat center/cover;
  padding: 135px 0 40px;
  padding: 8.4375rem 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding: 5rem 0 2.5rem;
  }
}

.top-mv__floating {
  position: absolute;
  right: 0;
  top: 46%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__floating {
    top: 3.75rem;
    -webkit-transform: unset;
            transform: unset;
  }
}

.top-mv__floating-btn {
  display: block;
  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;
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
  height: 200px;
  height: 12.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-top: 25px;
  padding-top: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv__floating-btn {
    width: 3.125rem;
    height: 9.375rem;
    font-size: 0.875rem;
  }
}
.top-mv__floating-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 18px;
  top: 1.125rem;
}
.top-mv__floating-btn:first-child {
  color: #3DAAD3;
  background: #EEFF28;
  border-radius: 0.25rem 0 0 0;
}
.top-mv__floating-btn:first-child::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background: url(../img/common/calendar-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-mv__floating-btn:first-child::before {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.top-mv__floating-btn:nth-child(2) {
  color: #EEFF28;
  background: #3DAAD3;
  border-radius: 0 0 0 0.25rem;
}
.top-mv__floating-btn:nth-child(2)::before {
  width: 22px;
  width: 1.375rem;
  height: 24px;
  height: 1.5rem;
  background: url(../img/common/document-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-mv__floating-btn:nth-child(2)::before {
    top: 0.625rem;
    width: 1.125rem;
    height: 1.25rem;
  }
}

.top-mv__title {
  font-size: 72px;
  font-size: 4.5rem;
  color: #3DAAD3;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.04em;
  margin-left: 45px;
  margin-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.25rem;
    margin-left: 0;
  }
}
.top-mv__title span {
  display: inline-block;
  margin-left: -45px;
  margin-left: -2.8125rem;
  margin-right: -25px;
  margin-right: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }
}

.top-mv__text {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.57;
  margin-left: 45px;
  margin-left: 2.8125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 1.25rem;
    margin-left: 0;
  }
}

.top-mv__box {
  border-radius: 0.625rem;
  background: transparent;
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, .8);
  margin-top: 80px;
  margin-top: 5rem;
  padding: 40px 60px;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 1350px) {
  .top-mv__box {
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__box {
    margin-top: 2.5rem;
    padding: 1.875rem 0.9375rem;
  }
}

.top-mv__box-header {
  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;
}
@media screen and (max-width: 767px) {
  .top-mv__box-header {
    display: block;
  }
}

.top-mv__box-texts {
  padding-left: 10px;
  padding-left: 0.625rem;
  margin-top: -20px;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-texts {
    padding-left: 0;
    margin-top: 0;
  }
}

.top-mv__box-title span {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  color: #3DAAD3;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__box-title span {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.top-mv__box-title span::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 24px;
  height: 1.5rem;
  border-radius: 0.25rem;
  background: #EEFF28;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-mv__box-title span::after {
    height: 0.9375rem;
  }
}
.top-mv__box-title .large {
  font-size: 44px;
  font-size: 2.75rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-title .large {
    font-size: 1.75rem;
  }
}

.top-mv__box-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.78;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-text {
    font-size: 1rem;
  }
}
.top-mv__box-text span {
  display: inline-block;
  margin-left: -10px;
  margin-left: -0.625rem;
}

.top-mv__box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  gap: 0 0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 0.3125rem;
    margin-left: 0;
    margin-top: 0.9375rem;
  }
}

.top-mv__box-item {
  width: 160px;
  width: 10rem;
  max-width: 100%;
  min-height: 120px;
  min-height: 7.5rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #3DAAD3;
  letter-spacing: 0.04em;
  line-height: 1.6;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-item {
    font-size: 0.875rem;
    width: auto;
    min-height: unset;
    padding: 0.625rem 0;
  }
}
.top-mv__box-item span {
  font-size: 32px;
  font-size: 2rem;
  color: #EEFF28;
}
@media screen and (max-width: 767px) {
  .top-mv__box-item span {
    font-size: 1.5rem;
  }
}

.top-mv__box-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-footer {
    display: block;
    margin-top: 0.9375rem;
  }
}

.top-mv__box-subtext {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-radius: 0.25rem;
  background: #fff;
  padding: 15px 50px 15px 20px;
  padding: 0.9375rem 3.125rem 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-subtext {
    display: block;
    font-size: 0.9375rem;
    padding: 0.9375rem 1.25rem;
  }
}
.top-mv__box-subtext span {
  display: inline-block;
  color: #3DAAD3;
  border-right: 2px solid #3DAAD3;
  border-right: 0.125rem solid #3DAAD3;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__box-subtext span {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0.3125rem;
  }
}

.top-mv__box-btn {
  text-align: center;
  display: block;
  min-width: 200px;
  min-width: 12.5rem;
  font-weight: 700;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  color: #3DAAD3;
  margin-left: 10px;
  margin-left: 0.625rem;
  padding: 15px;
  padding: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv__box-btn {
    width: 12.5rem;
    max-width: 100%;
    margin: 1.25rem auto 0;
  }
}
.top-mv__box-btn::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  right: 0.875rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

.top-mv__btn {
  text-align: center;
  display: block;
  width: 560px;
  width: 35rem;
  max-width: 100%;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3DAAD3;
  background: #EEFF28;
  border-radius: 0.25rem;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  padding: 29px;
  padding: 1.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-mv__btn {
    font-size: 1.25rem;
    padding: 1.25rem;
    margin-top: 1.875rem;
  }
}
.top-mv__btn::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 14px;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  right: 2.5rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

/* top-news */
.top-news__header {
  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;
}

.top-news__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 22px;
  gap: 0 1.375rem;
}
@media screen and (max-width: 767px) {
  .top-news__titles {
    gap: 0 0.9375rem;
  }
}
.top-news__titles .entitle {
  margin-top: 0;
}

.top-news__btn {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__btn {
    margin: 1.875rem auto 0;
  }
}

.top-news__items {
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 0.0625rem solid #E6E6E6;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    margin-top: 1.25rem;
  }
}

.top-news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #E6E6E6;
  border-top: 0.0625rem solid #E6E6E6;
  padding: 30px 40px 30px 20px;
  padding: 1.875rem 2.5rem 1.875rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-news__item-inner {
    display: block;
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
.top-news__item-inner::after {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  right: 1.875rem;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-news__item-inner::after {
    right: 0.625rem;
  }
}

.top-news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__item-date {
  display: inline-block;
  min-width: 130px;
  min-width: 8.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-news__item-date {
    font-size: 0.9375rem;
    min-width: 6.875rem;
  }
}

.top-news__item-category {
  text-align: center;
}
.top-news__item-category span {
  display: inline-block;
  min-width: 100px;
  min-width: 6.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  letter-spacing: 0.04em;
  background: #3DAAD3;
  color: #fff;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}

.top-news__item-title {
  letter-spacing: 0.04em;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-title {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

/* top-reason */
.top-reason__cards {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-reason__cards {
    margin-top: 2.5rem;
    gap: 2.5rem 0;
  }
}

/* top-voice */
/* profile */
.profile__units {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .profile__units {
    margin-top: 1.25rem;
  }
}

.profile__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  padding: 50px 60px 60px;
  padding: 3.125rem 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .profile__unit {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.profile__unit + .profile__unit {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .profile__unit + .profile__unit {
    margin-top: 1.25rem;
  }
}

.profile__unit-img {
  width: 33.5%;
}
@media screen and (max-width: 767px) {
  .profile__unit-img {
    width: 100%;
  }
}
.profile__unit-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-img img {
    height: auto;
  }
}

.profile__unit-body {
  width: 63%;
}
@media screen and (max-width: 767px) {
  .profile__unit-body {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

.profile__unit-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .profile__unit-header {
    display: block;
  }
}

.profile__unit-name {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  background: #EEFF28;
  padding: 2px 20px;
  padding: 0.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-name {
    display: inline-block;
    font-size: 1.5rem;
    padding: 0.125rem 0.625rem;
  }
}

.profile__unit-position {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-position {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-top: 0.1875rem;
  }
}

.profile__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-inner {
    display: block;
  }
}

.profile__unit-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .profile__unit-subtitle {
    font-size: 1.125rem;
  }
}

.profile__unit-list {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-list {
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}

.profile__unit-list-item {
  letter-spacing: 0.04em;
  padding-left: 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile__unit-list-item {
    font-size: 0.9375rem;
  }
}
.profile__unit-list-item::before {
  position: absolute;
  content: "●";
  color: #3DAAD3;
  left: 0;
  top: 0;
}

.profile__unit-box {
  background: #F5F5F5;
  border-radius: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 25px 30px;
  padding: 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-box {
    padding: 1.25rem 1.25rem;
  }
}

.profile__unit-box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.04em;
  background: url(../img/common/comment-icon.png) no-repeat center left/25px;
  background: url(../img/common/comment-icon.png) no-repeat center left/1.5625rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-box-title {
    font-size: 1rem;
    background-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

.profile__unit-box-text {
  letter-spacing: 0.04em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .profile__unit-box-text {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

/* tutors */
/* search */
.search__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
  gap: 1.25rem 1.25rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .search__links {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem 0;
    margin-top: 1.25rem;
  }
}

.search__link a {
  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;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  padding: 21px 25px;
  padding: 1.3125rem 1.5625rem;
}
@media screen and (max-width: 1350px) {
  .search__link a {
    font-size: 1.125rem;
  }
}
.search__link span {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #3DAAD3;
  border-radius: 0.9375rem;
  line-height: 1.55;
  padding: 0 12px;
  padding: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .search__link span {
    font-size: 0.9375rem;
  }
}

/* universities */
.universities .title, .universities .lead {
  text-align: left;
}
.universities .title {
  border-bottom: 1px solid #3DAAD3;
  border-bottom: 0.0625rem solid #3DAAD3;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .universities .title {
    padding-bottom: 1.25rem;
  }
}

.universities__unit + .universities__unit {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .universities__unit + .universities__unit {
    margin-top: 2.5rem;
  }
}

.universities__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  gap: 2.5rem 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .universities__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 1.5625rem;
  }
}

.universities__card {
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 25px 30px 40px;
  padding: 1.5625rem 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .universities__card {
    padding: 1.5625rem 0.9375rem;
  }
}

.universities__card-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3DAAD3;
  border-bottom: 1px solid #D7D8D9;
  border-bottom: 0.0625rem solid #D7D8D9;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .universities__card-title {
    font-size: 1.25rem;
  }
}

.universities__card-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .universities__card-subtitle {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.universities__card-units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 15px;
  gap: 0 0.9375rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .universities__card-units {
    gap: 0 0.625rem;
  }
}

.universities__card-unit {
  text-align: center;
  border-radius: 0.25rem;
  background: #F0F6F8;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 15px 10px 20px;
  padding: 0.9375rem 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .universities__card-unit {
    padding: 0.9375rem 0;
  }
}
.universities__card-unit:first-child {
  background: #3DAAD3;
}
.universities__card-unit:first-child .universities__card-unit-title {
  color: #fff;
}
.universities__card-unit:first-child .universities__card-unit-text {
  font-size: 32px;
  font-size: 2rem;
  color: #EEFF28;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .universities__card-unit:first-child .universities__card-unit-text {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.universities__card-unit-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .universities__card-unit-title {
    font-size: 0.9375rem;
  }
}

.universities__card-unit-text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .universities__card-unit-text {
    font-size: 1.25rem;
  }
}

.universities__card-btn {
  width: 300px;
  width: 18.75rem;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .universities__card-btn {
    margin-top: 1.25rem;
  }
}

/* video */
.video {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .video {
    padding-bottom: 3.75rem;
  }
}

.video__units {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.video__unit {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.625rem;
  padding: 45px 40px 45px 50px;
  padding: 2.8125rem 2.5rem 2.8125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .video__unit {
    padding: 1.875rem 1.25rem;
  }
}
.video__unit + .video__unit {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.video__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .video__unit-inner {
    display: block;
  }
}

.video__unit-movie-wrapper {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .video__unit-movie-wrapper {
    width: 100%;
  }
}

.video__unit-movie {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.video__unit-movie iframe, .video__unit-movie video, .video__unit-movie img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__unit-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  background: #F0F6F8;
  border-radius: 0.1875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 6px 15px;
  padding: 0.375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .video__unit-text {
    font-size: 0.9375rem;
  }
}

.video__unit-body {
  width: 60.5%;
}
@media screen and (max-width: 767px) {
  .video__unit-body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.video__unit-header {
  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 #ccc;
  border-bottom: 0.0625rem solid #ccc;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .video__unit-header {
    padding-bottom: 0.1875rem;
  }
}

.video__unit-teacher {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3DAAD3;
  letter-spacing: 0.02em;
  background: url(../img/common/teacher-icon.png) no-repeat center left/32px;
  background: url(../img/common/teacher-icon.png) no-repeat center left/2rem;
  padding: 5px 0 5px 43px;
  padding: 0.3125rem 0 0.3125rem 2.6875rem;
}
@media screen and (max-width: 767px) {
  .video__unit-teacher {
    font-size: 1.125rem;
    padding-left: 1.875rem;
    background-size: 1.5625rem;
  }
}

.video__unit-date {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .video__unit-date {
    font-size: 0.9375rem;
  }
}
.video__unit-date span {
  font-family: "Montserrat", sans-serif;
}

.video__unit-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .video__unit-title {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-top: 1.25rem;
  }
}

.video__unit-list {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.video__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .video__unit-list-item {
    font-size: 0.9375rem;
  }
}

.video__unit-list-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.1875rem;
  background: #F5F5F5;
  white-space: nowrap;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
}

.video__unit-list-text {
  margin-left: 15px;
  margin-left: 0.9375rem;
  letter-spacing: 0.04em;
  padding-top: 3px;
  padding-top: 0.1875rem;
}
.video__unit-list-text a {
  color: #3DAAD3;
  text-decoration: underline;
}

.video__unit-btn {
  text-align: center;
  display: block;
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
  font-weight: 700;
  color: #3DAAD3;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  margin-left: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 15px;
  padding: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .video__unit-btn {
    margin: 1.875rem auto 0;
  }
}
.video__unit-btn::before {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/inquiry-icon.png) no-repeat center/contain;
}

.video__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.video__pagination a, .video__pagination span {
  width: 47px;
  width: 2.9375rem;
}
.video__pagination a.prev, .video__pagination a.next {
  width: 47px;
  width: 2.9375rem;
  padding: 0;
  margin: 0;
}
.video__pagination a.prev::before {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video__pagination a.next::before {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* anxiety */
.anxiety__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .anxiety__text {
    font-size: 1rem;
  }
}

.anxiety__items {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .anxiety__items {
    margin-top: 1.875rem;
  }
}

.anxiety__item {
  text-align: center;
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  border-radius: 0.25rem;
  padding: 30px 20px 40px;
  padding: 1.875rem 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .anxiety__item {
    padding: 1.875rem 0.625rem;
  }
}

.anxiety__item-icon {
  width: 120px;
  width: 7.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.anxiety__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3DAAD3;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .anxiety__item-title {
    font-size: 1.125rem;
  }
}

.anxiety__item-text {
  line-height: 1.43;
  letter-spacing: 0.04em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .anxiety__item-text {
    font-size: 0.9375rem;
  }
}

.anxiety__box {
  border: 1px solid #3DAAD3;
  border: 0.0625rem solid #3DAAD3;
  padding: 25px 20px 25px 10px;
  padding: 1.5625rem 1.25rem 1.5625rem 0.625rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .anxiety__box {
    padding: 1.875rem 1.25rem;
    margin-top: 3.75rem;
  }
}
.anxiety__box::before {
  position: absolute;
  content: "";
  width: 240px;
  width: 15rem;
  height: 40px;
  height: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -70px;
  top: -4.375rem;
  background: url(../img/web/anxiety-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .anxiety__box::before {
    width: 7.5rem;
    height: 1.25rem;
    top: -2.5rem;
  }
}

/* reason */
.reason__units {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .reason__units {
    margin-top: 1.25rem;
  }
}

/* trial */
.trial__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .trial__inner {
    display: block;
    margin-top: 1.5625rem;
  }
}

.trial__video-wrapper {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .trial__video-wrapper {
    width: 100%;
  }
}

.trial__video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.trial__video iframe, .trial__video video, .trial__video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trial__btn {
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}

.trial__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .trial__body {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.trial__subtitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3DAAD3;
}
@media screen and (max-width: 767px) {
  .trial__subtitle {
    font-size: 1.25rem;
  }
}

.trial__text {
  line-height: 2.25;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .trial__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.trial__box {
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 25px 35px;
  padding: 1.5625rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .trial__box {
    padding: 1.5625rem 1.25rem;
  }
}

.trial__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px 0;
  gap: 0.625rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .trial__list {
    display: block;
  }
}

.trial__list-item {
  letter-spacing: 0.04em;
  background: url(../img/common/check-icon02.png) no-repeat top 3px left/24px;
  background: url(../img/common/check-icon02.png) no-repeat top 0.1875rem left/1.5rem;
  padding-left: 32px;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .trial__list-item {
    font-size: 0.9375rem;
  }
  .trial__list-item + .trial__list-item {
    margin-top: 0.625rem;
  }
}
.trial__list-item:nth-child(odd) {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .trial__list-item:nth-child(odd) {
    width: 100%;
  }
}
.trial__list-item:nth-child(even) {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .trial__list-item:nth-child(even) {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */
