@charset "UTF-8";
/* CSS INFORMATION -====================================
File name : top.css
Description : TOPページ
===================================================== */
/* =====================================================
    mv
======================================================*/
.mv {
  position: relative;
  padding: 20rem 0 15rem;
  background: url(../images/bg_mv-sp.jpg) no-repeat center/cover;
}
.mv_logo {
  position: relative;
  width: calc(671 / 650 * 100%);
}
.mv_decision {
  position: absolute;
  top: 0;
  right: 0;
  margin: calc(-40 / 650 * 100%) 0 0;
  width: calc(208 / 650 * 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-animation: stamp 2s paused both;
          animation: stamp 2s paused both;
}
.mv_decision > img {
  transform: rotate(14deg);
}
.mv_decision.is-show {
  opacity: 1;
}
.mv_decision.is-show.popup-anime {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.mv_catch {
  text-align: center;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-top: 5rem;
  text-shadow: 0.01em 0.2em 0.3em rgba(0, 35, 95, 0.6);
}
.mv_info {
  opacity: 0;
  margin-top: 11rem;
}
.mv_info.is-show {
  opacity: 1;
}
.mv_info.is-show.zoomIn-anime {
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.mv_middle {
  text-align: center;
  color: #fff;
  font-size: 3.4rem;
  letter-spacing: 0.13em;
  margin: 2rem 0;
}
.mv_end {
  opacity: 0;
  text-align: center;
  color: #fff;
  font-size: 3.4rem;
  letter-spacing: 0.13em;
  margin-top: 5.4rem;
}
.mv_end.is-show {
  opacity: 1;
}
.mv_end.is-show.slidein-anime {
  -webkit-animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.mv .info_block {
  display: flex;
  align-items: center;
}
.mv .info_block .left {
  position: relative;
  z-index: 20;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 12.2rem;
  height: 12.2rem;
}
.mv .info_block .left p {
  text-align: center;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.88em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.mv .info_block .right {
  position: relative;
  z-index: 1;
  margin-left: calc(-10 / 650 * 100%);
  width: calc(508 / 650 * 100%);
  padding: calc(15 / 650 * 100%) calc(12 / 650 * 100%);
  padding-left: calc(75 / 650 * 100%);
}
.mv .info_block .right p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 2.72rem;
  color: #0037a3;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.mv .info_block .right p span {
  font-size: 150%;
}
.mv .info_block .right::before {
  content: "";
  position: absolute;
  background: url(../images/img_sankaku-sp1.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mv .info_block:nth-child(2) {
  margin-top: 1.4rem;
}
.mv .info_block:nth-child(2) .left p small {
  font-size: 80%;
  word-break: keep-all;
}

@-webkit-keyframes popup-anime {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}

@keyframes popup-anime {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes stamp {
  0% {
    visibility: visible;
    opacity: 0;
    transform: rotate(-30deg) scale(2.5);
  }
  30% {
    visibility: visible;
    opacity: 0.8;
    transform: rotate(0deg) scale(1.04);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes stamp {
  0% {
    visibility: visible;
    opacity: 0;
    transform: rotate(-30deg) scale(2.5);
  }
  30% {
    visibility: visible;
    opacity: 0.8;
    transform: rotate(0deg) scale(1.04);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 9rem 0;
    background-image: url(../images/bg_mv-pc.jpg);
  }
  .mv_logo {
    width: calc(713 / 1000 * 100%);
    margin: 0 auto;
  }
  .mv_decision {
    top: 0;
    margin: calc(30 / 1000 * 100%) calc(-25 / 1000 * 100%) 0 0;
    width: calc(208 / 1000 * 100%);
  }
  .mv_catch {
    font-size: 3.6rem;
  }
  .mv_end {
    font-size: 3.6rem;
  }
  .mv .info_block {
    margin: 0 auto;
    width: calc(800 / 1000 * 100%);
  }
  .mv .info_block .left {
    border-width: 0.4rem;
    width: 10rem;
    height: 10rem;
  }
  .mv .info_block .left p {
    font-size: 2rem;
  }
  .mv .info_block .right {
    width: 88.25%;
  }
  .mv .info_block .right::before {
    background-image: url(../images/img_sankaku-pc.png);
  }
  .mv .info_block .right p {
    text-align: center;
  }
}
/* =====================================================
    受賞者
======================================================*/
.awards {
  text-align: center;
  padding: 10rem 0;
  background: #f9f9f9;
}
.awards .awards_ttl {
  position: relative;
  display: block;
  margin-bottom: 5rem;
  padding-top: 4.4rem;
}
.awards .awards_ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 2.4rem;
  background: url(../images/ttl_deco.png) no-repeat center/contain;
}
.awards .awards_ttl h2 {
  display: block;
  margin: 0 auto;
  padding-left: 0.12em;
  max-width: 50rem;
  letter-spacing: 0.12em;
}

.awards_img01 {
  margin: 0 0 4rem calc(-20 / 650 * 100%);
  width: calc(690 / 650 * 100%);
}

.awards_name {
  display: flex;
  justify-content: center;
  margin-bottom: 9rem;
}
.awards_name dl {
  padding: 0 0.5em;
  font-weight: 700;
  color: #223854;
}
.awards_name dl dt {
  margin-bottom: 0.8em;
  padding: 1.4rem 0;
  min-width: 20rem;
  font-size: 2.6rem;
  background: url(../images/bg_ribbon.png) no-repeat center/100% 100%;
}
.awards_name dl .university {
  margin-bottom: 0.6em;
  font-size: 2.4rem;
  color: #4c5d72;
}
.awards_name dl .name {
  position: relative;
  font-size: 3rem;
  padding-right: 3rem;
}
.awards_name dl .name small {
  position: absolute;
  bottom: 0.1em;
  margin-right: -1em;
  font-size: 60%;
}
.awards_name dl .name_last {
  letter-spacing: -2px;
}

.finalist {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.finalist .finalist_message {
  font-size: 4.8rem;
  font-weight: bold;
  color: #0037a3;
  padding-bottom: 2rem;
}
.finalist .finalist_text {
  color: #f9f9f9;
  padding: 1.4rem 1.3rem;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  background: url(../images/bg_ribbon02.png) no-repeat center/100% 100%;
}

@media screen and (min-width: 768px) {
  .awards .awards_ttl h2 {
    min-width: 60rem;
    font-size: 4.5rem;
  }
  .awards .awards_ttl p {
    font-size: 2.4rem;
    padding-top: 2.6rem;
  }
  .awards_img01,
.awards_img02 {
    margin: 0 auto 4rem;
    width: 80rem;
  }
  .awards_name {
    justify-content: center;
  }
  .awards_name dl {
    margin: 0 2rem;
  }
  .awards_name dl dt {
    padding: 1.2rem 5rem;
    font-size: 2rem;
  }
  .awards_name dl .university {
    font-size: 2rem;
  }
  .awards_name dl .name {
    font-size: 2.8rem;
  }
  .awards_name dl .name small {
    bottom: 0.08em;
  }
  .awards_name dl .name_last {
    letter-spacing: inherit;
  }
  .finalist_message {
    letter-spacing: 4px;
  }
  .finalist_text {
    max-width: 80rem;
    margin: 0 auto 2rem;
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
/* =====================================================
    ライブ配信
======================================================*/
.live {
  position: relative;
  text-align: center;
  padding: 16rem 0 23rem;
  background: url(../images/bg_live-sp.jpg) no-repeat center/cover;
}

@media screen and (min-width: 768px) {
  .live {
    padding: 9rem 0 15rem;
    background-image: url(../images/bg_live-pc.jpg);
  }
  .live .sec_ttl {
    margin-bottom: 6.5rem;
  }
  .live .sec_ttl h2 {
    font-size: 5.5rem;
  }
}
/* =====================================================
    about
======================================================*/
.about {
  padding: 13rem 0;
}
.about .sec_ttl {
  text-align: left;
}
.about .sec_ttl h2 {
  padding-bottom: 0.6em;
  font-size: 5rem;
  line-height: 1.5;
}
.about .sec_ttl h2::after {
  width: 40%;
}
.about_text {
  font-size: 115%;
  font-weight: 700;
  line-height: 1.6;
}
.about .txt-grade {
  margin-top: 5rem;
  color: #fff;
  font-size: 123%;
  font-weight: 700;
  line-height: 1.85;
}
.about .txt-grade span {
  display: inline-block;
  background-image: linear-gradient(90deg, #00abe4, #03318c);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 1s ease-in-out;
  padding: 0 0.4em;
}
.about .txt-grade span:not(:first-of-type) {
  margin-top: 0.3em;
}
.about .txt-grade span.is-active {
  background-size: 100% 100%;
}
.about_photo {
  position: relative;
  margin: -30rem 0 0 calc(100 / 650 * 100%);
  width: calc(630 / 650 * 100%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .about {
    padding: 20rem 0;
    overflow: hidden;
  }
  .about .inner {
    min-height: 400px;
  }
  .about_text {
    width: 80%;
    font-size: 144%;
  }
  .about .txt-grade {
    font-size: 3rem;
  }
  .about_photo {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0 calc(-280 / 1000 * 100%) 0 0;
    width: calc(700 / 1000 * 100%);
  }
}
/* =====================================================================
    スケジュール＆コンテスト概要
======================================================================*/
.sc_wrap > * {
  padding: 18rem 0;
}
@media screen and (max-width: 767px) {
  .sc_wrap > * .sec_ttl {
    margin-bottom: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .sc_wrap {
    display: flex;
  }
  .sc_wrap > * {
    padding: 8rem 0;
    width: 50%;
  }
  .sc_wrap .inner {
    width: 80%;
    max-width: 650px;
  }
}
/* =====================================================================
    スケジュール
======================================================================*/
.schedule {
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .schedule_list {
    margin-left: calc(-20 / 650 * 100%);
    width: calc(690 / 650 * 100%);
  }
}
.schedule_list li:not(:first-child) {
  margin-top: 3rem;
}
.schedule_list_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6em;
  background-image: linear-gradient(90deg, #00abe4, #03318c);
}
.schedule_list_ttl h3 {
  font-size: 107%;
  font-weight: 700;
  color: #fff;
}
.schedule_list .new {
  margin-left: 0.8em;
  padding: 0.3em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 77%;
  font-weight: 700;
  color: #fff;
  background: #f00044;
  border-radius: 2em;
}
.schedule_list_content {
  padding: 3.6231884058% 0;
  background: #fff;
}
.schedule_list_content dl {
  display: flex;
  align-items: center;
  line-height: 1.34;
}
.schedule_list_content dl > * {
  padding: 1rem 3.6231884058%;
}
.schedule_list_content dl dt {
  flex-shrink: 0;
  text-align: right;
  width: 31.884057971%;
  font-weight: 700;
  color: #0037a3;
}
.schedule_list_content dl dd {
  flex-grow: 1;
  text-align: center;
  width: 68.115942029%;
  font-size: 130%;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.schedule_list_content dl dd small {
  font-size: 70%;
}
.schedule_list_content dl dt + dd {
  text-align: left;
  border-left: 0.2rem solid #0037a3;
}
.schedule_list_content dl:not(:first-child) {
  margin-top: 1rem;
}
.schedule_list_content p {
  text-align: center;
  margin-top: 1rem;
}
.schedule_list_content p span {
  display: inline-block;
  padding: 0.5em 1em;
  min-width: 79.7101449275%;
  font-size: 88%;
  font-weight: 700;
  color: #f00044;
  background: #f6f6f6;
  border-radius: 2em;
}

@media screen and (min-width: 768px) {
  .schedule_list li:not(:first-child) {
    margin-top: 2rem;
  }
  .schedule_list_ttl h3 {
    font-size: 122%;
  }
  .schedule_list_content {
    padding: 1.8461538462% 0;
  }
  .schedule_list_content dl > * {
    padding: 0 3.3846153846%;
  }
  .schedule_list_content dl dt {
    width: 32.3076923077%;
    font-size: 111%;
  }
  .schedule_list_content dl dd {
    width: 67.6923076923%;
    font-size: 144%;
  }
  .schedule_list_content p span {
    min-width: 55.3846153846%;
  }
}
/* =====================================================================
    コンテスト概要
======================================================================*/
.contest {
  background: url(../images/bg_contest-sp.jpg) no-repeat center/cover;
}
.contest .sec_ttl {
  color: #fff;
}
.contest_list li {
  display: flex;
}
.contest_list li:not(:last-child) {
  margin-bottom: 2rem;
}
.contest_list li.first .contest_list_ttl {
  background-color: #fff;
}
.contest_list li.second .contest_list_ttl {
  background-color: #fffbb4;
}
.contest_list li.final .contest_list_ttl {
  background-color: #FFF443;
}
.contest_list_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 1em 0;
  margin-right: calc(40 / 650 * 100%);
  width: calc(50 / 650 * 100%);
  writing-mode: vertical-rl;
}
.contest_list_ttl h3 {
  font-size: 130%;
  font-weight: 700;
  color: #0037a3;
}
.contest_list_ttl .text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.contest_list_ttl .new {
  margin-top: 0.3em;
  padding: 0.8em 0.3em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 77%;
  font-weight: 700;
  color: #fff;
  background: #f00044;
  border-radius: 2em;
  text-orientation: upright;
}
.contest_list_content {
  display: inline-grid;
  align-items: center;
  flex-grow: 1;
  padding: 3rem 0;
}
.contest_list_content p {
  font-size: 115%;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}
.contest_list_content p span {
  font-size: 80%;
  color: #FFF443;
}
.contest_list_content p span a {
  color: #FFF443;
}
.contest_list_content p .catch_title {
  font-size: 115%;
  color: #FFF443;
}
.contest_list_content p a {
  display: inline;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .contest {
    background-image: url(../images/bg_contest-pc.jpg);
  }
  .contest_list li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .contest_list_ttl {
    margin-right: 3.5384615385%;
    width: 6.1538461538%;
    min-width: 24px;
  }
  .contest_list_ttl h3 {
    font-size: 122%;
  }
  .contest_list_content {
    padding: 2rem 0;
  }
  .contest_list_content p {
    font-size: 111%;
  }
  .contest_list_content p a:hover {
    opacity: 0.7;
  }
}
/* =====================================================
    アナウンサーメッセージ
======================================================*/
.message {
  padding: 20rem 0 18rem;
  background: #ecf4f9;
}
.message .sec_ttl {
  margin-bottom: 10rem;
}
.message_box {
  position: relative;
  background-color: #fff;
  border-top: 0.4rem solid #223854;
  overflow: hidden;
}
.message_box::before {
  content: "message.";
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 17.6rem;
  color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .message_box {
    margin-left: calc(-20 / 650 * 100%);
    width: calc(690 / 650 * 100%);
  }
}
.message_box > * {
  position: relative;
  z-index: 1;
}
.message_box p {
  padding: 10rem calc(70 / 650 * 100%);
  font-size: 115%;
  font-weight: 700;
  line-height: 1.866;
}
.message_box p .writer {
  display: block;
  text-align: right;
  font-family: "Noto Serif JP", serif;
  font-size: 113%;
  color: #0037a3;
}
.message_box_photo {
  margin: 0 auto;
  width: 98.115942029%;
}

@media screen and (min-width: 768px) {
  .message {
    padding: 17rem 0 12rem;
  }
  .message .sec_ttl {
    margin-bottom: 6.5rem;
  }
  .message .sec_ttl h2 {
    font-size: 5.5rem;
  }
  .message_box::before {
    font-size: 25.2rem;
    font-size: max(25.2rem, 170px);
  }
  .message_box p {
    padding: 7rem calc(100 / 1000 * 100%);
    font-size: 122%;
  }
  .message_box_photo {
    width: calc(807 / 1000 * 100%);
  }
}
/* =====================================================================
    voice
======================================================================*/
.voice {
  padding: 18rem 0;
}
.voice .sec_ttl {
  margin-bottom: 9rem;
}
.voice_slider {
  position: relative;
  margin: 0 calc(50% - 50vw) 5rem;
  padding-bottom: 4em;
}
.voice_slider .prev,
.voice_slider .next {
  position: absolute;
  bottom: 0;
  width: 2.3em;
  height: 2.3em;
  border: 1px solid #0037a3;
  z-index: 2;
}
.voice_slider .prev::after,
.voice_slider .next::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  padding-top: 30%;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
}
.voice_slider .prev {
  left: 0;
  margin-left: calc(48% - 2.3em);
}
.voice_slider .next {
  right: 0;
  margin-right: calc(48% - 2.3em);
  transform: scale(-1, 1);
}
.voice_slider .slick-dots {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 4em;
  right: 0;
  margin-right: calc(40 / 750 * 100%);
  z-index: 2;
}
.voice_slider .slick-dots li {
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin: 0.45em 0;
}
.voice_slider .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
  border-radius: 50%;
  background-color: #0037a3;
  transition: 0.3s ease;
}
.voice_slider .slick-dots li button::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  border: 1px solid #0037a3;
  border-radius: 50%;
  transition: 0.3s ease;
  opacity: 0;
}
.voice_slider .slick-dots li.slick-active button::after {
  opacity: 1;
}
.voice_text {
  margin-left: calc(-30 / 650 * 100%);
  width: calc(710 / 650 * 100%);
}
.voice .banner_list {
  margin-top: 7rem;
}

@media screen and (min-width: 768px) {
  .voice {
    padding: 10rem 0;
  }
  .voice .sec_ttl {
    margin-bottom: 6rem;
  }
  .voice .sec_ttl h2 {
    font-size: 5.5rem;
  }
  .voice_slider {
    margin: 0 0 9rem calc(-115 / 1000 * 100%);
    padding-bottom: 0;
    width: calc(1229 / 1000 * 100%);
  }
  .voice_slider .prev,
.voice_slider .next {
    bottom: 3px;
    left: auto;
    right: 0;
    margin: 0 calc(8% - 2.3em) 0 0;
    font-size: 2.2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .voice_slider .prev:hover,
.voice_slider .next:hover {
    opacity: 0.6;
  }
  .voice_slider .prev {
    bottom: 3em;
  }
  .voice_slider .slick-dots {
    bottom: 6em;
    margin-right: calc(6.7% - 0.4em);
    font-size: 2.5rem;
  }
  .voice_slider .slick-dots button:hover {
    opacity: 0.6;
  }
  .voice_text {
    margin-left: calc(-115 / 1000 * 100%);
    width: calc(1229 / 1000 * 100%);
  }
  .voice .banner_list {
    margin-top: 5rem;
  }
}
/* =====================================================
    開催概要
======================================================*/
.outline {
  padding: 14rem 0;
  background: url(../images/bg_outline-sp.jpg) no-repeat center/cover;
}
.outline .sec_ttl {
  color: #fff;
}
.outline_list {
  margin-left: calc(-20 / 650 * 100%);
  padding: 8rem 0;
  width: calc(690 / 650 * 100%);
  background: #fff;
}
.outline_list li:not(:last-child) {
  margin-bottom: 4rem;
}
.outline_list dl {
  display: flex;
  justify-content: center;
  line-height: 1.692;
}
.outline_list dl dt {
  padding-right: 3.6231884058%;
  width: 31.884057971%;
  color: #0037a3;
  font-weight: 700;
}
.outline_list dl dd {
  padding-left: 3.6231884058%;
  width: 56.5217391304%;
  border-left: 1px solid;
}
.outline_list dl dd span {
  background-color: #FFF443;
}

@media screen and (min-width: 768px) {
  .outline {
    padding: 10rem 0;
    background-image: url(../images/bg_outline-pc.jpg);
  }
  .outline_grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .outline .sec_ttl {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .outline_list {
    margin-left: 0;
    padding: 5rem 0;
    width: calc(780 / 1000 * 100%);
  }
  .outline_list li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .outline_list dl {
    line-height: 1.4;
  }
  .outline_list dl dt {
    padding-right: 3.8461538462%;
    width: 32.0512820513%;
  }
  .outline_list dl dd {
    padding-left: 3.8461538462%;
    width: 57.6923076923%;
  }
}
/* =====================================================
    よくある質問
======================================================*/
.qa {
  padding: 18rem 0;
}
@media screen and (max-width: 767px) {
  .qa_list {
    margin-left: calc(-20 / 650 * 100%);
    width: calc(690 / 650 * 100%);
  }
}
.qa_list li {
  line-height: 1.6;
}
.qa_list li:not(:first-child) {
  margin-top: 0.4rem;
}
.qa_list li .qa_question {
  position: relative;
  padding: 3.5rem 8rem;
  padding-left: 10rem;
  color: #fff;
  background-image: linear-gradient(90deg, #00abe4, #03318c);
  cursor: pointer;
}
.qa_list li .qa_question::before {
  content: "Q";
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #65c6ee;
}
.qa_list li .qa_question span {
  content: "";
  position: absolute;
  top: 0;
  left: 6rem;
  width: 2px;
  height: 100%;
  background: #65c6ee;
}
.qa_list li .qa_question::after {
  content: "";
  position: absolute;
  background: url(../images/icon_plus.svg) no-repeat;
  background-size: contain;
  bottom: 2.2rem;
  right: 2.2rem;
  width: 3rem;
  height: 3rem;
  transition: 0.3s ease;
}
.qa_list li .qa_question.is-active::after {
  background-image: url(../images/icon_minus.svg);
}
.qa_list li .qa_answer {
  display: none;
  padding: 7.9710144928% 5.7971014493%;
  background: #f6f6f6;
}
.qa_list li .qa_answer a {
  display: inline;
  color: #f00044;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .qa {
    padding: 10rem 0;
  }
  .qa_list li .qa_question {
    padding: calc(30 / 1000 * 100%) 12rem;
  }
  .qa_list li .qa_question::before {
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
  }
  .qa_list li .qa_question span {
    left: 8rem;
  }
  .qa_list li .qa_question::after {
    bottom: auto;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
  }
  .qa_list li .qa_answer {
    padding: calc(40 / 1000 * 100%) calc(50 / 1000 * 100%);
  }
  .qa_list li .qa_answer a:hover {
    opacity: 0.6;
  }
}
/* =====================================================
    個人情報の取り扱いについて
======================================================*/
.privacy {
  padding: 18rem 0;
  background: #f6f6f6;
}
.privacy .sec_ttl {
  text-align: left;
  margin-left: calc(40 / 650 * 100%);
}
.privacy .sec_ttl h2 {
  display: inline;
  font-size: 123%;
  line-height: 2.5;
  background: linear-gradient(transparent 92%, #0037a3 92%);
}
.privacy_list {
  padding: 0 calc(20 / 650 * 100%);
  counter-reset: number 0;
}
.privacy_list li {
  position: relative;
  padding-left: 1em;
  line-height: 1.75;
  counter-increment: number 1;
}
.privacy_list li:not(:first-child) {
  margin-top: 1rem;
}
.privacy_list li::before {
  content: counter(number) ".";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.privacy_list li a {
  display: inline;
  color: #f00044;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .privacy {
    padding: 10rem 0;
  }
  .privacy .sec_ttl {
    margin-left: 0;
  }
  .privacy .sec_ttl h2 {
    font-size: 144%;
  }
  .privacy_list {
    padding: 0;
  }
  .privacy_list li a:hover {
    opacity: 0.6;
  }
}
/*# sourceMappingURL=top.css.map */