@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}
body {
  background-color: #000;
}
body.active {
  height: 100%;
  overflow: hidden;
}
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 999;
}
.loading_logo {
  width: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(min-width:960px) {
  .loading_logo {
    width: 250px;
  }
}
.header {
  height: 100px;
  width: 100%;
  position: fixed;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.64);
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 0 25px;
}
.UBlogo img {
  width: 42px;
}
.gnav {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.2rem;
}
.navInner img {
  width: 2rem;
  height: 2rem;
  padding-bottom: 5px;
}
.navInner ul {
  text-align: center;
}
.gnav_font {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}
.menu {
  width: 60px;
  height: 60px;
  color: #4dffea;
  margin-left: 20px;
  border-radius: 50%;
  border: solid 2px #4dffea;
  outline: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hamburger__text {
  color: #4dffea;
  font-weight: 600;
}
.gnav_list {
  position: fixed;
  top: 100px;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 20px;
  background-color: rgba(0, 0, 0, 0.64);
  transform: translateX(100%);
  transition: all 1s;
  overflow-y: scroll;
  font-family: 'League Gothic', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 4.0rem;
  line-height: 6.2rem;
  display: flex;
  flex-direction: column;
}
.gnav_list_home, .gnav_list_about, .gnav_list_team, .gnav_list_news, .gnav_list_school, .gnav_list_contact, .trial_green {
  display: block;
  font-size: 1.0rem;
  line-height: 0rem;
  margin-bottom: 25px;
}
.gnav_list ul li:last-child {
  margin-bottom: 250px;
}
.gnav_list.show {
  width: 100%;
  transform: translateX(0);
  transition: all 1s;
  margin-bottom: 150px;
}
@media(min-width:768px) {
  .gnav_list {
    padding-top: 8%;
  }
  .gnav_list.show, .gnav_list .trial_green {
    margin-bottom: 0;
  }
  .gnav_list_home, .gnav_list_about, .gnav_list_team, .gnav_list_news, .gnav_list_school, .gnav_list_contact, .trial_green {
    margin-top: -5px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 40px;
  }
  .gnav_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gnav_list ul li {
    width: 50%;
    font-size: 7.0rem;
    line-height: 10rem;
    letter-spacing: 0.5rem;
  }
  .gnav_list ul li:last-child {
    margin-bottom: 0;
  }
  .trial_green::after {
    content: "";
    display: block;
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .header {
    height: 100px;
  }
  .header-inner {
    height: 100px;
    margin-right: 50px;
  }
  .UBlogo {
    z-index: 1;
  }
  .UBlogo .js-logo {
    width: 8.8rem;
    height: auto;
    margin: 90px 0 0 150px;
    transition: 1s;
  }
  .UBlogo .js-logo.transform {
    width: 5.0rem;
    height: auto;
    margin: 0 0 0 150px;
    transition: 1s;
  }
  .gnav {
    font-size: 1.4rem;
  }
  .gnav ul li a {
    letter-spacing: 0.15em;
  }
  .navInner img {
    width: 2.6rem;
    height: 2.6rem;
  }
  .menu {
    width: 70px;
    height: 70px;
    margin-left: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 7.0rem;
  }
  .menu p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .gnav_list {
    padding-top: 5%;
    font-size: 7.0rem;
    line-height: 11.2rem;
  }
  .gnav_list ul {
    max-width: 650px;
    margin: 0 auto;
  }
}
.Top-movie {
  position: relative;
  padding-top: 100px;
}
.mv-container {
  width: 100%;
  height: 72vh;
}
.mv-container::after {
  animation: noise 8s steps(10) infinite;
  background: #000000 url("../image/noise.png") repeat 0 0;
  content: "";
  display: block;
  height: 72vh;
  position: absolute;
  opacity: .45;
  top: 100px;
  width: 100%;
  pointer-events: none;
  animation-name: noisemotion;
}
@keyframes noisemotion {
  from {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -10%;
  }
  20% {
    background-position: -15% 5%;
  }
  30% {
    background-position: 7% -25%;
  }
  40% {
    background-position: 20% 25%;
  }
  50% {
    background-position: -25% 10%;
  }
  60% {
    background-position: 15% 5%;
  }
  70% {
    background-position: 0 15%;
  }
  80% {
    background-position: 25% 35%;
  }
  90% {
    background-position: -10% 10%;
  }
}
.movie {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  overflow: hidden;
}
.TopPageHeadTitle {
  z-index: 10;
  position: absolute;
  bottom: 50px;
}
.TopPageHeadTitle h2 {
  font-family: 'League Gothic', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 100px;
  letter-spacing: 0.01rem;
  color: #4dffea;
  padding-left: 10px;
  line-height: 0.95em;
}
.TopPageHeadTitle span:first-of-type {
  margin: 10px 0 0 10px;
}
.TopPageHeadTitle span {
  display: block;
  width: fit-content;
  padding: 12px 0 12px 12px;
  margin-left: 10px;
  font-size: 2.4rem;
  color: #1d1d1f;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  background-color: #4dffea;
}
@media (min-width: 960px) {
  .mv-container {
    height: 100vh;
    width: 100vw;
    padding-left: 340px;
  }
  .mv-container::after {
    width: calc(100vw - 340px);
    height: 100vh;
  }
  .movie {
    height: 100vh;
  }
  .TopPageHeadTitle {
    position: absolute;
    bottom: 17%;
  }
  .TopPageHeadTitle h2 {
    font-size: 15.0rem;
    margin-left: 90px;
  }
  .TopPageHeadTitle span {
    font-size: 4rem;
    margin-left: 90px;
    padding: 17px 0px 17px 25px;
  }
  .TopPageHeadTitle span:first-of-type {
    margin: 40px 0 15px 90px;
  }
}
@media(min-width:1200px) {
  .TopPageHeadTitle {
    position: absolute;
    bottom: 15%;
  }
  .TopPageHeadTitle h2 {
    font-size: 17.4rem;
    margin-left: 90px;
  }
  .TopPageHeadTitle span {
    font-size: 4.5rem;
    margin-left: 90px;
    padding: 17px 0px 17px 25px;
  }
}
.fadeIn {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.8s, transform 1.8s;
}
.fadeIn.active {
  opacity: 1;
  transform: translateY(0px);
  z-index: 10;
  position: relative;
}
.section-about {
  margin-bottom: 100px;
}
.section-about h2 {
  margin: 150px 0 0 20px;
}
.section-about h2 .ttl {
  font-family: 'League Gothic', sans-serif;
  font-size: 7.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1rem;
}
.section-about .sub, .section-team .sub, .section-school .sub {
  display: block;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin: 8px 0 100px;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}
.section-about .sub::before {
  content: "";
  width: 50px;
  height: 2px;
  display: inline-block;
  background-color: #4dffea;
  vertical-align: middle;
  margin-right: 15px;
}
.section-about h3 {
  max-width: 600px;
  text-align: center;
  margin: 0 auto 60px;
}
.lead_text {
  display: block;
  margin-bottom: 20px;
}
.section-about h3 .green {
  font-family: 'League Gothic', sans-serif;
  font-weight: 500;
  letter-spacing: 0.6rem;
  color: #4dffea;
  font-size: 4.0rem;
  margin-right: 40px;
  margin-bottom: 30px;
}
.section-about h3 .white {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.2rem
}
.lead_text span:nth-child(2) {
  letter-spacing: 0.2rem;
}
.section-about_content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 30px;
}
.section-about_content p, .section-team_content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: left;
  line-height: 3.5rem;
  margin-bottom: 50px;
}
.btn {
  width: 158px;
  height: 48px;
  border: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
}
.btn a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #fff;
  margin-left: 10px;
}
@media(min-width:768px) {
  .section-about {
    margin-bottom: 130px;
  }
}
@media(min-width:960px) {
  .section-about {
    margin: 180px 90px 250px;
  }
  .section-about h2 .ttl {
    font-size: 15.0rem;
  }
  .section-about .sub, .section-team .sub, .section-school .sub {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .section-about .sub::before {
    width: 100px;
  }
  .section-about h3 {
    max-width: 570px;
    margin: 110px auto 100px;
  }
  .lead_text {
    margin-bottom: 60px;
  }
  .section-about h3 .green {
    font-weight: 500;
    letter-spacing: 0.6rem;
    color: #4dffea;
    font-size: 8.0rem;
    margin-right: 50px;
    margin-bottom: 30px;
  }
  .section-about h3 .white {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 6.5rem;
  }
  .section-about_content {
    padding: 0;
  }
  .section-about_content p {
    font-size: 1.8rem;
    line-height: 4.0rem;
    margin-bottom: 100px;
  }
  .btn {
    width: 350px;
    height: 70px;
  }
  .btn a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 2.0rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    transition: 0.5s;
  }
  .btn a:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
    transition: 0.5s;
    margin-left: 60px;
  }
}
.parallax {
  position: relative;
}
.parallax img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-team {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.7vw), 0 100%);
  padding-bottom: 350px;
}
.section-team h2, .section-school h2 {
  margin: -50px 0 0 20px;
}
.section-team .ttl, .section-school .ttl {
  font-family: 'League Gothic', sans-serif;
  font-size: 7.5rem;
  font-weight: 500;
  color: #4dffea;
  letter-spacing: 1rem;
}
.section-team .sub::before, .section-school .sub::before {
  content: "";
  width: 50px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  vertical-align: middle;
  margin-right: 15px;
}
.section-team_img, .section-school_img {
  margin-bottom: 40px;
}
.section-team_img img, .section-school_img img {
  width: 100%;
  color: #000;
  opacity: 0.8;
}
.section-team_content, .section-school_content {
  max-width: 620px;
  padding: 0 20px;
  margin: 0 auto;
}
 .section-school_content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: left;
  line-height: 3.5rem;
  margin-bottom: 50px;
}
.team_btn, .school_btn, .freeschool_btn {
  margin: 0 auto;
}
@media(min-width:500px) {
  .section-team h2, .section-school h2 {
    margin: -70px 0 0 20px;
  }
}
@media(min-width:768px) {
  .section-team h2, .section-school h2 {
    margin: -75px 0 0 20px;
  }
  .section-team {
    padding-bottom: 450px;
  }
}
@media(min-width:960px) {
  .section-team {
    padding-bottom: 650px;
    position: relative;
  }
  .section-team h2, .section-school h2 {
    margin: -130px 0 0 90px;
  }
  .section-team .ttl, .section-school .ttl {
    font-size: 15.0rem;
  }
  .section-team .sub::before, .section-school .sub::before {
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    vertical-align: middle;
    margin-right: 20px;
  }
  .team-content_container, .school-content_container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 50px 0 0px 90px;
    position: relative;
  }
  .section-team_img, .section-school_img {
    margin: 0;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
  }
  .section-team_content, .section-school_content {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 545px;
    margin-right: 5%;
    padding: 0 40px 50px 0;
  }
  .section-team_content p, .section-school_content p {
    font-size: 2.0rem;
    text-align: left;
    line-height: 4.0rem;
    position: relative;
  }
  .team_btn, .school_btn {
    position: absolute;
    bottom: 0;
  }
}
@media(min-width:1200px) {
  .section-team {
    padding-bottom: 650px;
  }
  .section-team h2, .section-school h2 {
    margin: -150px 0 0 90px;
  }
}
@media(min-width:1400px) {
  .section-team {
    padding-bottom: 930px;
  }
}
/*ニュースセクション*/
.section-news {
  position: relative;
  background: #fff;
  padding-top: 40px;
  margin-top: -40px;
}
.news_para {
  position: absolute;
  margin-top: -36vw;
  width: 100%;
}
.polygon_bg {
  clip-path: polygon(0 8.7vw, 100% 0, 100% calc(100% - 8.7vw), 0 100%);
 padding-bottom: 1500px;
/*  padding-bottom: 1250px;*/
  position: relative;
}
.news_container {
  width: 100%;
  position: absolute;
  top: 0px;
}
.section-news h2 {
  margin-left: 20px;
}
.section-news h2 .ttl {
  font-family: 'League Gothic', sans-serif;
  font-size: 7.5rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1rem;
}
.section-news .sub {
  display: block;
  margin: 8px 0 80px;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.2rem;
}
.section-news .sub::before {
  content: "";
  width: 50px;
  height: 2px;
  display: inline-block;
  background-color: #000;
  vertical-align: middle;
  margin-right: 15px;
}
.newslist {
  max-width: 600px;
  padding: 0 30px;
  font-size: 14px;
  text-align: left;
  margin: 0 auto 60px;
}
.newslist ul li {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-bottom: dotted 1px #333;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  padding: 15px 10px;
  line-height: 2.7rem;
  color: #000;
}
.newslist span {
  width: fit-content;
  height: fit-content;
  font-size: 1.2rem;
  color: #fff;
  line-height: 2rem;
  background: #000;
  border-radius: 3px;
  padding: 1px 7px;
  margin-bottom: 5px;
}
.newslist p {
  font-family: 'Noto Sans JP', sans-serif;
}
.newslist a {
  color: #000;
  text-decoration: underline;
}
.section-news_instagram {
  max-width: 570px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}
.instagram_ttl h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.instagram_ttl h3:before {
  content: url("../image/Instagram_icon.svg");
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 15px 0 10px;
}
.instagram-media.instagram-media-rendered {
  width: calc(100% - (2px + 30px * 2)) !important;
  margin: 0 auto !important;
}
@media(min-width:500px) {
  .polygon_bg {
 padding-bottom: 1700px;
  }
  .news_container {
  top: 40px;
}
}
/*タブレットサイズ*/
@media (min-width:768px) {
  .polygon_bg {
    padding-bottom: 1820px;
  }
  .news_container {
    position: absolute;
    top: 40px;
    width: 100%;
  }
  .section-news_column {
    margin-top: 100px;
  }
  .section-news_instagram {
    font-size: 14px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .instagram-media.instagram-media-rendered {
    width: calc(100% - (2px + 60px * 2)) !important;
    margin: 0 auto !important;
  }
}
/*タブレットサイズ*/
@media(min-width:960px) {
  .polygon_bg {
    padding-bottom: 1900px;
  }
  .news_container {
    top: 130px;
  }
  .section-news h2 {
    margin: -100px 0 0 90px;
    position: absolute;
  }
  .section-news h2 .ttl {
    font-size: 15.0rem;
  }
  .section-news .sub {
    font-size: 1.8rem;
  }
  .section-news .sub:before {
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background-color: #000;
    vertical-align: middle;
    margin-right: 20px;
  }
  .news_container-block {
    margin-top: 120px;
  }
}
@media(min-width:1200px) {
  .section-news {
    margin-bottom: 0px;
    padding-top: 0px;
  }
  .news_para {
    position: absolute;
    top: 100px;
  }
  .polygon_bg {
    clip-path: polygon(0 8.7vw, 100% 0, 100% calc(100% - 8.4vw), 0 100%);
    padding-bottom: 1400px;
  }
  .news_container {
    top: 230px;
  }
  .news_container-block {
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    margin: 100px auto 0;
  }
  .newslist {
    font-size: 1.6rem;
    padding: 70px 0 0;
    margin: 0;
  }
  .newslist span {
    margin: 0 42px 0 0;
  }
  .newslist time {
    width: 125px;
  }
  .newslist ul:nth-child(4) {
    padding-bottom: 0;
  }
  .newslist ul li {
    width: 670px;
    flex-direction: row;
    align-items: baseline;
    line-height: 4.0rem;
    padding: 10px 15px 10px 15px;
  }
  .newslist p {
    margin-left: 40px;
  }
  .newslist .newslist_txt {
    margin-left: 16px;
  }
  .section-news_instagram {
    padding: 0
  }
}
@media(min-width:1400px) {
  .news_container {
    top: 280px;
  }
}
@media(min-width:1400px) {
  .polygon_bg {
    padding-bottom: 1600px;
  }
}
/*  スクールセクション*/
.school_para {
  margin-top: -10vw;
}
.section-school {
  padding-bottom: 100px;
}
.section-school span {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}
@media(min-width:1200px) {
  .school_para {
    margin-top: -21vw;
  }
}
@media(min-width:1400px) {
  .school_para {
    margin-top: -23vw;
  }
}
/*
.freeschool {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../image/freetrial_img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.freeschool .free_inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 5.0rem;
}
.free_inner h2 {
  font-size: 3.0rem;
  font-weight: bold;
}
.free_inner p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 60px;
}
.freeschool_btn {
  background: #000;
}
@media(min-width:960px) {
  .freeschool .free_inner {
    padding: 150px 0;
  }
  .free_inner h2 {
    font-size: 6.0rem;
    letter-spacing: 0.5rem;
    margin-bottom: 40px;
  }
  .free_inner p {
    font-size: 3.0rem;
    letter-spacing: 0.5rem;
    margin-bottom: 100px;
  }
}
*/
.sitefooter {
  padding-bottom: 80px;
}
.footer_top {
  max-width: 350px;
  margin: 0 auto 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_top img {
  width: 42px;
  height: auto;
  margin-right: 25px;
}
.footer_top p:first-of-type {
  font-family: 'League Gothic', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer_top p:nth-of-type(2) {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  letter-spacing: 0.1rem;
  color: #fff;
}
.footer_container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.footer_nav ul {
  line-height: 6rem;
}
.footer_nav ul li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
}
.footer_nav .footer-nav_small{
  font-size: 1.0rem;
}
.footer_instagram_ttl {
  margin: 40px 0 50px;
}
.footer_instagram_ttl a {
  font-family: 'League Gothic', sans-serif;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_instagram_ttl a:before {
  content: url("../image/Instagram_icon02.svg");
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.footer_bottom {
  max-width: 310px;
  text-align: center;
  margin: 0 auto;
}
.footer_copy p {
  font-size: 1.2rem;
  font-family: 'League Gothic', sans-serif;
  color: #fff;
  letter-spacing: 0.3rem;
  line-height: 2.0rem;
}
@media(min-width:960px) {
  .sitefooter {
    padding: 70px 0;
    position: relative;
  }
  .sitefooter_container {
    padding: 0 0 0 170px;
  }
  .footer_container {
    max-width: 1100px;
  }
  .footer_top {
    margin: 0;
  }
  .footer_top img {
    width: 76px;
    height: auto;
    margin-right: 40px;
  }
  .footer_top p:first-of-type {
    font-size: 2.0rem;
  }
  .footer_container {
    margin: 100px auto 100px;
    padding: 0 20px;
  }
  .footer_nav ul {
    display: flex;
    justify-content: space-between;
  }
  .footer_nav ul li {
    font-size: 2.0rem;
  }
  .footer_instagram_ttl {
    position: absolute;
    top: 80px;
    right: 200px;
  }
  .footer-nav_small {
    position: absolute;
    bottom: 50px;
  }
  .footer_copy p {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
/* #freetrial-button {
  display: none;
}
#freetrial-button a {
  bottom: 0;
  position: fixed;
  right: 0;
  z-index: 15;
}
@media(min-width:960px) {
  #freetrial-button {
    display: block;
  }
  #freetrial-button img {
    border-radius: 14px 0 0 14px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
  }
} */