@charset "UTF-8";
html.is-menu-opened {
  position: relative;
}
html.is-menu-opened::after {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

body {
  color: #333;
  font-size: min(1.111vw, 16px);
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3.467vw;
  }
}

.l-wrapper,
.l-main,
.l-header,
.l-menu,
.l-nav-btn,
.l-footer {
  position: relative;
}

.l-wrapper {
  z-index: 0;
}

.l-main {
  z-index: 1;
  overflow: hidden;
}

.l-header {
  z-index: 10;
}

.l-menu {
  z-index: 15;
}

.l-nav-btn {
  z-index: 20;
}

.l-totop {
  z-index: 5;
}

.l-footer {
  z-index: 3;
}

.l-loading {
  z-index: 30;
}

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

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

a,
button {
  transition: opacity ease 0.4s;
}
@media print, screen and (min-width: 768px) {
  a:hover,
  button:hover {
    opacity: 0.75;
  }
}

html.is-menu-opened {
  touch-action: none;
  height: 100%;
  overflow: hidden;
}

.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 159, 233, 0.15), rgba(111, 182, 89, 0.15)), #fff;
  transition: 0.3s;
  opacity: 1;
}
.l-loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.l-loading__logo img {
  width: 28vw;
}
@media only screen and (max-width: 767px) {
  .l-loading__logo img {
    width: 58vw;
  }
}
.is-loaded .l-loading {
  opacity: 0;
  transition-delay: 2.3s;
  pointer-events: none;
}
.is-loaded .l-loading .l-loading__logo {
  animation-name: loading-logo-out;
  animation-duration: 1.8s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

.pop {
  opacity: 0;
}
.pop.is-show {
  animation: popup 0.7s ease forwards;
}

.l-totop {
  position: sticky;
  bottom: min(2.083vw, 30px);
  transform: translateY(0px);
  margin-right: min(2.083vw, 30px);
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: max(-5.208vw, -75px);
  width: min(5.208vw, 75px);
  height: min(5.208vw, 75px);
  border-radius: 9999px;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  background-color: #005991;
}
@media only screen and (max-width: 767px) {
  .l-totop {
    bottom: 2.667vw;
    margin-right: 2.667vw;
    width: 10.667vw;
    height: 10.667vw;
  }
}
.l-totop::after {
  display: block;
  content: "";
  margin-top: min(0.833vw, 12px);
  width: min(1.563vw, 22.5px);
  height: min(1.563vw, 22.5px);
  border-right: min(0.278vw, 4px) solid #fff;
  border-bottom: min(0.278vw, 4px) solid #fff;
  transform: rotate(-135deg);
}
@media only screen and (max-width: 767px) {
  .l-totop::after {
    margin-top: 1.6vw;
    width: 2.667vw;
    height: 2.667vw;
    border-right: 0.533vw solid #fff;
    border-bottom: 0.533vw solid #fff;
  }
}

.is-scroll .l-totop {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s;
}

.is-scroll .l-header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.is-menu-opened .l-header::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 1px);
  background-color: rgba(0, 0, 0, 0.5);
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0);
  transition: 0.3s;
  z-index: 10;
}
.is-scroll .l-header {
  background: #fff;
  border-bottom: 1px solid #ccc;
}
.l-header__contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: min(5.556vw, 80px);
  padding-left: min(2.222vw, 32px);
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .l-header__contain {
    height: min(5.556vw, 80px);
  }
  .is-scroll .l-header__contain {
    height: min(5.556vw, 80px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header__contain {
    height: 10.667vw;
    padding-right: 0;
    padding-left: 0;
  }
}
.l-header__logo {
  display: block;
  line-height: 1;
  position: relative;
  width: min(16.528vw, 238px);
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    margin: 1.333vw 0 0 4vw;
    width: 28.533vw;
  }
}
.l-header__logo-color, .l-header__logo-wh {
  transition: 0.3s;
}
.l-header__logo-color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.l-header__logo img {
  width: 100%;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .is-scroll .l-header__logo img {
    width: min(14.722vw, 212px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo img {
    width: 28.533vw;
  }
  .is-scroll .l-header__logo img {
    filter: none;
  }
}
.is-scroll .l-header__logo .l-header__logo-wh {
  opacity: 0;
}
.is-scroll .l-header__logo .l-header__logo-color {
  opacity: 1;
}
.l-header .l-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 40px);
  height: 100dvh;
  transition: 0.3s;
  background-image: linear-gradient(270deg, rgb(33, 199, 249) 0%, rgb(27, 87, 177) 100%);
  overflow: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  z-index: 15;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu {
    width: 97.333vw;
  }
}
.l-header .l-menu__ow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.l-header .l-menu .c-inner {
  position: relative;
  width: min(64.583vw, 930px);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu .c-inner {
    width: 100%;
  }
}
.l-header .l-menu__sns {
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: min(4.167vw, 60px) 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu {
    padding: 14.667vw 0;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__contain-sec {
    display: flex;
    justify-content: space-between;
    width: min(37.5vw, 540px);
    margin-left: min(5.556vw, 80px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec {
    margin: 1.6vw auto 6.667vw;
    width: 86.667vw;
  }
}
.l-header .l-menu__contain-sec .flex {
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex {
    display: block;
  }
}
.l-header .l-menu__contain-sec .flex.left {
  width: min(13.194vw, 190px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex.left {
    width: auto;
  }
}
.l-header .l-menu__contain-sec .flex.right {
  width: min(19.861vw, 286px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex.right {
    width: auto;
  }
}
.l-header .l-menu__contain-sec .flex.right > p {
  margin-bottom: min(2.083vw, 30px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex.right > p {
    margin-bottom: 8vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex.right > p.last {
    margin-bottom: 0;
  }
}
.l-header .l-menu__contain-sec .flex a, .l-header .l-menu__contain-sec .flex span {
  color: #fff;
}
.l-header .l-menu__contain-sec .flex__box {
  margin-bottom: min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex__box {
    margin-right: 0;
    margin-bottom: 8.533vw;
  }
}
.l-header .l-menu__contain-sec .flex__box:nth-of-type(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__contain-sec .flex__box.single {
    margin-bottom: min(2.778vw, 40px);
  }
}
.l-header .l-menu__contain-sec .flex__box__last.single {
  margin-right: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex__box__last.single {
    margin-bottom: 8vw;
  }
}
.l-header .l-menu__contain-sec .flex p a {
  font-size: min(1.597vw, 23px);
  padding-bottom: 0.4em;
  border-bottom: 2px solid #fff;
  display: block;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex p a {
    font-size: 5.333vw;
    border-bottom: 1px solid #fff;
  }
}
.l-header .l-menu__contain-sec .flex p a span {
  font-size: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex p a span {
    font-size: 4vw;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__contain-sec .flex ul {
    margin-bottom: min(2.778vw, 40px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex ul {
    width: 100%;
  }
}
.l-header .l-menu__contain-sec .flex ul li {
  margin-bottom: 0.5em;
}
.l-header .l-menu__contain-sec .flex ul li.flex__box_ttl a {
  font-size: min(1.597vw, 23px);
  padding-bottom: 0.4em;
  border-bottom: 2px solid #fff;
  display: block;
  font-weight: 500;
  margin-bottom: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex ul li {
    margin-bottom: 3.333vw;
  }
  .l-header .l-menu__contain-sec .flex ul li.flex__box_ttl {
    margin-bottom: 5.333vw;
  }
  .l-header .l-menu__contain-sec .flex ul li.flex__box_ttl a {
    font-size: 5.333vw;
    font-weight: 500;
    border-bottom: 1px solid #fff;
  }
}
.l-header .l-menu__contain-sec .flex ul li a {
  display: block;
  padding-bottom: 0.5em;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__contain-sec .flex ul li a {
    font-size: 4.533vw;
  }
}
.l-header .l-menu__contain-sec .flex ul li:last-child a {
  margin-bottom: 0;
  padding-bottom: 0;
}
.is-menu-opened .l-header .l-menu {
  opacity: 1;
  pointer-events: auto;
}
.l-header .l-menu__logo {
  display: block;
  width: min(22.222vw, 320px);
  margin: 0 auto min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__logo {
    width: 56vw;
    margin-bottom: 8vw;
  }
}
.l-header .l-menu__logo img {
  width: min(21.875vw, 315px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__logo img {
    width: 54.8vw;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__link, .l-header .l-menu__tel {
    width: min(20.833vw, 300px);
  }
  .l-header .l-menu__link .c-tel-box, .l-header .l-menu__tel .c-tel-box {
    display: block;
    max-width: 100%;
    padding: min(1.389vw, 20px) min(1.111vw, 16px);
    border-radius: 0.4rem;
    font-size: 1.5rem;
    color: #008fcb;
    text-align: center;
    line-height: 1.25;
    text-align: center;
    color: #008fcb;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__link, .l-header .l-menu__tel {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-header .l-menu__link:last-child, .l-header .l-menu__tel:last-child {
  border-bottom: none;
}
.l-header .l-menu__link-anc, .l-header .l-menu__list-anc {
  display: block;
  padding: min(1.944vw, 28px);
  padding-right: 0;
  line-height: 1.25;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__link-anc, .l-header .l-menu__list-anc {
    padding: 6vw 0;
    font-size: 3.733vw;
    text-align: center;
  }
  .l-header .l-menu__link-anc .c-icon-txt, .l-header .l-menu__list-anc .c-icon-txt {
    justify-content: center;
  }
}
.l-header .l-menu__link-anc:not(.last), .l-header .l-menu__list-anc:not(.last) {
  border-bottom: 1px solid #93d6f2;
}
.l-header .l-menu__link-anc .c-icon-txt__icon img, .l-header .l-menu__list-anc .c-icon-txt__icon img {
  width: min(0.903vw, 13px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__link-anc .c-icon-txt__icon img, .l-header .l-menu__list-anc .c-icon-txt__icon img {
    width: 3.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__link {
    width: 76vw;
  }
}
.l-header .l-menu__list {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__list {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__list-item--haschild {
    padding: min(1.944vw, 28px);
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__list-item--haschild {
    padding: 2.667vw 0;
  }
}
.l-header .l-menu__list-ttl {
  margin-bottom: min(0.833vw, 12px);
  color: #c5eaf9;
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__list-ttl {
    font-size: min(1.181vw, 17px);
  }
}
.l-header .l-menu__list-anc {
  font-size: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__list-anc {
    font-size: 2vw;
  }
}
.l-header .l-menu__list-child .l-menu__list-item {
  border-bottom: none;
}
.l-header .l-menu__list-child .l-menu__list-anc {
  position: relative;
  padding: min(0.556vw, 8px) 0 min(0.556vw, 8px) min(1.944vw, 28px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__list-child .l-menu__list-anc {
    font-size: 2.267vw;
  }
}
.l-header .l-menu__list-child .l-menu__list-anc:before {
  content: "";
  display: block;
  position: absolute;
  width: min(1.111vw, 16px);
  height: 1px;
  background: #fff;
  top: 50%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__list-child {
    display: inline-block;
    text-align: left;
  }
}
.l-header .l-menu__tel {
  margin-top: min(0.833vw, 12px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__tel {
    display: flex;
    justify-content: center;
    color: #008fcb;
    background: none;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__tel a {
    display: inline-block;
    padding: 4vw 6.667vw;
    text-align: center;
    border-radius: 0.533vw;
    background-color: #fff;
  }
}
.l-header .l-menu__tel .c-tel-box__txt {
  margin-bottom: min(0.556vw, 8px);
  font-size: min(0.972vw, 14px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__tel .c-tel-box__txt {
    margin-bottom: 2.667vw;
    font-size: 2.933vw;
  }
}
.l-header .l-menu__tel .c-tel-box__num {
  display: inline;
  position: relative;
  padding-left: 0.85em;
  line-height: 1;
  text-decoration: none;
  font-size: min(1.944vw, 28px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__tel .c-tel-box__num {
    display: inline-block;
    font-size: 6.133vw;
  }
}
.l-header .l-menu__tel .c-tel-box__num::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  width: 0.64em;
  height: 0.72em;
  background: url("/chance_2027/assets/img/icon_tel_blue.svg") no-repeat center/contain;
}
.l-header .l-menu__sns {
  display: flex;
  gap: min(1.667vw, 24px);
}
@media print, screen and (min-width: 768px) {
  .l-header .l-menu__sns {
    position: absolute;
    right: min(2.222vw, 32px);
    bottom: min(1.389vw, 20px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__sns {
    margin-top: 6.667vw;
    justify-content: center;
    gap: 6.667vw;
  }
}
.l-header .l-menu__sns-anc {
  display: block;
}
.l-header .l-menu__sns-anc img {
  width: min(2.222vw, 32px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-menu__sns-anc img {
    width: 6.667vw;
  }
}
.l-header .l-nav-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: min(5.556vw, 80px);
  height: min(5.556vw, 80px);
  background-image: linear-gradient(-225deg, rgb(28, 173, 239) 0%, rgb(110, 218, 128) 99%);
  border-bottom-left-radius: min(0.278vw, 4px);
  margin: 0;
  cursor: pointer;
  transition: 0.3s;
  z-index: 20;
}
.l-header .l-nav-btn:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .l-header .l-nav-btn:hover {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .l-header .l-nav-btn {
    width: 10.667vw;
    height: 10.667vw;
  }
}
.is-scroll .l-header .l-nav-btn {
  border-bottom-left-radius: 0;
}
.is-menu-opened .l-header .l-nav-btn {
  background: transparent;
}
.l-header .l-nav-btn__bar {
  position: absolute;
  display: block;
  width: min(2.639vw, 38px);
  height: min(0.278vw, 4px);
  top: 50%;
  left: 50%;
  background: #fff;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
.is-scroll .l-header .l-nav-btn__bar, .is-menu-opened .l-header .l-nav-btn__bar {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .l-header .l-nav-btn__bar {
    width: 5.067vw;
    height: 0.533vw;
  }
}
.l-header .l-nav-btn__bar:before, .l-header .l-nav-btn__bar:after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 100%;
  height: min(0.278vw, 4px);
  background: #fff;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .l-header .l-nav-btn__bar:before, .l-header .l-nav-btn__bar:after {
    height: 0.533vw;
  }
}
.is-scroll .l-header .l-nav-btn__bar:before, .is-menu-opened .l-header .l-nav-btn__bar:before, .is-scroll .l-header .l-nav-btn__bar:after, .is-menu-opened .l-header .l-nav-btn__bar:after {
  background: #fff;
}
.l-header .l-nav-btn__bar:before {
  top: min(-0.833vw, -12px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-nav-btn__bar:before {
    top: -1.867vw;
  }
}
.l-header .l-nav-btn__bar:after {
  top: min(0.972vw, 14px);
}
@media only screen and (max-width: 767px) {
  .l-header .l-nav-btn__bar:after {
    top: 1.867vw;
  }
}
.is-menu-opened .l-header .l-nav-btn__bar {
  background: transparent !important;
}
.is-menu-opened .l-header .l-nav-btn__bar:before, .is-menu-opened .l-header .l-nav-btn__bar:after {
  top: 0;
  background: #fff;
}
.is-menu-opened .l-header .l-nav-btn__bar:before {
  transform: rotate(-45deg);
}
.is-menu-opened .l-header .l-nav-btn__bar:after {
  transform: rotate(45deg);
}

.is-loaded .txt01 {
  animation: popup 0.7s ease 3.277s forwards;
}
.is-loaded .txt02 {
  animation: popup 0.7s ease 3.777s forwards;
}
.is-loaded .person {
  animation: fadein 0.7s ease 2.777s forwards;
}

.main .section_title {
  display: flex;
  justify-content: center;
}
.main .pattern_yellow {
  background: left top/200px auto repeat url("/chance_2027/assets/img/pattern_yellow.png");
}
.main .pattern_beige {
  background: left top/200px auto repeat url("/chance_2027/assets/img/pattern_beige.png");
}
.main .pattern_lattice {
  background: left top/200px auto repeat url("/chance_2027/assets/img/pattern_lattice.png");
}
.main .mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/800;
  overflow: hidden;
  background-color: #dfdfdf;
}
@media only screen and (max-width: 767px) {
  .main .mv {
    width: auto;
    height: 160vw;
    aspect-ratio: initial;
  }
}
.main .mv .txt01,
.main .mv .txt02,
.main .mv .person {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  opacity: 0;
}
.main .mv .scroll {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
}
.main .mv .txt01 {
  top: 11.5%;
  width: 71.736%;
}
@media only screen and (max-width: 767px) {
  .main .mv .txt01 {
    top: 20.533vw;
    width: 76.267vw;
  }
}
.main .mv .txt01 img {
  width: 100%;
}
.main .mv .txt02 {
  top: 50.625%;
}
@media only screen and (max-width: 767px) {
  .main .mv .txt02 {
    top: 104.933vw;
  }
}
.main .mv .txt02 img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .main .mv .txt02 img {
    width: 100vw;
  }
}
.main .mv .person {
  top: 23.125%;
}
@media only screen and (max-width: 767px) {
  .main .mv .person {
    top: 56.133vw;
  }
}
.main .mv .person img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .main .mv .person img {
    width: 100vw;
  }
}
.main .mv .scroll {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: min(1.875vw, 27px);
  width: min(4.861vw, 70px);
  transform: translateY(max(-0.278vw, -4px));
  animation: 1.7s ease infinite scroll-ub;
}
@media only screen and (max-width: 767px) {
  .main .mv .scroll {
    bottom: 6.667vw;
    width: 14.8vw;
  }
}
@keyframes scroll-ub {
  0% {
    transform: translateY(max(-0.278vw, -4px));
  }
  50% {
    transform: translateY(min(0.278vw, 4px));
  }
  to {
    transform: translateY(max(-0.278vw, -4px));
  }
}
.main .mv .scroll img {
  width: 100%;
}
.main .read {
  position: relative;
  padding: min(6.25vw, 90px) 0 min(11.806vw, 170px);
  height: min(54.722vw, 788px);
  overflow: hidden;
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/pc/read_bg.jpg");
}
@media only screen and (max-width: 767px) {
  .main .read {
    padding: 10.667vw 0 54.933vw;
    height: 187.2vw;
    background: left top/100% auto no-repeat url("/chance_2027/assets/img/sp/read-bg.jpg");
  }
}
.main .read::before {
  content: "";
  position: absolute;
  top: min(3.472vw, 50px);
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: min(103.472vw, 1490px);
  height: min(40.069vw, 577px);
  background: center center/100% auto no-repeat url("/chance_2027/assets/img/pc/read_picture.png");
}
@media only screen and (max-width: 767px) {
  .main .read::before {
    display: none;
  }
}
.main .read .txt {
  position: relative;
  font-size: min(1.25vw, 18px);
  color: #fff;
  line-height: 3;
  letter-spacing: 0.07em;
  text-align: center;
  text-shadow: 2.294px 3.277px 5.4px rgb(10, 92, 57);
}
@media only screen and (max-width: 767px) {
  .main .read .txt {
    font-size: 3.733vw;
    line-height: 2.6;
  }
}
.main .method_search {
  position: relative;
  margin-top: max(-8.333vw, -120px);
  border-radius: min(5.556vw, 80px) 0 min(5.556vw, 80px) 0;
}
@media only screen and (max-width: 767px) {
  .main .method_search {
    margin-top: -6.667vw;
    border-radius: 6.667vw 0 6.667vw 0;
  }
}
.main .method {
  padding-top: min(8.333vw, 120px);
}
@media only screen and (max-width: 767px) {
  .main .method {
    margin-bottom: 17.067vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .method {
    padding-top: 13.333vw;
  }
}
.main .method .section_title {
  margin-bottom: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .method .section_title {
    margin-bottom: 5.333vw;
  }
}
.main .method .section_title img {
  width: min(44.097vw, 635px);
}
@media only screen and (max-width: 767px) {
  .main .method .section_title img {
    width: 62vw;
  }
}
.main .method .method_splide {
  width: min(76.736vw, 1105px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide {
    width: 100%;
  }
}
.main .method .method_splide .splide__arrows {
  position: absolute;
  bottom: 16px;
  right: 0;
  display: flex;
  gap: min(0.347vw, 5px);
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__arrows {
    top: 62.667vw;
    bottom: auto;
  }
}
.main .method .method_splide .splide__arrows svg {
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__arrows svg {
    width: 5.333vw;
    height: auto;
  }
}
.main .method .method_splide .splide__arrow--prev,
.main .method .method_splide .splide__arrow--next,
.main .method .method_splide .custom-arrow {
  top: auto;
  bottom: max(-2.083vw, -30px);
  width: min(3.472vw, 50px);
  height: min(3.472vw, 50px);
  background-color: #015990;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__arrow--prev,
  .main .method .method_splide .splide__arrow--next,
  .main .method .method_splide .custom-arrow {
    bottom: auto;
    width: 11.2vw;
    height: 11.2vw;
  }
}
.main .method .method_splide .splide__arrow--prev {
  right: min(64.583vw, 930px);
  left: auto;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__arrow--prev {
    right: 66vw;
  }
}
.main .method .method_splide .splide__arrow--next {
  right: min(46.667vw, 672px);
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__arrow--next {
    right: 22.667vw;
  }
}
.main .method .method_splide .custom-arrows {
  position: absolute;
  bottom: -5.333vw;
  z-index: 10;
}
.main .method .method_splide .custom-arrows svg {
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .custom-arrows svg {
    width: 5.333vw;
    height: auto;
  }
}
.main .method .method_splide .custom-arrows .custom-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
}
.main .method .method_splide .custom-arrows .custom-arrow.prev {
  scale: -1 1;
  left: 22.667vw;
}
.main .method .method_splide .custom-arrows .custom-arrow.next {
  left: 66.267vw;
}
.main .method .method_splide {
  /* ドット全体のコンテナ（位置や並び順） */
}
.main .method .method_splide .splide__pagination {
  position: absolute;
  right: min(52.361vw, 754px);
  left: auto;
  bottom: min(2.778vw, 40px);
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__pagination {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: auto;
    top: 62.4vw;
  }
}
.main .method .method_splide .splide__pagination li {
  margin: 0 min(0.139vw, 2px);
  width: min(3.333vw, 48px);
  height: min(0.347vw, 5px);
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__pagination li {
    margin: 0 0.667vw;
    width: 8vw;
    height: 1.067vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .custom-pagination {
    position: absolute;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    bottom: 0;
    bottom: -10.667vw;
  }
  .main .method .method_splide .custom-pagination li {
    margin: 0 0.667vw;
    width: 8vw;
    height: 1.067vw;
  }
  .main .method .method_splide .custom-pagination button {
    width: 8vw;
    height: 1.067vw;
    background: #fff;
    /* 通常時の色 */
    border: 1px solid #015990;
    border-radius: 50%;
    margin: 0 0.533vw;
    /* ドット同士の間隔 */
    transition: all 0.3s;
    border-radius: 9999px;
    opacity: 1;
    display: block;
  }
  .main .method .method_splide .custom-pagination button.is-active {
    background: #015990;
    transform: scale(1);
  }
}
.main .method .method_splide {
  /* 通常のドットのスタイル */
}
.main .method .method_splide .splide__pagination__page {
  width: min(3.333vw, 48px);
  height: min(0.347vw, 5px);
  background: #fff;
  /* 通常時の色 */
  border: 1px solid #015990;
  border-radius: 50%;
  margin: 0 min(0.417vw, 6px);
  /* ドット同士の間隔 */
  transition: all 0.3s;
  border-radius: 9999px;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .main .method .method_splide .splide__pagination__page {
    display: block;
    width: 8vw;
    height: 1.067vw;
    margin: 0 0.533vw;
  }
}
.main .method .method_splide {
  /* ホバーした時 */
}
.main .method .method_splide .splide__pagination__page:hover {
  background: #015990;
}
.main .method .method_splide {
  /* 現在表示中のアクティブなドット */
}
.main .method .method_splide .splide__pagination__page.is-active {
  background: #015990;
  transform: scale(1);
}
.main .method .method_splide .splide__slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.main .method .method_splide {
  /* アクティブ（表示中）になったスライドだけ不透明にする */
}
.main .method .method_splide .splide__slide.is-active {
  opacity: 1;
}
.main .method .slide_container {
  margin: 0 auto;
}
.main .method .slide_container .slide .wrapper {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .wrapper {
    display: block;
  }
}
.main .method .slide_container .slide .graph {
  margin-top: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .graph {
    margin-top: 0;
    margin-bottom: 6.133vw;
  }
}
.main .method .slide_container .slide .graph img {
  width: min(33.299vw, 479.5px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .graph img {
    width: 100vw;
  }
}
.main .method .slide_container .slide .table .flex {
  display: flex;
  margin-bottom: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .flex {
    margin-bottom: 2.667vw;
  }
}
.main .method .slide_container .slide .table .table-head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(3.819vw, 55px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .table-head {
    width: 9.067vw;
  }
}
.main .method .slide_container .slide .table .table-head .early-ab {
  width: min(2.153vw, 31px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .table-head .early-ab {
    width: 6.8vw;
  }
}
.main .method .slide_container .slide .table .table-head .early-a {
  width: min(1.076vw, 15.5px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .table-head .early-a {
    width: 3.733vw;
  }
}
.main .method .slide_container .slide .table .table-head .late {
  width: min(1.111vw, 16px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .table-head .late {
    width: 3.6vw;
  }
}
.main .method .slide_container .slide .table .table-head .point {
  width: min(0.868vw, 12.5px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .table-head .point {
    width: 2.933vw;
  }
}
.main .method .slide_container .slide .table .content {
  flex: 1;
  padding: min(1.042vw, 15px) min(1.389vw, 20px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .content {
    padding: 2vw 4vw;
  }
}
.main .method .slide_container .slide .table .content.align-center {
  display: flex;
  align-items: center;
}
.main .method .slide_container .slide .table .content .table-txt {
  padding: min(0.694vw, 10px) 0;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .content .table-txt {
    padding: 2vw 0;
  }
}
.main .method .slide_container .slide .table .content .table-txt:first-child {
  padding-top: 0;
}
.main .method .slide_container .slide .table .content .table-txt:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.main .method .slide_container .slide .table .content strong {
  font-size: min(1.389vw, 20px);
  background: linear-gradient(transparent 80%, rgb(255, 222, 0) 0);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .table .content strong {
    font-size: 3.467vw;
  }
}
.main .method .slide_container .slide.slide01 .flex {
  border: 1px solid #005a8f;
  border-left: none;
}
.main .method .slide_container .slide.slide01 .table .table-head {
  background-color: #005a8f;
}
.main .method .slide_container .slide.slide01 .table .table-txt {
  border-bottom: 1px solid #005a8f;
}
.main .method .slide_container .slide.slide01 .table strong {
  color: #015990;
}
.main .method .slide_container .slide.slide02 .flex {
  border: 1px solid #ec850b;
  border-left: none;
}
.main .method .slide_container .slide.slide02 .table .table-head {
  background-color: #ec850b;
}
.main .method .slide_container .slide.slide02 .table .content {
  padding: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide02 .table .content {
    padding: 4vw;
  }
}
.main .method .slide_container .slide.slide02 .table .table-txt {
  border-bottom: 1px solid #ec850b;
}
.main .method .slide_container .slide.slide02 .table strong {
  color: #ec600b;
}
.main .method .slide_container .slide.slide03 .flex {
  border: 1px solid #0dac97;
  border-left: none;
}
.main .method .slide_container .slide.slide03 .table .table-head {
  padding: min(0.486vw, 7px) 0;
  width: min(1.875vw, 27px);
  background-color: #0dac97;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide03 .table .table-head {
    padding: 1.333vw 0;
    width: 6.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide03 .table .content {
    padding: 2.667vw;
  }
}
.main .method .slide_container .slide.slide03 .table .table-txt {
  border-bottom: 1px solid #0dac97;
}
.main .method .slide_container .slide.slide03 .table strong {
  color: #009d88;
}
.main .method .slide_container .slide .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 min(2.083vw, 30px) 0 min(5.208vw, 75px);
  width: min(43.472vw, 626px);
  height: min(56.597vw, 815px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .box {
    justify-content: flex-start;
    margin: 0 auto;
    padding: 8vw 2.667vw;
    width: 94.133vw;
    height: auto;
  }
}
.main .method .slide_container .slide .box .head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 min(0.486vw, 7px);
  margin-bottom: min(0.833vw, 12px);
  font-size: min(1.944vw, 28px);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .box .head {
    margin-bottom: 3.6vw;
    font-size: 5.333vw;
  }
}
.main .method .slide_container .slide .box .head::before {
  content: "";
  display: block;
}
.main .method .slide_container .slide .box picture {
  display: block;
  margin-bottom: min(1.389vw, 20px);
  text-align: center;
}
.main .method .slide_container .slide .box img {
  width: min(35.139vw, 506px);
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .box img {
    width: 86.667vw;
  }
}
.main .method .slide_container .slide .box .txt {
  margin-bottom: min(1.389vw, 20px);
  font-size: min(1.042vw, 15px);
  line-height: 1.6;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .box .txt {
    margin-bottom: 4vw;
    font-size: 3.467vw;
  }
}
.main .method .slide_container .slide .box .note {
  margin: 0 min(0.347vw, 5px);
}
.main .method .slide_container .slide .box .note li {
  margin-left: 2em;
  text-indent: -2em;
  font-size: min(0.972vw, 14px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide .box .note li {
    font-size: 2.667vw;
  }
}
.main .method .slide_container .slide .box .note li:not(:last-child) {
  margin-bottom: min(0.694vw, 10px);
}
.main .method .slide_container .slide .box .note li strong {
  font-weight: normal;
  color: #015990;
}
.main .method .slide_container .slide.slide01 .box {
  background: right min(4.167vw, 60px) top min(1.389vw, 20px)/min(10.694vw, 154px) auto no-repeat url("/chance_2027/assets/img/method_slide_bg-02.png"), left top/100% auto no-repeat url("/chance_2027/assets/img/pc/method_slide_bg.png");
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide01 .box {
    height: 173.733vw;
    background: right 6.4vw top 2.933vw/24.267vw auto no-repeat url("/chance_2027/assets/img/method_slide_bg-02.png"), left top/100% auto no-repeat url("/chance_2027/assets/img/sp/method_slide-bg-01.png");
  }
}
.main .method .slide_container .slide.slide01 .box::before {
  content: "";
  display: block;
}
.main .method .slide_container .slide.slide01 .head {
  color: #015990;
}
.main .method .slide_container .slide.slide01 .head::before {
  width: min(2.569vw, 37px);
  height: min(2.569vw, 37px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-ippan.svg");
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide01 .head::before {
    width: 6vw;
    height: 6vw;
  }
}
.main .method .slide_container .slide.slide02 .box {
  background: right min(2.083vw, 30px) top min(13.889vw, 200px)/min(10.938vw, 157.5px) auto no-repeat url("/chance_2027/assets/img/method_slide_bg-03.png"), left top/100% auto no-repeat url("/chance_2027/assets/img/pc/method_slide_bg.png");
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide02 .box {
    height: 101.067vw;
    background: right 6.4vw top 2.933vw/24.267vw auto no-repeat url("/chance_2027/assets/img/method_slide_bg-03.png"), left top/100% auto no-repeat url("/chance_2027/assets/img/sp/method_slide-bg-02.png");
  }
}
.main .method .slide_container .slide.slide02 .head {
  color: #ec600b;
}
.main .method .slide_container .slide.slide02 .head::before {
  width: min(2.639vw, 38px);
  height: min(2.639vw, 38px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-university.svg");
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide02 .head::before {
    width: 6vw;
    height: 6vw;
  }
}
.main .method .slide_container .slide.slide03 .box {
  background: right min(2.083vw, 30px) top min(2.083vw, 30px)/min(8.75vw, 126px) auto no-repeat url("/chance_2027/assets/img/method_slide_bg-01.png"), left top/100% auto no-repeat url("/chance_2027/assets/img/pc/method_slide_bg.png");
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide03 .box {
    height: 184.4vw;
    background: right 9.333vw top 2.933vw/20.933vw auto no-repeat url("/chance_2027/assets/img/method_slide_bg-01.png"), left top/100% auto no-repeat url("/chance_2027/assets/img/sp/method_slide-bg-03.png");
  }
}
.main .method .slide_container .slide.slide03 .head {
  color: #009d88;
}
.main .method .slide_container .slide.slide03 .head::before {
  width: min(2.569vw, 37px);
  height: min(2.639vw, 38px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-scholarship.svg");
}
@media only screen and (max-width: 767px) {
  .main .method .slide_container .slide.slide03 .head::before {
    width: 6.133vw;
    height: 6.4vw;
  }
}
.main .method .slide_container .slide.slide03 .note {
  margin: 0 min(0.347vw, 5px);
}
.main .method .slide_container .slide.slide03 .note li {
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.main .search {
  padding: min(6.944vw, 100px) 0;
}
@media only screen and (max-width: 767px) {
  .main .search {
    padding: 13.333vw 0 10.667vw;
  }
}
.main .search .section_title {
  margin-bottom: min(2.083vw, 30px);
}
@media only screen and (max-width: 767px) {
  .main .search .section_title {
    margin-bottom: 4vw;
  }
}
.main .search .section_title img {
  width: min(43.542vw, 627px);
}
@media only screen and (max-width: 767px) {
  .main .search .section_title img {
    width: 88.133vw;
  }
}
.main .search .txt {
  margin-bottom: min(2.778vw, 40px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main .search .txt {
    margin-bottom: 4vw;
    font-size: 3.467vw;
    line-height: 1.8;
  }
}
.main .search .searchform {
  position: relative;
  margin: 0 auto;
  padding: min(3.125vw, 45px) min(4.444vw, 64px);
  border-radius: min(1.389vw, 20px) min(1.389vw, 20px) 0 0;
  width: min(83.333vw, 1200px);
  background-image: linear-gradient(125deg, rgb(21, 147, 212) 0%, rgb(13, 119, 180) 100%);
}
@media only screen and (max-width: 767px) {
  .main .search .searchform {
    width: 93.333vw;
    padding: 16vw 4vw 8vw;
    border-radius: 2.667vw 2.667vw 0 0;
    background-image: linear-gradient(0deg, rgb(21, 147, 212) 0%, rgb(13, 119, 180) 100%);
  }
}
.main .search .searchform .checkbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: min(0.833vw, 12px) min(0.903vw, 13px);
  margin-bottom: min(2.778vw, 40px);
  font-size: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .checkbox {
    justify-content: space-between;
    gap: 2.133vw;
    margin-bottom: 6vw;
    font-size: 3.467vw;
  }
}
.main .search .searchform .checkbox .break {
  width: 100%;
}
.main .search .searchform .checkbox button {
  display: flex;
  align-items: center;
  gap: 0 min(0.486vw, 7px);
  padding: min(1.042vw, 15px) min(0.903vw, 13px);
  color: #FFF;
  border-radius: min(0.278vw, 4px);
  background-color: #71b9df;
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .checkbox button {
    gap: 0 1.333vw;
    padding: 4vw 2.667vw;
    width: 41.6vw;
    line-height: 1.15;
  }
}
.main .search .searchform .checkbox button::before {
  content: "";
  display: block;
  width: min(1.806vw, 26px);
  height: min(1.806vw, 26px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-check.svg");
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .checkbox button::before {
    width: 4.267vw;
    height: 4.267vw;
  }
}
.main .search .searchform .checkbox button.checked {
  color: #005a8f;
  background-color: #fff;
}
.main .search .searchform .checkbox button.checked::before {
  background-image: url("/chance_2027/assets/img/icon-checked.svg");
}
.main .search .searchform .checkbox button.is-disabled {
  opacity: 0.3;
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .checkbox button span {
    flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .checkbox li:nth-child(3) button {
    width: 32vw;
  }
  .main .search .searchform .checkbox li:nth-child(5) button {
    width: 51.2vw;
  }
  .main .search .searchform .checkbox li:nth-child(6) {
    width: 100%;
  }
  .main .search .searchform .checkbox li:nth-child(6) button {
    justify-content: center;
    width: 100%;
  }
  .main .search .searchform .checkbox li:nth-child(6) button span {
    flex: none;
  }
}
.main .search .searchform .anchor {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: min(1.667vw, 24px);
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .anchor {
    font-size: 3.733vw;
  }
}
.main .search .searchform .anchor a {
  display: flex;
  align-items: center;
  gap: min(1.111vw, 16px);
  margin-left: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .anchor a {
    gap: 2.667vw;
    margin-left: 5.333vw;
  }
}
.main .search .searchform .anchor a::after {
  display: block;
  content: "";
  width: min(3.264vw, 47px);
  height: min(3.264vw, 47px);
  border-radius: 9999px;
  background: center center/min(1.597vw, 23px) auto no-repeat url("/chance_2027/assets/img/icon-arrow-bottom.svg"), #fff;
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .anchor a::after {
    width: 9.333vw;
    height: 9.333vw;
    background-size: 4.533vw auto;
  }
}
.main .search .searchform .anchor .inner {
  display: inline-block;
  padding-bottom: min(0.903vw, 13px);
  border-bottom: 2px solid #fff;
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .anchor .inner {
    padding-bottom: 1.067vw;
    border-bottom: 1px solid #fff;
  }
}
.main .search .searchform .anchor .num {
  display: inline-block;
  margin-left: min(1.181vw, 17px);
  font-size: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .anchor .num {
    margin-left: 2.533vw;
    font-size: 7.2vw;
  }
}
.main .search .searchform .clear {
  color: #0081cc;
  font-weight: bold;
  border-radius: 9999px;
}
.main .search .searchform .clear {
  position: absolute;
  top: 53px;
  right: 52px;
  padding: min(0.833vw, 12px) min(1.111vw, 16px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .search .searchform .clear {
    top: 4vw;
    right: 3.333vw;
    padding: min(1.25vw, 18px) 4vw;
  }
}
.main .search .result {
  margin: 0 auto;
  padding: min(2.778vw, 40px) min(3.472vw, 50px) min(4.861vw, 70px);
  width: min(83.333vw, 1200px);
  border-radius: 0 0 min(1.389vw, 20px) min(1.389vw, 20px);
  background-color: #d5f0ff;
}
@media only screen and (max-width: 767px) {
  .main .search .result {
    width: 93.333vw;
    padding: 7.467vw 3.333vw 10.667vw;
  }
}
.main .search .result .result_head {
  margin-bottom: min(2.083vw, 30px);
  font-size: min(2.361vw, 34px);
  text-align: center;
  font-weight: 600;
  color: #00578a;
}
@media only screen and (max-width: 767px) {
  .main .search .result .result_head {
    margin-bottom: 5.333vw;
    font-size: 5.333vw;
  }
}
.main .search .result .no-result {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: #666;
}
.main .search .result .lists {
  display: flex;
  justify-content: space-between;
  gap: min(1.736vw, 25px) 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists {
    gap: 4vw;
  }
}
.main .search .result .lists li {
  width: min(37.292vw, 537px);
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li {
    width: 100%;
  }
}
.main .search .result .lists li a {
  display: flex;
  height: min(7.778vw, 112px);
  border-radius: min(0.694vw, 10px);
  background-color: #fff;
  box-shadow: 0px 6px 0px 0px rgba(86, 86, 86, 0.2);
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li a {
    height: 18vw;
    border-radius: 1.333vw;
  }
}
.main .search .result .lists li .type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(8.403vw, 121px);
  height: min(7.778vw, 112px);
  text-align: center;
  color: #fff;
  border-radius: min(0.694vw, 10px) 0 0 min(0.694vw, 10px);
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .type {
    width: 19.467vw;
    height: 100%;
    font-size: 3.2vw;
    border-radius: 1.333vw 0 0 1.333vw;
  }
}
.main .search .result .lists li .type::before {
  content: "";
  display: block;
  margin-bottom: min(0.625vw, 9px);
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .type::before {
    margin-bottom: 1.333vw;
  }
}
.main .search .result .lists li .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(0.833vw, 12px) 0;
  padding-right: min(4.653vw, 67px);
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .wrapper {
    gap: 2vw 0;
    padding-right: min(5.556vw, 80px);
  }
}
.main .search .result .lists li .wrapper::after {
  position: absolute;
  content: "";
  right: min(1.181vw, 17px);
  top: 0;
  bottom: 0;
  display: block;
  margin: auto 0;
  width: min(3.472vw, 50px);
  height: min(3.472vw, 50px);
  border-radius: min(0.417vw, 6px);
  background: center center/min(1.042vw, 15px) auto no-repeat url("/chance_2027/assets/img/icon-arrow.svg");
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .wrapper::after {
    right: 2.667vw;
    width: 8vw;
    height: 8vw;
    border-radius: 0.8vw;
    background-size: 2.4vw auto;
  }
}
.main .search .result .lists li .name {
  font-size: min(2.083vw, 30px);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .name {
    font-size: 4.267vw;
  }
}
.main .search .result .lists li .name.fs-s,
.main .search .result .lists li .name .fs-s {
  font-size: min(1.667vw, 24px);
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .name.fs-s,
  .main .search .result .lists li .name .fs-s {
    font-size: 3.467vw;
  }
}
.main .search .result .lists li .tag {
  padding: min(0.417vw, 6px) min(2.083vw, 30px);
  border: 2px solid #333;
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li .tag {
    padding: 1.333vw 2.667vw;
    border: 1px solid #333;
  }
}
.main .search .result .lists li.general .type {
  background-color: #107eba;
}
.main .search .result .lists li.general .type::before {
  margin-left: min(0.694vw, 10px);
  width: min(2.778vw, 40px);
  height: min(2.778vw, 40px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-ippan-w.svg");
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li.general .type::before {
    margin-left: 1.333vw;
    width: 5.333vw;
    height: 5.333vw;
  }
}
.main .search .result .lists li.general .wrapper::after {
  background-color: #107eba;
}
.main .search .result .lists li.general .name {
  color: #107eba;
}
.main .search .result .lists li.university .type {
  font-size: min(1.042vw, 15px);
  background-color: #eea248;
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li.university .type {
    font-size: 2.667vw;
  }
}
.main .search .result .lists li.university .type::before {
  width: min(3.056vw, 44px);
  height: min(3.056vw, 44px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-university-w.svg");
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li.university .type::before {
    width: 5.867vw;
    height: 5.867vw;
  }
}
.main .search .result .lists li.university .wrapper::after {
  background-color: #eea248;
}
.main .search .result .lists li.university .name {
  color: #eea248;
}
.main .search .result .lists li.scholarship .type {
  background-color: #17ae9a;
}
.main .search .result .lists li.scholarship .type::before {
  width: min(2.917vw, 42px);
  height: min(3.056vw, 44px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-scholarship-w.svg");
}
@media only screen and (max-width: 767px) {
  .main .search .result .lists li.scholarship .type::before {
    width: 5.6vw;
    height: 5.867vw;
  }
}
.main .search .result .lists li.scholarship .wrapper::after {
  background-color: #17ae9a;
}
.main .search .result .lists li.scholarship .name {
  color: #17ae9a;
}
.main .schedule_interview {
  margin-top: max(-5.556vw, -80px);
  padding: min(11.111vw, 160px) 0 0 0;
}
@media only screen and (max-width: 767px) {
  .main .schedule_interview {
    margin-top: -6.667vw;
    padding: 17.333vw 0 0 0;
  }
}
.main .schedule {
  margin: 0 auto;
  margin-right: calc(50% - 50vw);
  margin-bottom: min(5.556vw, 80px);
  padding-top: min(4.861vw, 70px);
  padding-bottom: min(5.556vw, 80px);
  padding-right: calc(50vw - min(90.278vw, 1300px) / 2);
  width: calc(50vw + min(90.278vw, 1300px) / 2);
  border-radius: min(4.167vw, 60px) 0 0 min(4.167vw, 60px);
  background-color: #d5eff5;
}
@media only screen and (max-width: 767px) {
  .main .schedule {
    width: auto;
    margin-right: 0;
    padding-top: 10.667vw;
    padding-bottom: 10.667vw;
    padding-right: 0;
    border-radius: 5.333vw 0 0 5.333vw;
  }
}
.main .schedule .section_title {
  margin-bottom: min(2.083vw, 30px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .section_title {
    margin-bottom: 4vw;
  }
}
.main .schedule .section_title img {
  width: min(51.215vw, 737.5px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .section_title img {
    width: 73.067vw;
  }
}
.main .schedule > .txt {
  margin-bottom: min(2.778vw, 40px);
  text-align: center;
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .main .schedule > .txt {
    font-size: 3.467vw;
  }
}
.main .schedule .tab {
  display: flex;
  justify-content: center;
  gap: 0 min(0.694vw, 10px);
  margin-bottom: min(2.361vw, 34px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .tab {
    gap: 0 1.067vw;
    margin-bottom: 4.8vw;
  }
}
.main .schedule .tab button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(25vw, 360px);
  height: min(4.861vw, 70px);
  font-size: min(1.667vw, 24px);
  color: #fff;
  border-radius: min(0.347vw, 5px);
  background-color: #94b1c0;
}
@media only screen and (max-width: 767px) {
  .main .schedule .tab button {
    width: 28vw;
    height: 12vw;
    font-size: 3.467vw;
    border-radius: 0.667vw;
  }
}
.main .schedule .tab button.is-active {
  pointer-events: none;
}
.main .schedule .tab button.is-active::after {
  content: "";
  position: absolute;
  bottom: max(-1.042vw, -15px);
  left: 50%;
  transform: translateX(-50%);
  width: min(2.222vw, 32px);
  height: min(1.111vw, 16px);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 767px) {
  .main .schedule .tab button.is-active::after {
    bottom: -2vw;
    width: 4.267vw;
    height: 2.133vw;
  }
}
.main .schedule .tab button.general {
  letter-spacing: 0.18em;
}
.main .schedule .tab button.general.is-active {
  background-color: #107eba;
}
.main .schedule .tab button.general.is-active::after {
  background-color: #107eba;
}
@media only screen and (max-width: 767px) {
  .main .schedule .tab button.university {
    line-height: 1.2;
    text-align: center;
  }
}
.main .schedule .tab button.university.is-active {
  background-color: #eea248;
}
.main .schedule .tab button.university.is-active::after {
  background-color: #eea248;
}
.main .schedule .tab button.scholarship {
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .main .schedule .tab button.scholarship {
    letter-spacing: 0.04em;
  }
}
.main .schedule .tab button.scholarship.is-active {
  background-color: #17ae9a;
}
.main .schedule .tab button.scholarship.is-active::after {
  background-color: #17ae9a;
}
.main .schedule .tab.under button.is-active::after {
  top: -2vw;
  bottom: auto;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.main .schedule .box_wrapper {
  margin-bottom: min(1.667vw, 24px);
}
.main .schedule .box_wrapper .box {
  display: none;
  opacity: 0;
  margin: 0 auto;
  width: min(83.333vw, 1200px);
  padding: min(3.472vw, 50px) 0 min(4.167vw, 60px);
  border-radius: min(1.389vw, 20px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box {
    margin-bottom: 4.8vw;
    width: 93.333vw;
    padding: 5.333vw 2.667vw 10.667vw;
  }
}
.main .schedule .box_wrapper .box.is-show {
  display: block;
  opacity: 1;
}
.main .schedule .box_wrapper .box > .txt {
  margin-bottom: min(1.736vw, 25px);
  font-size: min(1.25vw, 18px);
  text-align: center;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box > .txt {
    margin-bottom: 8vw;
    font-size: 3.467vw;
  }
}
.main .schedule .box_wrapper .box .wrapper {
  margin-bottom: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .wrapper {
    margin-bottom: 8vw;
  }
}
.main .schedule .box_wrapper .box .wrapper.schedule_a .schedule_head {
  background-color: #71c8e7;
}
.main .schedule .box_wrapper .box .wrapper.schedule_a .point_wrapper .point {
  background-color: #71c8e7;
}
.main .schedule .box_wrapper .box .wrapper.schedule_a .point_wrapper strong {
  color: #71c8e7;
}
.main .schedule .box_wrapper .box .wrapper.schedule_b .schedule_head {
  background-color: #99cc67;
}
.main .schedule .box_wrapper .box .wrapper.schedule_b .point_wrapper .point {
  background-color: #99cc67;
}
.main .schedule .box_wrapper .box .wrapper.schedule_b .point_wrapper strong {
  color: #99cc67;
}
.main .schedule .box_wrapper .box .wrapper.schedule_c .schedule_head {
  background-color: #b0b7e2;
}
.main .schedule .box_wrapper .box .wrapper.schedule_c .point_wrapper .point {
  background-color: #b0b7e2;
}
.main .schedule .box_wrapper .box .wrapper.schedule_c .point_wrapper strong {
  color: #b0b7e2;
}
.main .schedule .box_wrapper .box .schedule_head {
  margin: 0 min(3.472vw, 50px) min(1.389vw, 20px);
  padding: min(0.903vw, 13px) 0;
  font-size: min(1.667vw, 24px);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: min(0.556vw, 8px) min(0.556vw, 8px) 0 0;
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .schedule_head {
    margin: 0 1.333vw 3.2vw;
    padding: 2vw 0;
    font-size: 3.733vw;
    border-radius: 1.067vw 1.067vw 0 0;
  }
}
.main .schedule .box_wrapper .box picture {
  display: block;
  margin-bottom: min(0.694vw, 10px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box picture {
    margin-bottom: 2.667vw;
  }
}
.main .schedule .box_wrapper .box picture img {
  width: min(76.389vw, 1100px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box picture img {
    width: 86vw;
  }
}
.main .schedule .box_wrapper .box .point_wrapper {
  display: flex;
  align-items: flex-start;
  gap: min(0.347vw, 5px);
  margin: 0 auto;
  width: min(76.389vw, 1100px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .point_wrapper {
    display: block;
    width: 86vw;
  }
}
.main .schedule .box_wrapper .box .point_wrapper .point {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: min(0.139vw, 2px);
  width: min(5.208vw, 75px);
  height: min(1.528vw, 22px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .point_wrapper .point {
    margin: 0 0 2vw;
    width: 18.133vw;
    height: 5.333vw;
  }
}
.main .schedule .box_wrapper .box .point_wrapper .point img {
  width: min(4.028vw, 58px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .point_wrapper .point img {
    width: 14.4vw;
  }
}
.main .schedule .box_wrapper .box .point_wrapper .txt {
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.main .schedule .box_wrapper .box .link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: min(36.806vw, 530px);
  height: min(6.944vw, 100px);
  font-size: min(1.806vw, 26px);
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0px 7px 0px 0px rgba(67, 67, 67, 0.2);
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .link a {
    width: 82.667vw;
    height: 12vw;
    font-size: 3.733vw;
  }
}
.main .schedule .box_wrapper .box .link a::after {
  position: absolute;
  top: 0;
  right: min(3.472vw, 50px);
  bottom: 0;
  content: "";
  display: block;
  margin: auto 0;
  width: min(1.389vw, 20px);
  height: min(1.389vw, 20px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-blank.svg");
}
@media only screen and (max-width: 767px) {
  .main .schedule .box_wrapper .box .link a::after {
    right: 6.133vw;
    width: 3.867vw;
    height: 3.867vw;
  }
}
.main .schedule .box_wrapper .general .link a {
  background-color: #107eba;
}
.main .schedule .box_wrapper .university .link a {
  background-color: #eea248;
}
.main .schedule .box_wrapper .scholarship .link a {
  background-color: #17ae9a;
}
.main .schedule .note {
  margin-left: min(6.944vw, 100px);
  font-size: min(0.972vw, 14px);
}
@media only screen and (max-width: 767px) {
  .main .schedule .note {
    margin: 0 7.333vw;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 2.667vw;
  }
}
.main .discount {
  margin: 0 auto;
  margin-left: calc(50% - 50vw);
  margin-bottom: min(5.556vw, 80px);
  padding-top: min(4.861vw, 70px);
  padding-bottom: min(5.556vw, 80px);
  padding-left: calc(50vw - min(90.278vw, 1300px) / 2);
  width: calc(50vw + min(90.278vw, 1300px) / 2);
  border-radius: 0 min(4.167vw, 60px) min(4.167vw, 60px) 0;
  background-color: #d5f0ff;
}
@media only screen and (max-width: 767px) {
  .main .discount {
    width: auto;
    margin-bottom: 10.667vw;
    margin-left: 0;
    padding-top: 10.667vw;
    padding-left: 0;
    padding-bottom: 10.667vw;
    border-radius: 0 5.333vw 5.333vw 0;
  }
}
.main .discount .section_inner {
  margin: 0 auto;
  width: min(83.333vw, 1200px);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_inner {
    width: 93.333vw;
  }
}
.main .discount .section_inner > .txt {
  margin-bottom: min(2.778vw, 40px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main .discount .section_inner > .txt {
    margin-bottom: 5.333vw;
    line-height: 1.8;
  }
}
.main .discount .section_title {
  margin-bottom: min(2.083vw, 30px);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_title {
    margin-bottom: 4vw;
  }
}
.main .discount .section_title img {
  width: min(50.035vw, 720.5px);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_title img {
    width: 71.6vw;
  }
}
.main .discount .section_nav {
  display: flex;
  justify-content: center;
  gap: 0 min(0.694vw, 10px);
  margin-bottom: min(1.806vw, 26px);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_nav {
    gap: 0 1.067vw;
    margin-bottom: 5.333vw;
  }
}
.main .discount .section_nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(25vw, 360px);
  height: min(4.444vw, 64px);
  font-size: min(1.667vw, 24px);
  border-width: 2px;
  border-style: solid;
  border-radius: min(0.278vw, 4px);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_nav a {
    padding: 0 0 2.667vw;
    width: 28vw;
    height: 13.333vw;
    font-size: 3.733vw;
    text-align: center;
    border-radius: 0.667vw;
  }
}
.main .discount .section_nav a::after {
  position: absolute;
  right: min(0.833vw, 12px);
  top: min(1.667vw, 24px);
  bottom: 0;
  content: "";
  display: inline-block;
  margin-top: max(-0.278vw, -4px);
  margin-left: min(0.556vw, 8px);
  width: min(1.111vw, 16px);
  height: min(1.111vw, 16px);
  border-right: min(0.208vw, 3px) solid currentColor;
  border-bottom: min(0.208vw, 3px) solid currentColor;
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_nav a::after {
    top: auto;
    right: 0;
    bottom: 1.333vw;
    left: 0;
    margin: -0.533vw auto 0;
    width: 2.133vw;
    height: 2.133vw;
    border-right: 0.533vw solid currentColor;
    border-bottom: 0.533vw solid currentColor;
    transform: rotate(45deg);
  }
}
.main .discount .section_nav a.general {
  color: #107eba;
  border-color: #107eba;
}
.main .discount .section_nav a.university {
  color: #e7922d;
  border-color: #e7922d;
  padding-right: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .main .discount .section_nav a.university {
    padding-right: 0;
    font-size: 3.467vw;
  }
}
.main .discount .section_nav a.scholarship {
  color: #17ae9a;
  border-color: #17ae9a;
}
.main .discount .content > li {
  margin-bottom: min(3.472vw, 50px);
  padding: min(3.472vw, 50px) 0 min(3.472vw, 50px);
  background-color: #fff;
  border-radius: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .main .discount .content > li {
    margin-bottom: 5.333vw;
    padding: 4vw 0 8vw 0;
    border-radius: 2.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .discount .content > li.university {
    padding-bottom: 5.333vw;
  }
  .main .discount .content > li.university .txt {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .main .discount .content > li.scholarship {
    padding-bottom: 1px;
  }
}
.main .discount .content .discount_head {
  margin: 0 min(3.472vw, 50px) min(2.083vw, 30px);
  padding: min(0.903vw, 13px) 0;
  font-size: min(1.667vw, 24px);
  text-align: center;
  color: #fff;
  border-radius: min(0.556vw, 8px) min(0.556vw, 8px) 0 0;
}
@media only screen and (max-width: 767px) {
  .main .discount .content .discount_head {
    margin: 0 4vw 2.667vw;
    padding: 2vw 0;
    font-size: 3.733vw;
    border-radius: 1.067vw 1.067vw 0 0;
  }
}
.main .discount .content picture {
  display: block;
  margin-bottom: min(1.389vw, 20px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main .discount .content picture {
    margin-bottom: 4vw;
  }
}
.main .discount .content picture img {
  width: min(76.424vw, 1100.5px);
}
@media only screen and (max-width: 767px) {
  .main .discount .content picture img {
    width: 85.6vw;
  }
}
.main .discount .content .txt {
  margin: 0 min(5.139vw, 74px) min(1.389vw, 20px);
  font-size: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .main .discount .content .txt {
    margin: 0 4vw 2.667vw;
    font-size: 3.2vw;
  }
}
.main .discount .content .note {
  margin: 0 min(3.472vw, 50px);
  font-size: min(0.972vw, 14px);
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .main .discount .content .note {
    margin-bottom: 6.667vw;
    font-size: 2.667vw;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767px) {
  .main .discount .content .note.ind2 {
    padding-left: 2em;
    text-indent: -2em;
  }
}
.main .discount .content .btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: min(41.667vw, 600px);
  height: min(5.556vw, 80px);
  font-size: min(1.806vw, 26px);
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0px 7px 0px 0px rgba(67, 67, 67, 0.15);
  background: right min(2.639vw, 38px) center/min(1.806vw, 26px) auto no-repeat url("/chance_2027/assets/img/icon-plus-w.svg");
  background-color: #107eba;
}
@media only screen and (max-width: 767px) {
  .main .discount .content .btn button {
    width: 82.667vw;
    height: 12vw;
    font-size: 3.733vw;
    background-position: right 5.333vw center;
    background-size: 3.467vw;
  }
}
.main .discount .content .btn button.is-open {
  color: #00578a;
  border: 2px solid #00578a;
  background: right min(2.639vw, 38px) center/min(1.806vw, 26px) auto no-repeat url("/chance_2027/assets/img/icon-minus-n.svg");
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .discount .content .btn button.is-open {
    background-position: right 5.333vw center;
    background-size: 3.467vw;
  }
}
.main .discount .content .general .toggle_wrapper {
  height: 0;
  overflow: hidden;
}
.main .discount .content .general .discount_head {
  background-color: #107eba;
}
.main .discount .content .general .note {
  margin-bottom: min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  .main .discount .content .general .note {
    margin-bottom: 6.667vw;
  }
}
.main .discount .content .university .discount_head {
  background-color: #eea248;
}
.main .discount .content .university .txt {
  margin-bottom: min(0.347vw, 5px);
}
@media only screen and (max-width: 767px) {
  .main .discount .content .university .txt {
    margin-bottom: 0.667vw;
  }
}
.main .discount .content .university picture {
  margin-bottom: 0;
}
.main .discount .content .scholarship {
  padding-bottom: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .discount .content .scholarship {
    padding-bottom: 5.333vw;
  }
}
.main .discount .content .scholarship .discount_head {
  background-color: #17ae9a;
}
.main .discount .links {
  display: flex;
  justify-content: center;
  gap: 0 min(2.778vw, 40px);
  padding-top: 2.667vw;
}
@media only screen and (max-width: 767px) {
  .main .discount .links {
    flex-direction: column;
    align-items: center;
    gap: 5.333vw 0;
  }
}
.main .discount .links a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(36.806vw, 530px);
  height: min(6.944vw, 100px);
  font-size: min(1.806vw, 26px);
  font-weight: 600;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0px 7px 0px 0px rgba(67, 67, 67, 0.2);
  background-image: linear-gradient(0deg, rgb(13, 119, 180) 0%, rgb(21, 147, 212) 100%);
}
@media only screen and (max-width: 767px) {
  .main .discount .links a {
    width: 82.667vw;
    height: 12vw;
    font-size: 3.733vw;
  }
  .main .discount .links a:not(:last-child) {
    margin-bottom: min(1.389vw, 20px);
  }
}
.main .discount .links a::after {
  position: absolute;
  top: 0;
  right: min(3.472vw, 50px);
  bottom: 0;
  content: "";
  display: block;
  margin: auto 0;
  width: min(1.389vw, 20px);
  height: min(1.389vw, 20px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-blank.svg");
}
@media only screen and (max-width: 767px) {
  .main .discount .links a::after {
    right: 6.133vw;
    width: 3.867vw;
    height: 3.867vw;
  }
}
.main .pastpapers {
  margin: 0 auto;
  padding: min(5.833vw, 84px);
  width: 100%;
  height: min(35.972vw, 518px);
  background: left bottom/100% auto no-repeat url("/chance_2027/assets/img/pc/pastpapers-bg.jpg");
  border-radius: min(4.167vw, 60px) 0 min(4.167vw, 60px) 0;
}
@media only screen and (max-width: 767px) {
  .main .pastpapers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: auto;
    height: 78.533vw;
    background-image: url("/chance_2027/assets/img/sp/pastpapers-bg.jpg");
    border-radius: 8vw 0 8vw 0;
  }
}
.main .pastpapers .title {
  margin-bottom: min(1.389vw, 20px);
  font-size: min(4.028vw, 58px);
  letter-spacing: 0.18em;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .title {
    margin-bottom: 4vw;
    font-size: 6.4vw;
  }
}
.main .pastpapers .txt {
  margin: 0 auto min(1.389vw, 20px);
  width: min(68.056vw, 980px);
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .txt {
    margin-bottom: 4vw;
    width: auto;
    line-height: 1.8;
  }
}
.main .pastpapers .link {
  margin-bottom: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .link {
    margin-bottom: 3.733vw;
  }
}
.main .pastpapers .link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: min(36.806vw, 530px);
  height: min(6.944vw, 100px);
  font-size: min(1.806vw, 26px);
  font-weight: bold;
  color: #005a8f;
  border-radius: 9999px;
  background-color: #fff;
  box-shadow: 0px 7px 0px 0px rgba(67, 67, 67, 0.2);
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .link a {
    width: 82.667vw;
    height: 13.333vw;
    font-size: 3.733vw;
  }
}
.main .pastpapers .link a::after {
  position: absolute;
  top: 0;
  right: min(3.472vw, 50px);
  bottom: 0;
  content: "";
  display: block;
  margin: auto 0;
  width: min(1.389vw, 20px);
  height: min(1.389vw, 20px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-blank-blue.svg");
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .link a::after {
    right: 6.133vw;
    width: 3.867vw;
    height: 3.867vw;
  }
}
.main .pastpapers .archive_link {
  display: flex;
  justify-content: center;
}
.main .pastpapers .archive_link a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: min(1.25vw, 18px);
  margin-right: max(-3.264vw, -47px);
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .archive_link a {
    align-items: center;
    margin-right: max(-4.861vw, -70px);
  }
}
.main .pastpapers .archive_link a::after {
  display: block;
  content: "";
  width: min(3.264vw, 47px);
  height: min(3.264vw, 47px);
  border-radius: 9999px;
  background: center center/min(1.389vw, 20px) auto no-repeat url("/chance_2027/assets/img/icon-blank-blue.svg");
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .archive_link a::after {
    width: 9.333vw;
    height: 9.333vw;
    background-size: 3.867vw auto;
  }
}
.main .pastpapers .archive_link a span {
  position: relative;
  display: block;
  padding-bottom: min(0.833vw, 12px);
  font-size: min(1.806vw, 26px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .archive_link a span {
    font-size: 3.733vw;
  }
}
.main .pastpapers .archive_link a span::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .pastpapers .archive_link a span::after {
    bottom: -0.8vw;
    height: 1px;
  }
}
.main .interview {
  padding: min(5.556vw, 80px) 0;
}
@media only screen and (max-width: 767px) {
  .main .interview {
    padding: 10.667vw;
  }
}
.main .interview {
  background-image: linear-gradient(to top, #d7f2ff min(19.444vw, 280px), transparent min(19.444vw, 280px));
}
@media only screen and (max-width: 767px) {
  .main .interview {
    background-image: linear-gradient(to top, #d7f2ff 49.333vw, transparent 49.333vw);
  }
}
.main .interview .section_title {
  margin-bottom: min(2.778vw, 40px);
}
@media only screen and (max-width: 767px) {
  .main .interview .section_title {
    margin-bottom: 5.333vw;
  }
}
.main .interview .section_title img {
  width: min(52.396vw, 754.5px);
}
@media only screen and (max-width: 767px) {
  .main .interview .section_title img {
    width: 75.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide {
    padding-bottom: 5.333vw;
  }
  .main .interview .interview_splide .splide__arrow {
    top: min(11.806vw, 170px);
    width: min(1.806vw, 26px);
    height: min(3.958vw, 57px);
    background: center center/100% auto no-repeat url("/chance_2027/assets/img/icon-slide_arrow.svg");
    opacity: 1;
  }
  .main .interview .interview_splide {
    /* 通常のドットのスタイル */
    /* ホバーした時 */
    /* 現在表示中のアクティブなドット */
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .interview .interview_splide .splide__arrow {
    top: 23.6vw;
    width: 4.933vw;
    height: 11.2vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide .splide__arrow svg {
    display: none;
  }
  .main .interview .interview_splide .splide__arrow--prev {
    left: max(-3.819vw, -55px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .interview .interview_splide .splide__arrow--prev {
    left: -6.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide .splide__arrow--next {
    right: max(-3.819vw, -55px);
    scale: -1 1;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .interview .interview_splide .splide__arrow--next {
    right: -6.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination {
    position: absolute;
    bottom: max(-2.083vw, -30px);
    padding: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination li {
    margin: 0 min(0.208vw, 3px);
    width: min(2.083vw, 30px);
    height: min(0.278vw, 4px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination li {
    margin: 0 0.667vw;
    width: 8vw;
    height: 1.067vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination__page {
    width: min(2.083vw, 30px);
    height: min(0.278vw, 4px);
    background: #fff;
    /* 通常時の色 */
    border: 1px solid #015990;
    border-radius: 50%;
    margin: 0 min(0.417vw, 6px);
    /* ドット同士の間隔 */
    transition: all 0.3s;
    border-radius: 9999px;
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination__page {
    display: block;
    width: 8vw;
    height: 1.067vw;
    margin: 0 0.533vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .interview_splide .splide__pagination__page:hover {
    background: #015990;
  }
  .main .interview .interview_splide .splide__pagination__page.is-active {
    background: #015990;
    transform: scale(1);
  }
}
@media print, screen and (min-width: 768px) {
  .main .interview .students {
    display: flex;
    justify-content: center;
    gap: 0 min(1.389vw, 20px);
  }
}
@media print, screen and (min-width: 768px) {
  .main .interview .students li {
    position: relative;
    width: min(22.431vw, 323px);
    background: center top min(2.778vw, 40px)/min(21.042vw, 303px) auto no-repeat url("/chance_2027/assets/img/pc/interview_bg.png");
  }
}
@media only screen and (max-width: 767px) {
  .main .interview .students li .wrapper {
    position: relative;
    margin: 0 auto;
    width: 63.467vw;
    background: center top 7.333vw/54vw auto no-repeat url("/chance_2027/assets/img/sp/interview_bg.png");
  }
}
.main .interview .students picture {
  display: block;
  width: 100%;
  height: min(22.778vw, 328px);
  text-align: center;
  overflow: hidden;
}
.main .interview .students .comment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(0.347vw, 5px);
  margin: max(-4.444vw, -64px) 0 min(1.042vw, 15px);
  font-size: min(1.528vw, 22px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  .main .interview .students .comment {
    gap: 1.333vw;
    margin: -11.2vw 0 2vw;
    font-size: 4.267vw;
    letter-spacing: 0.04em;
  }
}
.main .interview .students .comment span {
  display: block;
  padding: min(0.486vw, 7px);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  background-blend-mode: overlay;
}
@media only screen and (max-width: 767px) {
  .main .interview .students .comment span {
    padding: 0.933vw 1.333vw;
  }
}
.main .interview .students .info {
  font-size: min(1.111vw, 16px);
  line-height: 1.4;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .main .interview .students .info {
    font-size: 3.467vw;
  }
}
.main .interview .students .more {
  position: absolute;
  right: min(0.347vw, 5px);
  bottom: 0;
  width: min(2.917vw, 42px);
  height: min(2.917vw, 42px);
}
@media only screen and (max-width: 767px) {
  .main .interview .students .more {
    width: 9.733vw;
    height: 10vw;
  }
}
.main .interview .students .more img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .main .interview .students .general picture {
    height: 58.533vw;
  }
}
.main .interview .students .general picture img {
  width: min(17.431vw, 251px);
}
@media only screen and (max-width: 767px) {
  .main .interview .students .general picture img {
    width: 40vw;
  }
}
.main .interview .students .general .comment span {
  background-color: #107ebb;
}
.main .interview .students .general .info {
  color: #107ebb;
}
@media only screen and (max-width: 767px) {
  .main .interview .students .university picture {
    height: 55.467vw;
  }
}
.main .interview .students .university picture img {
  width: min(14.722vw, 212px);
}
@media only screen and (max-width: 767px) {
  .main .interview .students .university picture img {
    width: 34.8vw;
  }
}
.main .interview .students .university .comment span {
  display: block;
  background-color: #eea248;
}
.main .interview .students .university .info {
  color: #eea248;
}
@media only screen and (max-width: 767px) {
  .main .interview .students .scholarship picture {
    height: 57.467vw;
  }
}
.main .interview .students .scholarship picture img {
  width: min(14.375vw, 207px);
}
@media only screen and (max-width: 767px) {
  .main .interview .students .scholarship picture img {
    width: 34.933vw;
  }
}
.main .interview .students .scholarship .comment span {
  display: block;
  background-color: #17ae9a;
}
.main .interview .students .scholarship .info {
  color: #17ae9a;
}
.main .interview dialog .inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: center center/cover no-repeat url("/chance_2027/assets/img/pc/interview_modal-bg-01.jpg");
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .inner {
    padding: 10.667vw 0;
    overflow-y: scroll;
  }
}
.main .interview dialog .dialog_wrapper {
  position: relative;
  margin: auto;
  padding: min(4.167vw, 60px) min(4.861vw, 70px) min(2.083vw, 30px);
  width: min(76.389vw, 1100px);
  border-radius: min(1.389vw, 20px);
  background: left min(3.264vw, 47px) top max(-0.694vw, -10px)/min(52.396vw, 754.5px) auto no-repeat url("/chance_2027/assets/img/pc/interview_modal_inner-bg-01.png");
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .dialog_wrapper {
    padding: 6.667vw 0vw 8vw;
    width: 78.667vw;
    border-radius: 2.667vw;
    background: left top 4vw/11.6vw auto no-repeat url("/chance_2027/assets/img/sp/interview_modal_inner-bg-01.png");
    background-color: #fff;
  }
}
.main .interview dialog .visual_wrapper {
  display: flex;
  justify-content: center;
  gap: 0 min(0.972vw, 14px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .visual_wrapper {
    display: block;
    margin: 0 auto 5.333vw;
    width: 63.467vw;
  }
}
.main .interview dialog .visual_wrapper picture {
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .visual_wrapper picture {
    margin: 0 auto;
  }
}
.main .interview dialog .visual_wrapper picture img {
  width: 100%;
}
.main .interview dialog .visual_wrapper .dialog_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(1.181vw, 17px);
  margin-top: min(7.639vw, 110px);
  margin-bottom: min(1.389vw, 20px);
  font-size: min(2.361vw, 34px);
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .visual_wrapper .dialog_head {
    gap: 1.333vw;
    margin-top: -2.267vw;
    margin-bottom: 2.133vw;
    font-size: 4.267vw;
    letter-spacing: 0;
  }
}
.main .interview dialog .visual_wrapper .dialog_head span {
  display: block;
  padding: min(0.486vw, 7px);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  background-blend-mode: overlay;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .visual_wrapper .dialog_head span {
    padding: 0.933vw 2.667vw;
  }
}
.main .interview dialog .visual_wrapper .info {
  margin-left: min(0.694vw, 10px);
  font-size: min(1.25vw, 18px);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .visual_wrapper .info {
    margin-left: 1.333vw;
    font-size: 3.733vw;
  }
}
.main .interview dialog .content_wrapper {
  margin-bottom: min(2.083vw, 30px);
  padding: min(2.083vw, 30px);
  border-radius: min(1.389vw, 20px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .content_wrapper {
    margin: 0 2.667vw 4vw;
    padding: 5.333vw 4vw 8vw;
  }
}
.main .interview dialog .content_wrapper .content_head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: min(0.694vw, 10px);
  font-size: min(1.528vw, 22px);
  letter-spacing: 0.09em;
  font-weight: bold;
  color: #00578a;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .content_wrapper .content_head {
    margin-bottom: 4vw;
    font-size: 4vw;
  }
}
.main .interview dialog .content_wrapper .content_head .small {
  font-size: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .content_wrapper .content_head .small {
    font-size: 3.467vw;
  }
}
.main .interview dialog .content_wrapper .content_head .voice {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(2.986vw, 43px);
  height: min(2.431vw, 35px);
  color: #fff;
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-balloon-b.png");
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .content_wrapper .content_head .voice {
    width: 7.467vw;
    height: 6.133vw;
  }
}
.main .interview dialog .content_wrapper .content {
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .content_wrapper .content {
    font-size: 3.733vw;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
}
.main .interview dialog .content_wrapper .content strong {
  color: #00578a;
  background: linear-gradient(transparent 80%, rgb(255, 222, 0) 0);
}
.main .interview dialog form {
  font-weight: bold;
  color: #00578a;
  text-align: center;
}
.main .interview dialog form .icon-close-modal {
  position: absolute;
  top: min(2.083vw, 30px);
  right: min(2.431vw, 35px);
  font-size: min(2.083vw, 30px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog form .icon-close-modal {
    font-size: 6.667vw;
  }
}
.main .interview dialog form .close-modal {
  font-size: min(1.528vw, 22px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog form .close-modal {
    font-size: 4.267vw;
  }
}
.main .interview dialog .pagenation .prev,
.main .interview dialog .pagenation .next {
  position: absolute;
  top: min(23.75vw, 342px);
  width: min(1.806vw, 26px);
  height: min(3.958vw, 57px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-dialog_arrow.svg");
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .pagenation .prev,
  .main .interview dialog .pagenation .next {
    top: 103.2vw;
    width: 4.933vw;
    height: 11.2vw;
  }
}
.main .interview dialog .pagenation .prev {
  left: max(-3.472vw, -50px);
  scale: -1 1;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .pagenation .prev {
    left: -7.467vw;
  }
}
.main .interview dialog .pagenation .next {
  right: max(-3.472vw, -50px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog .pagenation .next {
    right: -7.467vw;
  }
}
.main .interview dialog.student01 .visual_wrapper picture {
  width: min(21.597vw, 311px);
  height: min(23.75vw, 342px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student01 .visual_wrapper picture {
    width: 41.467vw;
    height: 54.133vw;
  }
}
.main .interview dialog.student01 .dialog_head span {
  background-color: #107ebb;
}
.main .interview dialog.student01 .info {
  color: #107eba;
}
.main .interview dialog.student01 .content_wrapper {
  background-color: #e9ffff;
}
.main .interview dialog.student01 .content_wrapper .content_head .light {
  color: #107eba;
}
.main .interview dialog.student02 .inner {
  background-image: url("/chance_2027/assets/img/pc/interview_modal-bg-02.jpg");
}
.main .interview dialog.student02 .dialog_wrapper {
  background-image: url("/chance_2027/assets/img/pc/interview_modal_inner-bg-02.png");
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student02 .dialog_wrapper {
    background-image: url("/chance_2027/assets/img/sp/interview_modal_inner-bg-02.png");
  }
}
.main .interview dialog.student02 .visual_wrapper picture {
  width: min(17.778vw, 256px);
  height: min(23.264vw, 335px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student02 .visual_wrapper picture {
    width: 34.8vw;
    height: 55.467vw;
  }
}
.main .interview dialog.student02 .dialog_head span {
  background-color: #eea248;
}
.main .interview dialog.student02 .info {
  color: #eea248;
}
.main .interview dialog.student02 .content_wrapper {
  background-color: #e9ffff;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student02 .content_wrapper .content_head {
    display: block;
    text-align: center;
    line-height: 1.5;
  }
}
.main .interview dialog.student02 .content_wrapper .content_head .light {
  color: #eea248;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student02 .content_wrapper .content_head .voice {
    display: inline-block;
  }
}
.main .interview dialog.student02 .content_wrapper .content_head .voice {
  background-image: url("/chance_2027/assets/img/icon-balloon-o.png");
}
.main .interview dialog.student03 .inner {
  background-image: url("/chance_2027/assets/img/pc/interview_modal-bg-03.jpg");
}
.main .interview dialog.student03 .dialog_wrapper {
  background-image: url("/chance_2027/assets/img/pc/interview_modal_inner-bg-03.png");
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student03 .dialog_wrapper {
    background-image: url("/chance_2027/assets/img/sp/interview_modal_inner-bg-03.png");
  }
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student03 .visual_wrapper {
    margin-right: 10.667vw;
    margin-left: 10.667vw;
  }
}
.main .interview dialog.student03 .visual_wrapper picture {
  width: min(17.778vw, 256px);
  height: min(23.264vw, 335px);
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student03 .visual_wrapper picture {
    width: 34.933vw;
    height: 57.467vw;
  }
}
.main .interview dialog.student03 .dialog_head span {
  background-color: #17ae9a;
}
.main .interview dialog.student03 .info {
  color: #17ae9a;
}
.main .interview dialog.student03 .content_wrapper {
  background-color: #e9ffff;
}
@media only screen and (max-width: 767px) {
  .main .interview dialog.student03 .content_wrapper .content_head {
    letter-spacing: 0.05em;
  }
}
.main .interview dialog.student03 .content_wrapper .content_head .light {
  color: #17ae9a;
}
.main .interview dialog.student03 .content_wrapper .content_head .voice {
  background-image: url("/chance_2027/assets/img/icon-balloon-g.png");
}
.main .appeal {
  padding: min(4.167vw, 60px) 0 min(8.333vw, 120px);
}
@media only screen and (max-width: 767px) {
  .main .appeal {
    padding: 10.667vw 0 13.333vw;
  }
}
.main .appeal .section_title {
  margin-bottom: min(3.472vw, 50px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .section_title {
    margin-bottom: 8vw;
  }
}
.main .appeal .section_title img {
  width: min(39.722vw, 572px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .section_title img {
    width: 56vw;
  }
}
.main .appeal .appeal_splide {
  margin: 0 auto;
  width: min(68.056vw, 980px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide {
    width: 78.667vw;
  }
}
.main .appeal .appeal_splide .splide__arrow {
  top: min(11.806vw, 170px);
  width: min(1.806vw, 26px);
  height: min(3.958vw, 57px);
  background: center center/100% auto no-repeat url("/chance_2027/assets/img/icon-slide_arrow.svg");
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide .splide__arrow {
    top: 23.6vw;
    width: 4.933vw;
    height: 11.2vw;
  }
}
.main .appeal .appeal_splide .splide__arrow svg {
  display: none;
}
.main .appeal .appeal_splide .splide__arrow--prev {
  left: max(-3.819vw, -55px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide .splide__arrow--prev {
    left: -6.4vw;
  }
}
.main .appeal .appeal_splide .splide__arrow--next {
  right: max(-3.819vw, -55px);
  scale: -1 1;
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide .splide__arrow--next {
    right: -6.4vw;
  }
}
.main .appeal .appeal_splide .splide__pagination {
  position: absolute;
  bottom: max(-2.083vw, -30px);
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide .splide__pagination {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -6.133vw;
  }
}
.main .appeal .appeal_splide .splide__pagination li {
  margin: 0 min(0.208vw, 3px);
  width: min(2.083vw, 30px);
  height: min(0.278vw, 4px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide .splide__pagination li {
    margin: 0 0.667vw;
    width: 8vw;
    height: 1.067vw;
  }
}
.main .appeal .appeal_splide {
  /* 通常のドットのスタイル */
}
.main .appeal .appeal_splide .splide__pagination__page {
  width: min(2.083vw, 30px);
  height: min(0.278vw, 4px);
  background: #fff;
  /* 通常時の色 */
  border: 1px solid #015990;
  border-radius: 50%;
  margin: 0 min(0.417vw, 6px);
  /* ドット同士の間隔 */
  transition: all 0.3s;
  border-radius: 9999px;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .main .appeal .appeal_splide .splide__pagination__page {
    display: block;
    width: 8vw;
    height: 1.067vw;
    margin: 0 0.533vw;
  }
}
.main .appeal .appeal_splide {
  /* ホバーした時 */
}
.main .appeal .appeal_splide .splide__pagination__page:hover {
  background: #015990;
}
.main .appeal .appeal_splide {
  /* 現在表示中のアクティブなドット */
}
.main .appeal .appeal_splide .splide__pagination__page.is-active {
  background: #015990;
  transform: scale(1);
}
.main .appeal .slide_container .slide {
  display: flex;
  align-items: center;
  gap: 0 min(1.597vw, 23px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .slide {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .img {
    margin-bottom: 4vw;
  }
}
.main .appeal .slide_container img {
  width: min(38.507vw, 554.5px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container img {
    width: 100%;
  }
}
.main .appeal .slide_container .box {
  flex: 1;
}
.main .appeal .slide_container .box .slide_head {
  margin-bottom: min(0.694vw, 10px);
  font-size: min(2.083vw, 30px);
  font-weight: bold;
  line-height: 1.3;
  color: #005a8f;
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .slide_head {
    margin-bottom: 1.333vw;
    font-size: 4.8vw;
    text-align: center;
  }
}
.main .appeal .slide_container .box .txt {
  margin-bottom: min(1.389vw, 20px);
  line-height: 1.75;
}
.main .appeal .slide_container .box .link {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .link {
    justify-content: center;
  }
}
.main .appeal .slide_container .box .link a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .link a {
    font-size: 3.733vw;
    gap: 2.667vw;
  }
}
.main .appeal .slide_container .box .link a::after {
  display: block;
  content: "";
  width: min(2.917vw, 42px);
  height: min(2.917vw, 42px);
  border-radius: 9999px;
  background: center center/min(1.389vw, 20px) auto no-repeat url("/chance_2027/assets/img/icon-blank.svg");
  background-color: #015990;
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .link a::after {
    width: 9.333vw;
    height: 9.333vw;
    background-size: 3.867vw auto;
  }
}
.main .appeal .slide_container .box .link span:not(.small) {
  position: relative;
  display: block;
  padding-bottom: min(0.833vw, 12px);
  font-weight: bold;
  color: #015990;
}
.main .appeal .slide_container .box .link span:not(.small)::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #015990;
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .link span:not(.small)::after {
    bottom: -0.667vw;
    height: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .link .sp-flex {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
}
.main .appeal .slide_container .box .link .small {
  font-size: min(0.972vw, 14px);
}
@media only screen and (max-width: 767px) {
  .main .appeal .slide_container .box .link .small {
    font-size: 2.667vw;
  }
}
.main .course {
  background-color: #d2ecff;
}
.main .course .title button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 min(4.167vw, 60px);
  width: 100%;
  height: min(10.417vw, 150px);
  font-size: min(2.361vw, 34px);
  color: #fff;
  background-image: linear-gradient(90deg, rgb(21, 147, 212) 0%, rgb(13, 119, 180) 100%);
}
@media only screen and (max-width: 767px) {
  .main .course .title button {
    position: relative;
    height: 24vw;
    font-size: 5.333vw;
    text-align: center;
    line-height: 1.35;
  }
}
.main .course .title button::after {
  display: block;
  content: "";
  width: min(2.778vw, 40px);
  height: min(2.778vw, 40px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-plus.svg");
}
@media only screen and (max-width: 767px) {
  .main .course .title button::after {
    position: absolute;
    top: 0;
    right: 5.333vw;
    bottom: 0;
    margin: auto 0;
    width: 6.667vw;
    height: 6.667vw;
  }
}
.main .course .title button.is-open::after {
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-minus.svg");
}
.main .course .toggle_wrapper {
  height: 0;
  overflow: hidden;
}
.main .course .c-row {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.694vw, 10px);
  margin: 0 auto;
  padding: min(4.167vw, 60px) 0;
  width: min(75vw, 1080px);
}
@media only screen and (max-width: 767px) {
  .main .course .c-row {
    gap: 2.667vw;
    padding: 8vw 0;
    width: 89.333vw;
  }
}
.main .course .c-row > .c-row__item {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .main .course .c-row > .c-row__item--3-pc {
    width: calc((100% - min(2.083vw, 30px)) / 4);
  }
}
@media only screen and (max-width: 767px) {
  .main .course .c-row > .c-row__item--6-sp {
    width: 43.2vw;
  }
}
.main .course .c-card-course {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  height: 100%;
  padding: min(1.389vw, 20px) min(3.125vw, 45px) min(1.389vw, 20px) min(1.389vw, 20px);
  background: url("/chance_2027/assets/img/icon-blank-blue.svg") no-repeat right 1em center/1em, #fff;
  box-shadow: 2.828px 2.828px 0px 0px rgba(2, 79, 151, 0.15);
  border-radius: min(0.556vw, 8px);
  line-height: 1.25;
}
@media only screen and (max-width: 767px) {
  .main .course .c-card-course {
    padding: 2.667vw 6vw 2.667vw 2.667vw;
    border-radius: 0.533vw;
    background-size: 2.933vw auto;
  }
}
.main .course .c-card-course__sub {
  width: 100%;
  margin-bottom: min(0.278vw, 4px);
  font-size: min(0.903vw, 13px);
}
.main .course .c-card-course__sub--kokubun {
  color: #f19e0c;
}
.main .course .c-card-course__sub--syakai {
  color: #bb93ae;
}
.main .course .c-card-course__sub--ningen {
  color: #a8c100;
}
.main .course .c-card-course__sub--keizai {
  color: #a46d5a;
}
.main .course .c-card-course__sub--keiei {
  color: #588ab1;
}
.main .course .c-card-course__sub--hougaku {
  color: #6aafa7;
}
.main .course .c-card-course__sub--rikou {
  color: #9e9d54;
}
.main .course .c-card-course__sub--kenkan {
  color: #7f8d84;
}
.main .course .c-card-course__sub--kyouiku {
  color: #4baad8;
}
.main .course .c-card-course__sub--eiyou {
  color: #e3604c;
}
.main .course .c-card-course__sub--kango {
  color: #eea699;
}
.main .course .c-card-course__sub--jouhou {
  color: #5f67ae;
}
.main .course .forSP {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .main .course.is-active {
    padding-top: min(1.389vw, 20px);
    padding-bottom: min(1.389vw, 20px);
  }
  .main .course .c-inner {
    padding: 0 min(1.389vw, 20px);
  }
  .main .course .c-card-course {
    min-height: min(4.167vw, 60px);
    border-radius: min(0.139vw, 2px);
    padding: min(0.278vw, 4px) min(1.667vw, 24px) min(0.278vw, 4px) min(0.694vw, 10px);
    background-size: 3.2vw 3.2vw;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .course .c-card-course {
    padding: 0 5.6vw 0 2.667vw;
    height: 16vw;
    border-radius: 1.067vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .course .c-card-course__sub {
    margin-bottom: min(0.139vw, 2px);
    font-size: min(0.694vw, 10px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .course .c-card-course__sub {
    font-size: 2.667vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .course .c-card-course__main {
    font-size: min(0.833vw, 12px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .main .course .c-card-course__main {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 767px) {
  .main .course .forSP {
    display: block !important;
  }
}
.main .opencampus {
  padding: min(5.556vw, 80px) 0 min(11.111vw, 160px);
  background: center bottom/100% auto no-repeat url("/chance_2027/assets/img/pc/opencampus_bg.jpg"), #9cdefa;
}
@media only screen and (max-width: 767px) {
  .main .opencampus {
    background: center bottom/100% auto no-repeat url("/chance_2027/assets/img/sp/opencampus_bg.jpg"), #9cdefa;
  }
}
@media only screen and (max-width: 767px) {
  .main .opencampus {
    padding: 10.667vw 0 20vw;
  }
}
.main .opencampus .section_title {
  margin-bottom: min(3.819vw, 55px);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .section_title {
    margin-bottom: 8vw;
  }
}
.main .opencampus .section_title img {
  width: min(79.132vw, 1139.5px);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .section_title img {
    width: 92vw;
  }
}
.main .opencampus .content_wrapper {
  margin: 0 auto min(4.167vw, 60px);
  padding: min(3.472vw, 50px) min(3.125vw, 45px);
  width: min(83.333vw, 1200px);
  border-radius: min(1.389vw, 20px);
  box-shadow: 7.713px 9.193px 0px 0px rgba(2, 79, 151, 0.12);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper {
    margin-bottom: 8vw;
    padding: 6.667vw 2vw 6.667vw 3.333vw;
    width: 93.333vw;
  }
}
.main .opencampus .content_wrapper .box {
  display: flex;
  gap: 0 min(2.083vw, 30px);
}
.main .opencampus .content_wrapper .box.box2 {
  margin-top: min(0.833vw, 12px);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper .box.box2 {
    margin-top: 4vw;
  }
}
.main .opencampus .content_wrapper picture img {
  width: min(26.389vw, 380px);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper picture img {
    width: 31.333vw;
  }
}
.main .opencampus .content_wrapper .content {
  flex: 1;
}
.main .opencampus .content_wrapper .head {
  margin-bottom: min(0.694vw, 10px);
  font-size: min(1.806vw, 26px);
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper .head {
    margin-bottom: 2.667vw;
    font-size: 4vw;
  }
}
.main .opencampus .content_wrapper .lists li {
  display: flex;
  align-items: center;
  gap: 0 min(0.694vw, 10px);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper .lists li {
    display: block;
  }
}
.main .opencampus .content_wrapper .lists li:not(first-child) {
  margin-bottom: min(0.347vw, 5px);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper .lists li:not(first-child) {
    margin-bottom: 1.333vw;
  }
}
.main .opencampus .content_wrapper .lists li .txt {
  flex: 1;
  line-height: 1.5;
}
.main .opencampus .content_wrapper .label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(4.514vw, 65px);
  height: min(3.611vw, 52px);
  text-align: center;
  color: #fff100;
  border-radius: min(0.278vw, 4px);
  background-color: #1fa46b;
}
@media only screen and (max-width: 767px) {
  .main .opencampus .content_wrapper .label {
    display: inline-block;
    margin-bottom: 1.333vw;
    padding: 0.667vw 1.6vw;
    width: auto;
    height: auto;
    font-size: 3.2vw;
    border-radius: 0.533vw;
  }
}
.main .opencampus .content_wrapper .box1 .content {
  border-bottom: 2px solid #dedede;
}
.main .opencampus .content_wrapper .box1 .head {
  color: #1fa46b;
}
.main .opencampus .content_wrapper .box2 {
  align-items: center;
}
.main .opencampus .content_wrapper .box2 .txt {
  line-height: 1.5;
}
.main .opencampus .content_wrapper .box2 .head {
  color: #00a0e9;
}
.main .opencampus .link {
  display: flex;
  justify-content: center;
  gap: 0 min(2.778vw, 40px);
}
.main .opencampus .link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 530px;
  height: 100px;
  font-size: min(1.806vw, 26px);
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0px 7px 0px 0px rgba(67, 67, 67, 0.2);
  background-image: linear-gradient(0deg, rgb(13, 119, 180) 0%, rgb(21, 147, 212) 100%);
}
@media only screen and (max-width: 767px) {
  .main .opencampus .link a {
    width: 82.667vw;
    height: 12vw;
    font-size: 3.733vw;
  }
  .main .opencampus .link a:not(:last-child) {
    margin-bottom: min(1.389vw, 20px);
  }
}
.main .opencampus .link a::after {
  position: absolute;
  top: 0;
  right: min(3.472vw, 50px);
  bottom: 0;
  content: "";
  display: block;
  margin: auto 0;
  width: min(1.389vw, 20px);
  height: min(1.389vw, 20px);
  background: left top/100% auto no-repeat url("/chance_2027/assets/img/icon-blank.svg");
}
@media only screen and (max-width: 767px) {
  .main .opencampus .link a::after {
    right: 6.133vw;
    width: 3.867vw;
    height: 3.867vw;
  }
}

.footer {
  margin-top: max(-9.375vw, -135px);
  border-radius: min(4.167vw, 60px) min(4.167vw, 60px) 0 0;
  background-image: linear-gradient(0deg, rgb(13, 119, 180) 0%, rgb(21, 147, 212) 100%);
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-top: -17.333vw;
  }
}
.footer .flex {
  display: flex;
}
.footer .l-footer {
  position: relative;
  z-index: 3;
}
.footer .l-footer a {
  color: #fff;
  cursor: pointer;
}
.footer .l-footer__primary {
  position: relative;
  padding-top: min(4.861vw, 70px);
  padding-bottom: min(7.639vw, 110px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__primary {
    padding-top: 9.333vw;
    padding-bottom: 8vw;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .l-footer__contain {
    display: flex;
    align-items: flex-start;
    max-width: min(69.444vw, 1000px);
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .l-footer__contain-primary {
  text-align: center;
}
.footer .l-footer__contain-primary .c-tel-box {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
  padding: min(1.042vw, 15px) min(2.222vw, 32px);
  border-radius: min(0.278vw, 4px);
  font-size: min(1.042vw, 15px);
  text-align: center;
  line-height: 1.25;
  border: 2px solid #fff;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain-primary .c-tel-box {
    display: inline-block;
    padding: 4vw 6.667vw;
    border-radius: 0.533vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain-primary .c-tel-box {
    color: #008fcb;
    background-color: #fff;
  }
}
.footer .l-footer__contain-primary .c-tel-box__txt {
  font-size: min(0.903vw, 13px);
  margin-bottom: min(1.042vw, 15px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain-primary .c-tel-box__txt {
    font-size: 2.933vw;
  }
}
.footer .l-footer__contain-primary .c-tel-box__num {
  display: inline;
  position: relative;
  padding-left: 0.85em;
  font-size: min(1.806vw, 26px);
  line-height: 1;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain-primary .c-tel-box__num {
    font-size: 6.133vw;
  }
}
.footer .l-footer__contain-primary .c-tel-box__num:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  width: 0.64em;
  height: 0.72em;
  background: url("/chance_2027/assets/img/icon_tel.svg") no-repeat center/contain;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain-primary .c-tel-box__num:before {
    background: url("/chance_2027/assets/img/icon_tel_blue.svg") no-repeat center/contain;
  }
}
.footer .l-footer__contain-secondary {
  width: min(45vw, 648px);
  padding-left: min(8.333vw, 120px);
}
@media print, screen and (min-width: 768px) {
  .footer .l-footer__contain-secondary {
    flex-grow: 2;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__contain-secondary {
    margin-top: 9.333vw;
    width: 100%;
    padding-left: 0;
  }
}
.footer .l-footer__logo {
  display: inline-block;
  margin-bottom: min(2.431vw, 35px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__logo {
    margin-bottom: 4vw;
  }
}
.footer .l-footer__logo img {
  width: min(18.09vw, 260.5px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__logo img {
    width: 61.867vw;
  }
}
.footer .l-footer__nav .flex {
  flex-wrap: wrap;
  gap: 0 min(4.167vw, 60px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex {
    justify-content: center;
    gap: 0 6vw;
  }
}
.footer .l-footer__nav .flex__box.left {
  width: min(13.194vw, 190px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex__box.left {
    width: 39.467vw;
  }
}
.footer .l-footer__nav .flex__box.right {
  width: min(20.139vw, 290px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex__box.right {
    width: 44vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex__box:first-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}
.footer .l-footer__nav .flex__box:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: min(2.083vw, 30px) 0;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex__box:nth-child(2) {
    gap: 4vw 0;
  }
  .footer .l-footer__nav .flex__box:nth-child(2) p:first-child {
    margin-bottom: 5vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex p {
    text-align: left;
  }
}
.footer .l-footer__nav .flex p a {
  font-size: min(1.597vw, 23px);
  padding-bottom: 0.5em;
  border-bottom: 2px solid #fff;
  display: block;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex p a {
    font-size: 3.467vw;
    border-bottom: 2px solid #fff;
  }
}
.footer .l-footer__nav .flex p a span {
  font-size: min(1.25vw, 18px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex p a span {
    font-size: 2.933vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex ul {
    margin-bottom: 9.6vw;
  }
}
.footer .l-footer__nav .flex ul li a {
  display: block;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex ul li a {
    font-size: 3.2vw;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex ul li:first-child p {
    width: 100%;
  }
}
.footer .l-footer__nav .flex ul li:first-child a {
  margin-bottom: 0.8em;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__nav .flex ul li:first-child a {
    font-size: 4vw;
    margin-bottom: 1.2em;
    border-bottom: 2px solid #fff;
  }
}
.footer .l-footer__nav .flex ul li:last-child a {
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer .l-footer__sns {
  display: flex;
  gap: min(2.083vw, 30px);
}
@media print, screen and (min-width: 768px) {
  .footer .l-footer__sns {
    position: absolute;
    right: min(2.222vw, 32px);
    bottom: min(1.389vw, 20px);
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__sns {
    justify-content: center;
    gap: 8.667vw;
    margin-top: 8.533vw;
  }
}
.footer .l-footer__sns-anc {
  display: block;
}
.footer .l-footer__sns-anc img {
  width: min(2.222vw, 32px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__sns-anc img {
    width: 8vw;
  }
}
.footer .l-footer__tail {
  background: #fff;
  color: #005a8f;
  padding: min(1.111vw, 16px) min(2.222vw, 32px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__tail {
    text-align: center;
    padding: 5.333vw 0;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .l-footer__tail-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer .l-footer__tail-copy {
  font-size: min(0.833vw, 12px);
}
@media print, screen and (min-width: 768px) {
  .footer .l-footer__tail-copy {
    order: -1;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__tail-copy {
    font-size: 2.8vw;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .l-footer__other {
    display: flex;
    gap: min(2.083vw, 30px);
  }
}
.footer .l-footer__other-anc {
  display: block;
  position: relative;
  font-size: min(0.972vw, 14px);
}
.footer .l-footer__other-anc img {
  width: min(0.903vw, 13px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__other-anc img {
    width: 3.333vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__other-anc {
    font-size: 3.427vw;
  }
}
.footer .l-footer__other-item {
  margin-bottom: min(0.278vw, 4px);
}
@media only screen and (max-width: 767px) {
  .footer .l-footer__other-item {
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer .l-footer .c-icon-txt {
    justify-content: center;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loading-logo-out {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */