@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700;900&family=Oswald:wght@200;400;600&family=Roboto:wght@400;700;900&display=swap");
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-family: "Roboto", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

menu,
ol,
ul {
  list-style: none;
  list-style-image: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}

a {
  color: #2b2b2b;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.35);
}
a:active, a:hover {
  outline: 0;
}
a:focus {
  outline: none;
}
a img, a svg {
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.scroll {
  opacity: 0;
}

.scroll.is-scroll.is-scroll--top {
  -webkit-animation: fadein 0.8s ease forwards;
          animation: fadein 0.8s ease forwards;
}

.scroll.is-scroll.is-scroll--right {
  -webkit-animation: right 0.6s ease forwards;
          animation: right 0.6s ease forwards;
}

.scroll.is-scroll.is-scroll--left {
  -webkit-animation: left 0.6s ease forwards;
          animation: left 0.6s ease forwards;
}

@-webkit-keyframes fadein {
  0%, 10% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadein {
  0%, 10% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes right {
  0%, 10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes right {
  0%, 10% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes left {
  0%, 10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes left {
  0%, 10% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes slide-bg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slide-bg {
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slide-bg:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: #329918;
}

.slide-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.is-move .slide-bg:before {
  -webkit-animation: slide-bg 1s ease 0s 1 normal forwards;
  animation: slide-bg 1s ease 0s 1 normal forwards;
}

.is-move .slide-txt {
  -webkit-animation: slide-txt 0s ease 0.55s 1 normal forwards;
  animation: slide-txt 0s ease 0.55s 1 normal forwards;
}

@-webkit-keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
@keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1) rotate(25deg);
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.header {
  width: 100%;
  padding: 3rem 2rem 5rem;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffc9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}
.header:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 25vw 0 0;
  border-color: #329918 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header:before {
    border-width: 12vw 32vw 0 0;
  }
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .header-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .header-inner-block {
    width: 45%;
  }
}
@media screen and (min-width: 1100px) {
  .header-inner-block {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .header-inner-visual {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .header-inner-visual {
    width: 52%;
    margin-left: 3%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .header-inner-visual {
    width: 57%;
  }
}
.header-university {
  max-width: 200px;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  .header-university {
    width: 160px;
    position: absolute;
    top: 2rem;
    left: 1.5rem;
  }
}
.header-university a {
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  padding: 1rem;
  background: #fff;
  color: #2b2b2b;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-university a {
    font-size: 1.4rem;
  }
}
.header-university a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -5px;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
@media screen and (min-width: 768px) {
  .header-university a:hover {
    background: rgba(255, 255, 255, 0.45);
    color: #fff;
  }
}
.header-university a:hover:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.header-fix {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fa7630;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.3rem;
}
@media screen and (min-width: 768px) {
  .header-fix {
    padding: 1rem;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: calc(infinity);
  }
}
.header-fix .free-btn {
  color: #fa7630;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .header-fix .free-btn {
    width: 200px;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    background: #fa7630;
    color: #fff;
    border-radius: 6px;
    padding: 1rem;
    display: inline-block;
    position: relative;
    border: 1px solid #fa7630;
  }
}
@media screen and (min-width: 768px) {
  .header-fix .free-btn:before {
    content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1.5rem;
    margin-top: -5px;
    -webkit-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
    width: 6px;
    height: 6px;
    right: 1.2rem;
  }
}
.header-fix .free-btn:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-fix .free-btn:hover {
    background: #fff;
    color: #fa7630;
  }
}
.header-fix .free-btn:hover:before {
  border-top: 1px solid #fa7630;
  border-right: 1px solid #fa7630;
}
.header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3.5rem;
}
.header-btn .h-btn {
  width: 48.5%;
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px) {
  .header-btn .h-btn {
    font-size: 1.8rem;
  }
}
.header .h-bal {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  .header .h-bal {
    max-width: 420px;
  }
}
.header .h-sub-title {
  font-size: 5.5vw;
  font-weight: 900;
  text-align: center;
  margin: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .header .h-sub-title {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1100px) {
  .header .h-sub-title {
    font-size: 3rem;
  }
}
.header .h-title {
  font-size: 15.2vw;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #329918;
}
@media screen and (min-width: 768px) {
  .header .h-title {
    font-size: 7.5vw;
  }
}
@media screen and (min-width: 1100px) {
  .header .h-title {
    font-size: 8.5rem;
  }
}
.header-at {
  text-align: center;
  margin-top: 3rem;
}
.header-at ul {
  display: inline-block;
}
.header-at ul li {
  text-align: left;
}
.header-at ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fa7630;
}
@media screen and (min-width: 768px) {
  .header-at ul li a {
    font-size: 1.8rem;
  }
}
.header-at ul li a:hover {
  text-decoration: underline;
}
.header-at ul li + li {
  margin-top: 1.5rem;
}
.header-nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
}
.header-nav-list {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .header-nav-list {
    height: 100vh;
    display: none;
    padding-bottom: 20px;
    background: rgb(255, 255, 255);
    position: relative;
    z-index: 9999;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-list {
    display: block !important;
    position: absolute;
    top: 0.5rem;
    right: 30rem;
  }
}
.header-nav-list li {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header-nav-list li {
    display: inline-block;
    padding: 0 1rem;
  }
}
.header-nav-list li a {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-nav-list li a {
    color: #329918;
    display: block;
    padding: 2rem 2rem;
    border-bottom: 1px solid #329918;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-list li a:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #2b2b2b;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-list li a:hover:after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header-trigger {
  width: 60px;
  height: 60px;
  display: none;
  position: absolute;
  top: 2rem;
  right: -1rem;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .header-trigger {
    display: block;
  }
}
.header-trigger #nav-toggle {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
.header-trigger #nav-toggle.is-active span {
  background-color: transparent;
}
.header-trigger #nav-toggle.is-active span:before, .header-trigger #nav-toggle.is-active span:after {
  top: 0;
}
.header-trigger #nav-toggle.is-active span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-trigger #nav-toggle.is-active span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-trigger span, .header-trigger span:before, .header-trigger span:after {
  cursor: pointer;
  width: 35px;
  height: 3px;
  background: #329918;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.header-trigger span:before {
  top: -10px;
}
.header-trigger span:after {
  bottom: -10px;
}

.footer {
  padding: 2.5rem;
  background: #329918;
}
@media screen and (min-width: 1100px) {
  .footer {
    padding: 4rem;
  }
}
.footer p {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .footer p {
    font-size: 1.4rem;
  }
}

.main {
  display: block;
}
.main-heading {
  font-size: 9vw;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .main-heading {
    font-size: 5.2rem;
  }
}
.main-en-heading {
  font-family: "Oswald", sans-serif;
  font-size: 4vw;
  font-weight: 700;
  color: #329918;
  text-align: center;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .main-en-heading {
    font-size: 2.2rem;
  }
}
.main-txt {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .main-txt {
    font-size: 1.6rem;
  }
}

.logo {
  opacity: 0;
  padding: 1rem 0;
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}
@media screen and (min-width: 768px) {
  .logo {
    padding: 2rem 0;
  }
}
.logo.is-fade {
  opacity: 1;
}
.logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.logo ul li {
  width: 28%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .logo ul li {
    width: 18%;
  }
}
@media screen and (min-width: 1100px) {
  .logo ul li {
    width: 8.5%;
  }
}

.point {
  padding: 7rem 2rem;
  background: #ebffe6;
}
.point-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.point-block {
  padding: 3rem;
  margin-top: 3rem;
  background: #fff;
  border: 2px solid #329918;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .point-block {
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.point-block-illust {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .point-block-illust {
    max-width: 350px;
    margin: 0 auto 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .point-block-illust {
    width: 250px;
    margin-right: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .point-block-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.point-block-txt h2 {
  font-size: 3.2rem;
  color: #329918;
}
@media screen and (max-width: 767px) {
  .point-block-txt h2 {
    font-size: 2.4rem;
    text-align: center;
  }
}
.point-block-txt h2:after {
  content: "";
  width: 80px;
  height: 1px;
  background: #329918;
  display: block;
  margin: 2rem auto;
}
@media screen and (min-width: 768px) {
  .point-block-txt h2:after {
    margin: 2rem 0;
  }
}
@media screen and (min-width: 768px) {
  .point-block-txt p {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.point-at {
  font-size: 1.6rem;
  color: #fa7630;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .point-at {
    font-size: 1.8rem;
  }
}

.case {
  padding: 7rem 2rem;
}
.case-inner {
  max-width: 1100px;
  margin: 3rem auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .case-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.case-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1100px) {
  .case-block {
    max-width: 345px;
    border: 1px solid #bfbfbf;
    border-radius: 6px;
  }
}
@media screen and (max-width: 767px) {
  .case-block + .case-block {
    display: none;
  }
}
.case-block-txt {
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .case-block-txt {
    padding: 3rem;
  }
}
.case-block-txt h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .case-block-txt h2 {
    font-size: 2.1rem;
  }
}
.case-block-txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
  border-top: 1px solid #bfbfbf;
}
.case-block-txt ul li {
  font-size: 1.1rem;
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
}
.case-block-txt ul li + li {
  border-left: 1px solid #bfbfbf;
}
.case-block-txt ul li span {
  font-weight: 700;
  color: #329918;
  display: inline-block;
}
.case .comimgsoon {
  width: 280px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  background: #2b2b2b;
  border-radius: 4px;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
}

.movie {
  padding: 7rem 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .movie {
    padding-bottom: 9rem;
  }
}
.movie-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.movie-heading {
  text-align: center;
}
.movie-heading span {
  font-size: 2.5rem;
  position: relative;
  padding: 1.5rem 2rem;
  font-weight: 900;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .movie-heading span {
    font-size: 3.8rem;
  }
}
.movie-heading span:before {
  content: "";
  width: 1.5rem;
  height: 100%;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  border-left: 1px solid #2b2b2b;
  position: absolute;
  top: 0;
  left: 0;
}
.movie-heading span:after {
  content: "";
  width: 1.5rem;
  height: 100%;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  position: absolute;
  top: 0;
  right: 0;
}
.movie-block {
  margin-top: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .movie-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .movie-block-media {
    width: 48.5%;
  }
}
@media screen and (max-width: 767px) {
  .movie-block-media {
    margin-top: 3.5rem;
  }
}
.movie-block-media img {
  border: 1px solid #bfbfbf;
}
.movie-block-media article {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.movie-block-media article iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.movie-block-media h2 {
  text-align: center;
  margin-top: 2rem;
}
.movie-block-media h2 span {
  font-size: 2rem;
  font-weight: 700;
  color: #329918;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ebffe6));
  background: linear-gradient(transparent 50%, #ebffe6 50%);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .movie-block-media h2 span {
    font-size: 2.5rem;
  }
}
.movie-robot {
  width: 70px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .movie-robot {
    left: 0;
    top: -120px;
  }
}
@media screen and (min-width: 768px) {
  .movie-robot {
    width: 100px;
    position: absolute;
    left: -7rem;
    bottom: -5rem;
  }
}
.movie-illust {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .movie-illust {
    margin-top: 3.5rem;
  }
}

.information {
  padding: 7rem 2rem;
  background: #ebffe6;
}
.information-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  .information-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1100px) {
  .information-document {
    width: 47.5%;
    position: relative;
  }
}
.information-document-list {
  margin-top: 2rem;
}
.information-document .document-block {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.information-document .document-block + .document-block {
  margin-top: 1rem;
}
.information-document .document-block-img {
  width: 80px;
  margin-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .information-document .document-block-img {
    width: 120px;
  }
}
.information-document .document-block-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.information-document .document-block-txt .time {
  font-size: 1.2rem;
  color: #329918;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.35rem;
}
.information-document .document-block-txt h2 {
  font-size: 1.4rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .information-document .document-block-txt h2 {
    font-size: 1.5rem;
  }
}
.information-document .document-block-txt a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .information-document .document-block-txt a:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 1100px) {
  .information-seminar {
    width: 47.5%;
    position: relative;
  }
}
.information-seminar-list {
  margin-top: 2rem;
}
.information-seminar .seminar-block {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.information-seminar .seminar-block + .seminar-block {
  margin-top: 1rem;
}
.information-seminar .seminar-block-img {
  width: 80px;
  margin-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .information-seminar .seminar-block-img {
    width: 120px;
  }
}
.information-seminar .seminar-block-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.information-seminar .seminar-block-txt .time {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.35rem;
}
.information-seminar .seminar-block-txt h2 {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .information-seminar .seminar-block-txt h2 {
    font-size: 1.5rem;
  }
}
.information-seminar .seminar-block-txt h2:after {
  content: "";
  width: 60px;
  height: 1px;
  background: #bfbfbf;
  margin: 1.5rem 0;
  display: block;
}
.information-seminar .seminar-block-txt a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .information-seminar .seminar-block-txt a:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
.information-seminar .seminar-block-txt .entry {
  font-size: 1.1rem;
  padding: 0.75rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .information-seminar .seminar-block-txt .entry {
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .information-seminar .seminar-block-txt .entry {
    min-width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.55rem;
  }
}
.information-seminar .seminar-block-txt .entry.start {
  background: #fa7630;
}
.information-seminar .seminar-block-txt .entry.end {
  background: #329918;
}
.information .info-heading {
  font-size: 9vw;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .information .info-heading {
    font-size: 3.2rem;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
  }
}
.information .info-en-heading {
  font-family: "Oswald", sans-serif;
  font-size: 4vw;
  font-weight: 700;
  color: #329918;
  text-align: center;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .information .info-en-heading {
    font-size: 1.6rem;
    display: inline-block;
    vertical-align: baseline;
    margin-left: 1.5rem;
  }
}

.news {
  padding: 7rem 2rem;
}
.news-list {
  max-width: 1100px;
  margin: 3rem auto 0;
}
.news-list li {
  padding: 2rem 0;
  border-bottom: 1px solid #bfbfbf;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .news-list li {
    padding: 3rem 0 3rem 25rem;
  }
}
.news-time {
  font-size: 1.2rem;
  font-weight: 700;
  color: #329918;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.35rem;
}
@media screen and (min-width: 1100px) {
  .news-time {
    font-size: 1.4rem;
    position: absolute;
    top: 3.2rem;
    left: 0;
  }
}
.news-category {
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  position: absolute;
  top: 1.5rem;
  left: 11rem;
  border-radius: 2px;
}
@media screen and (min-width: 1100px) {
  .news-category {
    font-size: 1.2rem;
    top: 3rem;
    left: 13rem;
  }
}
.news-category.release {
  color: #fff;
  background: #329918;
}
.news-category.notice {
  background: #fcec74;
}
.news a {
  display: block;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1100px) {
  .news a {
    display: inline;
    font-size: 1.6rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .news a:hover {
    color: #329918;
    text-decoration: underline;
  }
}

.flow {
  padding: 7rem 2rem;
  background: #ffffc9;
}
.flow-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  .flow-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flow-illust {
  max-width: 320px;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 1100px) {
  .flow-illust {
    width: 340px;
    margin: 0 4rem 0 0;
  }
}
@media screen and (min-width: 1100px) {
  .flow-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.flow-txt h1 {
  font-size: 8vw;
  font-weight: 900;
  text-align: center;
  color: #329918;
}
@media screen and (min-width: 1100px) {
  .flow-txt h1 {
    font-size: 4.8rem;
  }
}
.flow-btn {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.flow-btn .f-btn {
  font-size: 1.5rem;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .flow-btn .f-btn {
    width: 32%;
    margin: 0;
  }
}
@media screen and (min-width: 1100px) {
  .flow-btn .f-btn {
    font-size: 1.8rem;
  }
}
.flow-btn .f-bal {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .flow-btn .f-bal {
    font-size: 1.3rem;
  }
}
.flow-btn .f-bal span {
  display: inline-block;
  position: relative;
}
.flow-btn .f-bal span:before {
  content: "";
  width: 1px;
  height: 22px;
  background: #2b2b2b;
  position: absolute;
  bottom: -0.5rem;
  left: -1rem;
  -webkit-transform: rotate(-32deg);
          transform: rotate(-32deg);
}
.flow-btn .f-bal span:after {
  content: "";
  width: 1px;
  height: 22px;
  background: #2b2b2b;
  position: absolute;
  bottom: -0.5rem;
  right: -1rem;
  -webkit-transform: rotate(32deg);
          transform: rotate(32deg);
}

.development {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .development {
    margin-bottom: 3rem;
  }
}
.development a {
  font-size: 1.2rem;
  display: block;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .development a:hover {
    text-decoration: underline;
  }
}

.btn a {
  font-weight: 600;
  display: block;
  padding: 1.3rem;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
.btn a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -5px;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.btn a.primary {
  background: #fa7630;
  border: 2px solid #fa7630;
}
@media screen and (min-width: 1100px) {
  .btn a.primary:hover {
    background: #fff;
    color: #fa7630;
  }
  .btn a.primary:hover:after {
    border-top: 2px solid #fa7630;
    border-right: 2px solid #fa7630;
  }
}
.btn a.second {
  color: #329918;
  background: #fff;
  border: 2px solid #329918;
}
.btn a.second:after {
  border-top: 2px solid #329918;
  border-right: 2px solid #329918;
}
@media screen and (min-width: 1100px) {
  .btn a.second:hover {
    background: #329918;
    color: #fff;
  }
  .btn a.second:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.btn a.tel {
  color: #fff;
  background: #329918;
  border: 2px solid #329918;
}
.btn a.tel:after {
  display: none;
}

.info-btn {
  max-width: 240px;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 1100px) {
  .info-btn {
    width: 150px;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.info-btn a {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  padding: 1rem;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .info-btn a {
    font-size: 1.2rem;
  }
}
.info-btn a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.2rem;
  margin-top: -3px;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.info-btn a.primary {
  background: #fa7630;
  border: 1px solid #fa7630;
}
@media screen and (min-width: 1100px) {
  .info-btn a.primary:hover {
    background: #fff;
    color: #fa7630;
  }
  .info-btn a.primary:hover:after {
    border-top: 1px solid #fa7630;
    border-right: 1px solid #fa7630;
  }
}
.info-btn a.second {
  color: #329918;
  background: #fff;
  border: 1px solid #329918;
}
.info-btn a.second:after {
  border-top: 1px solid #329918;
  border-right: 1px solid #329918;
}
@media screen and (min-width: 1100px) {
  .info-btn a.second:hover {
    background: #329918;
    color: #fff;
  }
  .info-btn a.second:hover:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.hbspt-form {
  padding: 0 10px;
}

body input[type=text],
body input[type=password],
body input[type=datetime],
body input[type=datetime-local],
body input[type=date],
body input[type=month],
body input[type=time],
body input[type=week],
body input[type=number],
body input[type=email],
body input[type=url],
body input[type=search],
body input[type=tel],
body input[type=color],
body input[type=file],
body textarea,
body select {
  width: 100%;
  font-size: 15px;
  line-height: 1.1;
  color: #414141;
  margin: 5px 0 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body input::-webkit-input-placeholder {
  color: #414141;
}

body input::-moz-placeholder {
  color: #414141;
}

body input:-ms-input-placeholder {
  color: #414141;
}

body input::-ms-input-placeholder {
  color: #414141;
}

body input::placeholder {
  color: #414141;
}

body label {
  font-size: 16px;
  font-weight: bold;
}

body .hs-button.primary,
body input[type=submit],
body input[type=button] {
  cursor: pointer;
}

.hs_cos_wrapper_type_form {
  width: 100%;
  float: inherit;
}

.hs-input {
  height: 45px;
  padding: 10px;
  font-size: 15px;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background: #f1f1f1;
}

.hs-form-field {
  margin-top: 25px;
}

.hs-form-radio {
  list-style-type: none;
  margin: 10px 15px 0 0; /*display: inline-block;*/
}

.hs-form-booleancheckbox {
  display: inline-block;
  vertical-align: middle;
  list-style-type: none;
}

.hs-fieldtype-checkbox li {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 15px 0 0;
}

.hs-form fieldset {
  max-width: none !important;
}

.hs-form fieldset .hs-input {
  width: 100% !important;
}

.hs-form fieldset.form-columns-1 input[type=checkbox],
.hs-form fieldset.form-columns-1 input[type=radio] {
  width: auto !important;
}

.hs-field-desc {
  font-size: 1.2rem;
}

.hs-button {
  -webkit-appearance: none;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: #329918;
  border: 1px solid #329918;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.hs-richtext {
  margin-top: 25px;
}

.hs-richtext h1 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  margin: 15px 0 10px !important;
}

/*.hs-button.primary {width: 100%; margin: 0 auto;}*/
.hs-form-required {
  color: #e9000b;
}

.hs-error-msgs {
  margin: 0 !important;
  padding: 0 !important;
}

.hs-error-msgs li {
  margin-top: 5px;
  list-style: none;
}

.hs-error-msgs label {
  font-size: 11px;
  color: #e9000b;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  background: #fff7f7;
  border-color: #e9000b;
}

textarea.hs-input {
  height: 100px;
}

.form-columns-1 .input,
.form-columns-2 .input {
  margin-right: 0 !important;
}

.inputs-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
}

.inputs-list .hs-input {
  height: auto;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.inputs-list input[type=checkbox] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.hs-dateinput {
  position: relative;
}

.hs-dateinput .hs-input {
  padding-left: 50px;
}

.hs-dateinput:before {
  content: "\f073";
  font-family: "ForkAwesome";
  font-size: 22px;
  position: absolute;
  top: 10px;
  left: 15px;
}

.hs-dateinput .fn-date-picker .is-today .pika-button {
  color: #333;
  font-weight: bold;
}

.hs-datepicker .fn-date-picker .pika-button:hover {
  color: #fff !important;
  background: #666 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 4px !important;
}

.hs-datepicker .fn-date-picker .is-selected .pika-button {
  color: #fff !important;
  font-weight: bold !important;
  background: #333 !important;
  -webkit-box-shadow: inset 0 1px 3px #000 !important;
          box-shadow: inset 0 1px 3px #000 !important;
  border-radius: 4px !important;
}

.hs-file .hs-input {
  font-size: 12px !important;
  line-height: 22px !important;
}

.privacy {
  width: 100%;
  height: 200px;
  font-size: 13px;
  line-height: 1.8;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid #ccc;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .hs-form-field {
    margin-top: 30px;
  }
  fieldset.form-columns-2 .hs-form-field {
    width: 49% !important;
    float: left !important;
  }
  fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 2% !important;
  }
  .hs-button.primary {
    max-width: 480px;
    margin-top: 35px;
  }
  .hs-button {
    max-width: 480px;
    margin-top: 35px;
    font-size: 24px;
    padding: 20px;
  }
  body .hs-button:hover {
    background: #fff;
    color: #329918;
  }
  .privacy {
    width: 100%;
    height: 250px;
  }
}
@media only screen and (max-width: 1200px) {
  #form-pad {
    padding: 20px;
    z-index: 1;
  }
  .float-form {
    padding: 20px 10px 10px;
  }
  .addl-info {
    padding-top: 30px;
  }
  .image-holder-left {
    padding-left: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .header-content {
    padding: 5px 0;
  }
  .page-center {
    padding: 0 10px;
  }
  .company-logo {
    text-align: center;
    margin: 0 auto;
    float: none;
  }
  .social-sharing {
    text-align: center;
  }
  #form-pad {
    padding: 20px;
    z-index: 1;
  }
  .float-form {
    margin-top: 0;
    padding: 20px 10px 10px;
  }
  .addl-info {
    padding-top: 30px;
  }
  .image-holder-left {
    padding-left: 35%;
    padding-right: 35%;
  }
  .image-holder-right {
    padding-left: 35%;
    padding-right: 35%;
  }
  .left-form {
    margin-top: 20px;
    padding-left: 0;
  }
  .phone-number {
    display: none !important;
  }
  fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .right-form {
    padding: 0;
    z-index: 1;
  }
  .float-offer {
    margin-top: 0;
    padding: 20px 10px 10px;
    background-color: rgb(248, 248, 248);
  }
  .float-form {
    margin-top: 0;
    padding: 20px 10px 10px;
  }
  .addl-info {
    padding-top: 20px;
  }
  .image-holder-left {
    padding-left: 35%;
    padding-right: 35%;
  }
  .image-holder-right {
    padding-left: 35%;
    padding-right: 35%;
  }
  .left-form {
    margin-top: 20px;
    padding-left: 0;
  }
  body label {
    font-size: 13px;
  }
  form.hs-form-f490753d-a9df-44f1-864b-cfe60333b0c5_ab49d754-e979-4b2f-aa7c-2d54551fe269:not(.hs-video-form) .form-columns-2 .hs-form-field,
  form.hs-form-f490753d-a9df-44f1-864b-cfe60333b0c5_ab49d754-e979-4b2f-aa7c-2d54551fe269:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none !important;
    width: 100% !important;
  }
  fieldset.form-columns-2 .hs-form-field + .hs-form-field {
    margin-left: 0% !important;
  }
}
.hs-richtext p a {
  color: #329918;
  text-decoration: underline;
}

.hs-richtext p a:hover {
  text-decoration: none;
}

.legal-consent-container .hs-richtext {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.legal-consent-container .hs-richtext:nth-child(3) {
  height: 120px;
  overflow-y: scroll;
}

@media screen and (min-width: 1100px) {
  .legal-consent-container .hs-form-booleancheckbox .hs-form-booleancheckbox-display > span {
    display: inline-block !important;
    margin-left: 0;
    position: relative;
    top: -3px;
  }
}