@charset "utf-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}
body {
  margin: 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: 700
}
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
}
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: -.25em
}
sup {
  top: -.5em
}
svg, img, embed, object, iframe {
  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
}
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 {
  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
}
[type="number"] {
  -moz-appearance: textfield
}
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: 700
}
html {
  scroll-behavior: smooth;
}

:root {
  --color-g1: #00A73B;
  --color-g2: #6FBA2C;
  --color-g3: #ABCD03;
  --color-g3: #DBE000;
  --color-key: #FFE92B;
  --font-size-xs: 14px;
  --font-size-sm: 16px;
  --font-size-md: 18px;
  --font-size-md2: 20px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-xxl: 40px;
  --padding-xs: 10px;
  --padding-sm: 16px;
  --padding-md: 24px;
  --padding-lg: 32px;
  --padding-xl: 40px;
  --padding-xxl: 60px;
  --modal-dur: .8s;
  --modal-ease: cubic-bezier(.2, .7, .2, 1);
}
body {
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
     color: var(--color-g1);
    font-size: 1.11vw;
    background: #00a73b;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), 
       only screen and (min-resolution: 192dpi) {
  body {
     font-size: 1.4vw;
  }
}

.pc {
  display: block;
}
.sp {
  display: none;
}
.en {
  font-family: "Wendy One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
}
p {
    line-height: 2;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
}
.flex {
	display: flex;
}
/* ハンバーガーメニュー */

body{
  overflow-x: hidden;
}

header {
    position: relative;
    z-index: 3;
}
.hamburger {
    width: 5vw;
    height: 5vw;
    position: fixed;
    top: 2vw;
    right: 3vw;
    background: #00a73b;
    border-radius: 999px;
    z-index: 4;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95, 0.95);
    transition: .4s;
}
.sc01 .hamburger {
  opacity: 1;
   pointer-events: auto;
  transform: scale(1, 1);
  transition: .4s;
}
.point-lead .pic-wrap img {
    border-radius: 0 40px 40px 0;
}


.menu-active .hamburger {
        background:none;

}
.hamburger span {
    position: absolute;
    width: 52%;
    height: 4px;
    background-color: #fefcef;
    transition: .3s;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 5px;
}
.hamburger span:first-of-type {
    top: 2.15vw;
}
.hamburger span:nth-of-type(2) {
    top: 2.84vw;
}
.slide-menu {
    background: #00a73b;
    position: fixed;
    top: 0;
    width: 100%;
    transition: .5s;
    height: 100%;
    z-index: 3;
	opacity: 0;
	  transform: scale(0.97, 0.97);
	pointer-events: none;
}

.menu-active .slide-menu {
  transform: translateX(0);
}
.slide-menu li a {
    text-decoration: none;
    display: inline-block;
    padding: 0.45em 0;
    border-top: #ffffff dashed 2px;
}

.slide-menu li.sub {
    font-size: 1em;
}
.slide-menu li .js-modal-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 0.3em;
}

.menu-active .hamburger span:first-of-type{
  top: 50%;
  transform: rotate(45deg);    background-color: #fff;
}
.menu-active .hamburger span:nth-of-type(2){
  top: 50%;
  transform: rotate(-45deg);    background-color: #fff;
}
.menu-active .hamburger{
 

}

.slide-menu-wrap.flex {
    width: 80%;
    margin: 0 auto;
    height: 100vh;
    color: #fff;
    align-items: center;
}
.menu-active .slide-menu {
opacity: 1;
	 transform: scale(1, 1);
	pointer-events: auto;
}
.body.menu-active {
  overflow: hidden;
  transition: .7s;
}

.slide-menu-logo {
    width: 44%;
    text-align: center;
    margin: 0 auto;
}

.slide-menu-gnav a {
text-decoration: none;
}
.nav-en {
    font-size: 60px;
    display: block;
    line-height: 1;
}
.slide-menu-link {
    width: 50%;
}
.slide-menu ul {
    padding-left: 2em;
}
.slide-menu-wrap li {
    font-size: 1.8em;
    text-align: left;
    font-weight: 900;
}.slide-menu li.sub {
    font-size: 1em;
    padding-bottom: 0.8em;
}
.content {

  position: relative;
}



.reverse {
  flex-direction: row-reverse;
}

.hero-fade {
  animation: fadeInlogo 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.content {
  animation: fadeInlogo 0.5s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
@keyframes fadeInhero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes fadeInlogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.data-sup {
    font-size: 0.86em;
    text-align: right;
    padding-top: 1em;
    padding-right: 1em;
}
footer {

}
.wrap {
    background: #fff;
    width: 97.5%;
    margin: 1.2% auto 0;
    border-radius: 1.5em 1.5em 0 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 10em;
}.inner {
  width: 66%;
  margin: 0 auto;
	position: relative;
}

.inner-min {
    width:52%;
    margin: 0 auto;
	position: relative;
}
.l-sec {
  padding-top: 10em;
}

.hero {
    width: 48%;
    margin: 0 auto;
    padding-top: 12em;
    position: relative;
    z-index: 2;
    padding-left: 4%;
}
.hero-logo {
    width: 78%;
}
.hero-txt {
    font-size: 1.17em;
    font-weight: 700;
    padding-top: 2.5em;
    padding-left: 5%;
}
.character {
    width: 30%;
    margin: 0 auto;
    position: absolute;
    right: -13%;
    bottom: 11%;
}
.gnav ul {
	font-weight: 900;
}
.gnav li {
    font-size: 1.1em;
    font-weight: 900;
}
.gnav li.sub {
    font-size: 0.9em;
}
.gnav li.sub.last {
    margin-bottom: 1em;
}
.gnav li a {
    display: inline-block;
    padding: 0.55em 0;
    border-top: #00a73b dashed 2px;
}
.gnav li div {
    display: inline-block;
    padding: 0.45em 0;
    border-bottom: #00a73b dashed 2px;
}
.gnav {
    position: absolute;
    top: 4em;
    z-index: 2;
    left: 4em;
}

.hero-copy {

}

.sec-title {
width: 28em;
	margin: 0 auto;
	    padding-bottom: 4em;

}
.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border: #00a73b solid 0.4em;
    border-radius: 1.4vw;
    overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.sec-subtitle {
    font-size: 1.8em;
    font-weight: 900;
	padding-bottom: 1em;
	line-height: 1.5em;
}
.gomi-deta-items.flex {
    background: #00a73b;
    padding: 1.8em;
    border-radius: 1em;
    justify-content: center;
    gap: 2em;
}
.gomi-deta-w {
    position: absolute;
    width: 4.3em;
    left: -1em;
    top: -1em;
}
.gomi-deta-item {
    background: #fff;
    padding: 1.5em 7em;
    border-radius: 1em;
	position: relative;
	width: 50%;
}
.current-detail-item {
    padding: 5em 1.8em 0;
}

.current-detail-item.graph02 {
    padding: 10em 1.8em 3em;
}

section#hero-movie {
    padding-top: 6em;
}

#start .sec-title {
    width: 20em;
}
.start-bg {
    background: #6eb92c;
    padding: 10em 0 0;
    color: #fff;
    width: 97.5%;
    margin: 0 auto 0;
    border-radius: 0em 3em 3em 3em;
    overflow: hidden;
}
.l-sec {
    position: relative;
}
#start .sec-title {
    width: 20em;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
}
.wrap-g1-head {
    background: #fff;
    width: 97.5%;
    margin: 0 auto 0;
    overflow: hidden;
    position: absolute;
    padding-bottom: 10em;
    left: 0;
    right: 0;
    height: 20em;
}
.wrap-g2-head {
    background: #fff;
    width: 97.5%;
    margin: 0 auto 0;
    border-radius: 0 0 1.8em 1.8em;
    overflow: hidden;
    position: relative;
    padding-bottom: 10em;
}



/* ------------------------------
 MODAL
------------------------------ */
.modal {
  position: fixed;
  inset: 0;
  place-items: center;
  z-index: 1000;
  transition: .5s;
  /* 初期状態は見えない */
  visibility: hidden;
  pointer-events: none;
}
.modal[aria-hidden="true"] .modal__overlay {
  opacity: 0;
}
.modal[aria-hidden="true"] .modal__panel {
  opacity: 0;
  transform: scale(.98);
}
.modal[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgb(86 167 26 / 90%);
    transition: opacity var(--modal-dur) var(--modal-ease);
}
.modal__wrap {
    height: 100vh;
    overflow-y: scroll;
    padding: 2em 0;
    width: 100%;
}
.modal__panel {
	  position: relative;
  box-sizing: border-box;
  width: 50%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
  transition:
    opacity var(--modal-dur) var(--modal-ease),
    transform var(--modal-dur) var(--modal-ease);
	margin: 0 auto;
}
.modal-content {

}
.modal__title {
  font-weight: 700;
  text-align: center;
  font-size: var(--font-size-lg);
  padding: var(--padding-sm) 0 0;

}
.modal__close {
    position: absolute;
top: 1em;
    right: 1em;
    inline-size: 2em;
    block-size: 2em;
    border: none;
    border-radius: 999px;
    background: #239710;
    font-size: 1.3em;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    font-weight: 900;
    text-align: center;
}



button.modal__close.circle__close__btn {
    position: absolute;
    top: 16px;
    right: 8px;
    border: none;
    border-radius: 999px;
    background: #b59675;
    font-size: var(--font-size-lg);
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    font-weight: 900;
    color: #fff;
    padding: 8px;
    text-align: center;
}
p.lead {
    padding: 3em 0;
    font-size: 1.1em;
    font-weight: 600;
}
.btn-items {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-bottom: 1em;
}
.btn-item { 
  width: 12em;

}
.btn-item .js-modal-trigger{ 
  width: 100%;
  background: linear-gradient(to bottom, #fff 50%, #e6f7ec 50%);
  font-size: 1.18em;
  font-weight: 700;
  color: #5dad17;
  text-align: center;
  padding: 1.2em;
  border-radius: 0.7em;
  cursor: pointer;
  transition: .4s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15); /* 立体感 */
}
.app {
    padding: 3em 0;
}
.app-tmb {
    width: 6em;
    margin: 0 auto;
    border-radius: 0.4em;
    overflow: hidden;
    margin-bottom: 1em;
}


.btn-item .js-modal-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}
.app-name {
    text-align: center;
    font-weight: 700;
    padding-bottom: 2em;
}
section#start {
 
}
.current-detail-item.flex {
    flex-direction: row-reverse;
    gap: 3em;
}.app-dl.flex {
    justify-content: center;
    padding-top: 2em;
    gap: 1em;
}

.app p {
    width: 68%;
    margin: 0 auto;
    font-size: 0.88em;
}
.app a {
transition: .4s;
}
.app a:hover {
	opacity: 0.6;
transition: .4s;
}



.app-dl-item {
    width: 13em;
}
.graph01 .sec-current-txt {
    padding-bottom: 1em;
}
.graph02.current-detail-item {
    padding: 3em 1.8em 0;
    border-top: #00a73b dashed 1px;
    margin-top: 3em;
}
.graph03.current-detail-item {
    padding: 3em 1.8em 0;
    border-top: #00a73b dashed 1px;
    margin-top: 2em;
}
.graph03 .sec-current-txt {
    padding-bottom: 3em;
}
.graph02 .sec-graph {
  width: 50%;
}
section#movie {
    background: #00a73b;
    padding: 7em 0;
    color: #fff;
    width: 97.5%;
    margin: 0 auto 0;
    border-radius: 0;
    overflow: hidden;
}
.graph02 .sec-current-txt {
    width: 50%;
}
span.marker {
    font-weight: 600;
    background: linear-gradient(transparent 60%, #ffe92b 60%);
}
footer {
    background: #fff;
    padding: 5em;
    text-align: center;
    color: #333;
}
.start-foot {

}
.footer-logo {
    width: 150px;
    margin: 0 auto 1em;
}
.wrap-g1 .inner {
    padding-bottom: 7em;
}
section#movie .sec-title {
    width: 22em;
    margin: 0 auto;
    padding-bottom: 0;
}
.movie-items.flex {
    justify-content: space-between;
    flex-wrap: wrap;
}
.movie-item {
    width: calc(25% - 1.5em);
    margin-bottom: 1.5em;
}
.movie-item-title {
    text-align: center;
    padding-top: 0.6em;
    font-size: 0.85em;
}
.movie-item img {
border-radius: 0.6em;
}
section#movie span.sup {
    font-size: 0.8em;
}
.footer-name {
font-weight: 600;
    font-size: 1.2em;
    padding-bottom: 0.5em;
}
footer p.sup {
    font-size: 0.85em;
}
.modal-ico {
    width: 20%;
    margin: 0 auto;
}
.modal-content {
    padding: 2em 3em;
}
.modal-title {
    font-size: 2em;
    text-align: center;
    padding: 0.5em 0 1em;
    font-weight: 900;
}
.modal-content p {

}
.modal-content p.lead {
    padding-bottom: 30px;
    text-align: center;
    font-weight: 600;
    padding-top: 0;
    line-height: 1.6;
}
.modal-content .start01-item-title.en {
    font-size: 1.2em;
    text-align: center;
}

.link-wrap {
    border: #00a73b dotted 2px;
    padding: 1.5em;
    margin: 2em 0 1em;
}
.link-wrap-title {
    font-size: 1em;
    font-weight: 600;
    padding-bottom: 1em;
}
.link-wrap li {
    font-size: 0.9em;
    padding-bottom: 0.28em;
    line-height: 1.4;
}
.link-wrap li a {
text-decoration: underline;
	
}
.start-items.flex {
    padding-top: 3em;
    gap: 1.8em;
}
.modal-content .start-items p {
    font-size: 0.86em;
    text-align: justify;
    line-height: 1.7;
}
.start-item-title-sub {
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1em;
}

#start .link-wrap {
    border: #ffffff dotted 2px;
}
#modal-start03 .modal-img {
    width: 65%;
    margin: 0 auto;
}

#modal-start04 .modal-img {
    width: 30%;
    margin: 0 auto;
    padding-top: 2em;
}
#modal-start01 .modal-img {
    border-radius: 1em;
    overflow: hidden;
}
#modal-start02 .modal-img {
    border-radius: 1em;
    overflow: hidden;
    margin-top: 1.5em;
}
#modal-start05 .modal-img {
    width: 30%;
    margin: 0 auto;
}
.start-item {
    width: 33%;
}
.start-item-title {
    font-size: 1.2em;
    font-weight: 800;
    text-align: center;
    padding-bottom: 0.6em;
}
.start-item-title.en {
font-size: 1.8em;
    text-align: center;
    padding-bottom: 0.1em;
    font-weight: 400;
}
span.cap {
    text-align: center;
    display: block;
    font-size: 0.8em;
    padding-top: 0.4em;
}
div.vid_contents {
    width: 100%;
    text-align: center;
    margin: auto;
    border-radius: 1.2em;
    overflow: hidden;
    border: #00a73b solid 6px;
    background: #333;
}
video.vid_main {
width: 100%;
}

@media screen and (max-width:1400px) {
 body {
    font-size: 16px;
}  
	.hamburger span {
    height: 3px;
}
}

@media screen and (max-width:1200px) {
.hero {
    width: 55%;
}
.inner {
    width: 75%;
}.modal__panel {
    width: 60%;
}
}

@media screen and (max-width:1000px) {
.inner {
    width: 85%;

} body {
    font-size: 15px;
}  .hero {
    width: 60%;
    padding-top: 15em;
}
}

@media screen and (max-width:800px) {

.inner {
    width: 90%;
}.gomi-deta-item {
    padding: 1.5em 4em;
}
	.current-detail-item {
    padding: 5em 0 0;
}.current-detail-item.graph02 {
    padding: 10em 0 3em;
}
	.character {
    bottom: 15%;
}
}


@media screen and (max-width:650px) {
	  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
 
.gnav {
display: none;
}
	.hamburger {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #00a73b;
    border-radius: 999px;
    z-index: 4;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transform: scale(0.95, 0.95);
    transition: .4s;
}
	.hamburger span:nth-of-type(2) {
    top: 32px;
}
	.hamburger span:first-of-type {
    top: 25px;
}
	.hero {
    width: 72%;
    padding-top: 200px;
}
	body {
    font-size: 14px;
}.gomi-deta-item {
    padding: 1.5em 3em;
}.current-detail-item.graph02 {
    padding: 5em 0 3em;
    display: block;
}.graph02 .sec-current-txt {
    width: 100%;
}
	.graph02 .sec-graph {
    width: 100%;
    padding-top: 30px;
}#start .sec-title {
    width: 200px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
}.wrap {
    padding-bottom: 120px;
}.l-sec {
    padding-top: 80px;
}.movie-item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}.movie-item-title {
    text-align: center;
    padding-top: 13px;
    font-size: 13px;
}.slide-menu-wrap.flex {
    width: 80%;
    margin: 0 auto;
    height: 100vh;
    color: #fff;
    align-items: center;
    display: block;
    padding-top: 100px;
}.slide-menu-logo {
    width: 66%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 40px;
}.slide-menu-link {
    width: 100%;
}.slide-menu li a {
    text-decoration: none;
    display: block;
    padding: 0.45em 0;
    border-top: #ffffff dashed 2px;
}.slide-menu ul {
    padding-left: 0;
}.modal__panel {
    width: 96%;
}.start-items.flex {
    padding-top: 3em;
    gap: 1.8em;
    display: block;
}.start-item {
    width: 100%;
    padding-bottom: 30px;
}.sec-title {
    width: 250px;
    margin: 0 auto;
    padding-bottom: 30px;
}.gomi-deta-items.flex {
    background: #00a73b;
    padding: 20px 20px 10px;
    border-radius: 1em;
    justify-content: center;
    gap: 2em;
    display: block;
}.gomi-deta-item {
    background: #fff;
    padding: 1.5em 7em;
    border-radius: 1em;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}.sec-subtitle {
    font-size: 20px;
    font-weight: 900;
    padding-bottom: 1em;
    line-height: 1.5em;
}.link-wrap {
    border: #00a73b dotted 2px;
    padding: 20px;
    margin: 2em 0 1em;
}.btn-item .js-modal-trigger {
    width: 100%;
    background: linear-gradient(to bottom, #fff 50%, #e6f7ec 50%);
    font-size: 15px;
    font-weight: 700;
    color: #5dad17;
    text-align: center;
    padding: 1.2em 0.5em;
    border-radius: 0.7em;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}.btn-items {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
}section#movie .sec-title {
    width: 220px;
    margin: 0 auto;
    padding-bottom: 0;
}p.lead {
    padding: 30px 0;
    font-size: 16px;
    font-weight: 500;
}.slide-menu-wrap li {
    font-size: 20px;
    text-align: left;
    font-weight: 900;
}.slide-menu li a {
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-top: #ffffff dashed 2px;
}
	
	.graph03.current-detail-item {
    padding: 3em 0 0;
    border-top: #00a73b dashed 1px;
    margin-top: 2em;
}
	.current-detail-item.graph02 {
    padding: 3em 0 3em;
    display: block;
}
	.app p {
    width: 100%;
    margin: 0 auto;
    font-size: 0.88em;
}.app-dl.flex {
    justify-content: center;
    padding-top: 2em;
    gap: 0.5em;
}
}
@media screen and (max-width:500px) {
.character {
    bottom: 26%;
    right: -8%;
}
.hero {
    width: 78%;
    padding-top: 200px;
    padding-left: 1%;
}
	.hero-logo {
    width: 74%;
}section#hero-movie {
    padding-top: 40px;
}.sec-subtitle {

    text-align: center;
}.link-wrap li {
    font-size: 13px;
    padding-bottom: 0.28em;
    line-height: 1.4;
}.btn-item .js-modal-trigger {
    width: 100%;
    background: linear-gradient(to bottom, #fff 50%, #e6f7ec 50%);
    font-size: 14px;
    font-weight: 700;
    color: #5dad17;
    text-align: center;
    padding: 1.2em 0.3em;
    border-radius: 0.7em;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}.wrap {
    padding-bottom: 7em;
}.modal-ico {
    width: 100px;
    margin: 0 auto;
}.modal__wrap {
    height: 100vh;
    overflow-y: scroll;
    padding: 8px 0;
    width: 100%;
}.modal-content {
    padding: 20px;
}p.lead {
    padding: 20px 0;
    font-size: 14px;
    font-weight: 500;
}.modal-title {
    font-size: 28px;

}.slide-menu li.sub {
    font-size: 17px;
    padding-bottom: 0.8em;
    line-height: 1.5;
}
  .slide-menu li .js-modal-trigger {
    cursor: pointer;
    display: block;
    padding: 0 0.3em;
}
  .sp-non {
display: none;
}
  
}

@media screen and (max-width:380px) {

}

