<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&amp;family=Oswald:wght@300&amp;family=Zen+Maru+Gothic:wght@400;500;700&amp;display=swap");
/*Webフォント*/
/*フォントサイズ*/
/*黒*/
/*オレンジカラー*/
/*黄色カラー*/
/*むらさきカラー*/
/*バイオレットカラーー*/
/*ブルーカラーー*/
/*緑カラーー*/
/*深青カラーー*/
html {
  font-size: 10px;
}

body {
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333333;
}

body br.pc {
  display: block;
}

@media screen and (max-width: 830px) {
  body br.pc {
    display: none;
  }
}

body br.sp {
  display: none;
}

@media screen and (max-width: 830px) {
  body br.sp {
    display: block;
  }
}

body br.tab {
  display: none;
}

@media screen and (max-width: 1400px) {
  body br.tab {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  body br.tab {
    display: none;
  }
}

/*-------------共通パーツ-------------*/
/*キーフレームアニメーション*/
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*-------------フェードアップ(スクロールアニメ)-------------*/
/*-------------フェード右(スクロールアニメ)-------------*/
/*-------------ボタン-------------*/
/*-------------テスト見出し-------------*/
/*-------------パターン-------------*/
/*-------------アコーディオンメニュー-------------*/
/*-------------リードテキスト-------------*/
/*-------------ボーダーテキスト-------------*/
/*-------------この入試は-------------*/
/*-------------やじるしつきh3見出し-------------*/
/*-------------入試概要-------------*/
/*-------------入試科目と配点-------------*/
/*-------------同時出願-------------*/
/*-------------出願のPOINT-------------*/
/*-------------ヘッダー-------------*/
header {
  z-index: 98;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  border-bottom: solid 3px #004EA2;
  width: 100%;
  /*　ハンバーガーボタン　*/
}

header.m_fixed {
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1200px) {
  header {
    padding: 10px;
  }
}

header h1 {
  margin: 0 20px 0 0;
}

header h1 img {
  width: 300px;
  display: block;
}

@media screen and (max-width: 1200px) {
  header h1 img {
    width: 264px;
  }
}

header .hamburger {
  display: none;
}

@media screen and (max-width: 1200px) {
  header .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 13;
    background-color: #FFF462;
  }
  header .hamburger span {
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    left: 21px;
    background: #004EA2;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header .hamburger span:nth-child(1) {
    top: 22px;
  }
  header .hamburger span:nth-child(2) {
    top: 29px;
  }
  header .hamburger span:nth-child(3) {
    top: 36px;
  }
  header .hamburger.close span:nth-child(1) {
    top: 29px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .hamburger.close span:nth-child(2) {
    top: 29px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .hamburger.close span:nth-child(3) {
    top: 29px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  header nav ul {
    margin: 63px 0 0 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #FFF462;
    height: auto;
  }
}

header nav ul li {
  list-style: none;
  margin: 0 30px 13px 0;
}

@media screen and (max-width: 1400px) {
  header nav ul li {
    margin: 0 20px 13px 0;
  }
}

@media screen and (max-width: 1200px) {
  header nav ul li {
    margin: 0;
    padding: 20px 10px;
    border-bottom: dashed 2px #004EA2;
  }
}

header nav ul li:last-child {
  margin: 0 0 13px 0;
}

@media screen and (max-width: 1200px) {
  header nav ul li:last-child {
    margin: 0;
  }
}

header nav ul li a {
  text-decoration: none;
  color: #333333;
  display: block;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  line-height: 1.3;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 10rem;
}

@media screen and (max-width: 1200px) {
  header nav ul li a::after {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    left: auto;
    right: 10px;
  }
}

header nav ul li a span {
  font-size: 1.2rem;
}

header nav ul li a.orange::after {
  background: #ED6D00;
}

header nav ul li a.orange:hover {
  color: #ED6D00;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1200px) {
  header nav ul li a.orange:hover {
    color: #333333;
  }
}

header nav ul li a.purple::after {
  background: #C1599D;
}

header nav ul li a.purple:hover {
  color: #C1599D;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1200px) {
  header nav ul li a.purple:hover {
    color: #333333;
  }
}

header nav ul li a.violet::after {
  background: #757DBB;
}

header nav ul li a.violet:hover {
  color: #757DBB;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1200px) {
  header nav ul li a.violet:hover {
    color: #333333;
  }
}

header nav ul li a.blue::after {
  background: #00A5E3;
}

header nav ul li a.blue:hover {
  color: #00A5E3;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1200px) {
  header nav ul li a.blue:hover {
    color: #333333;
  }
}

header nav ul li a.green::after {
  background: #01AF84;
}

header nav ul li a.green:hover {
  color: #01AF84;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1200px) {
  header nav ul li a.green:hover {
    color: #333333;
  }
}

header nav ul li a.dblue::after {
  background: #00A6BA;
}

header nav ul li a.dblue:hover {
  color: #00A6BA;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1200px) {
  header nav ul li a.dblue:hover {
    color: #333333;
  }
}

/*-------------キービジュアル-------------*/
.key_visual {
  position: relative;
}

.key_visual h1 {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 830px) {
  .key_visual h1 {
    left: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.key_visual h1 span {
  opacity: 0;
  display: block;
}

.key_visual h1 span.is-animated {
  -webkit-animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.key_visual h1 span img {
  max-width: 480px;
  width: 100%;
  display: block;
}

@media screen and (max-width: 1400px) {
  .key_visual h1 span img {
    max-width: 280px;
  }
}

@media screen and (max-width: 830px) {
  .key_visual h1 span img {
    max-width: 180px;
  }
}

.key_visual img {
  width: 100%;
}

.key_visual img.pc {
  display: block;
}

@media screen and (max-width: 830px) {
  .key_visual img.pc {
    display: none;
  }
}

.key_visual img.sp {
  display: none;
}

@media screen and (max-width: 830px) {
  .key_visual img.sp {
    display: block;
  }
}

/*-------------導入テキスト-------------*/
.read_contents {
  background: #D3EAF9;
  background-image: url(../../images/figure_logo_bg.png), url(../../images/font_bg.png);
  background-position: top 0 right 0, bottom 0 left 0;
  background-size: 552px 661px, 791px 795px;
  background-repeat: no-repeat, no-repeat;
  padding: 80px 20px;
}

@media screen and (max-width: 830px) {
  .read_contents {
    padding: 40px 15px;
    background-size: 240px 287px, 300px 301px;
  }
}

.read_contents .contents_txt {
  margin: 0 auto;
  background: rgba(0, 132, 213, 0.8);
  max-width: 1084px;
  width: 100%;
  border-radius: 6rem;
  padding: 100px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt {
    border-radius: 3rem;
    padding: 40px 20px;
  }
}

.read_contents .contents_txt p {
  margin: 0 0 30px 0;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2.9;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.read_contents .contents_txt p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt p {
    font-size: 1.6rem;
    line-height: 2.5;
    margin: 0 0 20px 0;
  }
}

.read_contents .contents_txt p span {
  color: #FFF462;
}

.read_contents .contents_txt figure {
  position: relative;
  max-width: 515px;
  width: 100%;
  margin: 0 auto;
  padding: 132px 114px 114px 112px;
  opacity: 0;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure {
    max-width: 216px;
    padding: 55px 49px 49px 49px;
  }
}

.read_contents .contents_txt figure.is-animated {
  -webkit-animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.read_contents .contents_txt figure .bg_five {
  margin: 0;
}

.read_contents .contents_txt figure .bg_five img {
  margin: 0 auto;
  display: block;
  width: 100%;
}

.read_contents .contents_txt figure .figure {
  position: absolute;
}

.read_contents .contents_txt figure .figure.f01 {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}

.read_contents .contents_txt figure .figure.f02 {
  right: 0;
  top: 187px;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .figure.f02 {
    top: 79px;
  }
}

.read_contents .contents_txt figure .figure.f05 {
  left: 0;
  top: 187px;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .figure.f05 {
    top: 79px;
  }
}

.read_contents .contents_txt figure .figure.f04 {
  bottom: 0;
  left: 96px;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .figure.f04 {
    left: 44px;
  }
}

.read_contents .contents_txt figure .figure.f03 {
  bottom: 0;
  right: 96px;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .figure.f03 {
    right: 44px;
  }
}

.read_contents .contents_txt figure .figure a {
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.read_contents .contents_txt figure .figure a:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1100px) {
  .read_contents .contents_txt figure .figure a:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.read_contents .contents_txt figure .figure a img {
  max-width: 234px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .figure a img {
    max-width: 98px;
  }
}

.read_contents .contents_txt figure .mws {
  z-index: 1;
  position: absolute;
  top: 246px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .mws {
    top: 100px;
  }
}

.read_contents .contents_txt figure .mws a {
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.read_contents .contents_txt figure .mws a:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .mws a:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.read_contents .contents_txt figure .mws a img {
  max-width: 318px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 830px) {
  .read_contents .contents_txt figure .mws a img {
    max-width: 133px;
  }
}

/*-------------マッチングワークショップ(MWS)-------------*/
.mws_contents {
  width: 100%;
}

.mws_contents h1 {
  margin: 0;
  background: #ED6D00;
  padding: 50px 20px;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents h1 {
    padding: 30px 20px;
  }
}

.mws_contents h1::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: '';
  background: url(../../images/sankaku_bt_red.png);
  background-size: 40px 30px;
  width: 40px;
  height: 30px;
}

@media screen and (max-width: 830px) {
  .mws_contents h1::after {
    background-size: 30px 22px;
    width: 30px;
    height: 22px;
    bottom: -22px;
  }
}

.mws_contents h1 img {
  max-width: 94px;
  display: block;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents h1 img {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents h1 img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents h1 img {
    max-width: 64px;
  }
}

.mws_contents h1 span {
  display: block;
  color: #fff;
  font-size: 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents h1 span {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents h1 span.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents h1 span {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}

.mws_contents .contents_txt {
  padding: 90px 15px;
  background: #FCE5CE;
  background-image: url(../../images/bg_mable_r.png), url(../../images/bg_marble_l.png);
  background-position: top -24px right -30px, top 648px left -30px;
  background-repeat: repeat-y, repeat-y;
  background-size: 342px, 364px;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt {
    padding: 80px 15px 40px 15px;
    background-size: 179px, 191px;
    background-position: top -24px right -50px, top 748px left -50px;
  }
}

.mws_contents .contents_txt .contents_txt_innner {
  background: #fff;
  border-radius: 6rem;
  padding: 100px 15px;
  max-width: 1084px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner {
    padding: 100px 20px 40px 20px;
    border-radius: 3rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .fukidashi {
  position: absolute;
  top: -40px;
  left: -30px;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .fukidashi {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.mws_contents .contents_txt .contents_txt_innner .fukidashi img {
  max-width: 265px;
  display: block;
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .fukidashi img {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}

.mws_contents .contents_txt .contents_txt_innner .fukidashi img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .fukidashi img {
    max-width: 125px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt {
  max-width: 1024px;
  width: 100%;
  padding: 0 0 100px 0;
  margin: 0 auto 100px auto;
  border-bottom: dashed 3px #E9E5E2;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt:last-child {
  margin: 0 auto;
  padding: 0;
  border-bottom: none;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt {
    padding: 0 0 40px 0;
    margin: 0 auto 40px auto;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  /*-------------nws01-------------*/
  /*-------------nws02-------------*/
  /*-------------nws03-------------*/
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g {
  background: #E5E645;
  padding: 20px;
  width: 100%;
  border-radius: 10rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #333333;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  margin: 0 0 80px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g {
    font-size: 1.6rem;
    padding: 15px;
    margin: 0 0 35px 0;
    border-radius: 8rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g span {
  font-size: 3rem;
  color: #ED6D00;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g span {
    font-size: 2.2rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g::after {
  position: absolute;
  content: '';
  background: url(../../images/sankaku_bt_green.png);
  background-size: 29px 22px;
  width: 29px;
  height: 22px;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .fukidashi_g::after {
    background-size: 22px 15px;
    width: 22px;
    height: 15px;
    bottom: -15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner &gt; p {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner &gt; p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner &gt; p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner &gt; p {
    font-size: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio {
  padding: 15px 15px 30px 15px;
  border-radius: 2rem;
  background: #FFF462;
  border: 4px #ED6D00 solid;
  margin: 60px 0 0 0;
  opacity: 0;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio.is-animated {
  -webkit-animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 30px 0 0 0;
    border: 2px #ED6D00 solid;
    padding: 15px;
    border-radius: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio h4 {
  font-size: 2.4rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio h4 {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio h4 span {
  font-size: 3rem;
  color: #ED6D00;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio h4 span {
    font-size: 2.2rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio &gt; p {
  text-align: center;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_ratio &gt; p {
    font-size: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .radius {
  margin: 0 0 30px 0;
  padding: 10px;
  background: #fff;
  border: solid 3px #ED6D00;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6rem;
  text-align: center;
  color: #333333;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .radius {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .radius.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .radius {
    font-size: 1.8rem;
    border: solid 2px #ED6D00;
    padding: 5px;
    margin: 0 0 15px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_y {
  background: #FFF1AD;
  padding: 30px;
  border-radius: 2rem;
  margin: 60px 0 0 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner .item_y {
    margin: 40px 0 0 0;
    border-radius: 1.5rem;
    padding: 15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t01 h2 {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t01 h2 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t01 h2.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t01 h2 {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice {
  margin: 60px 0 0 0;
  padding: 0 0 24px 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice {
    margin: 30px 0 0 0;
    padding: 0 0 14px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice h4 {
  margin: 0 0 40px 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice h4 {
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice h4::after {
  content: '';
  display: inline-block;
  background: url(../../images/icon_voice.png);
  background-size: 53px 69px;
  width: 53px;
  height: 69px;
  position: relative;
  top: 14px;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice h4::after {
    background-size: 38px 49px;
    width: 38px;
    height: 49px;
    top: 9px;
  }
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 290px;
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 2rem;
  margin: 0 15px 50px 15px;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li {
    margin: 0 0 20px 0;
    width: 45%;
    max-width: 100%;
    font-size: 1.5rem;
    padding: 15px 10px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li::after {
  position: absolute;
  right: 10px;
  bottom: -24px;
  content: '';
  width: 53px;
  height: 24px;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li::after {
    width: 30px;
    height: 14px;
    bottom: -14px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li span {
  color: #ED6D00;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(3) {
  margin: 0 15px 50px 0;
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(3) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
    margin: 0 0 20px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(4) {
  margin: 0 30px 0 0;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(4) {
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
    margin: 0 0 20px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(5) {
  margin: 0;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(5) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2n-1) {
  background: #FFF1AD;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2n-1)::after {
  background: url(../../images/fukidashi_y.png);
  background-size: 53px 24px;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2n-1)::after {
    background-size: 30px 14px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2n) {
  background: #EDEF99;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2n)::after {
  background: url(../../images/fukidashi_green.png);
  background-size: 53px 24px;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_voice ul li:nth-of-type(2n)::after {
    background-size: 30px 14px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list {
  padding: 0;
  margin: 30px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list {
    margin: 15px 0 0 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li {
  list-style: none;
  width: 48.34%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  margin: 0 0 30px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li {
    margin: 0 0 15px 0;
    width: 47.3%;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li::after {
  content: '';
  position: absolute;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(1)::after {
  background: url(../../images/sankaku_r_grey.png);
  background-size: 20px 26px;
  width: 20px;
  height: 26px;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(1)::after {
    background-size: 15px 20px;
    width: 15px;
    height: 20px;
    right: -15px;
    z-index: 1;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(2)::after {
  background: url(../../images/sankaku_bt_grey.png);
  background-size: 26px 20px;
  width: 26px;
  height: 20px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(2)::after {
    background-size: 20px 15px;
    width: 20px;
    height: 15px;
    bottom: -15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(3) {
  margin: 0;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(3)::after {
  background: url(../../images/sankaku_top_grey.png);
  background-size: 26px 20px;
  width: 26px;
  height: 20px;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(3)::after {
    background-size: 20px 15px;
    width: 20px;
    height: 15px;
    top: -15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(4) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
  margin: 0;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(4)::after {
  background: url(../../images/sankaku_l_grey.png);
  background-size: 20px 26px;
  width: 20px;
  height: 26px;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li:nth-of-type(4)::after {
    background-size: 15px 20px;
    width: 15px;
    height: 20px;
    left: -15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li h5 {
  background: #F39B50;
  padding: 8px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li h5 {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li p {
  padding: 20px;
  background: #fff;
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .active_list li p {
    font-size: 1.5rem;
    padding: 15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex {
    display: block;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .txt {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 30px 0 0;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .txt {
    margin: 0 0 15px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .txt p {
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .txt p {
    font-size: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .img {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .img {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .img {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .img img {
  max-width: 360px;
  width: 100%;
  display: block;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .contents_flex .img img {
    margin: 0 auto;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie_txt {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  margin: 20px 0 0 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie_txt {
    margin: 10px 0 0 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie_txt &gt; p {
  text-align: center;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie_txt &gt; p {
    font-size: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .movie {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  margin: 30px 0 20px 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .movie {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .movie.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .movie {
    margin: 15px 0 10px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .movie iframe {
  display: block;
  margin: 0 auto;
  height: 421px;
  width: 100%;
  max-width: 750px;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .movie iframe {
    height: 171px;
    max-width: 305px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie {
  background: #FFF8D6;
  padding: 30px;
  border-radius: 2rem;
  margin: 60px 0 0 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie {
    margin: 40px 0 0 0;
    border-radius: 1.5rem;
    padding: 15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie h4 {
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ED6D00;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t02 .item_movie h4 {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda {
  margin: 60px 0 0 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda {
    margin: 40px 0 0 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda h4 {
  margin: 0 0 30px 0;
  padding: 10px;
  background: #F39B50;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6rem;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda h4 {
    font-size: 1.8rem;
    padding: 5px;
    margin: 0 0 15px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: num;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li {
  background: #FFF1AD;
  padding: 20px 15px 20px 40px;
  border-left: solid #F39B50 4px;
  list-style: none;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  width: 18.34%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(3) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(3) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(4) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(4) {
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(5) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:nth-of-type(5) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li {
    width: 47.56%;
    padding: 15px 15px 15px 35px;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
  }
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li:last-child {
    margin: 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li::before {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: #ED6D00;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_agenda ol li::before {
    left: 10px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow h5 {
  background: #F39B50;
  padding: 8px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow h5 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow h5.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow h5:nth-of-type(2) {
  border-radius: 0;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow h5:nth-of-type(3) {
  border-radius: 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow h5 {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow {
  padding: 30px 20px;
  background: #fff;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow {
    padding: 20px 15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_web {
  margin: 0 0 10px 0;
  padding: 0 0 0 42px;
  font-size: 2rem;
  color: #ED6D00;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_web {
    font-size: 1.6rem;
    padding: 0 0 0 32px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_web::before {
  content: '';
  display: inline-block;
  background: url(../../images/icon_web.png);
  background-size: 32px 28px;
  width: 32px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_web::before {
    background-size: 22px 19px;
    width: 22px;
    height: 19px;
    top: 3px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_test {
  margin: 0 0 10px 0;
  padding: 0 0 0 42px;
  font-size: 2rem;
  color: #ED6D00;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_test {
    font-size: 1.6rem;
    padding: 0 0 0 32px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_test::before {
  content: '';
  display: inline-block;
  background: url(../../images/icon_test.png);
  background-size: 31px 28px;
  width: 31px;
  height: 28px;
  margin: 0 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .icon_test::before {
    background-size: 21px 19px;
    width: 21px;
    height: 19px;
    top: 3px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow ul {
  padding: 0 0 0 20px;
  margin: 0 0 30px 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow ul {
    margin: 0 0 15px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow ul:last-child {
  margin: 0;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow ul li {
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow ul li {
    font-size: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number {
  margin: 0 0 10px 0;
  padding: 0 0 0 30px;
  font-size: 2rem;
  color: #ED6D00;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number::before {
  position: absolute;
  left: 0;
  top: 5px;
  background: #ED6D00;
  color: #fff;
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
  text-align: center;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number.n01::before {
  content: '1';
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number.n02::before {
  content: '2';
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number.n03::before {
  content: '3';
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .number.n04::before {
  content: '4';
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow h6 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 2rem;
  color: #ED6D00;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow h6 {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow p {
  font-size: 1.8rem;
  margin: 0 0 30px 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow p {
    margin: 0 0 15px 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow p:last-child {
  margin: 0;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow p &gt; span {
  color: #ED6D00;
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow p .number {
  color: #fff;
  background: #ED6D00;
  padding: 1px 6.5px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
  position: relative;
  bottom: 1px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow p {
    font-size: 1.5rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow img {
  display: block;
  margin: 0 auto 30px auto;
  width: 28px;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow img {
    width: 20px;
    margin: 0 auto 15px auto;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .box {
  border: dashed 2px #F39B50;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .box {
    padding: 20px 15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .box p {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_flow .txt_flow .box p {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz {
  padding: 30px;
  border-radius: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF8D6;
  margin: 60px 0 0 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz {
    border-radius: 1.5rem;
    padding: 20px 15px;
    margin: 40px 0 0 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 {
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 a {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ED6D00;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 a {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 a:hover {
  opacity: 0.7;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1100px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 a:hover {
    opacity: 1;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 a::after {
  content: '';
  display: inline-block;
  margin: 0 0 0 10px;
  background: url(../../images/icon_down.png);
  background-size: 24px;
  width: 24px;
  height: 24px;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_quiz h4 a::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
    top: 1px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice {
  margin: 60px 0 0 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice {
    margin: 40px 0 0 0;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice h4 {
  background: #90C31F;
  padding: 8px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice h4 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner {
  background: #EDEF99;
  padding: 30px 20px;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner {
    padding: 20px 15px;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner h5 {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner h5 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner h5.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner h5 {
    font-size: 1.6rem;
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner p {
  font-size: 1.8rem;
  margin: 0 0 30px 0;
  line-height: 2;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner p:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .mws_contents .contents_txt .contents_txt_innner .item_txt .item_txt_inner.t03 .item_voice .item_voice_inner p {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
  }
}

/*-------------入試概要(共通部分)-------------*/
.test_contents {
  padding: 120px 20px;
  position: relative;
}

@media screen and (max-width: 830px) {
  .test_contents {
    padding: 80px 15px 40px 15px;
  }
}

.test_contents .border_marble {
  position: absolute;
  right: 0;
  top: 0;
  background-position: top 0 left 0;
  background-repeat: repeat;
  height: 60px;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .test_contents .border_marble {
    height: 40px;
  }
}

.test_contents .border_marble.purple {
  background-image: url(../../images/pattern02.png);
}

.test_contents .border_marble.violet {
  background-image: url(../../images/pattern03.png);
}

.test_contents .border_marble.blue {
  background-image: url(../../images/pattern04.png);
}

.test_contents .border_marble.green {
  background-image: url(../../images/pattern05.png);
}

.test_contents .border_marble.dblue {
  background-image: url(../../images/pattern06.png);
}

.test_contents.t01 {
  background: #F2E2EE;
}

.test_contents.t02 {
  background: #E4E4F2;
}

.test_contents.t03 {
  background: #DCEEFA;
}

.test_contents.t04 {
  background: #E0F0E7;
}

.test_contents.t05 {
  background: #D9EEF2;
}

.test_contents .h1_test {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1100ms;
  transition: all 1100ms;
  margin: 0 0 60px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .h1_test {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    margin: 0 0 30px 0;
  }
}

.test_contents .h1_test img {
  max-width: 48px;
  width: 100%;
  display: block;
  margin: 0 auto 10px auto;
}

@media screen and (max-width: 830px) {
  .test_contents .h1_test img {
    max-width: 32px;
  }
}

.test_contents .h1_test span {
  text-align: center;
  font-size: 4.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  display: block;
}

@media screen and (max-width: 830px) {
  .test_contents .h1_test span {
    font-size: 2.8rem;
  }
}

.test_contents .h1_test.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.test_contents .h1_test.purple span {
  color: #C1599D;
}

.test_contents .h1_test.violet span {
  color: #757DBB;
}

.test_contents .h1_test.blue span {
  color: #00A5E3;
}

.test_contents .h1_test.green span {
  color: #01AF84;
}

.test_contents .h1_test.dblue span {
  color: #00A6BA;
}

.test_contents .menu {
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  position: relative;
  cursor: pointer;
  margin: 0 auto 100px auto;
  max-width: 1200px;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.test_contents .menu:hover {
  opacity: 0.7;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1100px) {
  .test_contents .menu:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 830px) {
  .test_contents .menu {
    font-size: 1.8rem;
    padding: 15px;
    margin: 0 0 40px 0;
  }
}

.test_contents .menu::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/arrow_bt.png);
  background-size: 36px;
  width: 36px;
  height: 36px;
}

@media screen and (max-width: 830px) {
  .test_contents .menu::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    right: 15px;
  }
}

.test_contents .menu.is-active {
  margin: 0 auto;
}

.test_contents .menu.is-active::after {
  background: url(../../images/arrow_top.png);
  background-size: 36px;
}

@media screen and (max-width: 830px) {
  .test_contents .menu.is-active::after {
    background-size: 20px;
  }
}

.test_contents .menu.purple {
  background: #C1599D;
}

.test_contents .menu.violet {
  background: #757DBB;
}

.test_contents .menu.blue {
  background: #00A5E3;
}

.test_contents .menu.green {
  background: #01AF84;
}

.test_contents .menu.dblue {
  background: #00A6BA;
}

.test_contents .contents_txt {
  overflow: hidden;
  line-height: 0;
  opacity: 0;
  height: 0;
  padding: 0 20px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

.test_contents .contents_txt.is-open {
  padding: 60px 40px;
  line-height: 1.7;
  opacity: 1;
  height: auto;
  margin: 0 auto 100px auto;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt.is-open {
    padding: 20px;
    margin: 0 0 40px 0;
  }
}

.test_contents .contents_txt .read_txt {
  margin: 0 0 40px 0;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1100ms;
  transition: all 1100ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .read_txt {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    margin: 0 0 20px 0;
    font-size: 1.6rem;
  }
}

.test_contents .contents_txt .read_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.test_contents .contents_txt .read_txt.purple {
  color: #C1599D;
}

.test_contents .contents_txt .read_txt.violet {
  color: #757DBB;
}

.test_contents .contents_txt .read_txt.blue {
  color: #00A5E3;
}

.test_contents .contents_txt .read_txt.green {
  color: #01AF84;
}

.test_contents .contents_txt .read_txt.dblue {
  color: #00A6BA;
}

.test_contents .contents_txt .item_testtype p {
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  width: 100%;
  border-bottom: solid 2px #898989;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .item_testtype p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype p {
    margin: 0 0 15px 0;
    padding: 0 0 8px 0;
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .item_testtype p::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../images/sankaku_bt_grey.png);
  background-size: 12px 9px;
  width: 12px;
  height: 9px;
}

.test_contents .contents_txt .item_testtype ul {
  padding: 0 0 100px 0;
  margin: 0 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: dashed 3px #E9E5E2;
  opacity: 0;
  -webkit-transition: all 1100ms;
  transition: all 1100ms;
}

.test_contents .contents_txt .item_testtype ul.is-animated {
  opacity: 1;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul {
    padding: 0 0 40px 0;
    margin: 0 0 40px 0;
    border-bottom: dashed 2px #E9E5E2;
  }
}

.test_contents .contents_txt .item_testtype ul li {
  list-style: none;
  width: 14.2%;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 5px;
  border-left: solid 2px #898989;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #9FA0A0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .item_testtype ul li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li {
    font-size: 1.6rem;
    width: 33.3%;
    padding: 5px;
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .item_testtype ul li.active {
  color: #333333;
}

.test_contents .contents_txt .item_testtype ul li.active span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFF462));
  background: linear-gradient(transparent 80%, #FFF462 80%);
}

.test_contents .contents_txt .item_testtype ul li:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.test_contents .contents_txt .item_testtype ul li:nth-of-type(3) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li:nth-of-type(3) {
    border-right: solid 2px #898989;
  }
}

.test_contents .contents_txt .item_testtype ul li:nth-of-type(4) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li:nth-of-type(4) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.test_contents .contents_txt .item_testtype ul li:nth-of-type(5) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li:nth-of-type(5) {
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }
}

.test_contents .contents_txt .item_testtype ul li:nth-of-type(6) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li:nth-of-type(6) {
    -webkit-transition-delay: 400ms;
            transition-delay: 400ms;
    border-right: solid 2px #898989;
  }
}

.test_contents .contents_txt .item_testtype ul li:nth-of-type(7) {
  border-right: solid 2px #898989;
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .item_testtype ul li:nth-of-type(7) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
    width: 100%;
    margin: 0;
  }
}

.test_contents .contents_txt .arrow_bt {
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .arrow_bt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt {
    font-size: 1.8rem;
    padding: 15px;
  }
}

.test_contents .contents_txt .arrow_bt::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -22px;
  width: 29px;
  height: 22px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt::after {
    bottom: -15px;
    width: 22px;
    height: 15px;
  }
}

.test_contents .contents_txt .arrow_bt.purple {
  background: #C1599D;
}

.test_contents .contents_txt .arrow_bt.purple::after {
  background: url(../../images/sankaku_bt_purple.png);
  background-size: 29px 22px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt.purple::after {
    background-size: 22px 15px;
  }
}

.test_contents .contents_txt .arrow_bt.violet {
  background: #757DBB;
}

.test_contents .contents_txt .arrow_bt.violet::after {
  background: url(../../images/sankaku_bt_violet.png);
  background-size: 29px 22px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt.violet::after {
    background-size: 22px 15px;
  }
}

.test_contents .contents_txt .arrow_bt.blue {
  background: #00A5E3;
}

.test_contents .contents_txt .arrow_bt.blue::after {
  background: url(../../images/sankaku_bt_blue.png);
  background-size: 29px 22px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt.blue::after {
    background-size: 22px 15px;
  }
}

.test_contents .contents_txt .arrow_bt.green {
  background: #01AF84;
}

.test_contents .contents_txt .arrow_bt.green::after {
  background: url(../../images/sankaku_bt_green02.png);
  background-size: 29px 22px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt.green::after {
    background-size: 22px 15px;
  }
}

.test_contents .contents_txt .arrow_bt.dblue {
  background: #00A6BA;
}

.test_contents .contents_txt .arrow_bt.dblue::after {
  background: url(../../images/sankaku_bt_db.png);
  background-size: 29px 22px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .arrow_bt.dblue::after {
    background-size: 22px 15px;
  }
}

.test_contents .contents_txt .test_summary {
  margin: 0 0 100px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary {
    margin: 0 0 40px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner {
  padding: 80px 20px 120px 20px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner {
    padding: 40px 15px 30px 15px;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner.purple {
  background: #F2E2EE;
}

.test_contents .contents_txt .test_summary .test_summary_inner.violet {
  background: #E4E4F2;
}

.test_contents .contents_txt .test_summary .test_summary_inner.blue {
  background: #DCEEFA;
}

.test_contents .contents_txt .test_summary .test_summary_inner.green {
  background: #E0F0E7;
}

.test_contents .contents_txt .test_summary .test_summary_inner.dblue {
  background: #D9EEF2;
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex {
  max-width: 960px;
  margin: 0 auto 60px auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex {
    margin: 0 auto 30px auto;
    display: block;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_test {
  width: 48%;
  margin: 0 0 60px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_test {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_test:last-child {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_test:last-child {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .test_table {
  width: 48%;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .test_table {
    width: 100%;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme {
  width: 48%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme:last-child {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme:last-child {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
    margin: 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme .radius {
  background: #757DBB;
  padding: 10px;
  border-radius: 6rem;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme .radius {
    padding: 8px;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme h4 {
  padding: 10px 0;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
  background: #fff;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme h4 {
    padding: 8px 0;
    font-size: 1.6rem;
    margin: 10px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme p {
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .contents_flex .item_recomme p {
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .contents_flex:last-child {
  margin: 0;
}

.test_contents .contents_txt .test_summary .test_summary_inner .anonnotation {
  max-width: 960px;
  margin: 0 auto 60px auto;
  width: 100%;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .anonnotation {
    font-size: 1.5rem;
    margin: 0 auto 30px auto;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test {
  max-width: 960px;
  margin: 0 auto 60px auto;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test {
    margin: 0 auto 30px auto;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test:nth-last-of-type(1) {
  margin: 0 auto;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test h4 {
  padding: 10px 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px 0;
  background: #fff;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test h4 {
    padding: 8px 0;
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test p {
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test p {
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .price {
    font-size: 2rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price span {
  font-family: "Oswald", sans-serif;
  font-size: 5rem;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .price span {
    font-size: 3rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price.purple {
  color: #C1599D;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price.violet {
  color: #757DBB;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price.blue {
  color: #00A5E3;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price.green {
  color: #01AF84;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .price.dblue {
  color: #00A6BA;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test ol {
  margin: 0;
  padding: 0 0 0 20px;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test ol li {
  font-size: 1.8rem;
  margin: 0 0 5px 0;
  line-height: 1.7;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test ol li:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test ol li {
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table {
    margin: 0 0 15px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5 {
  margin: 0;
  padding: 10px;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5 {
    font-size: 1.6rem;
    padding: 8px;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5.purple {
  background: #D28FBC;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5.violet {
  background: #AEAED7;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5.blue {
  background: #9FD1F1;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5.green {
  background: #AAD1BB;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table h5.dblue {
  background: #82D1DC;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt {
  background: #fff;
  padding: 30px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt {
    padding: 15px;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6 {
    font-size: 1.5rem;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.purple {
  color: #C1599D;
  border-bottom: solid 3px #C1599D;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.purple {
    border-bottom: solid 2px #C1599D;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.violet {
  color: #757DBB;
  border-bottom: solid 3px #757DBB;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.violet {
    border-bottom: solid 2px #757DBB;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.blue {
  color: #00A5E3;
  border-bottom: solid 3px #00A5E3;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.blue {
    border-bottom: solid 2px #00A5E3;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.green {
  color: #01AF84;
  border-bottom: solid 3px #01AF84;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.green {
    border-bottom: solid 2px #01AF84;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.dblue {
  color: #00A6BA;
  border-bottom: solid 3px #00A6BA;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt h6.dblue {
    border-bottom: solid 2px #00A6BA;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p {
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p:last-child {
  margin: 0;
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p.big {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p.big {
    font-size: 1.6rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p.height {
  padding: 0 0 3.6rem 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p.height {
    padding: 0;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p.capacity {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .item_test .test_table .txt p.capacity {
    font-size: 1.8rem;
  }
}

.test_contents .contents_txt .test_summary .test_summary_inner .notes {
  text-align: right;
  font-size: 1.4rem;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_summary .test_summary_inner .notes {
    text-align: left;
  }
}

.test_contents .contents_txt .test_score {
  margin: 0 0 100px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score {
    margin: 0 0 40px 0;
  }
}

.test_contents .contents_txt .test_score .item_score {
  margin: 0 auto 60px auto;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score {
    margin: 0 auto 40px auto;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 960px;
  width: 100%;
  padding: 0;
  margin: 80px auto 0 auto;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list {
    display: block;
    margin: 30px auto 0 auto;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li {
  list-style: none;
  width: 48%;
  margin: 0 0 20px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.test_contents .contents_txt .test_score .item_score .score_list li:nth-of-type(2n) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li:nth-of-type(2n) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li {
    width: 100%;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .period {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .period {
    font-size: 1.6rem;
    margin: 0 0 5px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li h4 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 1rem 1rem 0 0;
  margin: 0;
  color: #fff;
}

.test_contents .contents_txt .test_score .item_score .score_list li h4.blue {
  background: #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .score_list li h4.green {
  background: #01AF84;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li h4 {
    font-size: 1.6rem;
    padding: 8px;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt {
  padding: 20px;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt {
    padding: 15px;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.height {
  margin: 0 0 44px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.height {
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.height02 {
  margin: 79px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.height02 {
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.annotation {
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.annotation {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.score {
  margin: auto 0 0 0;
  padding: 10px 0;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.score {
    padding: 8px 0;
    font-size: 1.6rem;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.score.blue {
  background: #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt &gt; p.score.green {
  background: #01AF84;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 10px 0 20px 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt .figure {
    display: block;
    margin: 10px 0 15px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box {
  padding: 10px 5px 15px 5px;
  background: #fff;
  position: relative;
  max-width: 196px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box {
    max-width: 100%;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box.blue {
  border: solid 2px #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box.green {
  border: solid 2px #01AF84;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box h5 {
  margin: 0;
  font-size: 1.8rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box h5 {
    font-size: 1.6rem;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box h5.blue {
  color: #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box h5.green {
  color: #01AF84;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box p {
  font-size: 1.6rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box p {
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box p.or {
  margin: 5px 0;
  font-size: 1.4rem;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box p.or.blue {
  color: #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box p.or.green {
  color: #01AF84;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box .new {
  position: absolute;
  top: -10px;
  right: -10px;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .box .new img {
  display: block;
  max-width: 42px;
  width: 100%;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .or_center {
  margin: auto 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .or_center {
    margin: 5px auto;
  }
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .or_center.blue {
  color: #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt .figure .or_center.green {
  color: #01AF84;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt.blue {
  background: #DCEEFA;
}

.test_contents .contents_txt .test_score .item_score .score_list li .txt.green {
  background: #E0F0E7;
}

.test_contents .contents_txt .test_score .item_score .score_list li .annotation_under {
  font-size: 1.4rem;
  margin: 10px 0 0 0;
}

.test_contents .contents_txt .test_score .item_score .item_explanation {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0 auto;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation {
    margin: 30px 0 0 0;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation.flex {
    display: block;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation.flex .txt_explanation {
  width: 48%;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation.flex .txt_explanation {
    width: 100%;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation {
    margin: 0 0 20px 0;
  }
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation:last-child {
    margin: 0;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation h4 {
  padding: 5px;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  margin: 0 0 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation h4 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation h4.blue {
  color: #00A5E3;
  background: #DCEEFA;
  border: solid 3px #6ABFEC;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation h4.blue {
    border: solid 2px #6ABFEC;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation h4.green {
  color: #01AF84;
  background: #E0F0E7;
  border: solid 3px #01AF84;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation h4.green {
    border: solid 2px #01AF84;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation ul {
  padding: 0 0 0 20px;
  margin: 0;
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation ul li {
  margin: 0 0 10px 0;
  line-height: 1.5;
  font-size: 1.8rem;
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation ul li:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation ul li {
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation ul.blue li span {
  color: #00A5E3;
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation ul.green li span {
  color: #01AF84;
}

.test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation p {
  font-size: 1.8rem;
  margin: 10px 0 0 0;
  line-height: 1.5;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score .item_explanation .txt_explanation p {
    font-size: 1.5rem;
  }
}

.test_contents .contents_txt .test_score .item_score &gt; p {
  font-size: 1.8rem;
  margin: 30px auto 0 auto;
  line-height: 2;
  max-width: 960px;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .test_contents .contents_txt .test_score .item_score &gt; p {
    font-size: 1.5rem;
    margin: 15px 0 0 0;
  }
}

.test_contents .btn {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1100ms;
  transition: all 1100ms;
}

@media screen and (max-width: 830px) {
  .test_contents .btn {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}

.test_contents .btn.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.test_contents .btn a {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  padding: 20px;
  background: #FFF462;
  border: solid 3px #ED6D00;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6rem;
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 830px) {
  .test_contents .btn a {
    font-size: 1.6rem;
    padding: 10px;
    border: solid 2px #ED6D00;
  }
}

.test_contents .btn a:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1100px) {
  .test_contents .btn a:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.test_contents .btn.small a {
  font-size: 1.8rem;
  padding: 15px;
  max-width: 440px;
}

@media screen and (max-width: 830px) {
  .test_contents .btn.small a {
    font-size: 1.6rem;
    padding: 10px;
  }
}

.test_contents .btn.small a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/icon_arrow.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 830px) {
  .test_contents .btn.small a::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    right: 15px;
  }
}

.test_contents .btn.arrow a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/icon_arrow.png);
  background-size: 28px;
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 830px) {
  .test_contents .btn.arrow a::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    right: 15px;
  }
}

/*-------------01.総合型選抜(MWS方式・探究成果活用方式・課題レポート方式)-------------*/
.t01 .contents_type .item_explanation {
  margin: 0 0 100px 0;
}

.t01 .contents_type .item_explanation.border {
  margin: 100px 0;
  padding: 100px 0 0 0;
  border-top: dashed 3px #E9E5E2;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation.border {
    margin: 40px 0;
    padding: 40px 0 0 0;
    border-top: dashed 2px #E9E5E2;
  }
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation {
    margin: 0 0 40px 0;
  }
}

.t01 .contents_type .item_explanation h2 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  margin: 0 0 60px 0;
  color: #C1599D;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation h2 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t01 .contents_type .item_explanation h2.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation h2 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
  }
}

.t01 .contents_type .item_explanation h2::before {
  content: '';
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/brackets_left.png);
  background-size: 20px 48px;
  width: 20px;
  height: 48px;
  position: relative;
  top: 12px;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation h2::before {
    margin: 0 5px 0 0;
    background-size: 10px 23px;
    width: 10px;
    height: 23px;
    top: 5px;
  }
}

.t01 .contents_type .item_explanation h2::after {
  content: '';
  display: inline-block;
  margin: 0 0 0 10px;
  background: url(../../images/brackets_right.png);
  background-size: 20px 48px;
  width: 20px;
  height: 48px;
  position: relative;
  top: 12px;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation h2::after {
    margin: 0 0 0 5px;
    background-size: 10px 23px;
    width: 10px;
    height: 23px;
    top: 5px;
  }
}

.t01 .contents_type .item_explanation p {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t01 .contents_type .item_explanation p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .item_explanation p {
    font-size: 1.5rem;
  }
}

.t01 .contents_type .test_flow {
  margin: 0;
}

.t01 .contents_type .test_flow .border_txt {
  margin: 60px 0;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.t01 .contents_type .test_flow .border_txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFF462));
  background: linear-gradient(transparent 80%, #FFF462 80%);
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .border_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    font-size: 1.6rem;
  }
}

.t01 .contents_type .test_flow .border_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t01 .contents_type .test_flow .border_txt.purple {
  color: #C1599D;
}

.t01 .contents_type .test_flow .border_txt.violet {
  color: #757DBB;
}

.t01 .contents_type .test_flow .border_txt.blue {
  color: #00A5E3;
}

.t01 .contents_type .test_flow .border_txt.green {
  color: #01AF84;
}

.t01 .contents_type .test_flow .border_txt.dblue {
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .border_txt {
    margin: 30px 0 20px 0;
  }
}

.t01 .contents_type .test_flow .flow_list {
  padding: 0;
  margin: 0 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  counter-reset: num;
  list-style: none;
}

.t01 .contents_type .test_flow .flow_list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list.center {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.t01 .contents_type .test_flow .flow_list.center li {
  margin: 0 30px 0 0;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list.center li {
    margin: 0 0 15px 0;
  }
}

.t01 .contents_type .test_flow .flow_list.center li:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list.center li:last-child {
    width: 100%;
  }
}

.t01 .contents_type .test_flow .flow_list.center li:last-child::after {
  content: '';
  position: static;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list {
    margin: 0 0 15px 0;
  }
}

.t01 .contents_type .test_flow .flow_list li {
  position: relative;
  width: 23.1%;
  background: #EAE4D1;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2rem;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}

.t01 .contents_type .test_flow .flow_list li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li {
    width: 47.55%;
    padding: 20px 15px;
    border-radius: 1.5rem;
    margin: 0 0 15px 0;
  }
  .t01 .contents_type .test_flow .flow_list li:nth-of-type(3) {
    margin: 0;
  }
  .t01 .contents_type .test_flow .flow_list li:nth-of-type(4) {
    margin: 0;
  }
}

.t01 .contents_type .test_flow .flow_list li::before {
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  position: absolute;
  top: -10px;
  left: -10px;
  background: #C1599D;
  background-size: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li::before {
    background-size: 25px;
    width: 25px;
    height: 25px;
    top: -5px;
    right: -5px;
    font-size: 1.5rem;
  }
}

.t01 .contents_type .test_flow .flow_list li.y {
  background: #FFF799;
  border: solid 4px #C1599D;
  color: #C1599D;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li.y {
    border: solid 2px #C1599D;
  }
}

.t01 .contents_type .test_flow .flow_list li.y span {
  font-size: 3.2rem;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li.y span {
    font-size: 2.2rem;
  }
}

.t01 .contents_type .test_flow .flow_list li span {
  display: block;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li span {
    font-size: 1.6rem;
  }
}

.t01 .contents_type .test_flow .flow_list li .icon {
  margin: 30px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li .icon {
    margin: 15px 0 0 0;
  }
}

.t01 .contents_type .test_flow .flow_list li .icon img {
  max-width: 154px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li .icon img {
    max-width: 100px;
  }
}

.t01 .contents_type .test_flow .flow_list li .icon.s img {
  max-width: 110px;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li .icon.s img {
    max-width: 60px;
  }
}

.t01 .contents_type .test_flow .flow_list li:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.t01 .contents_type .test_flow .flow_list li:nth-of-type(3) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li:nth-of-type(3) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.t01 .contents_type .test_flow .flow_list li:nth-of-type(4) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.t01 .contents_type .test_flow .flow_list li:nth-of-type(4)::after {
  content: none;
  position: static;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow .flow_list li:nth-of-type(4) {
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms;
  }
}

.t01 .contents_type .test_flow p {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t01 .contents_type .test_flow p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t01 .contents_type .test_flow p.center {
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_flow p {
    font-size: 1.5rem;
  }
}

.t01 .contents_type .test_point {
  margin: 100px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point {
    margin: 40px 0 0 0;
  }
}

.t01 .contents_type .test_point .test_point_inner {
  padding: 50px 100px;
}

@media screen and (max-width: 1400px) {
  .t01 .contents_type .test_point .test_point_inner {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner {
    padding: 20px 15px;
  }
}

.t01 .contents_type .test_point .test_point_inner.purple {
  border: solid 6px #DEB1D1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner.purple {
    border: solid 3px #DEB1D1;
    border-top: none;
  }
}

.t01 .contents_type .test_point .test_point_inner.violet {
  border: solid 6px #E4E4F2;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner.violet {
    border: solid 3px #E4E4F2;
    border-top: none;
  }
}

.t01 .contents_type .test_point .test_point_inner.blue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner.blue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t01 .contents_type .test_point .test_point_inner.green {
  border: solid 6px #BDE0CE;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner.green {
    border: solid 3px #BDE0CE;
    border-top: none;
  }
}

.t01 .contents_type .test_point .test_point_inner.dblue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner.dblue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt {
  margin: 0 0 40px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t01 .contents_type .test_point .test_point_inner .txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt {
    margin: 0 0 15px 0;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt:last-child {
  margin: 0;
}

.t01 .contents_type .test_point .test_point_inner .txt h5 {
  margin: 0 0 10px 0;
  position: relative;
  padding: 0 0 0 30px;
}

.t01 .contents_type .test_point .test_point_inner .txt h5:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt h5 {
    padding: 0 0 0 20px;
    margin: 0 0 5px 0;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt h5::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt h5::after {
    width: 16px;
    height: 16px;
    top: 5px;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt h5.maru::after {
  background: #C1599D;
  background-size: 24px;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt h5.maru::after {
    background-size: 16px;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt h5 span {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt h5 span {
    font-size: 1.6rem;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt h5 img {
  display: inline-block;
  margin: auto 30px auto 10px;
  max-width: 28px;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt h5 img {
    max-width: 14px;
    margin: auto 20px auto 8px;
  }
}

.t01 .contents_type .test_point .test_point_inner .txt p {
  padding: 0 0 0 30px;
  margin: 0;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point .test_point_inner .txt p {
    font-size: 1.5rem;
    padding: 0 0 0 20px;
  }
}

.t01 .contents_type .test_point.mb {
  margin-bottom: 100px;
}

@media screen and (max-width: 830px) {
  .t01 .contents_type .test_point.mb {
    margin-bottom: 40px;
  }
}

/*-------------02.学校推薦型選抜-------------*/
.t02 .contents_txt .test_flow {
  margin: 0 0 100px 0;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow {
    margin: 0 0 40px 0;
  }
}

.t02 .contents_txt .test_flow .flow_recomme {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 20px auto;
  margin: 80px auto 0 auto;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme {
    margin: 0 auto 15px auto;
  }
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme {
    margin: 30px auto 0 auto;
  }
}

.t02 .contents_txt .test_flow .flow_recomme h4 {
  padding: 8px;
  border-radius: 8px 8px 0 0;
  margin: 0;
  font-size: 2rem;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  background: #AEAED7;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_flow .flow_recomme h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme h4 {
    font-size: 1.6rem;
    padding: 5px;
  }
}

.t02 .contents_txt .test_flow .flow_recomme .contents_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #E4E4F2;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border-radius: 0 0 2rem 2rem;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .contents_flex {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_flow .flow_recomme .contents_flex.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .contents_flex {
    padding: 15px;
    border-radius: 0 0 1.5rem 1.5rem;
  }
}

.t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item {
  width: 50%;
}

.t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

.t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item &gt; img {
  display: block;
  width: auto;
  height: 120px;
  margin: 0 auto;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item &gt; img {
    height: 80px;
  }
}

.t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item &gt; h5 {
  margin: 20px 0 0 0;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .contents_flex .flex_item &gt; h5 {
    margin: 10px 0 0 0;
    font-size: 1.6rem;
  }
}

.t02 .contents_txt .test_flow .flow_recomme p {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
  font-size: 1.8rem;
  margin: 20px 0 0 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_flow .flow_recomme p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme p {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }
}

.t02 .contents_txt .test_flow .flow_recomme .sankaku {
  display: block;
  margin: 20px auto;
  max-width: 40px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .sankaku {
    max-width: 20px;
    margin: 10px auto;
  }
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .sankaku {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_flow .flow_recomme .sankaku.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t02 .contents_txt .test_flow .flow_recomme .lunch_txt {
  padding: 8px;
  border-radius: 8px;
  margin: 0;
  font-size: 2rem;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  background: #AEAED7;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .lunch_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_flow .flow_recomme .lunch_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme .lunch_txt {
    font-size: 1.6rem;
    padding: 5px;
  }
}

.t02 .contents_txt .test_flow .flow_recomme &gt; .contents {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme &gt; .contents {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_flow .flow_recomme &gt; .contents.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t02 .contents_txt .test_flow .flow_recomme &gt; .contents .item_txt {
  background: #E4E4F2;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme &gt; .contents .item_txt {
    padding: 15px;
  }
}

.t02 .contents_txt .test_flow .flow_recomme &gt; .contents .item_txt &gt; img {
  display: block;
  width: auto;
  height: 120px;
  margin: 0 auto;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme &gt; .contents .item_txt &gt; img {
    height: 80px;
  }
}

.t02 .contents_txt .test_flow .flow_recomme &gt; .contents .item_txt &gt; h5 {
  margin: 20px 0 0 0;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_flow .flow_recomme &gt; .contents .item_txt &gt; h5 {
    margin: 10px 0 0 0;
    font-size: 1.6rem;
  }
}

.t02 .contents_txt .test_point .test_point_inner {
  padding: 50px 100px;
}

@media screen and (max-width: 1400px) {
  .t02 .contents_txt .test_point .test_point_inner {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner {
    padding: 20px 15px;
  }
}

.t02 .contents_txt .test_point .test_point_inner.purple {
  border: solid 6px #DEB1D1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner.purple {
    border: solid 3px #DEB1D1;
    border-top: none;
  }
}

.t02 .contents_txt .test_point .test_point_inner.violet {
  border: solid 6px #E4E4F2;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner.violet {
    border: solid 3px #E4E4F2;
    border-top: none;
  }
}

.t02 .contents_txt .test_point .test_point_inner.blue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner.blue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t02 .contents_txt .test_point .test_point_inner.green {
  border: solid 6px #BDE0CE;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner.green {
    border: solid 3px #BDE0CE;
    border-top: none;
  }
}

.t02 .contents_txt .test_point .test_point_inner.dblue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner.dblue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t02 .contents_txt .test_point .test_point_inner .border_txt {
  margin: 30px 0;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.t02 .contents_txt .test_point .test_point_inner .border_txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFF462));
  background: linear-gradient(transparent 80%, #FFF462 80%);
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .border_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    font-size: 1.6rem;
  }
}

.t02 .contents_txt .test_point .test_point_inner .border_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t02 .contents_txt .test_point .test_point_inner .border_txt.purple {
  color: #C1599D;
}

.t02 .contents_txt .test_point .test_point_inner .border_txt.violet {
  color: #757DBB;
}

.t02 .contents_txt .test_point .test_point_inner .border_txt.blue {
  color: #00A5E3;
}

.t02 .contents_txt .test_point .test_point_inner .border_txt.green {
  color: #01AF84;
}

.t02 .contents_txt .test_point .test_point_inner .border_txt.dblue {
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .border_txt {
    margin: 20px 0 20px 0;
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt {
  margin: 0 0 40px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt {
    margin: 0 0 15px 0;
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt:last-child {
  margin: 0;
}

.t02 .contents_txt .test_point .test_point_inner .txt h5 {
  margin: 0 0 10px 0;
  position: relative;
  padding: 0 0 0 30px;
}

.t02 .contents_txt .test_point .test_point_inner .txt h5:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt h5 {
    padding: 0 0 0 20px;
    margin: 0 0 10px 0;
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt h5.maru::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #757DBB;
  background-size: 24px;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt h5.maru::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
    top: 5px;
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt h5 span {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt h5 span {
    font-size: 1.6rem;
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt h5 img {
  display: inline-block;
  margin: auto 30px auto 10px;
  max-width: 28px;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt h5 img {
    max-width: 14px;
    margin: auto 20px auto 8px;
  }
}

.t02 .contents_txt .test_point .test_point_inner .txt p {
  padding: 0 0 0 30px;
  margin: 0;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 830px) {
  .t02 .contents_txt .test_point .test_point_inner .txt p {
    font-size: 1.5rem;
    padding: 0 0 0 20px;
  }
}

/*-------------03.一般選抜 独自試験(S方式)-------------*/
.t03 .contents_txt .test_point .test_point_inner {
  padding: 50px 100px;
}

@media screen and (max-width: 1400px) {
  .t03 .contents_txt .test_point .test_point_inner {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner {
    padding: 20px 15px;
  }
}

.t03 .contents_txt .test_point .test_point_inner.purple {
  border: solid 6px #DEB1D1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner.purple {
    border: solid 3px #DEB1D1;
    border-top: none;
  }
}

.t03 .contents_txt .test_point .test_point_inner.violet {
  border: solid 6px #E4E4F2;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner.violet {
    border: solid 3px #E4E4F2;
    border-top: none;
  }
}

.t03 .contents_txt .test_point .test_point_inner.blue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner.blue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t03 .contents_txt .test_point .test_point_inner.green {
  border: solid 6px #BDE0CE;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner.green {
    border: solid 3px #BDE0CE;
    border-top: none;
  }
}

.t03 .contents_txt .test_point .test_point_inner.dblue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner.dblue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt {
  margin: 0 0 60px 0;
}

.t03 .contents_txt .test_point .test_point_inner .txt:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt {
    margin: 0 0 30px 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFF462));
  background: linear-gradient(transparent 80%, #FFF462 80%);
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .border_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    font-size: 1.6rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt.purple {
  color: #C1599D;
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt.violet {
  color: #757DBB;
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt.blue {
  color: #00A5E3;
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt.green {
  color: #01AF84;
}

.t03 .contents_txt .test_point .test_point_inner .txt .border_txt.dblue {
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .border_txt {
    margin: 0 0 20px 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt &gt; p {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt &gt; p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt &gt; p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt &gt; p {
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex {
    display: block;
    margin: 20px 0 0 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case {
  width: 48%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case:last-child {
    margin: 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner {
  padding: 30px 20px;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner.blue {
  background: #DCEEFA;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner.green {
  background: #E0F0E7;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner {
    padding: 20px 15px;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h5 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h5 {
    font-size: 1.6rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6 {
  padding: 10px;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px 0;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6.blue {
  background: #00A5E3;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6.green {
  background: #01AF84;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6 {
    font-size: 1.6rem;
    margin: 15px 0 10px 0;
    padding: 8px;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul {
  padding: 0;
  margin: 0;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul.blue li {
  color: #00A5E3;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul.green li {
  color: #01AF84;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul li {
  list-style: none;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul li {
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case p {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  margin: 10px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .case p {
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject {
  width: 48%;
  background: #DCEEFA;
  border-radius: 2rem;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject {
    width: 100%;
    margin: 0 0 15px 0;
    border-radius: 1.5rem;
  }
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject:last-child {
    margin: 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject h5 {
  margin: 0;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #00A5E3;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject h5 {
    font-size: 1.6rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject p {
  text-align: center;
  margin: 0;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject p {
    font-size: 1.6rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_flex .subject p span {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0 5px;
  background: #fff;
  color: #00A5E3;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million {
  padding: 40px 20px;
  margin: 60px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #FFF799;
  border-radius: 2rem;
  border: solid 3px #6ABFEC;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million {
    padding: 20px 15px;
    margin: 20px 0 0 0;
    border-radius: 1.5rem;
    border: solid 2px #6ABFEC;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../images/sankaku_top_water.png);
  background-size: 29px 22px;
  width: 29px;
  height: 22px;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million::before {
    background-size: 20px 15px;
    width: 20px;
    height: 15px;
    top: -15px;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million h5 {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million h5 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million h5.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million h5 {
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .million {
  margin: 10px 0 40px 0;
  text-align: center;
  margin: 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .million {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .million.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .million {
    font-size: 1.6rem;
    margin: 10px 0 20px 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .million span {
  color: #6ABFEC;
  font-size: 3.6rem;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .million span {
    font-size: 2.2rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .million::before {
  content: '';
  display: inline-block;
  margin: 0 20px 0 0;
  background: url(../../images/icon_diagonal_l_w.png);
  background-size: 26px 41px;
  width: 26px;
  height: 41px;
  position: relative;
  top: 5px;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .million::before {
    margin: 0 5px 0 0;
    background-size: 13px 20px;
    width: 13px;
    height: 20px;
    top: 2px;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .million::after {
  content: '';
  display: inline-block;
  margin: 0 0 0 20px;
  background: url(../../images/icon_diagonal_r_w.png);
  background-size: 26px 41px;
  width: 26px;
  height: 41px;
  position: relative;
  top: 5px;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .million::after {
    margin: 0 0 0 5px;
    background-size: 13px 20px;
    width: 13px;
    height: 20px;
    top: 2px;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year {
    margin: 20px 0 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year {
  width: 17.73%;
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year {
    -webkit-transform: translate(-30px, 0);
            transform: translate(-30px, 0);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year {
    width: 48%;
    margin: 0 0 15px 0;
  }
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year:last-child {
    margin: 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year:nth-of-type(3) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year:nth-of-type(4) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year:nth-of-type(5) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year p {
  text-align: center;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year p {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year .price {
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2rem;
  background: #9FD1F1;
  font-size: 2.4rem;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year .price {
    font-size: 1.6rem;
    padding: 5px 10px;
    border-radius: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year .price span {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .item_year .year .price span {
    font-size: 2rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .item_million .annotation {
  margin: 20px 0 0 0;
  font-size: 1.8rem;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .item_million .annotation {
    margin: 10px 0 0 0;
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount {
  margin: 0 0 40px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount {
    margin: 0 0 20px 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount:last-child {
  margin: 0;
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount h5 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount h5 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount .formula {
    display: block;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.f {
  background: #DCEEFA;
  padding: 6px 0 10px 0;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #00A5E3;
  line-height: 1.4;
  width: 100%;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.f {
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.f span {
  font-size: 1.4rem;
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.y {
  background: #FFF799;
  padding: 6px 0 10px 0;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #00A5E3;
  line-height: 1.5;
  border: solid 2px #00A5E3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.y {
    font-size: 1.5rem;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.y span {
  font-size: 1.4rem;
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img {
  max-width: 15px;
  width: 100%;
  margin: 0 7px;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img {
    margin: 10px auto;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img img {
  width: 100%;
  margin: 0 auto;
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img img.pc {
  display: block;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img img.pc {
    display: none;
  }
}

.t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img img.sp {
  display: none;
}

@media screen and (max-width: 830px) {
  .t03 .contents_txt .test_point .test_point_inner .txt .discount .formula li.img img.sp {
    display: block;
    height: 15px;
    width: auto;
  }
}

/*-------------04.一般選抜 独自試験(前期・後期)-------------*/
.t04 .contents_txt .test_point .test_point_inner {
  padding: 50px 100px;
}

@media screen and (max-width: 1400px) {
  .t04 .contents_txt .test_point .test_point_inner {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner {
    padding: 20px 15px;
  }
}

.t04 .contents_txt .test_point .test_point_inner.purple {
  border: solid 6px #DEB1D1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner.purple {
    border: solid 3px #DEB1D1;
    border-top: none;
  }
}

.t04 .contents_txt .test_point .test_point_inner.violet {
  border: solid 6px #E4E4F2;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner.violet {
    border: solid 3px #E4E4F2;
    border-top: none;
  }
}

.t04 .contents_txt .test_point .test_point_inner.blue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner.blue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t04 .contents_txt .test_point .test_point_inner.green {
  border: solid 6px #BDE0CE;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner.green {
    border: solid 3px #BDE0CE;
    border-top: none;
  }
}

.t04 .contents_txt .test_point .test_point_inner.dblue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner.dblue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt {
  margin: 0 0 60px 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt {
    margin: 0 0 30px 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFF462));
  background: linear-gradient(transparent 80%, #FFF462 80%);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .border_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    font-size: 1.6rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt.purple {
  color: #C1599D;
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt.violet {
  color: #757DBB;
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt.blue {
  color: #00A5E3;
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt.green {
  color: #01AF84;
}

.t04 .contents_txt .test_point .test_point_inner .txt .border_txt.dblue {
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .border_txt {
    margin: 0 0 20px 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt &gt; p {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt &gt; p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt &gt; p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt &gt; p {
    font-size: 1.5rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex {
    display: block;
    margin: 20px 0 0 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case {
  width: 48%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case:last-child {
    margin: 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner {
  padding: 30px 20px;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner.blue {
  background: #DCEEFA;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner.green {
  background: #E0F0E7;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner {
    padding: 20px 15px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h5 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h5 {
    font-size: 1.6rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6 {
  padding: 10px;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6.blue {
  background: #00A5E3;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6.green {
  background: #01AF84;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner h6 {
    font-size: 1.6rem;
    margin: 15px 0 10px 0;
    padding: 8px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul {
  padding: 0;
  margin: 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul.blue li {
  color: #00A5E3;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul.green li {
  color: #01AF84;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul li {
  list-style: none;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case .case_inner ul li {
    font-size: 1.5rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case p {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  margin: 10px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .case p {
    font-size: 1.5rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day {
  width: 48%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day:last-child {
    margin: 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day &gt; h6 {
  background: #E0F0E7;
  padding: 8px;
  text-align: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day &gt; h6 {
    font-size: 1.6rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt {
  padding: 20px;
  background: #E9E5E2;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt {
    padding: 15px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt h6 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  color: #01AF84;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  border-bottom: solid 3px #01AF84;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt h6 {
    margin: 0 0 15px 0;
    padding: 0 0 8px 0;
    color: #01AF84;
    font-size: 1.6rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .maru {
  padding: 0;
  margin: 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .maru li {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0 0 0 30px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .maru li {
    padding: 0 0 0 26px;
    font-size: 1.5rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .maru li:last-child {
  margin: 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .maru li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  background: #01AF84;
  background-size: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .maru li::before {
    background-size: 16px;
    width: 16px;
    height: 16px;
    top: 5px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .subject_list {
  padding: 0;
  margin: 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .subject_list li {
  list-style: none;
  margin: 0 0 10px 0;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .subject_list li {
    font-size: 1.5rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .subject_list li:last-child {
  margin: 0;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_flex .day .txt &gt; .subject_list li span {
  color: #01AF84;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table {
  margin: 60px 0;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table {
    margin: 20px 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table &gt; h5 {
  padding: 15px;
  background: #01AF84;
  margin: 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table &gt; h5 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table &gt; h5.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table &gt; h5 {
    font-size: 1.6rem;
    padding: 10px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table &gt; h5 span {
  font-size: 5rem;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table &gt; h5 span {
    font-size: 2rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner {
  border: solid 2px #333333;
  background: #fff;
  border-top: none;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner {
    padding: 15px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul {
    display: block;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul li {
  list-style: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul li {
    margin: 0 0 10px 0;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul li.g {
  padding: 15px 10px 10px 10px;
  border-radius: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  background: #E0F0E7;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul li.g {
    padding: 10px 10px 8px 10px;
    font-size: 1.6rem;
    border-radius: 1.5rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul li img {
  display: block;
  margin: 0 10px;
  width: 14px;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner ul li img {
    margin: 0 auto;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .equal {
  margin: 20px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .equal {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .equal.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .equal {
    margin: 10px auto;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .equal img {
  display: block;
  margin: 0 auto;
  max-width: 9px;
  width: 100%;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y {
  padding: 25px 15px;
  background: #FFF799;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y {
    padding: 15px 10px;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y h5 {
  margin: 0;
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y h5 {
    font-size: 2.2rem;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_table .item_table_inner .y h5 span {
  color: #01AF84;
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_quiz_ex h5 {
  margin: 0;
  padding: 8px;
  background: #FFF799;
  border: solid 3px #01AF84;
  border-radius: 6rem;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_quiz_ex h5 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_quiz_ex h5.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t04 .contents_txt .test_point .test_point_inner .txt .item_quiz_ex h5 {
    font-size: 1.6rem;
    border-radius: 3rem;
    border: solid 2px #01AF84;
  }
}

.t04 .contents_txt .test_point .test_point_inner .txt .item_quiz_ex h5 span {
  color: #01AF84;
}

/*-------------05.一般選抜 大学入学共通テスト利用(前期・後期)-------------*/
.t05 .contents_txt .test_score .item_score {
  margin: 60px 0 0 0;
  padding: 60px 20px;
  background: #fff;
  border: dashed 2px #00A5E3;
}

.t05 .contents_txt .test_score .item_score:last-child {
  border-top: dashed 2px #00A5E3;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score {
    padding: 30px 15px 15px 15px;
    margin: 30px 0 0 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.t05 .contents_txt .test_score .item_score .item_score_inner ul {
  padding: 0;
  margin: 0;
}

.t05 .contents_txt .test_score .item_score .item_score_inner ul li {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0 0 0 30px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner ul li {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner ul li.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t05 .contents_txt .test_score .item_score .item_score_inner ul li:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner ul li:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner ul li {
    padding: 0 0 0 26px;
    font-size: 1.5rem;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner ul li:last-child {
  margin: 0;
}

.t05 .contents_txt .test_score .item_score .item_score_inner ul li::before {
  content: '';
  display: inline-block;
  margin: 0 5px 0 0;
  position: relative;
  top: 2px;
  background: #00A6BA;
  background-size: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner ul li::before {
    background-size: 16px;
    width: 16px;
    height: 16px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department {
  margin: 60px 0;
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department {
    margin: 30px 0 20px 0;
  }
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department:last-child {
    margin: 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department h4 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 10px;
  background: #00A6BA;
  text-align: center;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department h4 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department h4.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department h4 {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt {
  padding: 20px;
  background: #D9EEF2;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt {
    padding: 15px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner h5 {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  background: #82D1DC;
  padding: 8px;
  margin: 0;
  color: #fff;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner h5 {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner h5 span {
  color: #FFF462;
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner p {
  padding: 20px;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  background: #fff;
  margin: 0;
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner p span {
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .txt_inner p {
    font-size: 1.6rem;
    padding: 5px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .img {
  margin: 20px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .img {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .img {
    margin: 10px 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .img img {
  display: block;
  height: 15px;
  margin: 0 auto;
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .y {
  padding: 15px;
  background: #FFF799;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .y {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .y.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .y {
    padding: 10px 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .y h5 {
  margin: 0;
  text-align: center;
  font-size: 3.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .item_department .txt .y h5 {
    font-size: 2.4rem;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .center {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .center {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .center.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .center {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .flex_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .flex_item {
    display: block;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .flex_item .subject {
  width: 48%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .flex_item .subject {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .flex_item .subject.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t05 .contents_txt .test_score .item_score .item_score_inner .flex_item .subject:nth-of-type(2) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .flex_item .subject:nth-of-type(2) {
    -webkit-transition-delay: 0ms;
            transition-delay: 0ms;
  }
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .flex_item .subject {
    width: 100%;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject {
    margin: 0 0 15px 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject h5 {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 10px;
  background: #00A6BA;
  text-align: center;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject h5 {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject h5.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject h5 {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner {
  background: #D9EEF2;
  padding: 30px;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner {
    padding: 15px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner p {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner p {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner p:last-child {
  margin: 0;
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex {
  background: #D9EEF2;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex {
    padding: 15px;
    display: block;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt {
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
  }
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt:last-child {
    margin: 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt h6 {
  padding: 8px;
  background: #82D1DC;
  text-align: center;
  margin: 0;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt h6 {
    font-size: 1.6rem;
    padding: 5px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt .txt_inner {
  padding: 30px;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt .txt_inner {
    padding: 15px;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt .txt_inner p {
  margin: 0;
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt .txt_inner p {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
  }
}

.t05 .contents_txt .test_score .item_score .item_score_inner .subject .subject_inner_flex .txt .txt_inner p:last-child {
  margin: 0;
}

.t05 .contents_txt .test_point .test_point_inner {
  padding: 50px 100px;
}

@media screen and (max-width: 1400px) {
  .t05 .contents_txt .test_point .test_point_inner {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner {
    padding: 20px 15px;
  }
}

.t05 .contents_txt .test_point .test_point_inner.purple {
  border: solid 6px #DEB1D1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner.purple {
    border: solid 3px #DEB1D1;
    border-top: none;
  }
}

.t05 .contents_txt .test_point .test_point_inner.violet {
  border: solid 6px #E4E4F2;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner.violet {
    border: solid 3px #E4E4F2;
    border-top: none;
  }
}

.t05 .contents_txt .test_point .test_point_inner.blue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner.blue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t05 .contents_txt .test_point .test_point_inner.green {
  border: solid 6px #BDE0CE;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner.green {
    border: solid 3px #BDE0CE;
    border-top: none;
  }
}

.t05 .contents_txt .test_point .test_point_inner.dblue {
  border: solid 6px #9FD1F1;
  border-top: none;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner.dblue {
    border: solid 3px #9FD1F1;
    border-top: none;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt {
  margin: 0 0 60px 0;
}

.t05 .contents_txt .test_point .test_point_inner .txt:last-child {
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt {
    margin: 0 0 30px 0;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #FFF462));
  background: linear-gradient(transparent 80%, #FFF462 80%);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .border_txt {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
    font-size: 1.6rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt.purple {
  color: #C1599D;
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt.violet {
  color: #757DBB;
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt.blue {
  color: #00A5E3;
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt.green {
  color: #01AF84;
}

.t05 .contents_txt .test_point .test_point_inner .txt .border_txt.dblue {
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .border_txt {
    margin: 0 0 20px 0;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt &gt; p {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt &gt; p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt &gt; p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt &gt; p {
    font-size: 1.5rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .subject {
  background: #D9EEF2;
  border-radius: 2rem;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 30px 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .subject {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .subject.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .subject {
    margin: 15px 0 0 0;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .subject p {
  text-align: center;
  margin: 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .subject p {
    font-size: 1.6rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .subject p span {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0 5px;
  background: #fff;
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .subject p span {
    margin: 0 0 0 5px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand {
  padding: 40px 20px;
  margin: 40px 0 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #FFF799;
  border-radius: 2rem;
  border: solid 3px #82D1DC;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand {
    padding: 20px 15px;
    margin: 20px 0 30px 0;
    border-radius: 1.5rem;
    border: solid 2px #82D1DC;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../../images/sankaku_top_db.png);
  background-size: 29px 22px;
  width: 29px;
  height: 22px;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand::before {
    background-size: 20px 15px;
    width: 20px;
    height: 15px;
    top: -15px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand {
  margin: 0;
  text-align: center;
  margin: 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand {
    font-size: 1.6rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand span {
  color: #00A6BA;
  font-size: 3.6rem;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand span {
    font-size: 2.2rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand::before {
  content: '';
  display: inline-block;
  margin: 0 20px 0 0;
  background: url(../../images/icon_diagonal_l_ww.png);
  background-size: 26px 41px;
  width: 26px;
  height: 41px;
  position: relative;
  top: 5px;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand::before {
    margin: 0 5px 0 0;
    background-size: 13px 20px;
    width: 13px;
    height: 20px;
    top: 2px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand::after {
  content: '';
  display: inline-block;
  margin: 0 0 0 20px;
  background: url(../../images/icon_diagonal_r_ww.png);
  background-size: 26px 41px;
  width: 26px;
  height: 41px;
  position: relative;
  top: 5px;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .thousand::after {
    margin: 0 0 0 5px;
    background-size: 13px 20px;
    width: 13px;
    height: 20px;
    top: 2px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .img {
  margin: 20px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .img {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand .img img {
  display: block;
  max-width: 9px;
  width: 100%;
  margin: 0 auto;
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand p {
  text-align: center;
  margin: 0;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand p {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand p.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand p {
    font-size: 1.6rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_thousand p span {
  color: #00A6BA;
  font-size: 3.6rem;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_thousand p span {
    font-size: 2.2rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w {
  margin: 30px auto 60px auto;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w {
    margin: 15px auto 30px auto;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list {
    display: block;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .w {
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .w {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .w.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .w p {
  padding: 20px 10px;
  background: #D9EEF2;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: 2rem;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .w p {
    padding: 10px;
    font-size: 1.6rem;
    border-radius: 1.5rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .img {
  margin: 0 12px;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .img {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .img {
    margin: 10px 0;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .w_list .img img {
  display: block;
  width: 15px;
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .img {
  margin: 20px 0;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .img {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .img.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .img {
    margin: 10px 0;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .img img {
  display: block;
  height: 15px;
  margin: 0 auto;
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .y {
  padding: 20px;
  background: #FFF799;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .y {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .y.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .y {
    padding: 15px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .y p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .y p {
    font-size: 1.5rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .y .big {
  font-size: 2.4rem;
  margin: 0 0 5px 0;
  line-height: 1.5;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt .item_w .y .big {
    font-size: 2.2rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt .item_w .y .big .b {
  color: #00A6BA;
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 {
  border: dashed 2px #00A6BA;
  padding: 40px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 {
    padding: 20px 15px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: dashed 3px #E9E5E2;
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount.is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: dashed 2px #E9E5E2;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount &gt; p {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount &gt; p {
    font-size: 1.5rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .annotation {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 400;
  text-align: right;
  margin: 10px 0 0 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .annotation {
    text-align: center;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex {
    display: block;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .discount_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .discount_inner {
    display: block;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .discount_inner &gt; div {
  width: 100%;
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .discount_inner &gt; div p {
  margin: 0;
  line-height: 1.2;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #00A6BA;
  padding: 8px 2px;
  background: #D9EEF2;
  border-radius: 1rem;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .discount_inner &gt; div p {
    font-size: 1.6rem;
    border-radius: 1.5rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .img {
  margin: auto 7px;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .img {
    margin: 10px auto;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .discount_flex .img img {
  display: block;
  width: 15px;
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .img {
  margin: 20px 0;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .img {
    margin: 10px 0;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .img img {
  display: block;
  height: 15px;
  margin: 0 auto;
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .y {
  background: #FFF799;
  border: solid 2px #00A6BA;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .y {
    padding: 10px;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .y p {
  margin: 0;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #00A6BA;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .y p {
    font-size: 1.5rem;
  }
}

.t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .y p span {
  padding: 2px;
  display: inline-block;
  width: 136px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
  color: #333333;
  margin: 0 0 0 10px;
  border: solid 2px #00A6BA;
}

@media screen and (max-width: 830px) {
  .t05 .contents_txt .test_point .test_point_inner .txt.t03 .discount .y p span {
    font-size: 1.5rem;
    display: block;
    margin: 0 auto;
  }
}

/*-------------footer-------------*/
footer .pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  margin: 0;
  z-index: 2;
}

@media screen and (max-width: 830px) {
  footer .pagetop {
    bottom: 15px;
    right: 15px;
  }
}

footer .pagetop a {
  display: block;
}

footer .pagetop a img {
  display: block;
  max-width: 80px;
}

@media screen and (max-width: 830px) {
  footer .pagetop a img {
    max-width: 60px;
  }
}

footer .footer_innner01 {
  padding: 60px 20px;
}

@media screen and (max-width: 830px) {
  footer .footer_innner01 {
    padding: 20px;
  }
}

footer .footer_innner01 h1 {
  margin: 0 0 40px 0;
}

@media screen and (max-width: 830px) {
  footer .footer_innner01 h1 {
    margin: 0 0 20px 0;
  }
}

footer .footer_innner01 h1 img {
  display: block;
  margin: 0 auto;
  max-width: 538px;
  width: 100%;
}

@media screen and (max-width: 830px) {
  footer .footer_innner01 h1 img {
    max-width: 240px;
  }
}

footer .footer_innner01 .btn a {
  display: block;
  color: #fff;
  padding: 40px 20px;
  background: #0599D9;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .footer_innner01 .btn a:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 1100px) {
  footer .footer_innner01 .btn a:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

footer .footer_innner01 .btn a span {
  color: #FFF462;
}

footer .footer_innner01 .btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  background: url(../../images/arrow_right.png);
  background-size: 24px;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 830px) {
  footer .footer_innner01 .btn a::after {
    right: 15px;
    background-size: 18px;
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 830px) {
  footer .footer_innner01 .btn a {
    padding: 20px 15px;
    font-size: 1.6rem;
  }
}

footer .footer_innner02 {
  padding: 20px;
  background: #004F99;
}

@media screen and (max-width: 830px) {
  footer .footer_innner02 {
    padding: 10px;
  }
}

footer .footer_innner02 p {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
/*# sourceMappingURL=style.css.map */</pre></body></html>