@charset "UTF-8";
/* ------------------------------

	編集時の注意
	・必ず.scssから編集してコンパイルしてください。（直接.cssを編集しないでください）
	・コンパイル時はautoprefix, sourcemap出力を使用してください。
  ・フォントサイズの指定にはmixinを使用しています。@include fz(カンプ上でのサイズ）と指定してください。

------------------------------ */
/* ------------------------------
 Bg-Color
------------------------------ */
.bg-white {
  background-color: white;
}

.bg-yellow {
  background-color: #ffbe2e;
}

.bg-orange {
  background-color: #eb5505;
}

.bg-paleorange {
  background-color: #fff2eb;
}

.bg-gold {
  background-color: #bb850e;
}

.bg-palegold {
  background-color: #fef4dd;
}

.bg-cyan {
  background-color: #0587bd;
}

.bg-paleblue {
  background-color: #dceaf5;
}

.bg-navy {
  background-color: #263395;
}

.bg-darknavy {
  background-color: #0e2052;
}

.bg-turquoise {
  background-color: #43b1c1;
}

/* ------------------------------
 Boder
------------------------------ */
.bd_lg {
  border: 1px solid lightgray;
}

/* ------------------------------
 Mixin
------------------------------ */
/* ------------------------------
 Body
------------------------------ */
html {
  background: #CCC;
}

body {
  margin: 0 auto;
  padding: 0;
  color: #262626;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Meiryo', sans-serif;
  -webkit-text-size-adjust: 100%;
  max-width: 900px;
  overflow-x: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #FFF;
  font-size: 16.2px;
  font-size: 4vw;
  /*iPhone8系で10pxを1em相当とする*/
}
img{
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (min-width: 901px) {
  body {
    font-size: 25.2px;
  }
}

#page-wrap {
  overflow-x: hidden;
}

a:hover {
  opacity: 0.8;
}

/* ------------------------------
 Reset CSS
------------------------------ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main, article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, h7, p, dl, dt, dd, ul, ol, li, form {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

img {
  vertical-align: bottom;
  border: 0;
  width: 100%;
  height: auto;
  min-height: 1px;
}

a {
  outline: 0;
  color: currentColor;
}

a.no-line {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0;
}

/* ------------------------------
 text
------------------------------ */
p, ul, dl {
  font-size: 1em;
  line-height: 1.6;
}

sup {
  font-size: 0.7em;
}

.indent-1em {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.indent-2em {
  display: block;
  text-indent: -2em;
  padding-left: 3em;
}

.indent-3em {
  display: block;
  text-indent: -3em;
  padding-left: 4em;
}

.txt-orange {
  color: #eb5505;
}

.txt-xlg {
  font-size: 22.5px;
  font-size: 5.55556vw;
}

@media screen and (min-width: 901px) {
  .txt-xlg {
    font-size: 35px;
  }
}

.txt-lg {
  font-size: 18px;
  font-size: 4.44444vw;
}

@media screen and (min-width: 901px) {
  .txt-lg {
    font-size: 28px;
  }
}

.txt-rg {
  font-size: 16.65px;
  font-size: 4.11111vw;
}

@media screen and (min-width: 901px) {
  .txt-rg {
    font-size: 25.9px;
  }
}

.txt-sm {
  font-size: 14.4px;
  font-size: 3.55556vw;
}

@media screen and (min-width: 901px) {
  .txt-sm {
    font-size: 22.4px;
  }
}

.txt-xs {
  font-size: 10.8px;
  font-size: 2.66667vw;
}

@media screen and (min-width: 901px) {
  .txt-xs {
    font-size: 16.8px;
  }
}

.txt-c {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.mt-05em {
  margin-top: 0.5em;
}

.mt-1em {
  margin-top: 1em;
}

.mt-2em {
  margin-top: 2em;
}
.mt-3em {
  margin-top: 3em!important;
}
.mt-4em {
  margin-top: 4em!important;
}

.pt20 {
	padding-top: 20px!important;
}

.mb-1em{
  margin-bottom: 1em;
}
.p5{
  padding: 5%;
}
.block {
  display: block;
}

.pl-1em {
  display: block;
  padding-left: 1em;
}
.movset {
	margin: -1em 1em!important;
}

.anchor {
  position: relative;
}

.anchor::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px black;
  border-right: solid 1px black;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 42%;
  right: -1.3em;
  margin-top: -7px;
}

.linkarrow {
  position: relative;
}

.linkarrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #eb5505;
  border-right: solid 1px #eb5505;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 62%;
  right: -1em;
  margin-top: -7px;
}

/* ------------------------------
 Header
------------------------------ */
.header {
  background: #FFF;
  padding: 4% 0;
}

.header .logo {
  width: 24.44444%;
  margin: auto;
}

/* ------------------------------
 inner-wrap
------------------------------ */
.inner-wrap {
  margin: auto 4.44444%;
}

@media screen and (min-width: 901px) {
  .inner-wrap {
    margin: auto 40px;
  }
}

/* ------------------------------
 title
------------------------------ */
.sec-ttl {
  position: relative;
  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;
  font-size: 22.5px;
  font-size: 5.55556vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  color: #FFF;
  min-height: 2.5em;
  padding: 0.2em;
}

@media screen and (min-width: 901px) {
  .sec-ttl {
    font-size: 35px;
  }
}

.sec-ttl > span {
  display: block;
}

.balloon-ttl {
  position: relative;
  font-size: 18px;
  font-size: 4.44444vw;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  min-width: 69.5122%;
  padding: 0 1em;
  height: 2em;
  margin: 3.65854% auto;
  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;
  border-radius: 1em;
}

@media screen and (min-width: 901px) {
  .balloon-ttl {
    font-size: 28px;
  }
}

.balloon-ttl::before {
  content: '';
  position: absolute;
  width: 1em;
  height: 1em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: -10%;
  left: 50%;
  margin-left: -0.5em;
}

.balloon-ttl.multi {
  margin-top: 3em;
}

.balloon-ttl img {
  display: block;
  position: relative;
  height: 1em;
  width: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.balloon-ttl.blue, .balloon-ttl.blue::before {
  background-color: #076cb9;
}

.balloon-ttl.navy, .balloon-ttl.navy::before {
  background-color: #263395;
}

.balloon-ttl.orange, .balloon-ttl.orange::before {
  background-color: #eb5505;
}

/* ------------------------------
 toggle
------------------------------ */
.sec-ttl.toggle-btn {
  margin: 0;
  width: 100%;
  padding-right: 1.5em;
}

.sec-ttl.toggle-btn .toggle-icon {
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background: #FFF;
  right: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec-ttl.toggle-btn .toggle-icon::before, .sec-ttl.toggle-btn .toggle-icon::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec-ttl.toggle-btn .toggle-icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sec-ttl.toggle-btn + .toggle-wrap {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.sec-ttl.toggle-btn.open .toggle-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sec-ttl.toggle-btn.open .toggle-icon::before {
  opacity: 0;
}

.sec-ttl.toggle-btn.open + .toggle-wrap {
  height: auto;
  opacity: 1;
}

/* ------------------------------
 mv
------------------------------ */
.mv-sec {
  position: relative;
  margin-bottom: 11.11111%;
  padding-top: 52.22222%;
  background-image: url("../img/common/mv-bg.png");
  background-size: contain;
}

.mv-sec.mv-index {
  background-image: none;
}

.mv-sec .mv-ttl {
  position: absolute;
  width: 55.55556%;
  left: 36.66667%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mv-sec .mv-ttl > span {
  display: block;
  margin: auto;
}

.mv-sec .mv-ttl > span + span {
  margin-top: 10%;
}

.mv-sec .mv-ttl .txt-01 {
  width: 90%;
}

.mv-sec .mv-ttl .txt-02.small {
  width: 80%;
}

.mv-sec .mv-img {
  position: absolute;
  width: 27.77778%;
  top: 3.33333%;
  left: 4.44444%;
}

/* ------------------------------
 service-sec
------------------------------ */
.service-sec {
  margin-bottom: 8.88889%;
}

.service-sec .service-anc {
  margin: 4.87805% -1.21951% 0;
  letter-spacing: -0.4em;
}

.service-sec .service-anc > li {
  width: 30.95238%;
  margin: 1.19048%;
  display: inline-block;
  vertical-align: top;
}

.service-sec .service-autocharge-ttl {
  width: 78.04878%;
  margin: 8.88889% auto 2.22222%;
}

/* ------------------------------
 about-sec
------------------------------ */
.about-sec {
  margin-bottom: 8.88889%;
}

/* ------------------------------
 guide-sec
------------------------------ */
.guide-sec {
  padding-bottom: 8.88889%;
}

.guide-sec .sec-ttl {
  margin-bottom: 5.55556%;
}

.guide-sec .sec-tbl table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.6em;
  line-height: 1.5em;
  margin: 2% 0 3%;
  margin: 2% 0 3%;
}

.guide-sec .sec-tbl table th, .guide-sec .sec-tbl table td {
  border: solid 1px #757575;
  border-bottom-color: #757575;
  text-align: center;
  padding: 1.111%;
}

.guide-sec .sec-tbl table th {
  width: 40%;
}

.guide-sec .sec-tbl table td {
  width: 10%;
}

.guide-sec .bkgc {
  background-color: #fffbe7;
}

.guide-sec .sec-tbl table th.total {
  background-color: #ffb9a5;
}

.guide-sec .sec-tbl table th.example {
  width: 20%;
  text-align: center;
}

.guide-sec .sec-tbl table th.none {
  background-color: #e3e3e3;
}

.guide-sec .sec-tbl table img {
  width: 90%;
  height: auto;
}

.guide-sec .td_normal {
  font-size: 1.5em;
  line-height: 2em;
}

.guide-sec .cut {
  text-align: center;
  margin-top: 2em;
}

.guide-sec .cut img {
  width: 50%;
  height: auto;
}

/* ------------------------------
 guide-index
------------------------------ */
.guide-index-wrap {
  padding-top: 6.09756%;
}

.guide-index-wrap:first-child {
  margin-top: -6.09756%;
}

.guide-index-wrap + .guide-index-wrap {
  margin-top: 3.65854%;
}

.guide-index-item {
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 4.87805%;
}

.guide-index-item-txt {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.guide-index-item-txt .btn-detail {
  display: block;
}

.guide-index-item-txt .btn-detail + .btn-detail {
  margin-top: 1em;
}

.guide-index-item-txt .mt-auto {
  margin-top: auto;
}

.guide-index-item-img {
  width: 40%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ------------------------------
 guide-carousel
------------------------------ */
.guide-carousel {
  margin: 0 -0.22222%;
  margin-bottom: 6.66667%;
}

.guide-carousel .slick-list {
  overflow: visible !important;
}

.guide-carousel .slick-slide {
  outline: 0;
  margin: 0 0.22222%;
}

.guide-carousel .slick-arrow {
  position: absolute;
  display: block;
  font-size: 27px;
  font-size: 6.66667vw;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  top: 50%;
  margin-top: -0.5em;
  z-index: 10;
  overflow: hidden;
  text-indent: 200%;
  background: url(../img/icon-arrow-next.svg) no-repeat 50% 50%;
  background-size: 50% auto;
}

@media screen and (min-width: 901px) {
  .guide-carousel .slick-arrow {
    font-size: 42px;
  }
}

.guide-carousel .slick-arrow.slick-prev {
  left: -0.5em;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.guide-carousel .slick-arrow.slick-next {
  right: -0.5em;
}

.guide-carousel .slick-arrow.slick-disabled {
  display: none !important;
}

.guide-carousel .slick-dots {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -10%;
  z-index: 10;
  font-size: 0;
}

.guide-carousel .slick-dots li {
  display: inline-block;
}

.guide-carousel .slick-dots li button {
  font-size: 14.4px;
  font-size: 3.55556vw;
  display: block;
  width: 1em;
  height: 1em;
  margin: 0 0.5em;
  background: #FFF;
  overflow: hidden;
  border-radius: 50%;
  text-indent: 200%;
}

@media screen and (min-width: 901px) {
  .guide-carousel .slick-dots li button {
    font-size: 22.4px;
  }
}

.guide-carousel.gold .slick-arrow, .guide-carousel.gold .slick-dots .slick-active button {
  background-color: #bb850e;
}

.guide-carousel.orange .slick-arrow, .guide-carousel.orange .slick-dots .slick-active button {
  background-color: #eb5505;
}

.guide-carousel .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.guide-carousel .flex img {
  width: 40%;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.guide-carousel .flex div {
  background-color: white;
  width: 60%;
  height: auto;
}

.guide-carousel .flex div span.bg_or {
  background-color: #eb5505;
  color: white;
  padding: 0.3em 0.5em;
  border-radius: 10px;
  position: absolute;
  top: 5%;
  font-size: 14.4px;
  font-size: 3.55556vw;
}

@media screen and (min-width: 901px) {
  .guide-carousel .flex div span.bg_or {
    font-size: 22.4px;
  }
}

@media (min-width: 900px) {
  .guide-carousel .flex div span.bg_or {
    font-size: 1.1em;
  }
}

.guide-carousel .flex div p {
  width: 100%;
}

.guide-carousel .flex div p + p {
  padding-top: 2em;
  line-height: 1;
  padding-right: 1em;
}

.guide-carousel .flex p {
  background-color: white;
  font-size: 17.1px;
  font-size: 4.22222vw;
  padding-top: 20%;
  padding-right: 0.5em;
  width: 60%;
}

@media screen and (min-width: 901px) {
  .guide-carousel .flex p {
    font-size: 26.6px;
  }
}

.guide-carousel .flex p .small {
  font-size: 0.7em;
}

@media (min-width: 900px) {
  .guide-carousel .flex p {
    font-size: 1.4em;
  }
}

.guide-carousel .flex .long {
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.guide-carousel .flex .box, .guide-carousel .flex .box2 {
  position: absolute;
  border: 2px solid #fe0782;
  background-color: rgba(0, 0, 0, 0);
}

@media screen and (min-width: 901px) {
  .guide-carousel .flex .box, .guide-carousel .flex .box2 {
    border: 4px solid #fe0782;
  }
}

.guide-carousel .flex .box {
  width: 3em;
  height: 4em;
}

@media screen and (max-width: 900px) {
  .guide-carousel .flex .box {
    height: 3em;
    width: 9vw;
  }
}

.guide-carousel .flex .box2 {
  width: 30vw;
  height: 1.5em;
}

@media screen and (min-width: 901px) {
  .guide-carousel .flex .box2 {
    height: 2em;
    width: 11em;
  }
}

.guide-carousel .flex .credit {
  top: 71%;
  left: 21%;
}

.guide-carousel .flex .ponta {
  top: 62%;
  left: 26.3%;
}

.guide-carousel .flex .kantan {
  top: 48%;
  left: 29%;
}

.guide-carousel .flex .paycard {
  top: 48%;
  left: 31.2%;
}

.guide-carousel .flex .paycard2 {
  top: 48%;
  left: 25%;
}

.guide-carousel .flex .jibun {
  top: 66%;
  left: 13.5%;
}

.guide-carousel .flex .jibun2 {
  top: 66%;
  left: 15.5%;
}

.guide-carousel .flex .pt5 {
  padding-top: 5%;
}

@media (min-width: 800px) {
  .guide-carousel .flex .pt5 {
    padding-top: 7%;
  }
}

.guide-carousel .flex .pt10 {
  padding-top: 7%;
}

@media (min-width: 800px) {
  .guide-carousel .flex .pt10 {
    padding-top: 10%;
  }
}

.guide-carousel .flex .pt15 {
  padding-top: 15%;
}

/* -------------------------

---------------------------*/
.lawsonbk{
  margin:3em auto 1em;
  text-align: center;
  background-color: white;
  padding: 1em 0;
  color: #EB5505;
}
/* ------------------------------
 backto
------------------------------ */
.backto {
  margin: 11.11111% 16.66667% auto;
}

@media screen and (min-width: 901px) {
  .backto {
    margin: 100px 150px auto;
  }
}

/* ------------------------------
 link-list
------------------------------ */
.link-list {
  background: #FFF;
}

.link-list a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 21.6px;
  font-size: 5.33333vw;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.6em 4.44444%;
  border-bottom: 2px solid currentColor;
}

@media screen and (min-width: 901px) {
  .link-list a {
    font-size: 33.6px;
  }
}

.link-list a::before, .link-list a::after {
  content: '';
  position: absolute;
  width: 0.6em;
  height: 0.1em;
  top: 0;
  right: 0.8em;
  bottom: 0;
  margin: auto;
  background: currentColor;
}

.link-list a::before {
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  -webkit-transform-origin: 95% 50%;
          transform-origin: 95% 50%;
}

.link-list a::after {
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
  -webkit-transform-origin: 95% 50%;
          transform-origin: 95% 50%;
}

.link-list :first-child a {
  border-top: 2px solid currentColor;
}

/* ------------------------------
 other-sec
------------------------------ */
.other-sec .toggle-btn {
  background: #43b1c1;
}

.other-sec .toggle-btn .toggle-icon::before, .other-sec .toggle-btn .toggle-icon::after {
  background: #43b1c1;
}

.other-sec .link-list {
  color: #43b1c1;
}

/* ------------------------------
 Require
------------------------------ */
#require div.inner-wrap a {
  text-decoration: none;
  border-bottom: 1px dashed #eb5505;
  color: #eb5505;
}

/* ------------------------------
 Footer
------------------------------ */
.footer {
  position: relative;
  color: #FFF;
}

.footer .copyright {
  display: block;
  text-align: center;
  font-size: 16.2px;
  font-size: 4vw;
  padding: 1em;
  background: #242b3e;
}

@media screen and (min-width: 901px) {
  .footer .copyright {
    font-size: 25.2px;
  }
}

/* ------------------------------
 Video
------------------------------ */
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movset {
	margin: -1em 1em!important;
}
@media screen and (max-width: 900px) {
	.movset {
		margin: -.2em 1em!important;
	}
}

/* ------------------------------
 
	Animation

------------------------------ */
/* ------------------------------
 scroll-in
------------------------------ */
body:not(.legacy) .scroll-in.fade-in {
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body:not(.legacy) .scroll-in.fade-in.appeared {
  opacity: 1;
}

body:not(.legacy) .scroll-in.up-in {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body:not(.legacy) .scroll-in.up-in.appeared {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body:not(.legacy) .scroll-in.zoom-in {
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
  transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
}

body:not(.legacy) .scroll-in.zoom-in.appeared {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* MV-Anime
----------------------------------------------------------- */
body:not(.legacy) .mv-ttl {
  opacity: 0;
  -webkit-transform: scale(0.4) translateY(-50%);
          transform: scale(0.4) translateY(-50%);
}

body:not(.legacy) .mv-img {
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}

body:not(.legacy).ready .mv-ttl {
  opacity: 1;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
  -webkit-transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
  transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
}

body:not(.legacy).ready .mv-img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
  transition: 0.8s cubic-bezier(0.22, 1.5, 0.8, 1);
}

/*others*/
.nowrap_name{
  display: flex;
  flex-wrap: wrap;
}
.nowrap_name li{
  width: fit-content;
}
