@charset "UTF-8";

/*
  CSS Reset
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,video,canvas,svg{display:inline-block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}
body {font-family: "メイリオ", Meiryo, "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif; color: var(--color-def);}

/*
  カスタムプロパティ
*/
:root {

  /* カラー設定 */
  /* デフォルトカラー */
  --color-def: #333;

  /* ベースカラー */
  --color-base: #FFF;
  

  /* アクセントカラー */
  --color-accent: #F79500;
  --color-red: #c9151e;
  --color-dark-brown: #543300;
  --color-brown: #765c33;
  --color-pale-brown: #f3f0eb;
  --color-cream: #fcf4e7;
  --color-beige: #f3f0eb;
  --color-orange: #F79500;
  --color-dark-orange: #f47800;
  --color-pale-green: #DBF2E8;
  --color-green: #00A05C;
  --color-dark-red: #CB461A;

  /* リンクカラー */
  --color-blue1: #3498db;

  /* フォントサイズ設定 */
  --fs-heading-h2: 34px;    /* PC H2見出し */
  --fs-component-24: 24px;
  --fs-component-20: 20px;  /* ※SPのH2見出し */
  --fs-component-18: 18px;  /* コンポーネントサイズ(大)  */
  --fs-component-16: 16px;  /* コンポーネントサイズ(中) ※PCのフォントサイズが18pxの時SPではこれを使う */
  --fs-component-14: 14px;  /* コンポーネントサイズ(小)※PCのフォントサイズが16pxの時SPではこれを使う */
  --fs-component-12: 12px;  /* ※PCのフォントサイズが14pxの時SPではこれを使う */
  --fs-component-10: 10px;
  /* コンテンツ幅 */
  --contents-width: 1020px;
}

/*
改行
*/
br.forPC {
  display: none;
}

@media screen and (min-width:769px) {
  br.forSP {
    display: none;
  }

  br.forPC {
    display: block;
  }
}


/*
//////////////////////////////////////////////

現在のページのナビゲーションの装飾（ヘッダー）

/////////////////////////////////////////////
*/
/* 試験概要 */
@media screen and (min-width:769px) {
  .CF-introduction-contents .CF-header-nav ul li:nth-child(1) {
    border-bottom: solid 3px var(--color-dark-orange);
  }
  .CF-introduction-contents .CF-header-nav ul li:nth-child(1) a {
    color: var(--color-dark-orange);
  }
}
/* /試験概要 */

/* 試験日程・受験方法 */
@media screen and (min-width:769px) {
  .CF-individual-contents .CF-header-nav ul li:nth-child(2) {
    border-bottom: solid 3px var(--color-dark-orange);
  }
  .CF-individual-contents .CF-header-nav ul li:nth-child(2) a {
    color: var(--color-dark-orange);
  }
}
/* /試験日程・受験方法 */

/* 試験内容・学習について */
@media screen and (min-width:769px) {
  .CF-learn-contents .CF-header-nav ul li:nth-child(3) {
    border-bottom: solid 3px var(--color-dark-orange);
  }
  .CF-learn-contents .CF-header-nav ul li:nth-child(3) a {
    color: var(--color-dark-orange);
  }
}
/* /試験内容・学習について */

/* 受験者の声・活用事例 */
@media screen and (min-width:769px) {
  .CF-voice-contents .CF-header-nav ul li:nth-child(4) {
    border-bottom: solid 3px var(--color-dark-orange);
  }
  .CF-voice-contents .CF-header-nav ul li:nth-child(4) a {
    color: var(--color-dark-orange);
  }
}
/* /受験者の声・活用事例 */

/* お役立ちコンテンツ */
@media screen and (min-width:769px) {
  .CF-column-contents .CF-header-nav ul li:nth-child(5) {
    border-bottom: solid 3px var(--color-dark-orange);
  }
  .CF-column-contents .CF-header-nav ul li:nth-child(5) a {
    color: var(--color-dark-orange);
  }
}
/* /お役立ちコンテンツ */


/*
/////////////////////////////////////////////////////////////////////

ヘッダーCSS

////////////////////////////////////////////////////////////////////
*/
.CF-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.CF-header-group {
  position: relative;
  display: flex;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  width: 100%;
}

.CF-header-logo {
  display: flex;
  margin-left: 16px;
  align-items: flex-start;
}

.CF-header-logo-inner {
    display: inline-block;
}


.CF-header-logo-inner_exam {
  width: 160px;
}

.CF-header-logo-inner_exam img {
  vertical-align: bottom;
}

.CF-header-logo-inner_certify {
    width: 92px;
    margin-left: 12px;
    margin-right: 16px;
}

.CF-header-logo-inner_certify img {
  vertical-align: bottom;
}

.CF-hamburger {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--color-dark-brown);
  cursor: pointer;
}

body.-is-open .CF-hamburger-box {
  display: block;
  height: calc(100vh - 60px);
  overflow-y: auto;
}

.CF-hamburger-box {
  display: none;
}

.CF-hamburger > span {
  display: block;
}

.CF-hamburger > span::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  top: 17px;
  right: 26%;
}

.CF-hamburger > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  top: 33px;
  right: 26%;
}

.CF-hamburger > span > span:before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  top: 25px;
  right: 26%;
}

.CF-hamburger > span > span {
  display: block;
  font-size: 10px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding-top: 40px;
}

body.-is-open .CF-hamburger > span::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  top: 26px;
  right: 26%;
  transform: rotate(45deg);
}

body.-is-open .CF-hamburger > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-orange);
  top: 26px;
  right: 26%;
  transform: rotate(-45deg);
}

body.-is-open .CF-hamburger > span > span:before {
  display: none;
}

.CF-header-nav ul {
  padding: 0;
}

.CF-header-nav li {
  list-style: none;
  border-bottom: #cccccc solid 1px;
}

.CF-header-nav a {
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  line-height: 46px;
  background: url(/ns/il/_assets/images/svg/arrow_orange.svg) right 18px center no-repeat var(--color-cream);
  background-size: auto 17px;
  height: 100%;
  padding: 0 40px 0 20px;
  font-weight: normal;
}

.CF-header-link ul {
  padding: 0;
}

.CF-header-link li {
list-style: none;
border-bottom: #cccccc solid 1px;
}

.CF-header-link a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  height: 100%;
}

.CF-header-link a {
  background: url(/ns/il/_assets/images/svg/arrow01_white.svg) right 18px center no-repeat #f79500;
  font-size: 16px;
  line-height: 46px;
  background-size: auto 17px;
  padding: 0 40px 0 20px;
}

.CF-header-link li.-color-green a {
  background: url(/ns/il/_assets/images/svg/arrow01_brown.svg) right 18px center no-repeat var(--color-cream);
  background-size: auto 17px;
  color: #000000;
}

.CF-header-banner-btn {
  background: var(--color-pale-green);
  padding: 20px 0px 30px;
}

.CF-header-banner-btn a {
  display: block;
  text-decoration: none;
  color: var(--color-base);
  text-align: center;
  background: url(/ns/il/_assets/images/svg/arrow01_white.svg) right 20px center no-repeat var(--color-green);
  background-size: auto 17px;
  width: auto;
  height: 70px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  border: var(--color-base) solid 2px;
  border-radius: 35px;
  padding: 14px 0;
  margin: 0px 15px;
}

body.-is-open .CF-header-shadow {
  position: fixed;
  background-color: #5c5c5c;
  width: 100%;
  height: 100vh;
  opacity: 0.9;
  z-index: 4;
}

.CF-header-title {
  font-size: 10px;
  line-height: 1.5;
  background: #00aaaa;
  margin-top: 60px;
  text-align: left;
  color: #ffffff;
  padding: 9px 18px;
  height: 55px;
  display: flex;
    align-items: center;
}

.CF-header-title a{
  color: #ffffff;
	text-decoration: none;
}

.CF-header-title-text {
  display: block;
}

@media screen and (min-width:769px) {
  .CF-header-wrapper {
    background-color: var(--color-base);
  }
  .CF-header-group {
    height: 75px;
    max-width: var(--contents-width);
    margin: 0 auto;
  }

  .CF-header-logo {
    margin-top: 0px;
    margin-left: 0px;
    align-items: center;
  }

  .CF-header-logo-inner_exam {
    width: 30vw;
  }
  
  .CF-header-logo-inner_certify {
      width: 12vw;
  }

  body.-is-open .CF-hamburger-box {
    height: auto;
    overflow-y: auto;
  }

  .CF-hamburger {
    display: none;
  }

  .CF-hamburger-box {
    display: block;
  }

  .CF-header-nav {
    border-top: #ccc solid 1px;
    border-bottom: #ccc solid 1px;
  }

  .CF-header-nav ul {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    max-width: var(--contents-width);
    margin: 0 auto;
    padding-right: 210px;
  }

  .CF-header-nav li {
    position: relative;
    border-bottom: none;
    flex-grow: 1;
  }

  .CF-header-nav li::before {
    content: "";
    position: absolute;
    background: #ccc;
    width: 1px;
    height: 20px;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    z-index: 1;
  }

  .CF-header-nav li:last-child:before {
    display: none;
  }

  .CF-header-nav a {
    font-size: 11px;
    line-height: 21px;
    background: #ffffff;
    padding: 18.5px 0;
    text-align: center;
  }

  .CF-header-nav a:hover {
    opacity: 0.7;
  }


  .CF-header-link {
    position: absolute;
    top: 0px;
    right: 0;
    left: auto;
    margin-bottom: 0;
    width: fit-content;
  }

  .CF-header-link ul {
    display: flex;
    flex-flow: nowrap;
    justify-content: flex-end;
    align-items: stretch;
  }

  .CF-header-link li {
    border-bottom: none;
    border-right: #fff solid 2px;
    max-width: 149px;
    height: 45px;
  }

  .CF-header-link li:last-child {
    border-right: none;
  }

  .CF-header-link li:first-child {
    flex-flow: column;
  }

  .CF-header-link a {
    font-size: 11px;
    line-height: 1.2;
    background-image: none;
    background-color: var(--color-accent);
    padding: 0px 20px;
    width: fit-content;
    display: flex;
    align-items: center;
  }

  .CF-header-link li.-has-new-line a {
    padding: 0px 10px;
  }

  .CF-header-link li.-color-cream a {
    color: #000000;
    background-image: none;
    background-color: #EEEEEE;
    background-size: 14px 14px;
  }

  .CF-header-link a:hover {
    opacity: 0.7;
  }

  .CF-header-link a span {
    padding-top: 4px;
  }

  .CF-header-link li.-btn-login a span {
    text-align: center;
  }

  .CF-header-banner-btn {
    background: var(--color-pale-green);
    padding: 9px 10px;
    margin: 0;
    width: 210px;
    height: 58px;
    position: absolute;
    bottom: 1px;
    right: 0px;
  }

  .CF-header-banner-btn a {
    padding: 4px 14px 4px 8px;
    background: url(/ns/il/_assets/images/svg/arrow01_white.svg) right 6px center no-repeat var(--color-green);
    border-radius: 5px;
    background-size: 12px;
    font-size: 12px;
    font-weight: bold;
    margin: 0px 0px;
    line-height: 1.2;
    height: 40px;
    text-align: left;
  }

  .CF-header-banner-btn a::after {

  }

  .CF-header-banner-btn a:hover {
    opacity: 0.7;
  }

  .CF-header-shadow {
    display: none;
  }

  .CF-header-title {
    margin-top: 0;
    padding-left: 5px;
    text-align: left;
    height: 60px;
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 6;
    font-size: 10px;
    line-height: 1.67;
  }

  .CF-header-title-text_non-new-line {
    display: inline-block;
  }

  .CF-header-title-text:first-child {
    margin-right: 10px;
  }
}

@media screen and (min-width:930px) {
  .CF-header-nav a {
    font-size: 15px;
  }
}

@media screen and (min-width:940px) {
  .CF-header-logo-inner {
    width: 370px;
  }

  .CF-header-logo-inner_certify {
    width: 120px;
    margin-left:30px;
  }

  .CF-header-banner-btn a:hover {
    opacity: 0.7;
  }

  .CF-header-title {
    font-size: 12px;
  }
}

@media screen and (min-width:985px) {
  .CF-header-link a {
    font-size: 13px;
  }
}

@media screen and (min-width:1020px) {
  .CF-header-link {
    right: calc((100% - var(--contents-width)) / 2);
  }
  .CF-header-banner-btn {
    right: calc((100% - var(--contents-width)) / 2);
  }
  .CF-header-title {
    left: calc((100% - var(--contents-width)) / 2);
  }
}


/*
//////////////////////////////////////////////

フッターCSS

/////////////////////////////////////////////
*/
/*
フッターカラム
*/
.CF-top-foot-img img {
  vertical-align: bottom;
}
@media screen and (min-width:769px) {
  .CF-top-foot-img a:hover {
    opacity: 0.7;
  }
}
/* /フッターカラム */

/*
この試験もおすすめです
*/
.CF-section.-section-recommend {
  margin-top: 52px;
  margin-bottom: 88px;
}
.CF-recommend {
  background: #F3F3F3;
  padding: 17px 30px 40px 10px;
}

.CF-recommend-title {
  font-size: var(--fs-component-18);
  line-height: 2;
  text-align: center;
  font-weight: bold;
}

.CF-recommend-list {
  margin-top: 5px;
  padding-left: 1rem;
}

.CF-recommend-list dt {
  font-size: var(--fs-component-16);
  line-height: 30px;
  position: relative;
  font-weight: 700;
  padding-bottom: 10px;
}

.CF-recommend-list dt a {
  color: #CB461A;
}

.CF-recommend-list dt a::before {
  position: absolute;
  content: "・";
  top: 0;
  left: -1rem;
  color: #CB461A;
}

.CF-recommend-list dd {
  font-size: var(--fs-component-16);
  line-height: 28px;
}

@media screen and (min-width:769px) {

  .CF-section.-section-recommend {
    margin-bottom: 80px;
  }

  .CF-recommend {
    padding: 35px 30px 33px 24px;
  }

  .CF-recommend-title {
    font-size: var(--fs-component-20);
    
  }

  .CF-recommend-list {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .CF-recommend-list:last-child {
    margin-bottom: 0px;
  }

  .CF-recommend-list dt {
    line-height: 1.3;
    margin-right: 5px;
  }

  .CF-recommend-list dt a:hover {
    text-decoration: none;
  }

  .CF-recommend-list dd {
    line-height: 1.3;
  }
}
/* /この試験もおすすめです */


/* 
背景
*/
.l-foot-bg {
  display: none;
}

@media screen and (min-width:769px) {
  .l-foot-bg { background: url("/ns/il/_assets/images/common/bg_dot.png"); padding: 60px 15px 30px; display: block;}
}
/* /背景 */


/*
サイトマップ
*/
@media screen and (min-width:769px) {
  .c-foot-sitemap { max-width: var(--contents-width); margin: 0 auto 0 auto; display: flex; flex-flow: wrap; justify-content: flex-start; align-items: flex-start;}
  .c-foot-sitemap__column { width: 25%; }
  .c-foot-sitemap__column:nth-child(1) { width: 20%; }
  .c-foot-sitemap__column:nth-child(2) { width: 20%; }
  .c-foot-sitemap__column:nth-child(3) { width: 30%; }
  .c-foot-sitemap__column:nth-child(4) { width: 30%; }
  .c-foot-sitemap__column div { margin: 0 0 15px 0; }
  .c-foot-sitemap__column a { text-decoration: none; color: #333; }
  .c-foot-sitemap__column a:hover { text-decoration: underline; }
  .c-foot-sitemap__column p a { font-size: var(--fs-component-12); font-weight: bold; background: url("/ns/il/_assets/images/common/icon_arrow_btn.png") 0 47% no-repeat; padding: 4px 0 4px 20px; }
  .c-foot-sitemap__column p.u-icon1 a:before, .c-foot-sitemap__column p.u-icon2 a:before, .c-foot-sitemap__column p.u-icon3 a:before, .c-foot-sitemap__column p.u-icon4 a:before, .c-foot-sitemap__column p.u-icon5 a:before, .c-foot-sitemap__column p.u-icon6 a:before, .c-foot-sitemap__column p.u-icon7 a:before { content: "■"; margin: 0 3px 0 0; }
  .c-foot-sitemap__column p.u-icon1 a:before { color: #396; }
  .c-foot-sitemap__column p.u-icon2 a:before { color: #09C; }
  .c-foot-sitemap__column p.u-icon3 a:before { color: #6CC; }
  .c-foot-sitemap__column p.u-icon4 a:before { color: #F9BB00; }
  .c-foot-sitemap__column p.u-icon5 a:before { color: #F96; }
  .c-foot-sitemap__column p.u-icon6 a:before { color: #C93; }
  .c-foot-sitemap__column p.u-icon7 a:before { color: #999; }
  .c-foot-sitemap__column ul { margin: 6px 0 0 0; padding: 0;}
  .c-foot-sitemap__column li { list-style: none;}
  .c-foot-sitemap__column li a { font-size: var(--fs-component-10); display: inline-block; margin: 0 0 0 20px; }
}
/* /サイトマップ */


/*
プライバシーポリシー
*/
@media screen and (min-width:769px) {
  .c-foot-privacy { max-width: var(--contents-width); margin: 40px auto 0 auto; display: flex;flex-flow: nowrap; justify-content: flex-start; align-items: flex-start;}
  .c-foot-privacy p { width: 80px; }
  .c-foot-privacy ul { margin: 5px 0 0 10px; padding: 0;}
  .c-foot-privacy li { font-size: var(--fs-component-12); list-style: disc; margin: 0 0 0 1em; }
}
/* /プライバシーポリシー */

/*
コピーライト
*/
.c-foot-copy { padding: 17px 0 17px 0; background: url("/ns/il/_assets/images/common/bg_copyright.png"); }
.c-foot-copy p { text-align: center; color: #FFF; font-size: var(--fs-component-10); line-height: 100%; }

@media screen and (min-width:769px) {
  .c-foot-copy p { font-size: var(--fs-component-12);}
}

/* /コピーライト */

/*
追従メニュー(SPのみ)
*/
.CF-floating-menu-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.CF-floating-menu-sp ul {
  display: flex;
  flex-flow: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  padding-left: 0;
}

.CF-floating-menu-sp ul li {
  width: 50%;
}

.CF-floating-menu-sp ul li:first-child {
  border-right: #fff solid 1px;
}

.CF-floating-menu-sp a {
  display: block;
  font-size: 11px;
  line-height: 16px;
  padding: 12px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background-color: #ff6937;
}

.CF-floating-menu-sp span {
  background: url(/ns/il/_assets/images/svg/arrow02_white.svg) left center no-repeat;
  background-size: 15px 15px;
  display: inline-block;
  padding: 0 18px;
}

@media screen and (min-width:769px) {
  .CF-floating-menu-sp {
    display: none;
  }
}


/*
セクションレイアウト
*/
.CF-section, .CF-question {
  padding: 0 15px;
  margin-bottom: 50px;
}

.CF-section-inner {
  padding: 0;
}

.CF-section-inner.-is-border {
  border-top: #000 solid 2px;
  padding-top: 30px;
}

.CF-section.-is-bg-color + .CF-section.-is-bg-color {
  margin-top: -40px;
  padding-top: 0;
}

.CF-section.-is-bg-green {
  background-color: #e3f9f9;
}

.CF-main-contents > .CF-heading-h1 + .CF-section > .CF-section-inner {
  padding-top: 0;
}

.CF-section-inner > *:first-child {
  margin-top: 0 !important;
}

.CF-section-inner > *:last-child {
  margin-bottom: 0 !important;
}

@media screen and (min-width:769px) {
  .CF-section, .CF-question {
    margin-bottom: 80px;
  }

  .CF-section-inner {
    max-width: var(--contents-width);
    margin: 0 auto;
    padding: 0;
  }

  .CF-section-inner.-is-border {
    padding-top: 75px;
  }

  .CF-section.-is-bg-color + .CF-section.-is-bg-color {
    margin-top: -80px;
  }
  .CF-article-section-inner {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* /セクションレイアウト */


/* レイアウト（各種設定） */
.-content-item-margin {
  margin-bottom: 30px;
}

.-has-margin-top-12px {
  margin-top: 12px;
}

.-margin-bottom-px {
  margin-bottom: 0px;
}

.-margin-bottom-normal {
  margin-bottom: 50px;
}

.-margin-bottom-20px {
  margin-bottom: 20px;
}

@media screen and (min-width:769px) {
  .-margin-top-50px-PC {
    margin-top: 50px;
  }

  .-margin-bottom-50px-PC {
    margin-bottom: 50px;
  }

  .-content-item-margin {
    margin-bottom: 50px;
  }

  .-is-width-1020px-PC {
    width: 1020px;
  }

  .-margin-bottom-normal {
    margin-bottom: 80px;
  }
}
/* /レイアウト（各種設定） */


/* 動画学習　追加 */
.p-c-lea-movie__box1 {
  display: flex;
  gap: 30px;
  padding: 45px 0;
  border-bottom: 1px dotted #999;
  margin-bottom: 45px;
}

.image-left {
  width: 40%;
}

.text-right {
  line-height: 1.75;
}

.p-c-lea-movie__box2 {
  background: #f9f9f9;
  padding: 28px 23px;
  margin-top: 34px;

  h5 {
    font-size: bold;
    color: #f79500;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 16px;
  }

  p {
    line-height: 170%;
  }

  a {
    text-decoration: none;
    color: #f79500;;
  }
}

.p-c-lea-movie__btn-yellow,
.p-c-lea-movie__btn-blue,
.p-c-lea-movie__btn-blue {
  text-align: center;
}

.p-c-lea-movie__btn-yellow span {
  display: inline-block;
  background: url(../images/learn/movie/icon_02.png) no-repeat left center;
  padding-left: 26px;
}

.p-c-lea-movie__btn-yellow a {
  display: inline-block;
  box-sizing: border-box;
  width: 34.7222vw;
  min-width: 330px;
  max-width: 500px;
  text-align: center;
  padding: 16px 8px 14px;
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
  color: #333;
  background: #ffc926;
}

.p-c-lea-movie__btn-blue span {
  display: inline-block;
  background: url(../images/learn/movie/icon_02-white.png) no-repeat left center;
  padding-left: 26px;
}

.p-c-lea-movie__btn-blue a {
  display: inline-block;
  box-sizing: border-box;
  width: 34.7222vw;
  min-width: 330px;
  max-width: 500px;
  text-align: center;
  padding: 16px 8px 14px;
  font-weight: bold;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  background: #00a05c;
  margin-bottom: 20px;
}

@media screen and (max-width:769px) {

  .p-c-lea-movie__box1 {
    flex-direction: column;
    align-items: center;
  }

  .image-left {
    width: 70%;
  }

  .p-c-lea-movie__btn-yellow a {
    width: 34.7222vw;
    min-width: 84.6153vw;
    max-width: 500px;
  }

  .p-c-lea-movie__btn-blue a {
    width: 34.7222vw;
    min-width: 84.6153vw;
    max-width: 500px;
  }
}