@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@900&display=swap');

@font-face {
  font-family: 'font-Helvetica';
  src: local('Helvetica'), url('../font/Helvetica.ttf') format('truetype');
}


/**************************************************/
/*** root
/**************************************************/
:root {
  --blue: #36b6f6;
  --blue2: rgba(54,182,246,0.2);
  --red: #f76b68;
  --red2: #ff9797;

  --white: #fff;
  --black: #000;
}

/**************************************************/
/*** reset
/**************************************************/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, embed, object, iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  display: block;
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

*:focus-visible {
  outline-color: var(--black);
}

/**************************************************/
/*** clearfix
/**************************************************/
.clearfix:after {
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

/**************************************************/
/*** main
/**************************************************/
html {
  font-size: 62.5%;
  background: var(--blue2);
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  color: var(--black);
  line-height: 1.72;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  body {
    line-height: 1.6;
  }
}

#contents {
  overflow: hidden;
}

.inner {
  max-width: 1040px;
  width: 92%;
  margin: 0 auto;
}


@media screen and (max-width: 960px) {
  .inner {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 767.9px) {
  .inner {
    width: calc(100% - 40px);
  }
}

.d-block {
  display: block;
}
.d-inblock {
  display: inline-block;
}
.flexCenter {
  display: flex;
  justify-content: center;
}
.alignLeft {
  text-align: left;
}
.alignCenter {
  text-align: center;
}
.alignRight {
  text-align: right;
}
.margin_auto {
  margin: 0 auto;
}
.margin0 {
  margin: 0 !important;
}
.padding0 {
  padding: 0 !important;
}
.mgt0 {
  margin-top: 0 !important;
}
.mgb0 {
  margin-bottom: 0 !important;
}
.word-break-all {
  word-break: break-all;
}

.weight700 {
  font-weight: bold;
}
.colorBlue {
  color: var(--blue) !important;
}
.colorRed {
  color: var(--red) !important;
}
.colorWhite {
  color: var(--white) !important;
}


@media screen and (max-width: 767.9px) {
  .pc_view {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_view {
    display: none !important;
  }
  .pc-br {
    display: block;
  }
}

/**************************************************/
/***  fadeIn
/**************************************************/
.fade {
  transition : opacity 1.5s ease-out 0.5s;
  opacity:0;
}
.fadeUp, .fadeDown, .fadeLeft, .fadeRight {
  transition : transform 1.5s ease-out 0.1s, opacity 0.5s ease 0.1s;
  opacity:0;
}
.fadeUp   {transform:translateY(50px);}
.fadeDown {transform:translateY(-50px);}
.fadeLeft {transform: translateX(-200px);}
.fadeRight{transform: translateX(200px);}

.fade.scrollin {
  opacity: 1;
}
.fadeUp.scrollin ,
.fadeDown.scrollin {
  opacity: 1;
  transform: translateY(0);
}
.fadeLeft.scrollin ,
.fadeRight.scrollin {
  opacity: 1;
  transform: translateX(0);
}

/**************************************************/
/*** header
**************************************************/
.h_wrap,
.h_box {
  height: 80px;
}
.h_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  width: 100%;
  padding: 0 40px 0 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.h_box.is-fixed {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 99;
}
.h_logo {
  max-width: 310px;
  margin-right: 10px
}
.h_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex-grow: 1;
}
.h_sp_inner {
  display: flex;
  align-items: center;
}
.h_navlist {
  display: flex;
  gap: 0 30px;
  gap: 0 min(calc(10px + 20 * (100vw - 1080px) / (1400 - 1080)),30px);
}
.h_navlist li {
  font-family: 'ＤＦ太丸ゴシック体','DFMaruGothic' , 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-size: min(calc(14px + 4 * (100vw - 1080px) / (1400 - 1080)),18px);
  text-align: center;
}
.h_navlist li a {
  display: block;
  padding: 6px 5px 5px;
  transition: color .3s ease;
}
.h_navlist li.is-current,
.h_navlist li a:hover {
  color: var(--blue);
}
.h_contact {
  max-width: 160px;
  width: 11.5vw;
  height: 50px;
  margin-left: 30px;
  margin-left: min(calc(10px + 20 * (100vw - 1080px) / (1400 - 1080)),30px)
}
.h_contact a {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-size: min(calc(13px + 5 * (100vw - 1080px) / (1400 - 1080)),18px);
  font-weight: bold;
  text-align: center;
  color: var(--white);
  border-radius: 25px;
  background-color: var(--blue);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity .3s ease;
  z-index: 1;
}
.h_contact a:hover {
  opacity: .75;
}
.h_humberger {
  display: none;
}

@media screen and (max-width: 1320px) {
  .h_box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .h_box {
    padding: 10px 0 10px 20px;
  }
  .h_logo {
    max-width: 280px;
    margin-right: 30px;
  }
  .h_logo .pc_view {
    display: none!important;
  }
  .h_logo .sp_view {
    display: block!important;
  }
  .h_contact {
    display: none;
  }
  .h_sp_inner {
    position: fixed;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    padding: 0;
    z-index: 10;
    transform: translateX(100%);
  }
  .sp-mode .h_sp_inner {
    transition: all .3s ease;
  }
  .h_sp_inner.open  {
    transform: translateX(0);
    /* overflow: scroll; */
  }
  .h_navlist {
    flex-direction: column;
    padding-top: 20vh;
  }
  .h_navlist li {
      font-size: 15px;
      font-weight: 500;
  }
  .h_navlist li + li {
    margin: 40px 0 0;
  }
  .h_humberger {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #5fbef0;
    border-radius: 0 0 0 20px;
    padding: 10px;
    z-index: 100;
  }
  .h_humbergerLine {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--white );
    margin: 16px auto 16px;
    transition: .2s;
  }
  .h_humbergerLine::before,
  .h_humbergerLine::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background-color: var(--white );
    transition: .2s;
  }
  .h_humbergerLine::before {
    transform: translateY(-10px);
  }
  .h_humbergerLine::after {
    transform: translateY(10px);
  }
  .h_humbergerLine.open {
    background-color: transparent;
  }
  .h_humbergerLine.open::before {
    transform: rotate(45deg);
  }
  .h_humbergerLine.open::after {
    transform: rotate(-45deg);
  }
  .h_humberger_text {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.0;
    text-align: center;
    color: var(--white );
  }
}

/**************************************************/
/*** footer
**************************************************/
.f_above {
  background-color: var(--white);
  padding: 80px 0;
}
.f_above_wrap {
  border-radius: 100px;
  background: url(../../assets/image/common/footer_above_bg.png) no-repeat center/cover;
  padding: 70px 0 80px;
}
.f_above_h2 {
  text-align: center;
}
.f_above_h2_eng {
  display: block;
  font-family: 'font-Helvetica', sans-serif;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.f_above_h2_title {
 font-family: 'ＤＦ太丸ゴシック体','DFMaruGothic' , 'Zen Maru Gothic', sans-serif;
  font-size: 52px;
  line-height: 1.4;
  text-indent: 0.4em;
}
.f_above_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}
.f_above_list li {
  text-align: center;
  color: var(--white);
  border-radius: 40px;
  width: calc((100% - 80px)/3);
  height: 160px;
  box-shadow: 4px 4px 8px 0px rgba(255,255,255,0.8) inset,-4px -4px 8px 0px rgba(0,0,0,0.5) inset;
  transition: transform .3s ease;
}
.f_above_list li:hover {
  transform: scale(1.05);
}
.f_above_list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px 5px 5px;
}
.f_above_list li:nth-child(1) {
  color: var(--black);
  background-color: var(--white);
}
.f_above_list li:nth-child(1) a {
  padding-top: 36px;
}
.f_above_list li:nth-child(2) {
  background-color: var(--red2);
}
.f_above_list li:nth-child(3) {
  background-color: #00b900;
}
.f_above_list li span {
  display: block;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}
span.f_above_time {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
span.f_above_text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
span.f_above_contact {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}

.f_above-entry {
  display: none;
  border-radius: 100px 100px 0 0;
  background-color: var(--white);
  padding: 80px 0;
}
.f_above-entry_list {
  display: flex;
  align-items: center;
  gap: 0 80px;
}
.f_above-entry_list li {
  flex-basis: 50%;
  text-align: center;
  border: 4px solid var(--red2);
  border-radius: 40px;
  width: 100%;
  height: 180px;
  padding: 35px 5px 5px;
}
.f_above-entry_list li:nth-child(2) {
  border-color: var(--blue);
  padding-top: 30px;
}
.f_above-entry_list li a {
  display: block;
}
.f_above-entry_text {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.f_above-entry_tel {
  display: block;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.f_above-entry_line {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--white);
  background-color: #00b900;
  border-radius: 30px;
  padding: 9px 10px;
  margin: 10px 50px 0;
  transition: opacity .3s ease;
}
.f_above-entry_line:hover {
  opacity: 0.8;
}

.f_below {
  padding: 78px 0 7px;
}
.f_below_box {
  display: flex;
  justify-content: space-between;
}
.f_below_logo {
  max-width: 400px;
}
.f_below_nav {
  display: flex;
  gap: 0 190px;
}
.f_below_navlist li {
 font-family: 'ＤＦ太丸ゴシック体','DFMaruGothic' , 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  transition: color .3s ease;
}
.f_below_navlist li + li {
  margin-top: 30px;
}
.f_below_navlist li:hover {
  color: var(--blue);
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 115px;
}

@media screen and (max-width: 1200px) {
  .f_above_list li {
    width: calc((100% - 40px)/3);
  }
  span.f_above_time {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .f_above {
    padding: 40px 0;
  }
  .f_above_wrap {
    border-radius: 60px;
    padding: 40px 0;
  }
  .f_above_h2_eng {
    font-size: 24px;
    margin-bottom: 0;
  }
  .f_above_h2_title {
    font-size: 40px;
  }
  .f_above_list {
    flex-direction: column;
    gap: 30px 0;
    margin-top: 30px;
  }
  .f_above_list li {
    max-width: 480px;
    width: 100%;
    height: 120px;
  }
  .f_above_list li:nth-child(n) a {
    padding-top: 20px;
  }
  span.f_above_time {
    font-size: 17px;
  }
  span.f_above_text {
    font-size: 20px;
  }
  span.f_above_contact {
    font-size: 30px;
  }

  .f_above-entry {
    border-radius: 60px 60px 0 0;
    padding: 40px 0;
  }
  .f_above-entry_list {
    flex-direction: column;
    gap: 30px 0;
  }
  .f_above-entry_list li:nth-child(n) {
    flex-basis: auto;
    max-width: 480px;
    height: 150px;
    padding-top: 26px;
  }
  .f_above-entry_text {
    font-size: 25px;
  }
  .f_above-entry_tel {
    font-size: 40px;
  }
  .f_above-entry_line {
    font-size: 24px;
    margin: 5px 15px 0
  }

  .f_below {
    padding: 40px 0 10px;
  }
  .f_below_box {
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
  }
  .f_below_logo {
    max-width: 280px;
  }
  .f_below_nav {
    gap: 0 15vw;
  }
  .f_below_navlist li {
    font-size: 16px;
  }
  .f_below_navlist li + li {
    margin-top: 20px;
  }
  .copyright {
    font-size: 10px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  /* .f_above {
    padding: 60px 20px 0;
  }
  .f_above_wrap {
    padding: 40px 17.5px;
  }
  .f_above_text {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .f_above_button a {
    font-size: 16px;
    border-radius: 50px;
    padding: 17px 40px 17px 20px;
    max-width: 400px;
    width: calc(100% - 25px);
  }
  .f_above_button a::after {
    right: 22.5px;
  }
  .f_below_logo {
    width: 209px;
  }
  .f_navlist {
    flex-direction: column;
    gap: 16px 0;
  }
  .f_navlist li {
    font-size: 14px;
    line-height: 1.143;
  }
  .f_linklist {
    gap: 0 16px;
    margin: 78px 0 12px;
  }
  .f_linklist li {
    font-size: 10px;
    line-height: 1.4;
  }
  .copyright {
    font-size: 10px;
    line-height: 1.4;
  } */
}
.top_entry {
  padding: 80px 0;
}
.top_entry_wrap {
  border-radius: 100px;
  background: url(../../assets/image/common/footer_above_bg.png) no-repeat center/cover;
  padding: 50px 0 60px;
}
.top_entry_h2 {
  text-align: center;
}
.top_entry_h2_eng {
  display: block;
  font-family: 'font-Helvetica', sans-serif;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.top_entry_h2_title {
 font-family: 'ＤＦ太丸ゴシック体','DFMaruGothic' , 'Zen Maru Gothic', sans-serif;
  font-size: 52px;
  line-height: 1.4;
  text-indent: 0.4em;
}
.top_entry_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}
.top_entry_list li {
  text-align: center;
  color: var(--white);
  border-radius: 40px;
  width: calc((100% - 80px)/3);
  height: 90px;
  box-shadow: 4px 4px 8px 0px rgba(255,255,255,0.8) inset,-4px -4px 8px 0px rgba(0,0,0,0.5) inset;
  transition: transform .3s ease;
}
.top_entry_list li:hover {
  transform: scale(1.05);
}
.top_entry_list li a {
	display: block;
	width: 100%;
	height: 100%;
	/*padding: 32px 5px 5px;*/
	display: flex;
	align-items: center;
	justify-content: center;
}
.top_entry_list li:nth-child(1) {
  background-color: #00b900;
}
.top_entry_list li:nth-child(1) a {
  /*padding-top: 36px;*/
}
.top_entry_list li:nth-child(2) {
  background-color: var(--red2);
}
.top_entry_list li:nth-child(3) {
  color: var(--black);
  background-color: var(--white);
}
.top_entry_list li span {
  display: block;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}
span.top_entry_time {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
span.top_entry_text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
span.top_entry_contact {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}

.top_entry-entry {
  display: none;
  border-radius: 100px 100px 0 0;
  background-color: var(--white);
  padding: 80px 0;
}
.top_entry-entry_list {
  display: flex;
  align-items: center;
  gap: 0 80px;
}
.top_entry-entry_list li {
  flex-basis: 50%;
  text-align: center;
  border: 4px solid var(--red2);
  border-radius: 40px;
  width: 100%;
  height: 180px;
  padding: 35px 5px 5px;
}
.top_entry-entry_list li:nth-child(2) {
  border-color: var(--blue);
  padding-top: 30px;
}
.top_entry-entry_list li a {
  display: block;
}
.top_entry-entry_text {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.top_entry-entry_tel {
  display: block;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.top_entry-entry_line {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--white);
  background-color: #00b900;
  border-radius: 30px;
  padding: 9px 10px;
  margin: 10px 50px 0;
  transition: opacity .3s ease;
}
.top_entry-entry_line:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .top_entry_list li {
    width: calc((100% - 40px)/3);
  }
  span.top_entry_time {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .top_entry {
    padding: 40px 0;
  }
  .top_entry_wrap {
    border-radius: 60px;
    padding: 40px 0;
  }
  .top_entry_h2_eng {
    font-size: 24px;
    margin-bottom: 0;
  }
  .top_entry_h2_title {
    font-size: 40px;
  }
  .top_entry_list {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 20px;
  }
  .top_entry_list li {
    max-width: 480px;
    width: 100%;
    height: 55px;
  }
  .top_entry_list li:nth-child(n) a {
    /*padding-top: 20px;*/
  }
  span.top_entry_time {
    font-size: 17px;
  }
  span.top_entry_text {
    font-size: 20px;
  }
  span.top_entry_contact {
    font-size: 30px;
  }

  .top_entry-entry {
    border-radius: 60px 60px 0 0;
    padding: 40px 0;
  }
  .top_entry-entry_list {
    flex-direction: column;
    gap: 30px 0;
  }
  .top_entry-entry_list li:nth-child(n) {
    flex-basis: auto;
    max-width: 480px;
    height: 150px;
    padding-top: 26px;
  }
  .top_entry-entry_text {
    font-size: 25px;
  }
  .top_entry-entry_tel {
    font-size: 40px;
  }
  .top_entry-entry_line {
    font-size: 24px;
    margin: 5px 15px 0
  }
}
.mv_txt{
	position: absolute;
	top: 20%;
	padding: 10px 40px;
	text-align: center;
    left: 0;
    right: 0;
	font-size: 1.8vw;
}
.mv_txt span{
	font-size: 1.2em;
	font-weight: bold;
	background: -webkit-linear-gradient(top, #fff89c 0%, #ffef00 40%, #ffcc00 80%);
	background: -o-linear-gradient(top, #fff89c 0%, #ffef00 40%, #ffcc00 80%);
	background: linear-gradient(to bottom, #fff89c 0%, #ffef00 40%, #ffcc00 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}
@media screen and (max-width: 767.9px) {
    .mv_txt {
		top: 82%;
        width: 100%;
        margin: 0 auto;
		font-size: 4.2vw;
	}	
}